diff --git a/interfaces/CMakeLists.txt b/interfaces/CMakeLists.txt deleted file mode 100644 index c2faa3f92..000000000 --- a/interfaces/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -if(SWIG_FOUND) - add_subdirectory(swig) -endif() -if(MSVC OR MINGW) - if(NOT CMAKE_CL_64) - add_subdirectory(ffopencv) - endif() -endif() -if(PYTHONLIBS_FOUND AND BUILD_NEW_PYTHON_SUPPORT) - add_subdirectory(python) -endif() -#if(IPP_FOUND AND BUILD_CUSTOM_IPP_LIB) -# add_subdirectory(ippopencv) -#endif() diff --git a/interfaces/swig/CMakeLists.txt b/interfaces/swig/CMakeLists.txt deleted file mode 100644 index 2e6a38052..000000000 --- a/interfaces/swig/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -if(PYTHONLIBS_FOUND AND BUILD_SWIG_PYTHON_SUPPORT) - add_subdirectory(python) -endif() -if(OCTAVE_FOUND AND BUILD_OCTAVE_SUPPORT) - add_subdirectory(octave) -endif() diff --git a/interfaces/swig/README b/interfaces/swig/README deleted file mode 100644 index 5da8c1073..000000000 --- a/interfaces/swig/README +++ /dev/null @@ -1,13 +0,0 @@ -The OpenCV Python wrapper is automatically generated using a tool called SWIG (www.swig.org) -using filtered header files from OpenCV and the swig interface definition files (*.i). - -If you are interested in simply using the Python interface, SWIG is not required and the generated -wrapper files can be used as is. - -If you want to modify the python wrapper, or write bindings for another language supported by SWIG -(say Ruby or C#), you will need SWIG 1.2.24 or greater. The filtered headers are found in the -'filtered' subdirectory and are automatically regenerated at build-time if the originals have changed. -The 'general' subdirectory contains SWIG interface definition files that are not specific to Python, and -can hopefully utilized for other language wrappers. The files in the 'python' subdirectory are Python specific. -When adding new functionality, please try to use the SWIG abstractions rather than the Python API whenever -possible. diff --git a/interfaces/swig/filtered/constants.h b/interfaces/swig/filtered/constants.h deleted file mode 100644 index 9b1c2a6dd..000000000 --- a/interfaces/swig/filtered/constants.h +++ /dev/null @@ -1,1064 +0,0 @@ -#define CV_AUTOSTEP 0x7fffffff - -#define cvGetSubArr cvGetSubRect - -#define CV_MAX_ARR 10 - -#define CV_NO_DEPTH_CHECK 1 - -#define CV_NO_CN_CHECK 2 - -#define CV_NO_SIZE_CHECK 4 - -#define cvZero cvSetZero - -#define cvCvtScale cvConvertScale - -#define cvScale cvConvertScale - -#define cvCvtScaleAbs cvConvertScaleAbs - -#define CV_CMP_EQ 0 - -#define CV_CMP_GT 1 - -#define CV_CMP_GE 2 - -#define CV_CMP_LT 3 - -#define CV_CMP_LE 4 - -#define CV_CMP_NE 5 - -#define CV_CHECK_RANGE 1 - -#define CV_CHECK_QUIET 2 - -#define cvCheckArray cvCheckArr - -#define CV_RAND_UNI 0 - -#define CV_RAND_NORMAL 1 - -#define CV_SORT_EVERY_ROW 0 - -#define CV_SORT_EVERY_COLUMN 1 - -#define CV_SORT_ASCENDING 0 - -#define CV_SORT_DESCENDING 16 - -#define CV_GEMM_A_T 1 - -#define CV_GEMM_B_T 2 - -#define CV_GEMM_C_T 4 - -#define cvMatMulAddEx cvGEMM - -#define cvMatMulAddS cvTransform - -#define cvT cvTranspose - -#define cvMirror cvFlip - -#define CV_SVD_MODIFY_A 1 - -#define CV_SVD_U_T 2 - -#define CV_SVD_V_T 4 - -#define CV_LU 0 - -#define CV_SVD 1 - -#define CV_SVD_SYM 2 - -#define CV_CHOLESKY 3 - -#define CV_QR 4 - -#define CV_NORMAL 16 - -#define cvInv cvInvert - -#define CV_COVAR_SCRAMBLED 0 - -#define CV_COVAR_NORMAL 1 - -#define CV_COVAR_USE_AVG 2 - -#define CV_COVAR_SCALE 4 - -#define CV_COVAR_ROWS 8 - -#define CV_COVAR_COLS 16 - -#define CV_PCA_DATA_AS_ROW 0 - -#define CV_PCA_DATA_AS_COL 1 - -#define CV_PCA_USE_AVG 2 - -#define cvMahalonobis cvMahalanobis - -#define CV_C 1 - -#define CV_L1 2 - -#define CV_L2 4 - -#define CV_NORM_MASK 7 - -#define CV_RELATIVE 8 - -#define CV_DIFF 16 - -#define CV_MINMAX 32 - -#define CV_DIFF_C (CV_DIFF | CV_C) - -#define CV_DIFF_L1 (CV_DIFF | CV_L1) - -#define CV_DIFF_L2 (CV_DIFF | CV_L2) - -#define CV_RELATIVE_C (CV_RELATIVE | CV_C) - -#define CV_RELATIVE_L1 (CV_RELATIVE | CV_L1) - -#define CV_RELATIVE_L2 (CV_RELATIVE | CV_L2) - -#define CV_REDUCE_SUM 0 - -#define CV_REDUCE_AVG 1 - -#define CV_REDUCE_MAX 2 - -#define CV_REDUCE_MIN 3 - -#define CV_DXT_FORWARD 0 - -#define CV_DXT_INVERSE 1 - -#define CV_DXT_SCALE 2 - -#define CV_DXT_INV_SCALE (CV_DXT_INVERSE + CV_DXT_SCALE) - -#define CV_DXT_INVERSE_SCALE CV_DXT_INV_SCALE - -#define CV_DXT_ROWS 4 - -#define CV_DXT_MUL_CONJ 8 - -#define cvFFT cvDFT - -#define CV_FRONT 1 - -#define CV_BACK 0 - -#define cvGraphFindEdge cvFindGraphEdge - -#define cvGraphFindEdgeByPtr cvFindGraphEdgeByPtr - -#define CV_GRAPH_VERTEX 1 - -#define CV_GRAPH_TREE_EDGE 2 - -#define CV_GRAPH_BACK_EDGE 4 - -#define CV_GRAPH_FORWARD_EDGE 8 - -#define CV_GRAPH_CROSS_EDGE 16 - -#define CV_GRAPH_ANY_EDGE 30 - -#define CV_GRAPH_NEW_TREE 32 - -#define CV_GRAPH_BACKTRACKING 64 - -#define CV_GRAPH_OVER -1 - -#define CV_GRAPH_ALL_ITEMS -1 - -#define CV_GRAPH_ITEM_VISITED_FLAG (1 << 30) - -#define CV_GRAPH_SEARCH_TREE_NODE_FLAG (1 << 29) - -#define CV_GRAPH_FORWARD_EDGE_FLAG (1 << 28) - -#define CV_FILLED -1 - -#define CV_AA 16 - -#define cvDrawRect cvRectangle - -#define cvDrawLine cvLine - -#define cvDrawCircle cvCircle - -#define cvDrawEllipse cvEllipse - -#define cvDrawPolyLine cvPolyLine - -#define CV_FONT_HERSHEY_SIMPLEX 0 - -#define CV_FONT_HERSHEY_PLAIN 1 - -#define CV_FONT_HERSHEY_DUPLEX 2 - -#define CV_FONT_HERSHEY_COMPLEX 3 - -#define CV_FONT_HERSHEY_TRIPLEX 4 - -#define CV_FONT_HERSHEY_COMPLEX_SMALL 5 - -#define CV_FONT_HERSHEY_SCRIPT_SIMPLEX 6 - -#define CV_FONT_HERSHEY_SCRIPT_COMPLEX 7 - -#define CV_FONT_ITALIC 16 - -#define CV_FONT_VECTOR0 CV_FONT_HERSHEY_SIMPLEX - -#define CV_KMEANS_USE_INITIAL_LABELS 1 - -#define CV_ErrModeLeaf 0 - -#define CV_ErrModeParent 1 - -#define CV_ErrModeSilent 2 - -#define CV_MAJOR_VERSION 2 - -#define CV_MINOR_VERSION 0 - -#define CV_SUBMINOR_VERSION 0 - -#define CV_VERSION CVAUX_STR(CV_MAJOR_VERSION) "." CVAUX_STR(CV_MINOR_VERSION) "." CVAUX_STR(CV_SUBMINOR_VERSION) - -#define CV_PI 3.1415926535897932384626433832795 - -#define CV_LOG2 0.69314718055994530941723212145818 - -#define IPL_DEPTH_SIGN 0x80000000 - -#define IPL_DEPTH_1U 1 - -#define IPL_DEPTH_8U 8 - -#define IPL_DEPTH_16U 16 - -#define IPL_DEPTH_32F 32 - -#define IPL_DEPTH_8S (IPL_DEPTH_SIGN| 8) - -#define IPL_DEPTH_16S (IPL_DEPTH_SIGN|16) - -#define IPL_DEPTH_32S (IPL_DEPTH_SIGN|32) - -#define IPL_DATA_ORDER_PIXEL 0 - -#define IPL_DATA_ORDER_PLANE 1 - -#define IPL_ORIGIN_TL 0 - -#define IPL_ORIGIN_BL 1 - -#define IPL_ALIGN_4BYTES 4 - -#define IPL_ALIGN_8BYTES 8 - -#define IPL_ALIGN_16BYTES 16 - -#define IPL_ALIGN_32BYTES 32 - -#define IPL_ALIGN_DWORD IPL_ALIGN_4BYTES - -#define IPL_ALIGN_QWORD IPL_ALIGN_8BYTES - -#define IPL_BORDER_CONSTANT 0 - -#define IPL_BORDER_REPLICATE 1 - -#define IPL_BORDER_REFLECT 2 - -#define IPL_BORDER_WRAP 3 - -#define IPL_IMAGE_HEADER 1 - -#define IPL_IMAGE_DATA 2 - -#define IPL_IMAGE_ROI 4 - -#define IPL_BORDER_REFLECT_101 4 - -#define IPL_IMAGE_MAGIC_VAL ((int)sizeof(IplImage)) - -#define CV_TYPE_NAME_IMAGE "opencv-image" - -#define IPL_DEPTH_64F 64 - -#define CV_CN_MAX 64 - -#define CV_CN_SHIFT 3 - -#define CV_DEPTH_MAX (1 << CV_CN_SHIFT) - -#define CV_8U 0 - -#define CV_8S 1 - -#define CV_16U 2 - -#define CV_16S 3 - -#define CV_32S 4 - -#define CV_32F 5 - -#define CV_64F 6 - -#define CV_USRTYPE1 7 - -#define CV_MAT_DEPTH_MASK (CV_DEPTH_MAX - 1) - -#define CV_MAT_DEPTH(flags) ((flags) & CV_MAT_DEPTH_MASK) - -#define CV_MAKETYPE(depth,cn) (CV_MAT_DEPTH(depth) + (((cn)-1) << CV_CN_SHIFT)) - -#define CV_MAKE_TYPE CV_MAKETYPE - -#define CV_8UC1 CV_MAKETYPE(CV_8U,1) - -#define CV_8UC2 CV_MAKETYPE(CV_8U,2) - -#define CV_8UC3 CV_MAKETYPE(CV_8U,3) - -#define CV_8UC4 CV_MAKETYPE(CV_8U,4) - -#define CV_8SC1 CV_MAKETYPE(CV_8S,1) - -#define CV_8SC2 CV_MAKETYPE(CV_8S,2) - -#define CV_8SC3 CV_MAKETYPE(CV_8S,3) - -#define CV_8SC4 CV_MAKETYPE(CV_8S,4) - -#define CV_16UC1 CV_MAKETYPE(CV_16U,1) - -#define CV_16UC2 CV_MAKETYPE(CV_16U,2) - -#define CV_16UC3 CV_MAKETYPE(CV_16U,3) - -#define CV_16UC4 CV_MAKETYPE(CV_16U,4) - -#define CV_16SC1 CV_MAKETYPE(CV_16S,1) - -#define CV_16SC2 CV_MAKETYPE(CV_16S,2) - -#define CV_16SC3 CV_MAKETYPE(CV_16S,3) - -#define CV_16SC4 CV_MAKETYPE(CV_16S,4) - -#define CV_32SC1 CV_MAKETYPE(CV_32S,1) - -#define CV_32SC2 CV_MAKETYPE(CV_32S,2) - -#define CV_32SC3 CV_MAKETYPE(CV_32S,3) - -#define CV_32SC4 CV_MAKETYPE(CV_32S,4) - -#define CV_32FC1 CV_MAKETYPE(CV_32F,1) - -#define CV_32FC2 CV_MAKETYPE(CV_32F,2) - -#define CV_32FC3 CV_MAKETYPE(CV_32F,3) - -#define CV_32FC4 CV_MAKETYPE(CV_32F,4) - -#define CV_64FC1 CV_MAKETYPE(CV_64F,1) - -#define CV_64FC2 CV_MAKETYPE(CV_64F,2) - -#define CV_64FC3 CV_MAKETYPE(CV_64F,3) - -#define CV_64FC4 CV_MAKETYPE(CV_64F,4) - -#define CV_AUTO_STEP 0x7fffffff - -#define CV_WHOLE_ARR cvSlice( 0, 0x3fffffff ) - -#define CV_MAT_CN_MASK ((CV_CN_MAX - 1) << CV_CN_SHIFT) - -#define CV_MAT_TYPE_MASK (CV_DEPTH_MAX*CV_CN_MAX - 1) - -#define CV_MAT_TYPE(flags) ((flags) & CV_MAT_TYPE_MASK) - -#define CV_MAT_CONT_FLAG_SHIFT 14 - -#define CV_MAT_CONT_FLAG (1 << CV_MAT_CONT_FLAG_SHIFT) - -#define CV_IS_CONT_MAT CV_IS_MAT_CONT - -#define CV_MAT_TEMP_FLAG_SHIFT 15 - -#define CV_MAT_TEMP_FLAG (1 << CV_MAT_TEMP_FLAG_SHIFT) - -#define CV_MAGIC_MASK 0xFFFF0000 - -#define CV_MAT_MAGIC_VAL 0x42420000 - -#define CV_TYPE_NAME_MAT "opencv-matrix" - -#define CV_MATND_MAGIC_VAL 0x42430000 - -#define CV_TYPE_NAME_MATND "opencv-nd-matrix" - -#define CV_MAX_DIM 32 - -#define CV_MAX_DIM_HEAP (1 << 16) - -#define CV_SPARSE_MAT_MAGIC_VAL 0x42440000 - -#define CV_TYPE_NAME_SPARSE_MAT "opencv-sparse-matrix" - -#define CV_HIST_MAGIC_VAL 0x42450000 - -#define CV_HIST_UNIFORM_FLAG (1 << 10) - -#define CV_HIST_RANGES_FLAG (1 << 11) - -#define CV_HIST_ARRAY 0 - -#define CV_HIST_SPARSE 1 - -#define CV_HIST_TREE CV_HIST_SPARSE - -#define CV_HIST_UNIFORM 1 - -#define CV_TERMCRIT_ITER 1 - -#define CV_TERMCRIT_NUMBER CV_TERMCRIT_ITER - -#define CV_TERMCRIT_EPS 2 - -#define CV_WHOLE_SEQ_END_INDEX 0x3fffffff - -#define CV_WHOLE_SEQ cvSlice(0, CV_WHOLE_SEQ_END_INDEX) - -#define CV_STORAGE_MAGIC_VAL 0x42890000 - -#define CV_TYPE_NAME_SEQ "opencv-sequence" - -#define CV_TYPE_NAME_SEQ_TREE "opencv-sequence-tree" - -#define CV_SET_ELEM_IDX_MASK ((1 << 26) - 1) - -#define CV_SET_ELEM_FREE_FLAG (1 << (sizeof(int)*8-1)) - -#define CV_TYPE_NAME_GRAPH "opencv-graph" - -#define CV_SEQ_MAGIC_VAL 0x42990000 - -#define CV_SET_MAGIC_VAL 0x42980000 - -#define CV_SEQ_ELTYPE_BITS 9 - -#define CV_SEQ_ELTYPE_MASK ((1 << CV_SEQ_ELTYPE_BITS) - 1) - -#define CV_SEQ_ELTYPE_POINT CV_32SC2 - -#define CV_SEQ_ELTYPE_CODE CV_8UC1 - -#define CV_SEQ_ELTYPE_GENERIC 0 - -#define CV_SEQ_ELTYPE_PTR CV_USRTYPE1 - -#define CV_SEQ_ELTYPE_PPOINT CV_SEQ_ELTYPE_PTR - -#define CV_SEQ_ELTYPE_INDEX CV_32SC1 - -#define CV_SEQ_ELTYPE_GRAPH_EDGE 0 - -#define CV_SEQ_ELTYPE_GRAPH_VERTEX 0 - -#define CV_SEQ_ELTYPE_TRIAN_ATR 0 - -#define CV_SEQ_ELTYPE_CONNECTED_COMP 0 - -#define CV_SEQ_ELTYPE_POINT3D CV_32FC3 - -#define CV_SEQ_KIND_BITS 3 - -#define CV_SEQ_KIND_MASK (((1 << CV_SEQ_KIND_BITS) - 1)<" -# 1 "" -# 1 "../../../include/opencv/cv.h" -# 58 "../../../include/opencv/cv.h" -# 1 "../../../include/opencv/cxcore.h" 1 -# 70 "../../../include/opencv/cxcore.h" -# 1 "../../../include/opencv/cxtypes.h" 1 -# 161 "../../../include/opencv/cxtypes.h" -typedef int64_t int64; -typedef uint64_t uint64; - - - -typedef unsigned char uchar; -typedef unsigned short ushort; - - -typedef signed char schar; - - - - - - -typedef void CvArr; - -typedef union Cv32suf -{ - int i; - unsigned u; - float f; -} -Cv32suf; - -typedef union Cv64suf -{ - int64 i; - uint64 u; - double f; -} -Cv64suf; -# 226 "../../../include/opencv/cxtypes.h" -inline int cvRound( double value ) -{ -# 240 "../../../include/opencv/cxtypes.h" - return (int)lrint(value); - - - - -} - - -inline int cvFloor( double value ) -{ - - int i = (int)value; - return i - (i > value); -# 263 "../../../include/opencv/cxtypes.h" -} - - -inline int cvCeil( double value ) -{ - - int i = (int)value; - return i + (i < value); -# 281 "../../../include/opencv/cxtypes.h" -} - - - - -inline int cvIsNaN( double value ) -{ - - - - - - Cv64suf ieee754; - ieee754.f = value; - return ((unsigned)(ieee754.u >> 32) & 0x7fffffff) + - ((unsigned)ieee754.u != 0) > 0x7ff00000; - -} - - -inline int cvIsInf( double value ) -{ - - - - - - Cv64suf ieee754; - ieee754.f = value; - return ((unsigned)(ieee754.u >> 32) & 0x7fffffff) == 0x7ff00000 && - (unsigned)ieee754.u == 0; - -} - - - - -typedef uint64 CvRNG; - -inline CvRNG cvRNG( int64 seed = -1) -{ - CvRNG rng = seed ? (uint64)seed : (uint64)(int64)-1; - return rng; -} - - -inline unsigned cvRandInt( CvRNG* rng ) -{ - uint64 temp = *rng; - temp = (uint64)(unsigned)temp*4164903690U + (temp >> 32); - *rng = temp; - return (unsigned)temp; -} - - -inline double cvRandReal( CvRNG* rng ) -{ - return cvRandInt(rng)*2.3283064365386962890625e-10 ; -} -# 382 "../../../include/opencv/cxtypes.h" -typedef struct _IplImage -{ - int nSize; - int ID; - int nChannels; - int alphaChannel; - int depth; - - char colorModel[4]; - char channelSeq[4]; - int dataOrder; - - int origin; - - int align; - - int width; - int height; - struct _IplROI *roi; - struct _IplImage *maskROI; - void *imageId; - struct _IplTileInfo *tileInfo; - int imageSize; - - - char *imageData; - int widthStep; - int BorderMode[4]; - int BorderConst[4]; - char *imageDataOrigin; - - -} -IplImage; - -typedef struct _IplTileInfo IplTileInfo; - -typedef struct _IplROI -{ - int coi; - int xOffset; - int yOffset; - int width; - int height; -} -IplROI; - -typedef struct _IplConvKernel -{ - int nCols; - int nRows; - int anchorX; - int anchorY; - int *values; - int nShiftR; -} -IplConvKernel; - -typedef struct _IplConvKernelFP -{ - int nCols; - int nRows; - int anchorX; - int anchorY; - float *values; -} -IplConvKernelFP; -# 561 "../../../include/opencv/cxtypes.h" -typedef struct CvMat -{ - int type; - int step; - - - int* refcount; - int hdr_refcount; - - union - { - uchar* ptr; - short* s; - int* i; - float* fl; - double* db; - } data; - - - union - { - int rows; - int height; - }; - - union - { - int cols; - int width; - }; - - - - - -} -CvMat; -# 639 "../../../include/opencv/cxtypes.h" -inline CvMat cvMat( int rows, int cols, int type, void* data = NULL) -{ - CvMat m; - - assert( (unsigned)((type) & ((1 << 3) - 1)) <= 6 ); - type = ((type) & ((1 << 3)*64 - 1)); - m.type = 0x42420000 | (1 << 14) | type; - m.cols = cols; - m.rows = rows; - m.step = m.cols*(((((type) & ((64 - 1) << 3)) >> 3) + 1) << ((((sizeof(size_t)/4+1)*16384|0x3a50) >> ((type) & ((1 << 3) - 1))*2) & 3)); - m.data.ptr = (uchar*)data; - m.refcount = NULL; - m.hdr_refcount = 0; - - return m; -} -# 669 "../../../include/opencv/cxtypes.h" -inline double cvmGet( const CvMat* mat, int row, int col ) -{ - int type; - - type = ((mat->type) & ((1 << 3)*64 - 1)); - assert( (unsigned)row < (unsigned)mat->rows && - (unsigned)col < (unsigned)mat->cols ); - - if( type == (((5) & ((1 << 3) - 1)) + (((1)-1) << 3)) ) - return ((float*)(mat->data.ptr + (size_t)mat->step*row))[col]; - else - { - assert( type == (((6) & ((1 << 3) - 1)) + (((1)-1) << 3)) ); - return ((double*)(mat->data.ptr + (size_t)mat->step*row))[col]; - } -} - - -inline void cvmSet( CvMat* mat, int row, int col, double value ) -{ - int type; - type = ((mat->type) & ((1 << 3)*64 - 1)); - assert( (unsigned)row < (unsigned)mat->rows && - (unsigned)col < (unsigned)mat->cols ); - - if( type == (((5) & ((1 << 3) - 1)) + (((1)-1) << 3)) ) - ((float*)(mat->data.ptr + (size_t)mat->step*row))[col] = (float)value; - else - { - assert( type == (((6) & ((1 << 3) - 1)) + (((1)-1) << 3)) ); - ((double*)(mat->data.ptr + (size_t)mat->step*row))[col] = (double)value; - } -} - - -inline int cvIplDepth( int type ) -{ - int depth = ((type) & ((1 << 3) - 1)); - return ((((sizeof(size_t)<<28)|0x8442211) >> ((depth) & ((1 << 3) - 1))*4) & 15)*8 | (depth == 1 || depth == 3 || - depth == 4 ? 0x80000000 : 0); -} -# 722 "../../../include/opencv/cxtypes.h" -typedef struct CvMatND -{ - int type; - int dims; - - int* refcount; - int hdr_refcount; - - union - { - uchar* ptr; - float* fl; - double* db; - int* i; - short* s; - } data; - - struct - { - int size; - int step; - } - dim[32]; -} -CvMatND; -# 762 "../../../include/opencv/cxtypes.h" -struct CvSet; - -typedef struct CvSparseMat -{ - int type; - int dims; - int* refcount; - int hdr_refcount; - - struct CvSet* heap; - void** hashtable; - int hashsize; - int valoffset; - int idxoffset; - int size[32]; -} -CvSparseMat; -# 789 "../../../include/opencv/cxtypes.h" -typedef struct CvSparseNode -{ - unsigned hashval; - struct CvSparseNode* next; -} -CvSparseNode; - -typedef struct CvSparseMatIterator -{ - CvSparseMat* mat; - CvSparseNode* node; - int curidx; -} -CvSparseMatIterator; -# 811 "../../../include/opencv/cxtypes.h" -typedef int CvHistType; -# 827 "../../../include/opencv/cxtypes.h" -typedef struct CvHistogram -{ - int type; - CvArr* bins; - float thresh[32][2]; - float** thresh2; - CvMatND mat; -} -CvHistogram; -# 857 "../../../include/opencv/cxtypes.h" -typedef struct CvRect -{ - int x; - int y; - int width; - int height; -} -CvRect; - -inline CvRect cvRect( int x, int y, int width, int height ) -{ - CvRect r; - - r.x = x; - r.y = y; - r.width = width; - r.height = height; - - return r; -} - - -inline IplROI cvRectToROI( CvRect rect, int coi ) -{ - IplROI roi; - roi.xOffset = rect.x; - roi.yOffset = rect.y; - roi.width = rect.width; - roi.height = rect.height; - roi.coi = coi; - - return roi; -} - - -inline CvRect cvROIToRect( IplROI roi ) -{ - return cvRect( roi.xOffset, roi.yOffset, roi.width, roi.height ); -} - - - - - - - -typedef struct CvTermCriteria -{ - int type; - - - int max_iter; - double epsilon; -} -CvTermCriteria; - -inline CvTermCriteria cvTermCriteria( int type, int max_iter, double epsilon ) -{ - CvTermCriteria t; - - t.type = type; - t.max_iter = max_iter; - t.epsilon = (float)epsilon; - - return t; -} - - - - -typedef struct CvPoint -{ - int x; - int y; -} -CvPoint; - - -inline CvPoint cvPoint( int x, int y ) -{ - CvPoint p; - - p.x = x; - p.y = y; - - return p; -} - - -typedef struct CvPoint2D32f -{ - float x; - float y; -} -CvPoint2D32f; - - -inline CvPoint2D32f cvPoint2D32f( double x, double y ) -{ - CvPoint2D32f p; - - p.x = (float)x; - p.y = (float)y; - - return p; -} - - -inline CvPoint2D32f cvPointTo32f( CvPoint point ) -{ - return cvPoint2D32f( (float)point.x, (float)point.y ); -} - - -inline CvPoint cvPointFrom32f( CvPoint2D32f point ) -{ - CvPoint ipt; - ipt.x = cvRound(point.x); - ipt.y = cvRound(point.y); - - return ipt; -} - - -typedef struct CvPoint3D32f -{ - float x; - float y; - float z; -} -CvPoint3D32f; - - -inline CvPoint3D32f cvPoint3D32f( double x, double y, double z ) -{ - CvPoint3D32f p; - - p.x = (float)x; - p.y = (float)y; - p.z = (float)z; - - return p; -} - - -typedef struct CvPoint2D64f -{ - double x; - double y; -} -CvPoint2D64f; - - -inline CvPoint2D64f cvPoint2D64f( double x, double y ) -{ - CvPoint2D64f p; - - p.x = x; - p.y = y; - - return p; -} - - -typedef struct CvPoint3D64f -{ - double x; - double y; - double z; -} -CvPoint3D64f; - - -inline CvPoint3D64f cvPoint3D64f( double x, double y, double z ) -{ - CvPoint3D64f p; - - p.x = x; - p.y = y; - p.z = z; - - return p; -} - - - - -typedef struct -{ - int width; - int height; -} -CvSize; - -inline CvSize cvSize( int width, int height ) -{ - CvSize s; - - s.width = width; - s.height = height; - - return s; -} - -typedef struct CvSize2D32f -{ - float width; - float height; -} -CvSize2D32f; - - -inline CvSize2D32f cvSize2D32f( double width, double height ) -{ - CvSize2D32f s; - - s.width = (float)width; - s.height = (float)height; - - return s; -} - -typedef struct CvBox2D -{ - CvPoint2D32f center; - CvSize2D32f size; - float angle; - -} -CvBox2D; - - - -typedef struct CvLineIterator -{ - - uchar* ptr; - - - int err; - int plus_delta; - int minus_delta; - int plus_step; - int minus_step; -} -CvLineIterator; - - - - - -typedef struct CvSlice -{ - int start_index, end_index; -} -CvSlice; - -inline CvSlice cvSlice( int start, int end ) -{ - CvSlice slice; - slice.start_index = start; - slice.end_index = end; - - return slice; -} - - - - - - - -typedef struct CvScalar -{ - double val[4]; -} -CvScalar; - -inline CvScalar cvScalar( double val0, double val1 = 0, - double val2 = 0, double val3 = 0) -{ - CvScalar scalar; - scalar.val[0] = val0; scalar.val[1] = val1; - scalar.val[2] = val2; scalar.val[3] = val3; - return scalar; -} - - -inline CvScalar cvRealScalar( double val0 ) -{ - CvScalar scalar; - scalar.val[0] = val0; - scalar.val[1] = scalar.val[2] = scalar.val[3] = 0; - return scalar; -} - -inline CvScalar cvScalarAll( double val0123 ) -{ - CvScalar scalar; - scalar.val[0] = val0123; - scalar.val[1] = val0123; - scalar.val[2] = val0123; - scalar.val[3] = val0123; - return scalar; -} - - - - - - - -typedef struct CvMemBlock -{ - struct CvMemBlock* prev; - struct CvMemBlock* next; -} -CvMemBlock; - - - -typedef struct CvMemStorage -{ - int signature; - CvMemBlock* bottom; - CvMemBlock* top; - struct CvMemStorage* parent; - int block_size; - int free_space; -} -CvMemStorage; - - - - - - -typedef struct CvMemStoragePos -{ - CvMemBlock* top; - int free_space; -} -CvMemStoragePos; - - - - -typedef struct CvSeqBlock -{ - struct CvSeqBlock* prev; - struct CvSeqBlock* next; - int start_index; - - int count; - schar* data; -} -CvSeqBlock; -# 1239 "../../../include/opencv/cxtypes.h" -typedef struct CvSeq -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; -} -CvSeq; -# 1259 "../../../include/opencv/cxtypes.h" -typedef struct CvSetElem -{ - int flags; struct CvSetElem* next_free; -} -CvSetElem; - - - - - - -typedef struct CvSet -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; CvSetElem* free_elems; int active_count; -} -CvSet; -# 1315 "../../../include/opencv/cxtypes.h" -typedef struct CvGraphEdge -{ - int flags; float weight; struct CvGraphEdge* next[2]; struct CvGraphVtx* vtx[2]; -} -CvGraphEdge; - -typedef struct CvGraphVtx -{ - int flags; struct CvGraphEdge* first; -} -CvGraphVtx; - -typedef struct CvGraphVtx2D -{ - int flags; struct CvGraphEdge* first; - CvPoint2D32f* ptr; -} -CvGraphVtx2D; -# 1342 "../../../include/opencv/cxtypes.h" -typedef struct CvGraph -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; CvSetElem* free_elems; int active_count; CvSet* edges; -} -CvGraph; - - - - - -typedef struct CvChain -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; - CvPoint origin; -} -CvChain; - - - - - - - -typedef struct CvContour -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; CvRect rect; int color; int reserved[3]; -} -CvContour; - -typedef CvContour CvPoint2DSeq; -# 1509 "../../../include/opencv/cxtypes.h" -typedef struct CvSeqWriter -{ - int header_size; CvSeq* seq; CvSeqBlock* block; schar* ptr; schar* block_min; schar* block_max; -} -CvSeqWriter; -# 1527 "../../../include/opencv/cxtypes.h" -typedef struct CvSeqReader -{ - int header_size; CvSeq* seq; CvSeqBlock* block; schar* ptr; schar* block_min; schar* block_max; int delta_index; schar* prev_elem; -} -CvSeqReader; -# 1647 "../../../include/opencv/cxtypes.h" -typedef struct CvFileStorage CvFileStorage; -# 1657 "../../../include/opencv/cxtypes.h" -typedef struct CvAttrList -{ - const char** attr; - struct CvAttrList* next; -} -CvAttrList; - -inline CvAttrList cvAttrList( const char** attr = NULL, - CvAttrList* next = NULL ) -{ - CvAttrList l; - l.attr = attr; - l.next = next; - - return l; -} - -struct CvTypeInfo; -# 1710 "../../../include/opencv/cxtypes.h" -typedef struct CvString -{ - int len; - char* ptr; -} -CvString; - - - -typedef struct CvStringHashNode -{ - unsigned hashval; - CvString str; - struct CvStringHashNode* next; -} -CvStringHashNode; - -typedef struct CvGenericHash CvFileNodeHash; - - -typedef struct CvFileNode -{ - int tag; - struct CvTypeInfo* info; - - union - { - double f; - int i; - CvString str; - CvSeq* seq; - CvFileNodeHash* map; - } data; -} -CvFileNode; - - -extern "C" { - -typedef int ( *CvIsInstanceFunc)( const void* struct_ptr ); -typedef void ( *CvReleaseFunc)( void** struct_dblptr ); -typedef void* ( *CvReadFunc)( CvFileStorage* storage, CvFileNode* node ); -typedef void ( *CvWriteFunc)( CvFileStorage* storage, const char* name, - const void* struct_ptr, CvAttrList attributes ); -typedef void* ( *CvCloneFunc)( const void* struct_ptr ); - -} - - -typedef struct CvTypeInfo -{ - int flags; - int header_size; - struct CvTypeInfo* prev; - struct CvTypeInfo* next; - const char* type_name; - CvIsInstanceFunc is_instance; - CvReleaseFunc release; - CvReadFunc read; - CvWriteFunc write; - CvCloneFunc clone; -} -CvTypeInfo; - - - - -typedef struct CvPluginFuncInfo -{ - void** func_addr; - void* default_func_addr; - const char* func_names; - int search_modules; - int loaded_from; -} -CvPluginFuncInfo; - -typedef struct CvModuleInfo -{ - struct CvModuleInfo* next; - const char* name; - const char* version; - CvPluginFuncInfo* func_tab; -} -CvModuleInfo; -# 71 "../../../include/opencv/cxcore.h" 2 -# 1 "../../../include/opencv/cxerror.h" 1 -# 47 "../../../include/opencv/cxerror.h" -typedef int CVStatus; -# 72 "../../../include/opencv/cxcore.h" 2 -# 1 "../../../include/opencv/cvver.h" 1 -# 73 "../../../include/opencv/cxcore.h" 2 - - -extern "C" { -# 86 "../../../include/opencv/cxcore.h" -extern "C" void* cvAlloc( size_t size ); - - - - - - - -extern "C" void cvFree_( void* ptr ); - - - -extern "C" IplImage* cvCreateImageHeader( CvSize size, int depth, int channels ); - - -extern "C" IplImage* cvInitImageHeader( IplImage* image, CvSize size, int depth, - int channels, int origin = 0, - int align = 4); - - -extern "C" IplImage* cvCreateImage( CvSize size, int depth, int channels ); - - -extern "C" void cvReleaseImageHeader( IplImage** image ); - - -extern "C" void cvReleaseImage( IplImage** image ); - - -extern "C" IplImage* cvCloneImage( const IplImage* image ); - - - -extern "C" void cvSetImageCOI( IplImage* image, int coi ); - - -extern "C" int cvGetImageCOI( const IplImage* image ); - - -extern "C" void cvSetImageROI( IplImage* image, CvRect rect ); - - -extern "C" void cvResetImageROI( IplImage* image ); - - -extern "C" CvRect cvGetImageROI( const IplImage* image ); - - -extern "C" CvMat* cvCreateMatHeader( int rows, int cols, int type ); - - - - -extern "C" CvMat* cvInitMatHeader( CvMat* mat, int rows, int cols, - int type, void* data = NULL, - int step = 0x7fffffff ); - - -extern "C" CvMat* cvCreateMat( int rows, int cols, int type ); - - - -extern "C" void cvReleaseMat( CvMat** mat ); - - - -inline void cvDecRefData( CvArr* arr ) -{ - if( (((arr) != NULL && (((const CvMat*)(arr))->type & 0xFFFF0000) == 0x42420000 && ((const CvMat*)(arr))->cols > 0 && ((const CvMat*)(arr))->rows > 0) && ((const CvMat*)(arr))->data.ptr != NULL)) - { - CvMat* mat = (CvMat*)arr; - mat->data.ptr = NULL; - if( mat->refcount != NULL && --*mat->refcount == 0 ) - (cvFree_(*(&mat->refcount)), *(&mat->refcount)=0); - mat->refcount = NULL; - } - else if( (((arr) != NULL && (((const CvMatND*)(arr))->type & 0xFFFF0000) == 0x42430000) && ((const CvMatND*)(arr))->data.ptr != NULL)) - { - CvMatND* mat = (CvMatND*)arr; - mat->data.ptr = NULL; - if( mat->refcount != NULL && --*mat->refcount == 0 ) - (cvFree_(*(&mat->refcount)), *(&mat->refcount)=0); - mat->refcount = NULL; - } -} - - -inline int cvIncRefData( CvArr* arr ) -{ - int refcount = 0; - if( (((arr) != NULL && (((const CvMat*)(arr))->type & 0xFFFF0000) == 0x42420000 && ((const CvMat*)(arr))->cols > 0 && ((const CvMat*)(arr))->rows > 0) && ((const CvMat*)(arr))->data.ptr != NULL)) - { - CvMat* mat = (CvMat*)arr; - if( mat->refcount != NULL ) - refcount = ++*mat->refcount; - } - else if( (((arr) != NULL && (((const CvMatND*)(arr))->type & 0xFFFF0000) == 0x42430000) && ((const CvMatND*)(arr))->data.ptr != NULL)) - { - CvMatND* mat = (CvMatND*)arr; - if( mat->refcount != NULL ) - refcount = ++*mat->refcount; - } - return refcount; -} - - - -extern "C" CvMat* cvCloneMat( const CvMat* mat ); - - - - -extern "C" CvMat* cvGetSubRect( const CvArr* arr, CvMat* submat, CvRect rect ); - - - - -extern "C" CvMat* cvGetRows( const CvArr* arr, CvMat* submat, - int start_row, int end_row, - int delta_row = 1); - -inline CvMat* cvGetRow( const CvArr* arr, CvMat* submat, int row ) -{ - return cvGetRows( arr, submat, row, row + 1, 1 ); -} - - - - -extern "C" CvMat* cvGetCols( const CvArr* arr, CvMat* submat, - int start_col, int end_col ); - -inline CvMat* cvGetCol( const CvArr* arr, CvMat* submat, int col ) -{ - return cvGetCols( arr, submat, col, col + 1 ); -} - - - - - -extern "C" CvMat* cvGetDiag( const CvArr* arr, CvMat* submat, - int diag = 0); - - -extern "C" void cvScalarToRawData( const CvScalar* scalar, void* data, int type, - int extend_to_12 = 0 ); - -extern "C" void cvRawDataToScalar( const void* data, int type, CvScalar* scalar ); - - -extern "C" CvMatND* cvCreateMatNDHeader( int dims, const int* sizes, int type ); - - -extern "C" CvMatND* cvCreateMatND( int dims, const int* sizes, int type ); - - -extern "C" CvMatND* cvInitMatNDHeader( CvMatND* mat, int dims, const int* sizes, - int type, void* data = NULL ); - - -inline void cvReleaseMatND( CvMatND** mat ) -{ - cvReleaseMat( (CvMat**)mat ); -} - - -extern "C" CvMatND* cvCloneMatND( const CvMatND* mat ); - - -extern "C" CvSparseMat* cvCreateSparseMat( int dims, const int* sizes, int type ); - - -extern "C" void cvReleaseSparseMat( CvSparseMat** mat ); - - -extern "C" CvSparseMat* cvCloneSparseMat( const CvSparseMat* mat ); - - - -extern "C" CvSparseNode* cvInitSparseMatIterator( const CvSparseMat* mat, - CvSparseMatIterator* mat_iterator ); - - -inline CvSparseNode* cvGetNextSparseNode( CvSparseMatIterator* mat_iterator ) -{ - if( mat_iterator->node->next ) - return mat_iterator->node = mat_iterator->node->next; - else - { - int idx; - for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ ) - { - CvSparseNode* node = (CvSparseNode*)mat_iterator->mat->hashtable[idx]; - if( node ) - { - mat_iterator->curidx = idx; - return mat_iterator->node = node; - } - } - return NULL; - } -} - - - - - -typedef struct CvNArrayIterator -{ - int count; - int dims; - CvSize size; - uchar* ptr[10]; - int stack[32]; - CvMatND* hdr[10]; - -} -CvNArrayIterator; -# 313 "../../../include/opencv/cxcore.h" -extern "C" int cvInitNArrayIterator( int count, CvArr** arrs, - const CvArr* mask, CvMatND* stubs, - CvNArrayIterator* array_iterator, - int flags = 0 ); - - -extern "C" int cvNextNArraySlice( CvNArrayIterator* array_iterator ); - - - - -extern "C" int cvGetElemType( const CvArr* arr ); - - - -extern "C" int cvGetDims( const CvArr* arr, int* sizes = NULL ); - - - - - -extern "C" int cvGetDimSize( const CvArr* arr, int index ); - - - - -extern "C" uchar* cvPtr1D( const CvArr* arr, int idx0, int* type = NULL); -extern "C" uchar* cvPtr2D( const CvArr* arr, int idx0, int idx1, int* type = NULL ); -extern "C" uchar* cvPtr3D( const CvArr* arr, int idx0, int idx1, int idx2, - int* type = NULL); - - - - - -extern "C" uchar* cvPtrND( const CvArr* arr, const int* idx, int* type = NULL, - int create_node = 1, - unsigned* precalc_hashval = NULL); - - -extern "C" CvScalar cvGet1D( const CvArr* arr, int idx0 ); -extern "C" CvScalar cvGet2D( const CvArr* arr, int idx0, int idx1 ); -extern "C" CvScalar cvGet3D( const CvArr* arr, int idx0, int idx1, int idx2 ); -extern "C" CvScalar cvGetND( const CvArr* arr, const int* idx ); - - -extern "C" double cvGetReal1D( const CvArr* arr, int idx0 ); -extern "C" double cvGetReal2D( const CvArr* arr, int idx0, int idx1 ); -extern "C" double cvGetReal3D( const CvArr* arr, int idx0, int idx1, int idx2 ); -extern "C" double cvGetRealND( const CvArr* arr, const int* idx ); - - -extern "C" void cvSet1D( CvArr* arr, int idx0, CvScalar value ); -extern "C" void cvSet2D( CvArr* arr, int idx0, int idx1, CvScalar value ); -extern "C" void cvSet3D( CvArr* arr, int idx0, int idx1, int idx2, CvScalar value ); -extern "C" void cvSetND( CvArr* arr, const int* idx, CvScalar value ); - - -extern "C" void cvSetReal1D( CvArr* arr, int idx0, double value ); -extern "C" void cvSetReal2D( CvArr* arr, int idx0, int idx1, double value ); -extern "C" void cvSetReal3D( CvArr* arr, int idx0, - int idx1, int idx2, double value ); -extern "C" void cvSetRealND( CvArr* arr, const int* idx, double value ); - - - -extern "C" void cvClearND( CvArr* arr, const int* idx ); - - - - - - -extern "C" CvMat* cvGetMat( const CvArr* arr, CvMat* header, - int* coi = NULL, - int allowND = 0); - - -extern "C" IplImage* cvGetImage( const CvArr* arr, IplImage* image_header ); -# 404 "../../../include/opencv/cxcore.h" -extern "C" CvArr* cvReshapeMatND( const CvArr* arr, - int sizeof_header, CvArr* header, - int new_cn, int new_dims, int* new_sizes ); - - - - - -extern "C" CvMat* cvReshape( const CvArr* arr, CvMat* header, - int new_cn, int new_rows = 0 ); - - - -extern "C" void cvRepeat( const CvArr* src, CvArr* dst ); - - -extern "C" void cvCreateData( CvArr* arr ); - - -extern "C" void cvReleaseData( CvArr* arr ); - - - - -extern "C" void cvSetData( CvArr* arr, void* data, int step ); - - - - -extern "C" void cvGetRawData( const CvArr* arr, uchar** data, - int* step = NULL, - CvSize* roi_size = NULL); - - -extern "C" CvSize cvGetSize( const CvArr* arr ); - - -extern "C" void cvCopy( const CvArr* src, CvArr* dst, - const CvArr* mask = NULL ); - - - -extern "C" void cvSet( CvArr* arr, CvScalar value, - const CvArr* mask = NULL ); - - -extern "C" void cvSetZero( CvArr* arr ); - - - - - -extern "C" void cvSplit( const CvArr* src, CvArr* dst0, CvArr* dst1, - CvArr* dst2, CvArr* dst3 ); - - - -extern "C" void cvMerge( const CvArr* src0, const CvArr* src1, - const CvArr* src2, const CvArr* src3, - CvArr* dst ); - - - -extern "C" void cvMixChannels( const CvArr** src, int src_count, - CvArr** dst, int dst_count, - const int* from_to, int pair_count ); - - - - - - -extern "C" void cvConvertScale( const CvArr* src, CvArr* dst, - double scale = 1, - double shift = 0 ); -# 489 "../../../include/opencv/cxcore.h" -extern "C" void cvConvertScaleAbs( const CvArr* src, CvArr* dst, - double scale = 1, - double shift = 0 ); - - - - - - - -extern "C" CvTermCriteria cvCheckTermCriteria( CvTermCriteria criteria, - double default_eps, - int default_max_iters ); - - - - - - -extern "C" void cvAdd( const CvArr* src1, const CvArr* src2, CvArr* dst, - const CvArr* mask = NULL); - - -extern "C" void cvAddS( const CvArr* src, CvScalar value, CvArr* dst, - const CvArr* mask = NULL); - - -extern "C" void cvSub( const CvArr* src1, const CvArr* src2, CvArr* dst, - const CvArr* mask = NULL); - - -inline void cvSubS( const CvArr* src, CvScalar value, CvArr* dst, - const CvArr* mask = NULL) -{ - cvAddS( src, cvScalar( -value.val[0], -value.val[1], -value.val[2], -value.val[3]), - dst, mask ); -} - - -extern "C" void cvSubRS( const CvArr* src, CvScalar value, CvArr* dst, - const CvArr* mask = NULL); - - - -extern "C" void cvMul( const CvArr* src1, const CvArr* src2, - CvArr* dst, double scale = 1 ); - - - - -extern "C" void cvDiv( const CvArr* src1, const CvArr* src2, - CvArr* dst, double scale = 1); - - -extern "C" void cvScaleAdd( const CvArr* src1, CvScalar scale, - const CvArr* src2, CvArr* dst ); - - - -extern "C" void cvAddWeighted( const CvArr* src1, double alpha, - const CvArr* src2, double beta, - double gamma, CvArr* dst ); - - -extern "C" double cvDotProduct( const CvArr* src1, const CvArr* src2 ); - - -extern "C" void cvAnd( const CvArr* src1, const CvArr* src2, - CvArr* dst, const CvArr* mask = NULL); - - -extern "C" void cvAndS( const CvArr* src, CvScalar value, - CvArr* dst, const CvArr* mask = NULL); - - -extern "C" void cvOr( const CvArr* src1, const CvArr* src2, - CvArr* dst, const CvArr* mask = NULL); - - -extern "C" void cvOrS( const CvArr* src, CvScalar value, - CvArr* dst, const CvArr* mask = NULL); - - -extern "C" void cvXor( const CvArr* src1, const CvArr* src2, - CvArr* dst, const CvArr* mask = NULL); - - -extern "C" void cvXorS( const CvArr* src, CvScalar value, - CvArr* dst, const CvArr* mask = NULL); - - -extern "C" void cvNot( const CvArr* src, CvArr* dst ); - - -extern "C" void cvInRange( const CvArr* src, const CvArr* lower, - const CvArr* upper, CvArr* dst ); - - -extern "C" void cvInRangeS( const CvArr* src, CvScalar lower, - CvScalar upper, CvArr* dst ); -# 601 "../../../include/opencv/cxcore.h" -extern "C" void cvCmp( const CvArr* src1, const CvArr* src2, CvArr* dst, int cmp_op ); - - -extern "C" void cvCmpS( const CvArr* src, double value, CvArr* dst, int cmp_op ); - - -extern "C" void cvMin( const CvArr* src1, const CvArr* src2, CvArr* dst ); - - -extern "C" void cvMax( const CvArr* src1, const CvArr* src2, CvArr* dst ); - - -extern "C" void cvMinS( const CvArr* src, double value, CvArr* dst ); - - -extern "C" void cvMaxS( const CvArr* src, double value, CvArr* dst ); - - -extern "C" void cvAbsDiff( const CvArr* src1, const CvArr* src2, CvArr* dst ); - - -extern "C" void cvAbsDiffS( const CvArr* src, CvArr* dst, CvScalar value ); -# 631 "../../../include/opencv/cxcore.h" -extern "C" void cvCartToPolar( const CvArr* x, const CvArr* y, - CvArr* magnitude, CvArr* angle = NULL, - int angle_in_degrees = 0); - - - - -extern "C" void cvPolarToCart( const CvArr* magnitude, const CvArr* angle, - CvArr* x, CvArr* y, - int angle_in_degrees = 0); - - -extern "C" void cvPow( const CvArr* src, CvArr* dst, double power ); - - - - -extern "C" void cvExp( const CvArr* src, CvArr* dst ); - - - - - -extern "C" void cvLog( const CvArr* src, CvArr* dst ); - - -extern "C" float cvFastArctan( float y, float x ); - - -extern "C" float cvCbrt( float value ); - - - - - - - -extern "C" int cvCheckArr( const CvArr* arr, int flags = 0, - double min_val = 0, double max_val = 0); - - - - -extern "C" void cvRandArr( CvRNG* rng, CvArr* arr, int dist_type, - CvScalar param1, CvScalar param2 ); - -extern "C" void cvRandShuffle( CvArr* mat, CvRNG* rng, - double iter_factor = 1.); - - - - - - -extern "C" void cvSort( const CvArr* src, CvArr* dst = NULL, - CvArr* idxmat = NULL, - int flags = 0); - - -extern "C" int cvSolveCubic( const CvMat* coeffs, CvMat* roots ); - - -extern "C" void cvSolvePoly(const CvMat* coeffs, CvMat *roots2, - int maxiter = 20, int fig = 100); - - - - - - -extern "C" void cvCrossProduct( const CvArr* src1, const CvArr* src2, CvArr* dst ); -# 712 "../../../include/opencv/cxcore.h" -extern "C" void cvGEMM( const CvArr* src1, const CvArr* src2, double alpha, - const CvArr* src3, double beta, CvArr* dst, - int tABC = 0); - - - - -extern "C" void cvTransform( const CvArr* src, CvArr* dst, - const CvMat* transmat, - const CvMat* shiftvec = NULL); - - - -extern "C" void cvPerspectiveTransform( const CvArr* src, CvArr* dst, - const CvMat* mat ); - - -extern "C" void cvMulTransposed( const CvArr* src, CvArr* dst, int order, - const CvArr* delta = NULL, - double scale = 1. ); - - -extern "C" void cvTranspose( const CvArr* src, CvArr* dst ); - - - -extern "C" void cvCompleteSymm( CvMat* matrix, int LtoR = 0 ); - - - - -extern "C" void cvFlip( const CvArr* src, CvArr* dst = NULL, - int flip_mode = 0); -# 753 "../../../include/opencv/cxcore.h" -extern "C" void cvSVD( CvArr* A, CvArr* W, CvArr* U = NULL, - CvArr* V = NULL, int flags = 0); - - - -extern "C" void cvSVBkSb( const CvArr* W, const CvArr* U, - const CvArr* V, const CvArr* B, - CvArr* X, int flags ); -# 770 "../../../include/opencv/cxcore.h" -extern "C" double cvInvert( const CvArr* src, CvArr* dst, - int method = 0); - - - - -extern "C" int cvSolve( const CvArr* src1, const CvArr* src2, CvArr* dst, - int method = 0); - - -extern "C" double cvDet( const CvArr* mat ); - - -extern "C" CvScalar cvTrace( const CvArr* mat ); - - -extern "C" void cvEigenVV( CvArr* mat, CvArr* evects, CvArr* evals, - double eps = 0, - int lowindex = -1, - int highindex = -1); - - - - - - -extern "C" void cvSetIdentity( CvArr* mat, CvScalar value = cvRealScalar(1) ); - - -extern "C" CvArr* cvRange( CvArr* mat, double start, double end ); -# 821 "../../../include/opencv/cxcore.h" -extern "C" void cvCalcCovarMatrix( const CvArr** vects, int count, - CvArr* cov_mat, CvArr* avg, int flags ); - - - - -extern "C" void cvCalcPCA( const CvArr* data, CvArr* mean, - CvArr* eigenvals, CvArr* eigenvects, int flags ); - -extern "C" void cvProjectPCA( const CvArr* data, const CvArr* mean, - const CvArr* eigenvects, CvArr* result ); - -extern "C" void cvBackProjectPCA( const CvArr* proj, const CvArr* mean, - const CvArr* eigenvects, CvArr* result ); - - -extern "C" double cvMahalanobis( const CvArr* vec1, const CvArr* vec2, const CvArr* mat ); - - - - - - - -extern "C" CvScalar cvSum( const CvArr* arr ); - - -extern "C" int cvCountNonZero( const CvArr* arr ); - - -extern "C" CvScalar cvAvg( const CvArr* arr, const CvArr* mask = NULL ); - - -extern "C" void cvAvgSdv( const CvArr* arr, CvScalar* mean, CvScalar* std_dev, - const CvArr* mask = NULL ); - - -extern "C" void cvMinMaxLoc( const CvArr* arr, double* min_val, double* max_val, - CvPoint* min_loc = NULL, - CvPoint* max_loc = NULL, - const CvArr* mask = NULL ); -# 880 "../../../include/opencv/cxcore.h" -extern "C" double cvNorm( const CvArr* arr1, const CvArr* arr2 = NULL, - int norm_type = 4, - const CvArr* mask = NULL ); - -extern "C" void cvNormalize( const CvArr* src, CvArr* dst, - double a = 1., double b = 0., - int norm_type = 4, - const CvArr* mask = NULL ); - - - - - - - -extern "C" void cvReduce( const CvArr* src, CvArr* dst, int dim = -1, - int op = 0 ); -# 914 "../../../include/opencv/cxcore.h" -extern "C" void cvDFT( const CvArr* src, CvArr* dst, int flags, - int nonzero_rows = 0 ); - - - -extern "C" void cvMulSpectrums( const CvArr* src1, const CvArr* src2, - CvArr* dst, int flags ); - - -extern "C" int cvGetOptimalDFTSize( int size0 ); - - -extern "C" void cvDCT( const CvArr* src, CvArr* dst, int flags ); - - - - - - -extern "C" int cvSliceLength( CvSlice slice, const CvSeq* seq ); - - - - - -extern "C" CvMemStorage* cvCreateMemStorage( int block_size = 0); - - - -extern "C" CvMemStorage* cvCreateChildMemStorage( CvMemStorage* parent ); - - - - -extern "C" void cvReleaseMemStorage( CvMemStorage** storage ); - - - - - - -extern "C" void cvClearMemStorage( CvMemStorage* storage ); - - -extern "C" void cvSaveMemStoragePos( const CvMemStorage* storage, CvMemStoragePos* pos ); - - -extern "C" void cvRestoreMemStoragePos( CvMemStorage* storage, CvMemStoragePos* pos ); - - -extern "C" void* cvMemStorageAlloc( CvMemStorage* storage, size_t size ); - - -extern "C" CvString cvMemStorageAllocString( CvMemStorage* storage, const char* ptr, - int len = -1 ); - - -extern "C" CvSeq* cvCreateSeq( int seq_flags, int header_size, - int elem_size, CvMemStorage* storage ); - - - -extern "C" void cvSetSeqBlockSize( CvSeq* seq, int delta_elems ); - - - -extern "C" schar* cvSeqPush( CvSeq* seq, const void* element = NULL); - - - -extern "C" schar* cvSeqPushFront( CvSeq* seq, const void* element = NULL); - - - -extern "C" void cvSeqPop( CvSeq* seq, void* element = NULL); - - - -extern "C" void cvSeqPopFront( CvSeq* seq, void* element = NULL); - - - - - -extern "C" void cvSeqPushMulti( CvSeq* seq, const void* elements, - int count, int in_front = 0 ); - - -extern "C" void cvSeqPopMulti( CvSeq* seq, void* elements, - int count, int in_front = 0 ); - - - -extern "C" schar* cvSeqInsert( CvSeq* seq, int before_index, - const void* element = NULL); - - -extern "C" void cvSeqRemove( CvSeq* seq, int index ); - - - - - -extern "C" void cvClearSeq( CvSeq* seq ); - - - - - -extern "C" schar* cvGetSeqElem( const CvSeq* seq, int index ); - - - -extern "C" int cvSeqElemIdx( const CvSeq* seq, const void* element, - CvSeqBlock** block = NULL ); - - -extern "C" void cvStartAppendToSeq( CvSeq* seq, CvSeqWriter* writer ); - - - -extern "C" void cvStartWriteSeq( int seq_flags, int header_size, - int elem_size, CvMemStorage* storage, - CvSeqWriter* writer ); - - - - - -extern "C" CvSeq* cvEndWriteSeq( CvSeqWriter* writer ); - - - - -extern "C" void cvFlushSeqWriter( CvSeqWriter* writer ); - - - - -extern "C" void cvStartReadSeq( const CvSeq* seq, CvSeqReader* reader, - int reverse = 0 ); - - - -extern "C" int cvGetSeqReaderPos( CvSeqReader* reader ); - - - - -extern "C" void cvSetSeqReaderPos( CvSeqReader* reader, int index, - int is_relative = 0); - - -extern "C" void* cvCvtSeqToArray( const CvSeq* seq, void* elements, - CvSlice slice = cvSlice(0, 0x3fffffff) ); - - - - -extern "C" CvSeq* cvMakeSeqHeaderForArray( int seq_type, int header_size, - int elem_size, void* elements, int total, - CvSeq* seq, CvSeqBlock* block ); - - -extern "C" CvSeq* cvSeqSlice( const CvSeq* seq, CvSlice slice, - CvMemStorage* storage = NULL, - int copy_data = 0); - -inline CvSeq* cvCloneSeq( const CvSeq* seq, CvMemStorage* storage = NULL) -{ - return cvSeqSlice( seq, cvSlice(0, 0x3fffffff), storage, 1 ); -} - - -extern "C" void cvSeqRemoveSlice( CvSeq* seq, CvSlice slice ); - - -extern "C" void cvSeqInsertSlice( CvSeq* seq, int before_index, const CvArr* from_arr ); - - -typedef int (* CvCmpFunc)(const void* a, const void* b, void* userdata ); - - -extern "C" void cvSeqSort( CvSeq* seq, CvCmpFunc func, void* userdata = NULL ); - - -extern "C" schar* cvSeqSearch( CvSeq* seq, const void* elem, CvCmpFunc func, - int is_sorted, int* elem_idx, - void* userdata = NULL ); - - -extern "C" void cvSeqInvert( CvSeq* seq ); - - -extern "C" int cvSeqPartition( const CvSeq* seq, CvMemStorage* storage, - CvSeq** labels, CvCmpFunc is_equal, void* userdata ); - - -extern "C" void cvChangeSeqBlock( void* reader, int direction ); -extern "C" void cvCreateSeqBlock( CvSeqWriter* writer ); - - - -extern "C" CvSet* cvCreateSet( int set_flags, int header_size, - int elem_size, CvMemStorage* storage ); - - -extern "C" int cvSetAdd( CvSet* set_header, CvSetElem* elem = NULL, - CvSetElem** inserted_elem = NULL ); - - -inline CvSetElem* cvSetNew( CvSet* set_header ) -{ - CvSetElem* elem = set_header->free_elems; - if( elem ) - { - set_header->free_elems = elem->next_free; - elem->flags = elem->flags & ((1 << 26) - 1); - set_header->active_count++; - } - else - cvSetAdd( set_header, NULL, (CvSetElem**)&elem ); - return elem; -} - - -inline void cvSetRemoveByPtr( CvSet* set_header, void* elem ) -{ - CvSetElem* _elem = (CvSetElem*)elem; - assert( _elem->flags >= 0 ); - _elem->next_free = set_header->free_elems; - _elem->flags = (_elem->flags & ((1 << 26) - 1)) | (1 << (sizeof(int)*8-1)); - set_header->free_elems = _elem; - set_header->active_count--; -} - - -extern "C" void cvSetRemove( CvSet* set_header, int index ); - - - -inline CvSetElem* cvGetSetElem( const CvSet* set_header, int index ) -{ - CvSetElem* elem = (CvSetElem*)cvGetSeqElem( (CvSeq*)set_header, index ); - return elem && (((CvSetElem*)(elem))->flags >= 0) ? elem : 0; -} - - -extern "C" void cvClearSet( CvSet* set_header ); - - -extern "C" CvGraph* cvCreateGraph( int graph_flags, int header_size, - int vtx_size, int edge_size, - CvMemStorage* storage ); - - -extern "C" int cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* vtx = NULL, - CvGraphVtx** inserted_vtx = NULL ); - - - -extern "C" int cvGraphRemoveVtx( CvGraph* graph, int index ); -extern "C" int cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx ); - - - - - - -extern "C" int cvGraphAddEdge( CvGraph* graph, - int start_idx, int end_idx, - const CvGraphEdge* edge = NULL, - CvGraphEdge** inserted_edge = NULL ); - -extern "C" int cvGraphAddEdgeByPtr( CvGraph* graph, - CvGraphVtx* start_vtx, CvGraphVtx* end_vtx, - const CvGraphEdge* edge = NULL, - CvGraphEdge** inserted_edge = NULL ); - - -extern "C" void cvGraphRemoveEdge( CvGraph* graph, int start_idx, int end_idx ); -extern "C" void cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, - CvGraphVtx* end_vtx ); - - -extern "C" CvGraphEdge* cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx ); -extern "C" CvGraphEdge* cvFindGraphEdgeByPtr( const CvGraph* graph, - const CvGraphVtx* start_vtx, - const CvGraphVtx* end_vtx ); - - - - -extern "C" void cvClearGraph( CvGraph* graph ); - - - -extern "C" int cvGraphVtxDegree( const CvGraph* graph, int vtx_idx ); -extern "C" int cvGraphVtxDegreeByPtr( const CvGraph* graph, const CvGraphVtx* vtx ); -# 1248 "../../../include/opencv/cxcore.h" -typedef struct CvGraphScanner -{ - CvGraphVtx* vtx; - CvGraphVtx* dst; - CvGraphEdge* edge; - - CvGraph* graph; - CvSeq* stack; - int index; - int mask; -} -CvGraphScanner; - - -extern "C" CvGraphScanner* cvCreateGraphScanner( CvGraph* graph, - CvGraphVtx* vtx = NULL, - int mask = -1); - - -extern "C" void cvReleaseGraphScanner( CvGraphScanner** scanner ); - - -extern "C" int cvNextGraphItem( CvGraphScanner* scanner ); - - -extern "C" CvGraph* cvCloneGraph( const CvGraph* graph, CvMemStorage* storage ); -# 1295 "../../../include/opencv/cxcore.h" -extern "C" void cvLine( CvArr* img, CvPoint pt1, CvPoint pt2, - CvScalar color, int thickness = 1, - int line_type = 8, int shift = 0 ); - - - -extern "C" void cvRectangle( CvArr* img, CvPoint pt1, CvPoint pt2, - CvScalar color, int thickness = 1, - int line_type = 8, - int shift = 0); - - - -extern "C" void cvCircle( CvArr* img, CvPoint center, int radius, - CvScalar color, int thickness = 1, - int line_type = 8, int shift = 0); - - - - -extern "C" void cvEllipse( CvArr* img, CvPoint center, CvSize axes, - double angle, double start_angle, double end_angle, - CvScalar color, int thickness = 1, - int line_type = 8, int shift = 0); - -inline void cvEllipseBox( CvArr* img, CvBox2D box, CvScalar color, - int thickness = 1, - int line_type = 8, int shift = 0 ) -{ - CvSize axes; - axes.width = cvRound(box.size.height*0.5); - axes.height = cvRound(box.size.width*0.5); - - cvEllipse( img, cvPointFrom32f( box.center ), axes, box.angle, - 0, 360, color, thickness, line_type, shift ); -} - - -extern "C" void cvFillConvexPoly( CvArr* img, const CvPoint* pts, int npts, CvScalar color, - int line_type = 8, int shift = 0); - - -extern "C" void cvFillPoly( CvArr* img, CvPoint** pts, const int* npts, - int contours, CvScalar color, - int line_type = 8, int shift = 0 ); - - -extern "C" void cvPolyLine( CvArr* img, CvPoint** pts, const int* npts, int contours, - int is_closed, CvScalar color, int thickness = 1, - int line_type = 8, int shift = 0 ); -# 1355 "../../../include/opencv/cxcore.h" -extern "C" int cvClipLine( CvSize img_size, CvPoint* pt1, CvPoint* pt2 ); - - - - -extern "C" int cvInitLineIterator( const CvArr* image, CvPoint pt1, CvPoint pt2, - CvLineIterator* line_iterator, - int connectivity = 8, - int left_to_right = 0); -# 1392 "../../../include/opencv/cxcore.h" -typedef struct CvFont -{ - int font_face; - const int* ascii; - const int* greek; - const int* cyrillic; - float hscale, vscale; - float shear; - int thickness; - float dx; - int line_type; -} -CvFont; - - -extern "C" void cvInitFont( CvFont* font, int font_face, - double hscale, double vscale, - double shear = 0, - int thickness = 1, - int line_type = 8); - -inline CvFont cvFont( double scale, int thickness = 1 ) -{ - CvFont font; - cvInitFont( &font, 1, scale, scale, 0, thickness, 16 ); - return font; -} - - - -extern "C" void cvPutText( CvArr* img, const char* text, CvPoint org, - const CvFont* font, CvScalar color ); - - -extern "C" void cvGetTextSize( const char* text_string, const CvFont* font, - CvSize* text_size, int* baseline ); - - - - -extern "C" CvScalar cvColorToScalar( double packed_color, int arrtype ); - - - - - - - -extern "C" int cvEllipse2Poly( CvPoint center, CvSize axes, - int angle, int arc_start, int arc_end, CvPoint * pts, int delta ); - - -extern "C" void cvDrawContours( CvArr *img, CvSeq* contour, - CvScalar external_color, CvScalar hole_color, - int max_level, int thickness = 1, - int line_type = 8, - CvPoint offset = cvPoint(0,0)); - - - -extern "C" void cvLUT( const CvArr* src, CvArr* dst, const CvArr* lut ); - - - -typedef struct CvTreeNodeIterator -{ - const void* node; - int level; - int max_level; -} -CvTreeNodeIterator; - -extern "C" void cvInitTreeNodeIterator( CvTreeNodeIterator* tree_iterator, - const void* first, int max_level ); -extern "C" void* cvNextTreeNode( CvTreeNodeIterator* tree_iterator ); -extern "C" void* cvPrevTreeNode( CvTreeNodeIterator* tree_iterator ); - - - - -extern "C" void cvInsertNodeIntoTree( void* node, void* parent, void* frame ); - - -extern "C" void cvRemoveNodeFromTree( void* node, void* frame ); - - - -extern "C" CvSeq* cvTreeToNodeSeq( const void* first, int header_size, - CvMemStorage* storage ); - - - - -extern "C" int cvKMeans2( const CvArr* samples, int cluster_count, CvArr* labels, - CvTermCriteria termcrit, int attempts = 1, - CvRNG* rng = 0, int flags = 0, - CvArr* _centers = 0, double* compactness = 0 ); - - - - - - -extern "C" int cvRegisterModule( const CvModuleInfo* module_info ); - - -extern "C" int cvUseOptimized( int on_off ); - - -extern "C" void cvGetModuleInfo( const char* module_name, - const char** version, - const char** loaded_addon_plugins ); - - -extern "C" int cvGetErrStatus( void ); - - -extern "C" void cvSetErrStatus( int status ); - - - - - - -extern "C" int cvGetErrMode( void ); - - -extern "C" int cvSetErrMode( int mode ); - - - - -extern "C" void cvError( int status, const char* func_name, - const char* err_msg, const char* file_name, int line ); - - -extern "C" const char* cvErrorStr( int status ); - - -extern "C" int cvGetErrInfo( const char** errcode_desc, const char** description, - const char** filename, int* line ); - - -extern "C" int cvErrorFromIppStatus( int ipp_status ); - -typedef int ( *CvErrorCallback)( int status, const char* func_name, - const char* err_msg, const char* file_name, int line, void* userdata ); - - -extern "C" CvErrorCallback cvRedirectError( CvErrorCallback error_handler, - void* userdata = NULL, - void** prev_userdata = NULL ); - - - - - - - -extern "C" int cvNulDevReport( int status, const char* func_name, const char* err_msg, - const char* file_name, int line, void* userdata ); - -extern "C" int cvStdErrReport( int status, const char* func_name, const char* err_msg, - const char* file_name, int line, void* userdata ); - -extern "C" int cvGuiBoxReport( int status, const char* func_name, const char* err_msg, - const char* file_name, int line, void* userdata ); - -typedef void* ( *CvAllocFunc)(size_t size, void* userdata); -typedef int ( *CvFreeFunc)(void* pptr, void* userdata); - - - -extern "C" void cvSetMemoryManager( CvAllocFunc alloc_func = NULL, - CvFreeFunc free_func = NULL, - void* userdata = NULL); - - -typedef IplImage* (* Cv_iplCreateImageHeader) - (int,int,int,char*,char*,int,int,int,int,int, - IplROI*,IplImage*,void*,IplTileInfo*); -typedef void (* Cv_iplAllocateImageData)(IplImage*,int,int); -typedef void (* Cv_iplDeallocate)(IplImage*,int); -typedef IplROI* (* Cv_iplCreateROI)(int,int,int,int,int); -typedef IplImage* (* Cv_iplCloneImage)(const IplImage*); - - -extern "C" void cvSetIPLAllocators( Cv_iplCreateImageHeader create_header, - Cv_iplAllocateImageData allocate_data, - Cv_iplDeallocate deallocate, - Cv_iplCreateROI create_roi, - Cv_iplCloneImage clone_image ); -# 1596 "../../../include/opencv/cxcore.h" -extern "C" CvFileStorage* cvOpenFileStorage( const char* filename, - CvMemStorage* memstorage, - int flags ); - - -extern "C" void cvReleaseFileStorage( CvFileStorage** fs ); - - -extern "C" const char* cvAttrValue( const CvAttrList* attr, const char* attr_name ); - - -extern "C" void cvStartWriteStruct( CvFileStorage* fs, const char* name, - int struct_flags, const char* type_name = NULL, - CvAttrList attributes = cvAttrList()); - - -extern "C" void cvEndWriteStruct( CvFileStorage* fs ); - - -extern "C" void cvWriteInt( CvFileStorage* fs, const char* name, int value ); - - -extern "C" void cvWriteReal( CvFileStorage* fs, const char* name, double value ); - - -extern "C" void cvWriteString( CvFileStorage* fs, const char* name, - const char* str, int quote = 0 ); - - -extern "C" void cvWriteComment( CvFileStorage* fs, const char* comment, - int eol_comment ); - - - -extern "C" void cvWrite( CvFileStorage* fs, const char* name, const void* ptr, - CvAttrList attributes = cvAttrList()); - - -extern "C" void cvStartNextStream( CvFileStorage* fs ); - - -extern "C" void cvWriteRawData( CvFileStorage* fs, const void* src, - int len, const char* dt ); - - - -extern "C" CvStringHashNode* cvGetHashedKey( CvFileStorage* fs, const char* name, - int len = -1, - int create_missing = 0); - - - -extern "C" CvFileNode* cvGetRootFileNode( const CvFileStorage* fs, - int stream_index = 0 ); - - - -extern "C" CvFileNode* cvGetFileNode( CvFileStorage* fs, CvFileNode* map, - const CvStringHashNode* key, - int create_missing = 0 ); - - -extern "C" CvFileNode* cvGetFileNodeByName( const CvFileStorage* fs, - const CvFileNode* map, - const char* name ); - -inline int cvReadInt( const CvFileNode* node, int default_value = 0 ) -{ - return !node ? default_value : - (((node->tag) & 7) == 1) ? node->data.i : - (((node->tag) & 7) == 2) ? cvRound(node->data.f) : 0x7fffffff; -} - - -inline int cvReadIntByName( const CvFileStorage* fs, const CvFileNode* map, - const char* name, int default_value = 0 ) -{ - return cvReadInt( cvGetFileNodeByName( fs, map, name ), default_value ); -} - - -inline double cvReadReal( const CvFileNode* node, double default_value = 0. ) -{ - return !node ? default_value : - (((node->tag) & 7) == 1) ? (double)node->data.i : - (((node->tag) & 7) == 2) ? node->data.f : 1e300; -} - - -inline double cvReadRealByName( const CvFileStorage* fs, const CvFileNode* map, - const char* name, double default_value = 0. ) -{ - return cvReadReal( cvGetFileNodeByName( fs, map, name ), default_value ); -} - - -inline const char* cvReadString( const CvFileNode* node, - const char* default_value = NULL ) -{ - return !node ? default_value : (((node->tag) & 7) == 3) ? node->data.str.ptr : 0; -} - - -inline const char* cvReadStringByName( const CvFileStorage* fs, const CvFileNode* map, - const char* name, const char* default_value = NULL ) -{ - return cvReadString( cvGetFileNodeByName( fs, map, name ), default_value ); -} - - - -extern "C" void* cvRead( CvFileStorage* fs, CvFileNode* node, - CvAttrList* attributes = NULL); - - -inline void* cvReadByName( CvFileStorage* fs, const CvFileNode* map, - const char* name, CvAttrList* attributes = NULL ) -{ - return cvRead( fs, cvGetFileNodeByName( fs, map, name ), attributes ); -} - - - -extern "C" void cvStartReadRawData( const CvFileStorage* fs, const CvFileNode* src, - CvSeqReader* reader ); - - -extern "C" void cvReadRawDataSlice( const CvFileStorage* fs, CvSeqReader* reader, - int count, void* dst, const char* dt ); - - -extern "C" void cvReadRawData( const CvFileStorage* fs, const CvFileNode* src, - void* dst, const char* dt ); - - -extern "C" void cvWriteFileNode( CvFileStorage* fs, const char* new_node_name, - const CvFileNode* node, int embed ); - - -extern "C" const char* cvGetFileNodeName( const CvFileNode* node ); - - - -extern "C" void cvRegisterType( const CvTypeInfo* info ); -extern "C" void cvUnregisterType( const char* type_name ); -extern "C" CvTypeInfo* cvFirstType(void); -extern "C" CvTypeInfo* cvFindType( const char* type_name ); -extern "C" CvTypeInfo* cvTypeOf( const void* struct_ptr ); - - -extern "C" void cvRelease( void** struct_ptr ); -extern "C" void* cvClone( const void* struct_ptr ); - - -extern "C" void cvSave( const char* filename, const void* struct_ptr, - const char* name = NULL, - const char* comment = NULL, - CvAttrList attributes = cvAttrList()); -extern "C" void* cvLoad( const char* filename, - CvMemStorage* memstorage = NULL, - const char* name = NULL, - const char** real_name = NULL ); - - - - - -extern "C" int64 cvGetTickCount( void ); -extern "C" double cvGetTickFrequency( void ); - - - - -extern "C" int cvGetNumThreads( void ); -extern "C" void cvSetNumThreads( int threads = 0 ); - -extern "C" int cvGetThreadNum( void ); - -} - -struct CvModule -{ - CvModule( CvModuleInfo* _info ); - ~CvModule(); - CvModuleInfo* info; - - static CvModuleInfo* first; - static CvModuleInfo* last; -}; - -struct CvType -{ - CvType( const char* type_name, - CvIsInstanceFunc is_instance, CvReleaseFunc release=0, - CvReadFunc read=0, CvWriteFunc write=0, CvCloneFunc clone=0 ); - ~CvType(); - CvTypeInfo* info; - - static CvTypeInfo* first; - static CvTypeInfo* last; -}; -# 59 "../../../include/opencv/cv.h" 2 -# 1 "../../../include/opencv/cvtypes.h" 1 -# 51 "../../../include/opencv/cvtypes.h" -typedef struct CvMoments -{ - double m00, m10, m01, m20, m11, m02, m30, m21, m12, m03; - double mu20, mu11, mu02, mu30, mu21, mu12, mu03; - double inv_sqrt_m00; -} -CvMoments; - - -typedef struct CvHuMoments -{ - double hu1, hu2, hu3, hu4, hu5, hu6, hu7; -} -CvHuMoments; - - - -typedef struct CvConnectedComp -{ - double area; - CvScalar value; - CvRect rect; - CvSeq* contour; - -} -CvConnectedComp; - - - - - -typedef struct _CvContourScanner* CvContourScanner; -# 99 "../../../include/opencv/cvtypes.h" -typedef struct CvChainPtReader -{ - int header_size; CvSeq* seq; CvSeqBlock* block; schar* ptr; schar* block_min; schar* block_max; int delta_index; schar* prev_elem; - char code; - CvPoint pt; - schar deltas[8][2]; -} -CvChainPtReader; -# 116 "../../../include/opencv/cvtypes.h" -typedef struct CvContourTree -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; - CvPoint p1; - CvPoint p2; -} -CvContourTree; - - -typedef struct CvConvexityDefect -{ - CvPoint* start; - CvPoint* end; - CvPoint* depth_point; - float depth; -} -CvConvexityDefect; - - - -typedef size_t CvSubdiv2DEdge; -# 150 "../../../include/opencv/cvtypes.h" -typedef struct CvQuadEdge2D -{ - int flags; struct CvSubdiv2DPoint* pt[4]; CvSubdiv2DEdge next[4]; -} -CvQuadEdge2D; - -typedef struct CvSubdiv2DPoint -{ - int flags; CvSubdiv2DEdge first; CvPoint2D32f pt; -} -CvSubdiv2DPoint; -# 170 "../../../include/opencv/cvtypes.h" -typedef struct CvSubdiv2D -{ - int flags; int header_size; struct CvSeq* h_prev; struct CvSeq* h_next; struct CvSeq* v_prev; struct CvSeq* v_next; int total; int elem_size; schar* block_max; schar* ptr; int delta_elems; CvMemStorage* storage; CvSeqBlock* free_blocks; CvSeqBlock* first; CvSetElem* free_elems; int active_count; CvSet* edges; int quad_edges; int is_geometry_valid; CvSubdiv2DEdge recent_edge; CvPoint2D32f topleft; CvPoint2D32f bottomright; -} -CvSubdiv2D; - - -typedef enum CvSubdiv2DPointLocation -{ - CV_PTLOC_ERROR = -2, - CV_PTLOC_OUTSIDE_RECT = -1, - CV_PTLOC_INSIDE = 0, - CV_PTLOC_VERTEX = 1, - CV_PTLOC_ON_EDGE = 2 -} -CvSubdiv2DPointLocation; - -typedef enum CvNextEdgeType -{ - CV_NEXT_AROUND_ORG = 0x00, - CV_NEXT_AROUND_DST = 0x22, - CV_PREV_AROUND_ORG = 0x11, - CV_PREV_AROUND_DST = 0x33, - CV_NEXT_AROUND_LEFT = 0x13, - CV_NEXT_AROUND_RIGHT = 0x31, - CV_PREV_AROUND_LEFT = 0x20, - CV_PREV_AROUND_RIGHT = 0x02 -} -CvNextEdgeType; -# 216 "../../../include/opencv/cvtypes.h" -typedef enum CvFilter -{ - CV_GAUSSIAN_5x5 = 7 -} -CvFilter; - - - - - -typedef float* CvVect32f; -typedef float* CvMatr32f; -typedef double* CvVect64d; -typedef double* CvMatr64d; - -typedef struct CvMatrix3 -{ - float m[3][3]; -} -CvMatrix3; - - - -extern "C" { - - -typedef float ( * CvDistanceFunction)( const float* a, const float* b, void* user_param ); - - -} - - -typedef struct CvKalman -{ - int MP; - int DP; - int CP; - - - - float* PosterState; - float* PriorState; - float* DynamMatr; - float* MeasurementMatr; - float* MNCovariance; - float* PNCovariance; - float* KalmGainMatr; - float* PriorErrorCovariance; - float* PosterErrorCovariance; - float* Temp1; - float* Temp2; - - - CvMat* state_pre; - - CvMat* state_post; - - CvMat* transition_matrix; - CvMat* control_matrix; - - CvMat* measurement_matrix; - CvMat* process_noise_cov; - CvMat* measurement_noise_cov; - CvMat* error_cov_pre; - - CvMat* gain; - - CvMat* error_cov_post; - - CvMat* temp1; - CvMat* temp2; - CvMat* temp3; - CvMat* temp4; - CvMat* temp5; -} -CvKalman; -# 327 "../../../include/opencv/cvtypes.h" -typedef struct CvHaarFeature -{ - int tilted; - struct - { - CvRect r; - float weight; - } rect[3]; -} -CvHaarFeature; - -typedef struct CvHaarClassifier -{ - int count; - CvHaarFeature* haar_feature; - float* threshold; - int* left; - int* right; - float* alpha; -} -CvHaarClassifier; - -typedef struct CvHaarStageClassifier -{ - int count; - float threshold; - CvHaarClassifier* classifier; - - int next; - int child; - int parent; -} -CvHaarStageClassifier; - -typedef struct CvHidHaarClassifierCascade CvHidHaarClassifierCascade; - -typedef struct CvHaarClassifierCascade -{ - int flags; - int count; - CvSize orig_window_size; - CvSize real_window_size; - double scale; - CvHaarStageClassifier* stage_classifier; - CvHidHaarClassifierCascade* hid_cascade; -} -CvHaarClassifierCascade; - -typedef struct CvAvgComp -{ - CvRect rect; - int neighbors; -} -CvAvgComp; - -struct CvFeatureTree; -# 60 "../../../include/opencv/cv.h" 2 - - -extern "C" { -# 71 "../../../include/opencv/cv.h" -extern "C" void cvCopyMakeBorder( const CvArr* src, CvArr* dst, CvPoint offset, - int bordertype, CvScalar value = cvScalarAll(0)); -# 81 "../../../include/opencv/cv.h" -extern "C" void cvSmooth( const CvArr* src, CvArr* dst, - int smoothtype = 2, - int size1 = 3, - int size2 = 0, - double sigma1 = 0, - double sigma2 = 0); - - -extern "C" void cvFilter2D( const CvArr* src, CvArr* dst, const CvMat* kernel, - CvPoint anchor = cvPoint(-1,-1)); - - -extern "C" void cvIntegral( const CvArr* image, CvArr* sum, - CvArr* sqsum = NULL, - CvArr* tilted_sum = NULL); - - - - - - -extern "C" void cvPyrDown( const CvArr* src, CvArr* dst, - int filter = CV_GAUSSIAN_5x5 ); - - - - - - -extern "C" void cvPyrUp( const CvArr* src, CvArr* dst, - int filter = CV_GAUSSIAN_5x5 ); - - -extern "C" CvMat** cvCreatePyramid( const CvArr* img, int extra_layers, double rate, - const CvSize* layer_sizes = 0, - CvArr* bufarr = 0, - int calc = 1, - int filter = CV_GAUSSIAN_5x5 ); - - -extern "C" void cvReleasePyramid( CvMat*** pyramid, int extra_layers ); - - - - - - -extern "C" void cvPyrSegmentation( IplImage* src, IplImage* dst, - CvMemStorage* storage, CvSeq** comp, - int level, double threshold1, - double threshold2 ); - - -extern "C" void cvPyrMeanShiftFiltering( const CvArr* src, CvArr* dst, - double sp, double sr, int max_level = 1, - CvTermCriteria termcrit = cvTermCriteria(1 +2,5,1)); - - -extern "C" void cvWatershed( const CvArr* image, CvArr* markers ); - - - - - -extern "C" void cvInpaint( const CvArr* src, const CvArr* inpaint_mask, - CvArr* dst, double inpaintRange, int flags ); - - - - - - - -extern "C" void cvSobel( const CvArr* src, CvArr* dst, - int xorder, int yorder, - int aperture_size = 3); - - -extern "C" void cvLaplace( const CvArr* src, CvArr* dst, - int aperture_size = 3 ); -# 258 "../../../include/opencv/cv.h" -extern "C" void cvCvtColor( const CvArr* src, CvArr* dst, int code ); -# 269 "../../../include/opencv/cv.h" -extern "C" void cvResize( const CvArr* src, CvArr* dst, - int interpolation = 1); - - -extern "C" void cvWarpAffine( const CvArr* src, CvArr* dst, const CvMat* map_matrix, - int flags = 1 +8, - CvScalar fillval = cvScalarAll(0) ); - - -extern "C" CvMat* cvGetAffineTransform( const CvPoint2D32f * src, - const CvPoint2D32f * dst, - CvMat * map_matrix ); - - -extern "C" CvMat* cv2DRotationMatrix( CvPoint2D32f center, double angle, - double scale, CvMat* map_matrix ); - - -extern "C" void cvWarpPerspective( const CvArr* src, CvArr* dst, const CvMat* map_matrix, - int flags = 1 +8, - CvScalar fillval = cvScalarAll(0) ); - - -extern "C" CvMat* cvGetPerspectiveTransform( const CvPoint2D32f* src, - const CvPoint2D32f* dst, - CvMat* map_matrix ); - - -extern "C" void cvRemap( const CvArr* src, CvArr* dst, - const CvArr* mapx, const CvArr* mapy, - int flags = 1 +8, - CvScalar fillval = cvScalarAll(0) ); - - -extern "C" void cvConvertMaps( const CvArr* mapx, const CvArr* mapy, - CvArr* mapxy, CvArr* mapalpha ); - - -extern "C" void cvLogPolar( const CvArr* src, CvArr* dst, - CvPoint2D32f center, double M, - int flags = 1 +8); - - -extern "C" void cvLinearPolar( const CvArr* src, CvArr* dst, - CvPoint2D32f center, double maxRadius, - int flags = 1 +8); - - - - - - - -extern "C" IplConvKernel* cvCreateStructuringElementEx( - int cols, int rows, int anchor_x, int anchor_y, - int shape, int* values = NULL ); - - -extern "C" void cvReleaseStructuringElement( IplConvKernel** element ); - - - -extern "C" void cvErode( const CvArr* src, CvArr* dst, - IplConvKernel* element = NULL, - int iterations = 1 ); - - - -extern "C" void cvDilate( const CvArr* src, CvArr* dst, - IplConvKernel* element = NULL, - int iterations = 1 ); -# 348 "../../../include/opencv/cv.h" -extern "C" void cvMorphologyEx( const CvArr* src, CvArr* dst, - CvArr* temp, IplConvKernel* element, - int operation, int iterations = 1 ); - - -extern "C" void cvMoments( const CvArr* arr, CvMoments* moments, int binary = 0); - - -extern "C" double cvGetSpatialMoment( CvMoments* moments, int x_order, int y_order ); -extern "C" double cvGetCentralMoment( CvMoments* moments, int x_order, int y_order ); -extern "C" double cvGetNormalizedCentralMoment( CvMoments* moments, - int x_order, int y_order ); - - -extern "C" void cvGetHuMoments( CvMoments* moments, CvHuMoments* hu_moments ); - - - - - -extern "C" int cvSampleLine( const CvArr* image, CvPoint pt1, CvPoint pt2, void* buffer, - int connectivity = 8); - - - - -extern "C" void cvGetRectSubPix( const CvArr* src, CvArr* dst, CvPoint2D32f center ); - - - - - - - -extern "C" void cvGetQuadrangleSubPix( const CvArr* src, CvArr* dst, - const CvMat* map_matrix ); -# 395 "../../../include/opencv/cv.h" -extern "C" void cvMatchTemplate( const CvArr* image, const CvArr* templ, - CvArr* result, int method ); - - - -extern "C" float cvCalcEMD2( const CvArr* signature1, - const CvArr* signature2, - int distance_type, - CvDistanceFunction distance_func = NULL, - const CvArr* cost_matrix = NULL, - CvArr* flow = NULL, - float* lower_bound = NULL, - void* userdata = NULL); - - - - - - - -extern "C" int cvFindContours( CvArr* image, CvMemStorage* storage, CvSeq** first_contour, - int header_size = sizeof(CvContour), - int mode = 1, - int method = 2, - CvPoint offset = cvPoint(0,0)); - - - - - - - -extern "C" CvContourScanner cvStartFindContours( CvArr* image, CvMemStorage* storage, - int header_size = sizeof(CvContour), - int mode = 1, - int method = 2, - CvPoint offset = cvPoint(0,0)); - - -extern "C" CvSeq* cvFindNextContour( CvContourScanner scanner ); - - - - -extern "C" void cvSubstituteContour( CvContourScanner scanner, CvSeq* new_contour ); - - - -extern "C" CvSeq* cvEndFindContours( CvContourScanner* scanner ); - - -extern "C" CvSeq* cvApproxChains( CvSeq* src_seq, CvMemStorage* storage, - int method = 2, - double parameter = 0, - int minimal_perimeter = 0, - int recursive = 0); - - - - - -extern "C" void cvStartReadChainPoints( CvChain* chain, CvChainPtReader* reader ); - - -extern "C" CvPoint cvReadChainPoint( CvChainPtReader* reader ); -# 469 "../../../include/opencv/cv.h" -extern "C" void cvCalcOpticalFlowLK( const CvArr* prev, const CvArr* curr, - CvSize win_size, CvArr* velx, CvArr* vely ); - - -extern "C" void cvCalcOpticalFlowBM( const CvArr* prev, const CvArr* curr, - CvSize block_size, CvSize shift_size, - CvSize max_range, int use_previous, - CvArr* velx, CvArr* vely ); - - -extern "C" void cvCalcOpticalFlowHS( const CvArr* prev, const CvArr* curr, - int use_previous, CvArr* velx, CvArr* vely, - double lambda, CvTermCriteria criteria ); -# 493 "../../../include/opencv/cv.h" -extern "C" void cvCalcOpticalFlowPyrLK( const CvArr* prev, const CvArr* curr, - CvArr* prev_pyr, CvArr* curr_pyr, - const CvPoint2D32f* prev_features, - CvPoint2D32f* curr_features, - int count, - CvSize win_size, - int level, - char* status, - float* track_error, - CvTermCriteria criteria, - int flags ); - - - - -extern "C" void cvCalcAffineFlowPyrLK( const CvArr* prev, const CvArr* curr, - CvArr* prev_pyr, CvArr* curr_pyr, - const CvPoint2D32f* prev_features, - CvPoint2D32f* curr_features, - float* matrices, int count, - CvSize win_size, int level, - char* status, float* track_error, - CvTermCriteria criteria, int flags ); - - -extern "C" int cvEstimateRigidTransform( const CvArr* A, const CvArr* B, - CvMat* M, int full_affine ); -# 534 "../../../include/opencv/cv.h" -extern "C" void cvUpdateMotionHistory( const CvArr* silhouette, CvArr* mhi, - double timestamp, double duration ); - - - -extern "C" void cvCalcMotionGradient( const CvArr* mhi, CvArr* mask, CvArr* orientation, - double delta1, double delta2, - int aperture_size = 3); - - - - -extern "C" double cvCalcGlobalOrientation( const CvArr* orientation, const CvArr* mask, - const CvArr* mhi, double timestamp, - double duration ); - - - -extern "C" CvSeq* cvSegmentMotion( const CvArr* mhi, CvArr* seg_mask, - CvMemStorage* storage, - double timestamp, double seg_thresh ); - - - - -extern "C" void cvAcc( const CvArr* image, CvArr* sum, - const CvArr* mask = NULL ); - - -extern "C" void cvSquareAcc( const CvArr* image, CvArr* sqsum, - const CvArr* mask = NULL ); - - -extern "C" void cvMultiplyAcc( const CvArr* image1, const CvArr* image2, CvArr* acc, - const CvArr* mask = NULL ); - - -extern "C" void cvRunningAvg( const CvArr* image, CvArr* acc, double alpha, - const CvArr* mask = NULL ); -# 581 "../../../include/opencv/cv.h" -extern "C" int cvCamShift( const CvArr* prob_image, CvRect window, - CvTermCriteria criteria, CvConnectedComp* comp, - CvBox2D* box = NULL ); - - - -extern "C" int cvMeanShift( const CvArr* prob_image, CvRect window, - CvTermCriteria criteria, CvConnectedComp* comp ); - -extern "C" CvKalman* cvCreateKalman( int dynam_params, int measure_params, - int control_params = 0); - - -extern "C" void cvReleaseKalman( CvKalman** kalman); - - -extern "C" const CvMat* cvKalmanPredict( CvKalman* kalman, - const CvMat* control = NULL); - - - -extern "C" const CvMat* cvKalmanCorrect( CvKalman* kalman, const CvMat* measurement ); - - - - - - -extern "C" void cvInitSubdivDelaunay2D( CvSubdiv2D* subdiv, CvRect rect ); - - -extern "C" CvSubdiv2D* cvCreateSubdiv2D( int subdiv_type, int header_size, - int vtx_size, int quadedge_size, - CvMemStorage* storage ); - - - - -inline CvSubdiv2D* cvCreateSubdivDelaunay2D( CvRect rect, CvMemStorage* storage ) -{ - CvSubdiv2D* subdiv = cvCreateSubdiv2D( (4 << 9), sizeof(*subdiv), - sizeof(CvSubdiv2DPoint), sizeof(CvQuadEdge2D), storage ); - - cvInitSubdivDelaunay2D( subdiv, rect ); - return subdiv; -} - - - -extern "C" CvSubdiv2DPoint* cvSubdivDelaunay2DInsert( CvSubdiv2D* subdiv, CvPoint2D32f pt); - - - - -extern "C" CvSubdiv2DPointLocation cvSubdiv2DLocate( - CvSubdiv2D* subdiv, CvPoint2D32f pt, - CvSubdiv2DEdge* edge, - CvSubdiv2DPoint** vertex = NULL ); - - -extern "C" void cvCalcSubdivVoronoi2D( CvSubdiv2D* subdiv ); - - - -extern "C" void cvClearSubdivVoronoi2D( CvSubdiv2D* subdiv ); - - - -extern "C" CvSubdiv2DPoint* cvFindNearestPoint2D( CvSubdiv2D* subdiv, CvPoint2D32f pt ); - - - - -inline CvSubdiv2DEdge cvSubdiv2DNextEdge( CvSubdiv2DEdge edge ) -{ - return (((CvQuadEdge2D*)((edge) & ~3))->next[(edge)&3]); -} - - -inline CvSubdiv2DEdge cvSubdiv2DRotateEdge( CvSubdiv2DEdge edge, int rotate ) -{ - return (edge & ~3) + ((edge + rotate) & 3); -} - -inline CvSubdiv2DEdge cvSubdiv2DSymEdge( CvSubdiv2DEdge edge ) -{ - return edge ^ 2; -} - -inline CvSubdiv2DEdge cvSubdiv2DGetEdge( CvSubdiv2DEdge edge, CvNextEdgeType type ) -{ - CvQuadEdge2D* e = (CvQuadEdge2D*)(edge & ~3); - edge = e->next[(edge + (int)type) & 3]; - return (edge & ~3) + ((edge + ((int)type >> 4)) & 3); -} - - -inline CvSubdiv2DPoint* cvSubdiv2DEdgeOrg( CvSubdiv2DEdge edge ) -{ - CvQuadEdge2D* e = (CvQuadEdge2D*)(edge & ~3); - return (CvSubdiv2DPoint*)e->pt[edge & 3]; -} - - -inline CvSubdiv2DPoint* cvSubdiv2DEdgeDst( CvSubdiv2DEdge edge ) -{ - CvQuadEdge2D* e = (CvQuadEdge2D*)(edge & ~3); - return (CvSubdiv2DPoint*)e->pt[(edge + 2) & 3]; -} - - -inline double cvTriangleArea( CvPoint2D32f a, CvPoint2D32f b, CvPoint2D32f c ) -{ - return (b.x - a.x) * (c.y - a.y) - (b.y - a.y) * (c.x - a.x); -} -# 721 "../../../include/opencv/cv.h" -extern "C" CvSeq* cvApproxPoly( const void* src_seq, - int header_size, CvMemStorage* storage, - int method, double parameter, - int parameter2 = 0); - - - -extern "C" double cvArcLength( const void* curve, - CvSlice slice = cvSlice(0, 0x3fffffff), - int is_closed = -1); - - -extern "C" CvRect cvBoundingRect( CvArr* points, int update = 0 ); - - -extern "C" double cvContourArea( const CvArr* contour, - CvSlice slice = cvSlice(0, 0x3fffffff)); - - -extern "C" CvBox2D cvMinAreaRect2( const CvArr* points, - CvMemStorage* storage = NULL); - - -extern "C" int cvMinEnclosingCircle( const CvArr* points, - CvPoint2D32f* center, float* radius ); - - - - - - -extern "C" double cvMatchShapes( const void* object1, const void* object2, - int method, double parameter = 0); - - -extern "C" CvContourTree* cvCreateContourTree( const CvSeq* contour, - CvMemStorage* storage, - double threshold ); - - -extern "C" CvSeq* cvContourFromContourTree( const CvContourTree* tree, - CvMemStorage* storage, - CvTermCriteria criteria ); - - - - -extern "C" double cvMatchContourTrees( const CvContourTree* tree1, - const CvContourTree* tree2, - int method, double threshold ); - - -extern "C" CvSeq* cvConvexHull2( const CvArr* input, - void* hull_storage = NULL, - int orientation = 1, - int return_points = 0); - - -extern "C" int cvCheckContourConvexity( const CvArr* contour ); - - -extern "C" CvSeq* cvConvexityDefects( const CvArr* contour, const CvArr* convexhull, - CvMemStorage* storage = NULL); - - -extern "C" CvBox2D cvFitEllipse2( const CvArr* points ); - - -extern "C" CvRect cvMaxRect( const CvRect* rect1, const CvRect* rect2 ); - - -extern "C" void cvBoxPoints( CvBox2D box, CvPoint2D32f pt[4] ); - - - -extern "C" CvSeq* cvPointSeqFromMat( int seq_kind, const CvArr* mat, - CvContour* contour_header, - CvSeqBlock* block ); - - - - - -extern "C" double cvPointPolygonTest( const CvArr* contour, - CvPoint2D32f pt, int measure_dist ); - - - - - - -extern "C" CvHistogram* cvCreateHist( int dims, int* sizes, int type, - float** ranges = NULL, - int uniform = 1); - - -extern "C" void cvSetHistBinRanges( CvHistogram* hist, float** ranges, - int uniform = 1); - - -extern "C" CvHistogram* cvMakeHistHeaderForArray( - int dims, int* sizes, CvHistogram* hist, - float* data, float** ranges = NULL, - int uniform = 1); - - -extern "C" void cvReleaseHist( CvHistogram** hist ); - - -extern "C" void cvClearHist( CvHistogram* hist ); - - -extern "C" void cvGetMinMaxHistValue( const CvHistogram* hist, - float* min_value, float* max_value, - int* min_idx = NULL, - int* max_idx = NULL); - - - - -extern "C" void cvNormalizeHist( CvHistogram* hist, double factor ); - - - -extern "C" void cvThreshHist( CvHistogram* hist, double threshold ); - - - - - - - -extern "C" double cvCompareHist( const CvHistogram* hist1, - const CvHistogram* hist2, - int method); - - - -extern "C" void cvCopyHist( const CvHistogram* src, CvHistogram** dst ); - - - - -extern "C" void cvCalcBayesianProb( CvHistogram** src, int number, - CvHistogram** dst); - - -extern "C" void cvCalcArrHist( CvArr** arr, CvHistogram* hist, - int accumulate = 0, - const CvArr* mask = NULL ); - -inline void cvCalcHist( IplImage** image, CvHistogram* hist, - int accumulate = 0, - const CvArr* mask = NULL ) -{ - cvCalcArrHist( (CvArr**)image, hist, accumulate, mask ); -} - - -extern "C" void cvCalcArrBackProject( CvArr** image, CvArr* dst, - const CvHistogram* hist ); - - - - - -extern "C" void cvCalcArrBackProjectPatch( CvArr** image, CvArr* dst, CvSize range, - CvHistogram* hist, int method, - double factor ); - - - - - -extern "C" void cvCalcProbDensity( const CvHistogram* hist1, const CvHistogram* hist2, - CvHistogram* dst_hist, double scale = 255 ); - - -extern "C" void cvEqualizeHist( const CvArr* src, CvArr* dst ); - - - - - - -extern "C" void cvSnakeImage( const IplImage* image, CvPoint* points, - int length, float* alpha, - float* beta, float* gamma, - int coeff_usage, CvSize win, - CvTermCriteria criteria, int calc_gradient = 1); - - -extern "C" void cvDistTransform( const CvArr* src, CvArr* dst, - int distance_type = 2, - int mask_size = 3, - const float* mask = NULL, - CvArr* labels = NULL); -# 958 "../../../include/opencv/cv.h" -extern "C" double cvThreshold( const CvArr* src, CvArr* dst, - double threshold, double max_value, - int threshold_type ); -# 970 "../../../include/opencv/cv.h" -extern "C" void cvAdaptiveThreshold( const CvArr* src, CvArr* dst, double max_value, - int adaptive_method = 0, - int threshold_type = 0, - int block_size = 3, - double param1 = 5); - - - - - -extern "C" void cvFloodFill( CvArr* image, CvPoint seed_point, - CvScalar new_val, CvScalar lo_diff = cvScalarAll(0), - CvScalar up_diff = cvScalarAll(0), - CvConnectedComp* comp = NULL, - int flags = 4, - CvArr* mask = NULL); -# 994 "../../../include/opencv/cv.h" -extern "C" void cvCanny( const CvArr* image, CvArr* edges, double threshold1, - double threshold2, int aperture_size = 3 ); - - - - -extern "C" void cvPreCornerDetect( const CvArr* image, CvArr* corners, - int aperture_size = 3 ); - - - -extern "C" void cvCornerEigenValsAndVecs( const CvArr* image, CvArr* eigenvv, - int block_size, int aperture_size = 3 ); - - - -extern "C" void cvCornerMinEigenVal( const CvArr* image, CvArr* eigenval, - int block_size, int aperture_size = 3 ); - - - -extern "C" void cvCornerHarris( const CvArr* image, CvArr* harris_responce, - int block_size, int aperture_size = 3, - double k = 0.04 ); - - -extern "C" void cvFindCornerSubPix( const CvArr* image, CvPoint2D32f* corners, - int count, CvSize win, CvSize zero_zone, - CvTermCriteria criteria ); - - - -extern "C" void cvGoodFeaturesToTrack( const CvArr* image, CvArr* eig_image, - CvArr* temp_image, CvPoint2D32f* corners, - int* corner_count, double quality_level, - double min_distance, - const CvArr* mask = NULL, - int block_size = 3, - int use_harris = 0, - double k = 0.04 ); -# 1047 "../../../include/opencv/cv.h" -extern "C" CvSeq* cvHoughLines2( CvArr* image, void* line_storage, int method, - double rho, double theta, int threshold, - double param1 = 0, double param2 = 0); - - -extern "C" CvSeq* cvHoughCircles( CvArr* image, void* circle_storage, - int method, double dp, double min_dist, - double param1 = 100, - double param2 = 100, - int min_radius = 0, - int max_radius = 0); - - -extern "C" void cvFitLine( const CvArr* points, int dist_type, double param, - double reps, double aeps, float* line ); - - - -struct CvFeatureTree; - - -extern "C" struct CvFeatureTree* cvCreateKDTree(CvMat* desc); - - -extern "C" struct CvFeatureTree* cvCreateSpillTree( const CvMat* raw_data, - const int naive = 50, - const double rho = .7, - const double tau = .1 ); - - -extern "C" void cvReleaseFeatureTree(struct CvFeatureTree* tr); - - - -extern "C" void cvFindFeatures(struct CvFeatureTree* tr, const CvMat* query_points, - CvMat* indices, CvMat* dist, int k, int emax = 20); - - - -extern "C" int cvFindFeaturesBoxed(struct CvFeatureTree* tr, - CvMat* bounds_min, CvMat* bounds_max, - CvMat* out_indices); - - -struct CvLSH; -struct CvLSHOperations; - - - -extern "C" struct CvLSH* cvCreateLSH(struct CvLSHOperations* ops, int d, - int L = 10, int k = 10, - int type = (((6) & ((1 << 3) - 1)) + (((1)-1) << 3)), double r = 4, - int64 seed = -1); - - -extern "C" struct CvLSH* cvCreateMemoryLSH(int d, int n, int L = 10, int k = 10, - int type = (((6) & ((1 << 3) - 1)) + (((1)-1) << 3)), double r = 4, - int64 seed = -1); - - -extern "C" void cvReleaseLSH(struct CvLSH** lsh); - - -extern "C" unsigned int LSHSize(struct CvLSH* lsh); - - -extern "C" void cvLSHAdd(struct CvLSH* lsh, const CvMat* data, CvMat* indices = 0); - - -extern "C" void cvLSHRemove(struct CvLSH* lsh, const CvMat* indices); - - - -extern "C" void cvLSHQuery(struct CvLSH* lsh, const CvMat* query_points, - CvMat* indices, CvMat* dist, int k, int emax); - - -typedef struct CvSURFPoint -{ - CvPoint2D32f pt; - int laplacian; - int size; - float dir; - float hessian; -} CvSURFPoint; - -inline CvSURFPoint cvSURFPoint( CvPoint2D32f pt, int laplacian, - int size, float dir = 0, - float hessian = 0) -{ - CvSURFPoint kp; - kp.pt = pt; - kp.laplacian = laplacian; - kp.size = size; - kp.dir = dir; - kp.hessian = hessian; - return kp; -} - -typedef struct CvSURFParams -{ - int extended; - double hessianThreshold; - - int nOctaves; - int nOctaveLayers; -} -CvSURFParams; - -extern "C" CvSURFParams cvSURFParams( double hessianThreshold, int extended = 0 ); - - - -extern "C" void cvExtractSURF( const CvArr* img, const CvArr* mask, - CvSeq** keypoints, CvSeq** descriptors, - CvMemStorage* storage, CvSURFParams params, int useProvidedKeyPts = 0 ); - -typedef struct CvMSERParams -{ - - int delta; - - int maxArea; - int minArea; - - float maxVariation; - - float minDiversity; - - - int maxEvolution; - - double areaThreshold; - - double minMargin; - - int edgeBlurSize; -} -CvMSERParams; - -extern "C" CvMSERParams cvMSERParams( int delta = 5, int min_area = 60, - int max_area = 14400, float max_variation = .25f, - float min_diversity = .2f, int max_evolution = 200, - double area_threshold = 1.01, - double min_margin = .003, - int edge_blur_size = 5 ); - - -extern "C" void cvExtractMSER( CvArr* _img, CvArr* _mask, CvSeq** contours, CvMemStorage* storage, CvMSERParams params ); - - -typedef struct CvStarKeypoint -{ - CvPoint pt; - int size; - float response; -} -CvStarKeypoint; - -inline CvStarKeypoint cvStarKeypoint(CvPoint pt, int size, float response) -{ - CvStarKeypoint kpt; - kpt.pt = pt; - kpt.size = size; - kpt.response = response; - return kpt; -} - -typedef struct CvStarDetectorParams -{ - int maxSize; - int responseThreshold; - int lineThresholdProjected; - int lineThresholdBinarized; - int suppressNonmaxSize; -} -CvStarDetectorParams; - -inline CvStarDetectorParams cvStarDetectorParams( - int maxSize = 45, - int responseThreshold = 30, - int lineThresholdProjected = 10, - int lineThresholdBinarized = 8, - int suppressNonmaxSize = 5) -{ - CvStarDetectorParams params; - params.maxSize = maxSize; - params.responseThreshold = responseThreshold; - params.lineThresholdProjected = lineThresholdProjected; - params.lineThresholdBinarized = lineThresholdBinarized; - params.suppressNonmaxSize = suppressNonmaxSize; - - return params; -} - -extern "C" CvSeq* cvGetStarKeypoints( const CvArr* img, CvMemStorage* storage, - CvStarDetectorParams params = cvStarDetectorParams()); - - - - - - - -extern "C" CvHaarClassifierCascade* cvLoadHaarClassifierCascade( - const char* directory, CvSize orig_window_size); - -extern "C" void cvReleaseHaarClassifierCascade( CvHaarClassifierCascade** cascade ); - - - - - - -extern "C" CvSeq* cvHaarDetectObjects( const CvArr* image, - CvHaarClassifierCascade* cascade, - CvMemStorage* storage, double scale_factor = 1.1, - int min_neighbors = 3, int flags = 0, - CvSize min_size = cvSize(0,0)); - - -extern "C" void cvSetImagesForHaarClassifierCascade( CvHaarClassifierCascade* cascade, - const CvArr* sum, const CvArr* sqsum, - const CvArr* tilted_sum, double scale ); - - -extern "C" int cvRunHaarClassifierCascade( const CvHaarClassifierCascade* cascade, - CvPoint pt, int start_stage = 0); - - - - - - -extern "C" void cvUndistort2( const CvArr* src, CvArr* dst, - const CvMat* camera_matrix, - const CvMat* distortion_coeffs ); - - - -extern "C" void cvInitUndistortMap( const CvMat* camera_matrix, - const CvMat* distortion_coeffs, - CvArr* mapx, CvArr* mapy ); - - -extern "C" void cvInitUndistortRectifyMap( const CvMat* camera_matrix, - const CvMat* dist_coeffs, - const CvMat *R, const CvMat* new_camera_matrix, - CvArr* mapx, CvArr* mapy ); - - - -extern "C" void cvUndistortPoints( const CvMat* src, CvMat* dst, - const CvMat* camera_matrix, - const CvMat* dist_coeffs, - const CvMat* R = 0, - const CvMat* P = 0); - - -extern "C" int cvRodrigues2( const CvMat* src, CvMat* dst, - CvMat* jacobian = 0 ); - - - - - -extern "C" int cvFindHomography( const CvMat* src_points, - const CvMat* dst_points, - CvMat* homography, - int method = 0, - double ransacReprojThreshold = 0, - CvMat* mask = 0); - - -extern "C" void cvRQDecomp3x3( const CvMat *matrixM, CvMat *matrixR, CvMat *matrixQ, - CvMat *matrixQx = NULL, - CvMat *matrixQy = NULL, - CvMat *matrixQz = NULL, - CvPoint3D64f *eulerAngles = NULL); - - -extern "C" void cvDecomposeProjectionMatrix( const CvMat *projMatr, CvMat *calibMatr, - CvMat *rotMatr, CvMat *posVect, - CvMat *rotMatrX = NULL, - CvMat *rotMatrY = NULL, - CvMat *rotMatrZ = NULL, - CvPoint3D64f *eulerAngles = NULL); - - -extern "C" void cvCalcMatMulDeriv( const CvMat* A, const CvMat* B, CvMat* dABdA, CvMat* dABdB ); - - - -extern "C" void cvComposeRT( const CvMat* _rvec1, const CvMat* _tvec1, - const CvMat* _rvec2, const CvMat* _tvec2, - CvMat* _rvec3, CvMat* _tvec3, - CvMat* dr3dr1 = 0, CvMat* dr3dt1 = 0, - CvMat* dr3dr2 = 0, CvMat* dr3dt2 = 0, - CvMat* dt3dr1 = 0, CvMat* dt3dt1 = 0, - CvMat* dt3dr2 = 0, CvMat* dt3dt2 = 0 ); - - - -extern "C" void cvProjectPoints2( const CvMat* object_points, const CvMat* rotation_vector, - const CvMat* translation_vector, const CvMat* camera_matrix, - const CvMat* distortion_coeffs, CvMat* image_points, - CvMat* dpdrot = NULL, CvMat* dpdt = NULL, - CvMat* dpdf = NULL, CvMat* dpdc = NULL, - CvMat* dpddist = NULL, - double aspect_ratio = 0); - - - -extern "C" void cvFindExtrinsicCameraParams2( const CvMat* object_points, - const CvMat* image_points, - const CvMat* camera_matrix, - const CvMat* distortion_coeffs, - CvMat* rotation_vector, - CvMat* translation_vector, - int use_extrinsic_guess = 0 ); - - - -extern "C" void cvInitIntrinsicParams2D( const CvMat* object_points, - const CvMat* image_points, - const CvMat* npoints, CvSize image_size, - CvMat* camera_matrix, - double aspect_ratio = 1. ); - - - - - - -extern "C" int cvFindChessboardCorners( const void* image, CvSize pattern_size, - CvPoint2D32f* corners, - int* corner_count = NULL, - int flags = 1 + 2 ); - - - -extern "C" void cvDrawChessboardCorners( CvArr* image, CvSize pattern_size, - CvPoint2D32f* corners, - int count, int pattern_was_found ); -# 1403 "../../../include/opencv/cv.h" -extern "C" void cvCalibrateCamera2( const CvMat* object_points, - const CvMat* image_points, - const CvMat* point_counts, - CvSize image_size, - CvMat* camera_matrix, - CvMat* distortion_coeffs, - CvMat* rotation_vectors = NULL, - CvMat* translation_vectors = NULL, - int flags = 0 ); - - - -extern "C" void cvCalibrationMatrixValues( const CvMat *camera_matrix, - CvSize image_size, - double aperture_width = 0, - double aperture_height = 0, - double *fovx = NULL, - double *fovy = NULL, - double *focal_length = NULL, - CvPoint2D64f *principal_point = NULL, - double *pixel_aspect_ratio = NULL); - - - - - - - -extern "C" void cvStereoCalibrate( const CvMat* object_points, const CvMat* image_points1, - const CvMat* image_points2, const CvMat* npoints, - CvMat* camera_matrix1, CvMat* dist_coeffs1, - CvMat* camera_matrix2, CvMat* dist_coeffs2, - CvSize image_size, CvMat* R, CvMat* T, - CvMat* E = 0, CvMat* F = 0, - CvTermCriteria term_crit = cvTermCriteria( 1 +2,30,1e-6), - - int flags = 256 ); - - - - - -extern "C" void cvStereoRectify( const CvMat* camera_matrix1, const CvMat* camera_matrix2, - const CvMat* dist_coeffs1, const CvMat* dist_coeffs2, - CvSize image_size, const CvMat* R, const CvMat* T, - CvMat* R1, CvMat* R2, CvMat* P1, CvMat* P2, - CvMat* Q = 0, - int flags = 1024 ); - - - -extern "C" int cvStereoRectifyUncalibrated( const CvMat* points1, const CvMat* points2, - const CvMat* F, CvSize img_size, - CvMat* H1, CvMat* H2, - double threshold = 5); - -typedef struct CvPOSITObject CvPOSITObject; - - -extern "C" CvPOSITObject* cvCreatePOSITObject( CvPoint3D32f* points, int point_count ); - - - - -extern "C" void cvPOSIT( CvPOSITObject* posit_object, CvPoint2D32f* image_points, - double focal_length, CvTermCriteria criteria, - CvMatr32f rotation_matrix, CvVect32f translation_vector); - - -extern "C" void cvReleasePOSITObject( CvPOSITObject** posit_object ); - - -extern "C" int cvRANSACUpdateNumIters( double p, double err_prob, - int model_points, int max_iters ); - -extern "C" void cvConvertPointsHomogeneous( const CvMat* src, CvMat* dst ); -# 1487 "../../../include/opencv/cv.h" -extern "C" int cvFindFundamentalMat( const CvMat* points1, const CvMat* points2, - CvMat* fundamental_matrix, - int method = 8, - double param1 = 3., double param2 = 0.99, - CvMat* status = NULL ); - - - - -extern "C" void cvComputeCorrespondEpilines( const CvMat* points, - int which_image, - const CvMat* fundamental_matrix, - CvMat* correspondent_lines ); - - - -extern "C" void cvTriangulatePoints(CvMat* projMatr1, CvMat* projMatr2, - CvMat* projPoints1, CvMat* projPoints2, - CvMat* points4D); - -extern "C" void cvCorrectMatches(CvMat* F, CvMat* points1, CvMat* points2, - CvMat* new_points1, CvMat* new_points2); - - - - - - -typedef struct CvStereoBMState -{ - // pre-filtering (normalization of input images) - int preFilterType; // =CV_STEREO_BM_NORMALIZED_RESPONSE now - int preFilterSize; // averaging window size: ~5x5..21x21 - int preFilterCap; // the output of pre-filtering is clipped by [-preFilterCap,preFilterCap] - - // correspondence using Sum of Absolute Difference (SAD) - int SADWindowSize; // ~5x5..21x21 - int minDisparity; // minimum disparity (can be negative) - int numberOfDisparities; // maximum disparity - minimum disparity (> 0) - - // post-filtering - int textureThreshold; // the disparity is only computed for pixels - // with textured enough neighborhood - int uniquenessRatio; // accept the computed disparity d* only if - // SAD(d) >= SAD(d*)*(1 + uniquenessRatio/100.) - // for any d != d*+/-1 within the search range. - int speckleWindowSize; // disparity variation window - int speckleRange; // acceptable range of variation in window - - int trySmallerWindows; // if 1, the results may be more accurate, - // at the expense of slower processing - CvRect roi1, roi2; - int disp12MaxDiff; - - // temporary buffers - CvMat* preFilteredImg0; - CvMat* preFilteredImg1; - CvMat* slidingSumBuf; - CvMat* cost; - CvMat* disp; -} -CvStereoBMState; - - - - - -extern "C" CvStereoBMState* cvCreateStereoBMState(int preset = 0, - int numberOfDisparities = 0); - -extern "C" void cvReleaseStereoBMState( CvStereoBMState** state ); - -extern "C" void cvFindStereoCorrespondenceBM( const CvArr* left, const CvArr* right, - CvArr* disparity, CvStereoBMState* state ); - - - - -typedef struct CvStereoGCState -{ - int Ithreshold; - int interactionRadius; - float K, lambda, lambda1, lambda2; - int occlusionCost; - int minDisparity; - int numberOfDisparities; - int maxIters; - - CvMat* left; - CvMat* right; - CvMat* dispLeft; - CvMat* dispRight; - CvMat* ptrLeft; - CvMat* ptrRight; - CvMat* vtxBuf; - CvMat* edgeBuf; -} -CvStereoGCState; - -extern "C" CvStereoGCState* cvCreateStereoGCState( int numberOfDisparities, int maxIters ); -extern "C" void cvReleaseStereoGCState( CvStereoGCState** state ); - -extern "C" void cvFindStereoCorrespondenceGC( const CvArr* left, const CvArr* right, - CvArr* disparityLeft, CvArr* disparityRight, - CvStereoGCState* state, - int useDisparityGuess = 0 ); - - -extern "C" void cvReprojectImageTo3D( const CvArr* disparityImage, - CvArr* _3dImage, const CvMat* Q, - int handleMissingValues = 0 ); - - -} diff --git a/interfaces/swig/general/cv.i b/interfaces/swig/general/cv.i deleted file mode 100644 index 5f9686cf2..000000000 --- a/interfaces/swig/general/cv.i +++ /dev/null @@ -1,120 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - - -%module(package="opencv") cv - - -%{ -#include "cxtypes.h" -#include "cxcore.h" -#include "cvtypes.h" -#include "cv.h" -%} - -// The preprocessor "gcc -E" may generate compiler specific storage specifiers that confuse SWIG -// We just define them away -#define __attribute__(arg) -#define __inline inline -#define __const const - -// SWIG needs this to be parsed before cv.h -%ignore CV_SET_IMAGE_IO_FUNCTIONS; -%include "./cvmacros.i" - -// A couple of typemaps helps wrapping OpenCV functions in a sensible way -%include "./memory.i" -%include "./typemaps.i" -%include "./doublepointers.i" - -// hide COI and ROI functions -%ignore cvSetImageCOI; -%ignore cvSetImageROI; -%ignore cvGetImageROI; -%ignore cvGetImageCOI; - -// mask some functions that return IplImage * -%ignore cvInitImageHeader; -%ignore cvGetImage; -%ignore cvCreateImageHeader; - -// adapt others to return CvMat * instead -%ignore cvCreateImage; -%rename (cvCreateImage) cvCreateImageMat; -%ignore cvCloneImage; -%rename (cvCloneImage) cvCloneImageMat; -%inline %{ -CvMat * cvCreateImageMat( CvSize size, int depth, int channels ){ - static const signed char icvDepthToType[]= - { - -1, -1, CV_8U, CV_8S, CV_16U, CV_16S, -1, -1, - CV_32F, CV_32S, -1, -1, -1, -1, -1, -1, CV_64F, -1 - }; - - depth = icvDepthToType[((depth & 255) >> 2) + (depth < 0)]; - return cvCreateMat( size.height, size.width, CV_MAKE_TYPE(depth, channels)); -} -#define cvCloneImageMat( mat ) cvCloneMat( mat ) - -#ifdef WIN32 - -CvModuleInfo *CvModule::first=0; -CvModuleInfo *CvModule::last=0; -CvTypeInfo *CvType::first=0; -CvTypeInfo *CvType::last=0; - -#endif - -%} -CvMat * cvCloneImageMat( CvMat * mat ); - - -// Now include the filtered OpenCV constants and prototypes (includes cxcore as well) -%include "../filtered/constants.h" -%include "../filtered/cv.h" - -%include "./extensions.i" -%include "./cvarr_operators.i" diff --git a/interfaces/swig/general/cvarr_operators.i b/interfaces/swig/general/cvarr_operators.i deleted file mode 100644 index d8f968a72..000000000 --- a/interfaces/swig/general/cvarr_operators.i +++ /dev/null @@ -1,419 +0,0 @@ -/** This file was automatically generated using util/cvarr_operators.py script */ -%extend CvMat { - %newobject operator &; - CvMat * operator & (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAnd(self, src, res); - return res; - } - CvMat * operator &= (CvArr * src){ - cvAnd(self, src, self); - return self; - } - %newobject operator +; - CvMat * operator + (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAdd(self, src, res); - return res; - } - CvMat * operator += (CvArr * src){ - cvAdd(self, src, self); - return self; - } - %newobject operator *; - CvMat * operator * (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvMul(self, src, res); - return res; - } - CvMat * operator *= (CvArr * src){ - cvMul(self, src, self); - return self; - } - %newobject operator -; - CvMat * operator - (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvSub(self, src, res); - return res; - } - CvMat * operator -= (CvArr * src){ - cvSub(self, src, self); - return self; - } - %newobject operator /; - CvMat * operator / (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvDiv(self, src, res); - return res; - } - CvMat * operator /= (CvArr * src){ - cvDiv(self, src, self); - return self; - } - %newobject operator |; - CvMat * operator | (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvOr(self, src, res); - return res; - } - CvMat * operator |= (CvArr * src){ - cvOr(self, src, self); - return self; - } - %newobject operator ^; - CvMat * operator ^ (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvXor(self, src, res); - return res; - } - CvMat * operator ^= (CvArr * src){ - cvXor(self, src, self); - return self; - } - %newobject operator +; - CvMat * operator + (CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, val, res); - return res; - } - CvMat * operator += (CvScalar val){ - cvAddS(self, val, self); - return self; - } - %newobject operator ^; - CvMat * operator ^ (CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, val, res); - return res; - } - CvMat * operator ^= (CvScalar val){ - cvXorS(self, val, self); - return self; - } - %newobject operator -; - CvMat * operator - (CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvSubS(self, val, res); - return res; - } - CvMat * operator -= (CvScalar val){ - cvSubS(self, val, self); - return self; - } - %newobject operator |; - CvMat * operator | (CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvOrS(self, val, res); - return res; - } - CvMat * operator |= (CvScalar val){ - cvOrS(self, val, self); - return self; - } - %newobject operator &; - CvMat * operator & (CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAndS(self, val, res); - return res; - } - CvMat * operator &= (CvScalar val){ - cvAndS(self, val, self); - return self; - } - %newobject operator >=; - CvMat * operator >= (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmp(self, src, res, CV_CMP_GE); - return res; - } - CvMat * operator >= (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmpS(self, val, res, CV_CMP_GE); - return res; - } - %newobject operator ==; - CvMat * operator == (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmp(self, src, res, CV_CMP_EQ); - return res; - } - CvMat * operator == (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmpS(self, val, res, CV_CMP_EQ); - return res; - } - %newobject operator <=; - CvMat * operator <= (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmp(self, src, res, CV_CMP_LE); - return res; - } - CvMat * operator <= (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmpS(self, val, res, CV_CMP_LE); - return res; - } - %newobject operator !=; - CvMat * operator != (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmp(self, src, res, CV_CMP_NE); - return res; - } - CvMat * operator != (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmpS(self, val, res, CV_CMP_NE); - return res; - } - %newobject operator <; - CvMat * operator < (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmp(self, src, res, CV_CMP_LT); - return res; - } - CvMat * operator < (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmpS(self, val, res, CV_CMP_LT); - return res; - } - %newobject operator >; - CvMat * operator > (CvArr * src){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmp(self, src, res, CV_CMP_GT); - return res; - } - CvMat * operator > (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, CV_8U); - cvCmpS(self, val, res, CV_CMP_GT); - return res; - } - %newobject operator *; - CvMat * operator * (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvScale(self, res, val); - return res; - } - CvMat * operator *= (double val){ - cvScale(self, self, val); - return self; - } - %newobject operator /; - CvMat * operator / (double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvScale(self, res, 1.0/val); - return res; - } - CvMat * operator /= (double val){ - cvScale(self, self, 1.0/val); - return self; - } -} /* extend CvMat */ - -%extend IplImage { - %newobject operator &; - IplImage * operator & (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAnd(self, src, res); - return res; - } - IplImage * operator &= (CvArr * src){ - cvAnd(self, src, self); - return self; - } - %newobject operator +; - IplImage * operator + (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAdd(self, src, res); - return res; - } - IplImage * operator += (CvArr * src){ - cvAdd(self, src, self); - return self; - } - %newobject operator *; - IplImage * operator * (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvMul(self, src, res); - return res; - } - IplImage * operator *= (CvArr * src){ - cvMul(self, src, self); - return self; - } - %newobject operator -; - IplImage * operator - (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSub(self, src, res); - return res; - } - IplImage * operator -= (CvArr * src){ - cvSub(self, src, self); - return self; - } - %newobject operator /; - IplImage * operator / (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvDiv(self, src, res); - return res; - } - IplImage * operator /= (CvArr * src){ - cvDiv(self, src, self); - return self; - } - %newobject operator |; - IplImage * operator | (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOr(self, src, res); - return res; - } - IplImage * operator |= (CvArr * src){ - cvOr(self, src, self); - return self; - } - %newobject operator ^; - IplImage * operator ^ (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXor(self, src, res); - return res; - } - IplImage * operator ^= (CvArr * src){ - cvXor(self, src, self); - return self; - } - %newobject operator +; - IplImage * operator + (CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, val, res); - return res; - } - IplImage * operator += (CvScalar val){ - cvAddS(self, val, self); - return self; - } - %newobject operator ^; - IplImage * operator ^ (CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, val, res); - return res; - } - IplImage * operator ^= (CvScalar val){ - cvXorS(self, val, self); - return self; - } - %newobject operator -; - IplImage * operator - (CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubS(self, val, res); - return res; - } - IplImage * operator -= (CvScalar val){ - cvSubS(self, val, self); - return self; - } - %newobject operator |; - IplImage * operator | (CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOrS(self, val, res); - return res; - } - IplImage * operator |= (CvScalar val){ - cvOrS(self, val, self); - return self; - } - %newobject operator &; - IplImage * operator & (CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAndS(self, val, res); - return res; - } - IplImage * operator &= (CvScalar val){ - cvAndS(self, val, self); - return self; - } - %newobject operator >=; - IplImage * operator >= (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmp(self, src, res, CV_CMP_GE); - return res; - } - IplImage * operator >= (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmpS(self, val, res, CV_CMP_GE); - return res; - } - %newobject operator ==; - IplImage * operator == (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmp(self, src, res, CV_CMP_EQ); - return res; - } - IplImage * operator == (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmpS(self, val, res, CV_CMP_EQ); - return res; - } - %newobject operator <=; - IplImage * operator <= (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmp(self, src, res, CV_CMP_LE); - return res; - } - IplImage * operator <= (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmpS(self, val, res, CV_CMP_LE); - return res; - } - %newobject operator !=; - IplImage * operator != (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmp(self, src, res, CV_CMP_NE); - return res; - } - IplImage * operator != (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmpS(self, val, res, CV_CMP_NE); - return res; - } - %newobject operator <; - IplImage * operator < (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmp(self, src, res, CV_CMP_LT); - return res; - } - IplImage * operator < (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmpS(self, val, res, CV_CMP_LT); - return res; - } - %newobject operator >; - IplImage * operator > (CvArr * src){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmp(self, src, res, CV_CMP_GT); - return res; - } - IplImage * operator > (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), IPL_DEPTH_8U, 1); - cvCmpS(self, val, res, CV_CMP_GT); - return res; - } - %newobject operator *; - IplImage * operator * (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvScale(self, res, val); - return res; - } - IplImage * operator *= (double val){ - cvScale(self, self, val); - return self; - } - %newobject operator /; - IplImage * operator / (double val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvScale(self, res, 1.0/val); - return res; - } - IplImage * operator /= (double val){ - cvScale(self, self, 1.0/val); - return self; - } -} /* extend IplImage */ - diff --git a/interfaces/swig/general/cvmacros.i b/interfaces/swig/general/cvmacros.i deleted file mode 100644 index 553ccc0ac..000000000 --- a/interfaces/swig/general/cvmacros.i +++ /dev/null @@ -1,127 +0,0 @@ - -/*////////////////////////////////////////////////////////////////////////////////////////////////// -// This file is automatically generated from the extract_macros.py script found in the 'utils' -// subdirectory of the OpenCV distribution. If the generated function prototypes are missing or -// incorrect, it is likely that a name->type mapping will have to be added to the script -/////////////////////////////////////////////////////////////////////////////////////////////////M*/ - -// This file was generated from the following header files: -// ../../../include/opencv/cxtypes.h -// ../../../include/opencv/cxcore.h -// ../../../include/opencv/cvtypes.h -// ../../../include/opencv/cv.h -void cvFree(void ** ptr); -void CV_READ_CHAIN_POINT(CvPoint _pt, CvChainPtReader reader); -void * CV_MAT_ELEM_PTR(CvMat mat,int row,int col); -void * CV_MAT_ELEM_PTR_FAST(CvMat mat,int row,int col,int pix_size); -void * CV_NODE_VAL(CvSparseMat* mat,CvSparseNode * node); - -int * CV_NODE_IDX(CvSparseMat* mat,CvSparseNode * node); -CvQuadEdge2D* CV_SUBDIV2D_NEXT_EDGE(CvSubdiv2DEdge edge); -void CV_SWAP(int a,int b,int t); -int CV_IMIN(int a,int b); -int CV_IMAX(int a,int b); -int CV_IABS(int a); -void CV_CMP(int a,int b); -void CV_SIGN(int a); -void cvInvSqrt(double value); -void cvSqrt(double value); -int CV_IS_IMAGE_HDR(CvArr * img); -int CV_IS_IMAGE(CvArr * img); -int CV_MAT_DEPTH(int flags); -int CV_MAKETYPE(int depth,int cn); -int CV_8UC(int n); -int CV_8SC(int n); -int CV_16UC(int n); -int CV_16SC(int n); -int CV_32SC(int n); -int CV_32FC(int n); -int CV_64FC(int n); -int CV_MAT_CN(int flags); -int CV_MAT_TYPE(int flags); -int CV_IS_MAT_CONT(int flags); -int CV_IS_TEMP_MAT(int flags); -int CV_IS_MAT_HDR(CvMat* mat); -int CV_IS_MAT(CvMat* mat); -int CV_IS_MASK_ARR(CvMat* mat); -int CV_ARE_TYPES_EQ(CvMat* mat1,CvMat* mat2); -int CV_ARE_CNS_EQ(CvMat* mat1,CvMat* mat2); -int CV_ARE_DEPTHS_EQ(CvMat* mat1,CvMat* mat2); -int CV_ARE_SIZES_EQ(CvMat* mat1,CvMat* mat2); -int CV_IS_MAT_CONST(CvMat* mat); -int CV_ELEM_SIZE1(int type); -int CV_ELEM_SIZE(int type); -int CV_IS_MATND_HDR(CvMat* mat); -int CV_IS_MATND(CvMat* mat); -int CV_IS_SPARSE_MAT_HDR(CvMat* mat); -int CV_IS_SPARSE_MAT(CvMat* mat); -int CV_IS_HIST(CvHistogram * hist); -int CV_IS_UNIFORM_HIST(CvHistogram * hist); -int CV_IS_SPARSE_HIST(CvHistogram * hist); -int CV_HIST_HAS_RANGES(CvHistogram * hist); -int CV_IS_STORAGE(CvMemStorage * storage); -int CV_IS_SET_ELEM(void * ptr); -int CV_IS_SEQ(CvSeq* seq); -int CV_IS_SET(CvSet * set); -int CV_SEQ_ELTYPE(CvSeq* seq); -int CV_SEQ_KIND(CvSeq* seq); -int CV_IS_SEQ_INDEX(CvSeq* seq); -int CV_IS_SEQ_CURVE(CvSeq* seq); -int CV_IS_SEQ_CLOSED(CvSeq* seq); -int CV_IS_SEQ_CONVEX(CvSeq* seq); -int CV_IS_SEQ_HOLE(CvSeq* seq); -int CV_IS_SEQ_SIMPLE(CvSeq* seq); -int CV_IS_SEQ_POINT_SET(CvSeq* seq); -int CV_IS_SEQ_POINT_SUBSET(CvSeq* seq); -int CV_IS_SEQ_POLYLINE(CvSeq* seq); -int CV_IS_SEQ_POLYGON(CvSeq* seq); -int CV_IS_SEQ_CHAIN(CvSeq* seq); -int CV_IS_SEQ_CONTOUR(CvSeq* seq); -int CV_IS_SEQ_CHAIN_CONTOUR(CvSeq* seq); -int CV_IS_SEQ_POLYGON_TREE(CvSeq* seq); -int CV_IS_GRAPH(CvSeq* seq); -int CV_IS_GRAPH_ORIENTED(CvSeq* seq); -int CV_IS_SUBDIV2D(CvSeq* seq); -void CV_WRITE_SEQ_ELEM_VAR(void * elem_ptr,CvSeqWriter writer); -void CV_WRITE_SEQ_ELEM(CvPoint elem,CvSeqWriter writer); -void CV_NEXT_SEQ_ELEM(int elem_size,CvSeqReader reader); -void CV_PREV_SEQ_ELEM(int elem_size,CvSeqReader reader); -void CV_READ_SEQ_ELEM(CvPoint elem,CvSeqReader reader); -void CV_REV_READ_SEQ_ELEM(CvPoint elem,CvSeqReader reader); -CvPoint CV_CURRENT_POINT(CvSeqReader reader); -CvPoint CV_PREV_POINT(CvSeqReader reader); -void CV_READ_EDGE(CvPoint pt1,CvPoint pt2,CvSeqReader reader); -CvGraphEdge * CV_NEXT_GRAPH_EDGE(CvGraphEdge * edge,CvGraphVtx * vertex); -int CV_NODE_TYPE(int flags); -int CV_NODE_IS_INT(int flags); -int CV_NODE_IS_REAL(int flags); -int CV_NODE_IS_STRING(int flags); -int CV_NODE_IS_SEQ(int flags); -int CV_NODE_IS_MAP(int flags); -int CV_NODE_IS_COLLECTION(int flags); -int CV_NODE_IS_FLOW(int flags); -int CV_NODE_IS_EMPTY(int flags); -int CV_NODE_IS_USER(int flags); -int CV_NODE_HAS_NAME(int flags); -int CV_NODE_SEQ_IS_SIMPLE(CvSeq* seq); -void cvReshapeND(CvArr * arr,CvMat * header,int new_cn,int new_dims,int * new_sizes); -void cvConvert(CvArr * src,CvArr * dst); -void cvAXPY(CvArr * A,double real_scalar,CvArr * B,CvArr * C); -void cvAbs(CvArr * src,CvArr * dst); -void cvMatMulAdd(CvArr * src1,CvArr * src2,CvArr * src3,CvArr * dst); -void cvMatMul(CvArr * src1,CvArr * src2,CvArr * dst); -void cvGetGraphVtx(CvGraph * graph,int idx); -int cvGraphVtxIdx(CvGraph * graph,CvGraphVtx * vtx); -int cvGraphEdgeIdx(CvGraph * graph,CvGraphEdge * edge); -int cvGraphGetVtxCount(CvGraph * graph); -int cvGraphGetEdgeCount(CvGraph * graph); -int CV_IS_GRAPH_VERTEX_VISITED(CvGraphVtx * vtx); -int CV_IS_GRAPH_EDGE_VISITED(CvGraphEdge * edge); -CvScalar CV_RGB(double r,double g,int b); -void CV_NEXT_LINE_POINT(CvLineIterator line_iterator); -void CV_SET_IMAGE_IO_FUNCTIONS(); -void CV_INIT_3X3_DELTAS(double * deltas,int step,int nch); -int CV_IS_HAAR_CLASSIFIER(void * haar); -double cvContourPerimeter(CvSeq * contour); -void cvCalcBackProject(IplImage * image,CvArr * dst,CvHistogram * hist); -void cvCalcBackProjectPatch(IplImage * image,CvArr * dst,CvSize range,CvHistogram * hist,int method,double factor); diff --git a/interfaces/swig/general/doublepointers.i b/interfaces/swig/general/doublepointers.i deleted file mode 100644 index 77b411625..000000000 --- a/interfaces/swig/general/doublepointers.i +++ /dev/null @@ -1,168 +0,0 @@ - -/*////////////////////////////////////////////////////////////////////////////////////////////////// -// This file was automatically generated from the extract_doublepointers.py script found in the -// 'utils' subdirectory of the OpenCV distribution. Run it on the .cpp file generated by swig to -// generate the double pointer typemaps -/////////////////////////////////////////////////////////////////////////////////////////////////M*/ - -%typemap(in) CvGraphEdge ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvGraphVtx ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvHistogram ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvMatND ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvPoint ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvSeq ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvSeqBlock ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvSetElem ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvSubdiv2DPoint ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvConnectedComp_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvPoint2D32f_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvPoint_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvQuadEdge2D_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvRect_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvSeq_p_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvTupleTCvPoint_2_t_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) CvTypedSeqTCvTupleTfloat_2_t_t ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) _CvContourScanner ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) _IplImage ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) char ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) float ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) unsigned_char ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} -%typemap(in) void ** (void * vptr, $*1_ltype buffer) { - if ((SWIG_ConvertPtr($input, &vptr, $*1_descriptor, 1)) == -1){ - SWIG_fail; - } - buffer = ($*1_ltype) vptr; - $1=&buffer; -} diff --git a/interfaces/swig/general/extensions.i b/interfaces/swig/general/extensions.i deleted file mode 100644 index 43be99d2b..000000000 --- a/interfaces/swig/general/extensions.i +++ /dev/null @@ -1,236 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-23, Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University -// 2008-05-15, Xavier Delacour - - -struct CvLSH {}; - -%extend IplImage { ~IplImage () { IplImage * dummy = self; cvReleaseImage (& dummy); } } -%extend CvMat { ~CvMat () { CvMat * dummy = self; cvReleaseMat (& dummy); } } -%extend CvMatND { ~CvMatND () { CvMatND * dummy = self; cvReleaseMatND (& dummy); } } -%extend CvSparseMat { ~CvSparseMat () { CvSparseMat * dummy = self; cvReleaseSparseMat (& dummy); } } -%extend CvMemStorage { ~CvMemStorage () { CvMemStorage * dummy = self; cvReleaseMemStorage (& dummy); } } -%extend CvGraphScanner { ~CvGraphScanner () { CvGraphScanner * dummy = self; cvReleaseGraphScanner (& dummy); } } -%extend CvFileStorage { ~CvFileStorage () { CvFileStorage * dummy = self; cvReleaseFileStorage (& dummy); } } -%extend IplConvKernel { ~IplConvKernel () { IplConvKernel * dummy = self; cvReleaseStructuringElement (& dummy); } } -%extend CvKalman { ~CvKalman () { CvKalman * dummy = self; cvReleaseKalman (& dummy); } } -%extend CvHistogram { ~CvHistogram () { CvHistogram * dummy = self; cvReleaseHist (& dummy); } } -%extend CvHaarClassifierCascade { ~CvHaarClassifierCascade () { CvHaarClassifierCascade * dummy = self; cvReleaseHaarClassifierCascade (& dummy); } } -%extend CvPOSITObject { ~CvPOSITObject () { CvPOSITObject * dummy = self; cvReleasePOSITObject (& dummy); } } -%extend CvFeatureTree { ~CvFeatureTree () { CvFeatureTree * dummy = self; cvReleaseFeatureTree (& dummy); } } -%extend CvLSH { ~CvLSH () { CvLSH * dummy = self; cvReleaseLSH (& dummy); } } - -// string operators for some OpenCV types - -%extend CvScalar -{ - const char * __str__(){ - static char str[256]; - snprintf(str, 256, "[%f, %f, %f, %f]", self->val[0], self->val[1], self->val[2], self->val[3]); - return str; - } - const char * __repr__(){ - static char str[256]; - snprintf(str, 256, "cvScalar(%f, %f, %f, %f)", self->val[0], self->val[1], self->val[2], self->val[3]); - return str; - } - const double __getitem__ (int index) { - if (index >= 4) { -#ifdef defined(SWIGPYTHON) - PyErr_SetString (PyExc_IndexError, "indice must be lower than 4"); -#elif defined(SWIGOCTAVE) - error("indice must be lower than 4"); -#endif - return 0; - } - if (index < -4) { -#ifdef defined(SWIGPYTHON) - PyErr_SetString (PyExc_IndexError, "indice must be bigger or egal to -4"); -#elif defined(SWIGOCTAVE) - error("indice must be bigger or egal to -4"); -#endif - return 0; - } - if (index < 0) { - /* negative index means from the end in python */ - index = 4 - index; - } - return self->val [index]; - } - void __setitem__ (int index, double value) { - if (index >= 4) { -#ifdef defined(SWIGPYTHON) - PyErr_SetString (PyExc_IndexError, "indice must be lower than 4"); -#elif defined(SWIGOCTAVE) - error("indice must be lower than 4"); -#endif - return; - } - if (index < -4) { -#ifdef defined(SWIGPYTHON) - PyErr_SetString (PyExc_IndexError, "indice must be bigger or egal to -4"); -#elif defined(SWIGOCTAVE) - error("indice must be bigger or egal to -4"); -#endif - return; - } - if (index < 0) { - /* negative index means from the end in python */ - index = 4 - index; - } - self->val [index] = value; - } -}; - -%extend CvPoint2D32f -{ - const char * __str__(){ - static char str[64]; - snprintf(str, 64, "[%f %f]", self->x, self->y); - return str; - } - const char * __repr__(){ - static char str[64]; - snprintf(str, 64, "cvPoint2D32f(%f,%f)", self->x, self->y); - return str; - } -}; - -%extend CvPoint -{ - const char * __str__(){ - static char str[64]; - snprintf(str, 64, "[%d %d]", self->x, self->y); - return str; - } - const char * __repr__(){ - static char str[64]; - snprintf(str, 64, "cvPoint(%d,%d)", self->x, self->y); - return str; - } -}; - -// Set up CvMat to emulate IplImage fields -%{ -int CvMat_cols_get(CvMat * m){ - return m->cols; -} -void CvMat_cols_set(CvMat * m, int cols){ - m->cols = cols; -} -int CvMat_rows_get(CvMat *m){ - return m->rows; -} -void CvMat_rows_set(CvMat *m, int rows){ - m->rows = rows; -} -int CvMat_width_get(CvMat * m){ - return m->cols; -} -void CvMat_width_set(CvMat * m, int width){ - m->cols = width; -} -int CvMat_height_get(CvMat *m){ - return m->rows; -} -void CvMat_height_set(CvMat * m, int height){ - m->rows = height; -} -int CvMat_depth_get(CvMat * m){ - return cvIplDepth(m->type); -} -void CvMat_depth_set(CvMat *m, int depth){ - cvError(CV_StsNotImplemented, "CvMat_depth_set", "Not Implemented", __FILE__, __LINE__); -} -int CvMat_nChannels_get(CvMat * m){ - return CV_MAT_CN(m->type); -} -void CvMat_nChannels_set(CvMat *m, int nChannels){ - int depth = CV_MAT_DEPTH(m->type); - m->type = CV_MAKETYPE(depth, nChannels); -} -int CvMat_origin_get(CvMat * m){ - /* Always 0 - top-left origin */ - return 0; -} -void CvMat_origin_set(CvMat * m, int origin){ - cvError(CV_StsNotImplemented, "CvMat_origin_get", "IplImage is replaced by CvMat in Python, so its fields are read-only", __FILE__, __LINE__); -} -int CvMat_dataOrder_get(CvMat * m){ - cvError(CV_StsNotImplemented, "CvMat_dataOrder_get", "Not Implemented", __FILE__, __LINE__); - return 0; -} -void CvMat_dataOrder_set(CvMat * m, int dataOrder){ - cvError(CV_StsNotImplemented, "CvMat_dataOrder_get", "IplImage is replaced by CvMat in Python, so its fields are read-only", __FILE__, __LINE__); -} -int CvMat_imageSize_get(CvMat * m){ - int step = m->step ? m->step : CV_ELEM_SIZE(m->type) * m->cols; - return step*m->rows; -} -void CvMat_imageSize_set(CvMat * m, int imageSize){ - cvError(CV_StsNotImplemented, "CvMat_imageSize_set", "IplImage is not implemented in Python, so origin is read-only", __FILE__, __LINE__); -} -int CvMat_widthStep_get(CvMat * m){ - return m->step; -} -void CvMat_widthStep_set(CvMat *m, int widthStep){ - m->step = widthStep; -} -%} - -%extend CvMat -{ - int depth; - int nChannels; - int dataOrder; - int origin; - int width; - int height; - int imageSize; - int widthStep; - // swig doesn't like the embedded union in CvMat, so re-add these - int rows; - int cols; -}; diff --git a/interfaces/swig/general/highgui.i b/interfaces/swig/general/highgui.i deleted file mode 100644 index 2dc244ab3..000000000 --- a/interfaces/swig/general/highgui.i +++ /dev/null @@ -1,91 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - - -%module(package="opencv") highgui - -%{ -#include "highgui.h" -%} - -%import "./cv.i" - -%include "./memory.i" -%include "./typemaps.i" - -%newobject cvLoadImage; -%newobject cvLoadImageM; -%newobject cvLoadImageMat; - -%nodefault CvCapture; -%newobject cvCaptureFromFile; -%newobject cvCaptureFromCAM; - -%nodefault CvVideoWriter; -%newobject cvCreateVideoWriter; - -/** modify the following to return CvMat instead of IplImage */ -%ignore cvLoadImage; -%rename (cvLoadImage) cvLoadImageMat; -%inline %{ -CvMat * cvLoadImageMat(const char* filename, int iscolor=CV_LOAD_IMAGE_COLOR ){ - return cvLoadImageM(filename, iscolor); -} -%} - -%typemap_out_CvMat(cvRetrieveFrame, ( CvCapture* capture ), (capture)); -%typemap_out_CvMat(cvQueryFrame, ( CvCapture * capture ), (capture)); - -%include "highgui.h" - -struct CvCapture { -}; -struct CvVideoWriter { -}; -%extend CvCapture { ~CvCapture () { CvCapture * dummy = self; cvReleaseCapture (& dummy); } } -%extend CvVideoWriter { ~CvVideoWriter () { CvVideoWriter * dummy = self; cvReleaseVideoWriter (& dummy); } } - - diff --git a/interfaces/swig/general/memory.i b/interfaces/swig/general/memory.i deleted file mode 100644 index 2f3524dae..000000000 --- a/interfaces/swig/general/memory.i +++ /dev/null @@ -1,170 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University -// 2008-05-15, Xavier Delacour - - -/****************************************************************************************\ -* Array allocation, deallocation, initialization and access to elements * -\****************************************************************************************/ - -%nodefault _IplImage; -%newobject cvCreateImage; -%newobject cvCreateImageMat; -%newobject cvCreateImageHeader; -%newobject cvCloneImage; -%newobject cvCloneImageMat; - -%nodefault CvMat; -%newobject cvCreateMat; -%newobject cvCreateMatHeader; -%newobject cvCloneMat; -%newobject cvGetSubRect; -%newobject cvGetRow; -%newobject cvGetRows; -%newobject cvGetCol; -%newobject cvGetCols; -%newobject cvGetDiag; - -%nodefault CvMatND; -%newobject cvCreateMatND; -%newobject cvCreateMatHeaderND; -%newobject cvCloneMatND; - -%nodefault CvSparseMat; -%newobject cvCreateSparseMat; -%newobject cvCloneSparseMat; - - -/****************************************************************************************\ -* Dynamic data structures * -\****************************************************************************************/ - -%nodefault CvMemStorage; -%newobject cvCreateMemStorage; -%newobject cvCreateChildMemStorage; - -%nodefault CvGraphScanner; -%newobject cvCreateGraphScanner; - - -/****************************************************************************************\ -* Data Persistence * -\****************************************************************************************/ - -%nodefault CvFileStorage; -%newobject cvOpenFileStorage; - - - -/// cv.h - -/****************************************************************************************\ -* Image Processing * -\****************************************************************************************/ - -%nodefault _IplConvKernel; -%newobject cvCreateStructuringElement; - - -/****************************************************************************************\ -* Structural Analysis * -\****************************************************************************************/ - -%newobject cvFitEllipse2; - - -/****************************************************************************************\ -* Tracking * -\****************************************************************************************/ - -%nodefault CvKalman; -%newobject cvCreateKalman; - -/****************************************************************************************\ -* Histogram functions * -\****************************************************************************************/ - -%nodefault CvHistogram; -%newobject cvCreateHist; - - -/****************************************************************************************\ -* Haar-like Object Detection functions * -\****************************************************************************************/ - -%nodefault CvHaarClassifierCascade; -%newobject cvLoadHaarClassifierCascade; - -%nodefault CvPOSITObject; -%newobject cvCreatePOSITObject; - -%nodefault CvFeatureTree; -%newobject cvCreateFeatureTree; - -%nodefault CvLSH; -%newobject cvCreateLSH; -%newobject cvCreateMemoryLSH; - - - -/// This hides all members of the IplImage which OpenCV doesn't use. -%ignore _IplImage::nSize; -%ignore _IplImage::alphaChannel; -%ignore _IplImage::colorModel; -%ignore _IplImage::channelSeq; -%ignore _IplImage::maskROI; -%ignore _IplImage::imageId; -%ignore _IplImage::tileInfo; -%ignore _IplImage::BorderMode; -%ignore _IplImage::BorderConst; -%ignore _IplImage::imageDataOrigin; - -/** - * imageData is hidden because the accessors produced by SWIG are not - * working correct. Use imageData_set and imageData_get instead - * (they are defined in "imagedata.i") - */ -%ignore _IplImage::imageData; diff --git a/interfaces/swig/general/sizeof.i b/interfaces/swig/general/sizeof.i deleted file mode 100644 index 438648645..000000000 --- a/interfaces/swig/general/sizeof.i +++ /dev/null @@ -1,7 +0,0 @@ -/* wrappers to be able to use cv.sizeof_XXX instead of size () */ - -%include "cmalloc.i" - -%sizeof (CvContour) -%sizeof (CvPoint) -%sizeof (CvSeq) diff --git a/interfaces/swig/general/typemaps.i b/interfaces/swig/general/typemaps.i deleted file mode 100644 index b12a75a8b..000000000 --- a/interfaces/swig/general/typemaps.i +++ /dev/null @@ -1,118 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - - -/** - * We set our own error handling function using cvRedirectError. - * (See also error.h) - * This function throws an error (OpenCV itself never throws) which - * we catch here. The error handling function (SendErrorToPython) - * sets the Python error. - * We need to return 0 here instead of an PyObject to tell Python - * that an error has occured. - */ -%exception - { - try { $action } - catch (...) - { - SWIG_fail; - } - } - - -/* include exception.i, so we can generate exceptions when we found errors */ -%include "exception.i" - -%include "sizeof.i" - -/** - * IplImage has no reference counting of underlying data, which creates problems with double - * frees after accessing subarrays in python -- instead, replace IplImage with CvMat, which - * should be functionally equivalent, but has reference counting. - * The potential shortcomings of this method are - * 1. no ROI - * 2. IplImage fields missing or named something else. - */ -%typemap(in) IplImage * (IplImage header){ - void * vptr; - int res = SWIG_ConvertPtr($input, (&vptr), $descriptor( CvMat * ), 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - $1 = cvGetImage((CvMat *)vptr, &header); -} - -/** For IplImage * return type, there are cases in which the memory should be freed and - * some not. To avoid leaks and segfaults, deprecate this return type and handle cases - * individually - */ -%typemap(out) IplImage * { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; -} - -/** macro to convert IplImage return type to CvMat. Note that this is only covers the case - * where the returned IplImage need not be freed. If the IplImage header needs to be freed, - * then CvMat must take ownership of underlying data. Instead, just handle these limited cases - * with CvMat equivalent. - */ -%define %typemap_out_CvMat(func, decl, call) -%rename (func##__Deprecated) func; -%rename (func) func##__CvMat; -%inline %{ -CvMat * func##__CvMat##decl{ - IplImage * im = func##call; - if(im){ - CvMat * mat = (CvMat *)cvAlloc(sizeof(CvMat)); - mat = cvGetMat(im, mat); - return mat; - } - return false; -} -%} -%enddef diff --git a/interfaces/swig/octave/CMakeLists.txt b/interfaces/swig/octave/CMakeLists.txt deleted file mode 100644 index 8b1378917..000000000 --- a/interfaces/swig/octave/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/interfaces/swig/octave/COPYING b/interfaces/swig/octave/COPYING deleted file mode 100644 index 98efdb1fa..000000000 --- a/interfaces/swig/octave/COPYING +++ /dev/null @@ -1,36 +0,0 @@ -IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. - -By downloading, copying, installing or using the software you agree to this license. -If you do not agree to this license, do not download, install, -copy or use the software. - - - Intel License Agreement - For Open Source Computer Vision Library - -Copyright (C) 2000, 2001, Intel Corporation, all rights reserved. -Third party copyrights are property of their respective owners. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistribution's of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistribution's in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * The name of Intel Corporation may not be used to endorse or promote products - derived from this software without specific prior written permission. - -This software is provided by the copyright holders and contributors "as is" and -any express or implied warranties, including, but not limited to, the implied -warranties of merchantability and fitness for a particular purpose are disclaimed. -In no event shall the Intel Corporation or contributors be liable for any direct, -indirect, incidental, special, exemplary, or consequential damages -(including, but not limited to, procurement of substitute goods or services; -loss of use, data, or profits; or business interruption) however caused -and on any theory of liability, whether in contract, strict liability, -or tort (including negligence or otherwise) arising in any way out of -the use of this software, even if advised of the possibility of such damage. diff --git a/interfaces/swig/octave/DESCRIPTION b/interfaces/swig/octave/DESCRIPTION deleted file mode 100644 index 6dce9f712..000000000 --- a/interfaces/swig/octave/DESCRIPTION +++ /dev/null @@ -1,12 +0,0 @@ -Name: opencv -Version: 1.0 -Date: 2008-03-15 -Author: Various Authors -Maintainer: Xavier Delacour -Title: OpenCV (Open Computer Vision Library) bindings -Description: Bindings for OpenCV, a collection of over 500 functions implementing computer vision, image processing and general-purpose numeric algorithms. The library is compatible with IPL and utilizes Intel Integrated Performance Primitives for better performance. More info at http://sourceforge.net/projects/opencvlibrary. -Depends: octave (>= 2.9.12) -Autoload: yes -SystemRequirements: swig, libcv-dev, libcvaux-dev, libhighgui-dev -License: BSD -Url: http://octave.sf.net diff --git a/interfaces/swig/octave/INDEX b/interfaces/swig/octave/INDEX deleted file mode 100644 index 56c7d2954..000000000 --- a/interfaces/swig/octave/INDEX +++ /dev/null @@ -1 +0,0 @@ -see the online documentation diff --git a/interfaces/swig/octave/PKG_ADD_template b/interfaces/swig/octave/PKG_ADD_template deleted file mode 100644 index 815be00d6..000000000 --- a/interfaces/swig/octave/PKG_ADD_template +++ /dev/null @@ -1,178 +0,0 @@ -cv; -ml; -highgui; - -IPL_ALIGN_DWORD=IPL_ALIGN_4BYTES; -IPL_ALIGN_QWORD=IPL_ALIGN_8BYTES; -CV_GRAPH=CV_SEQ_KIND_GRAPH; -CV_HIST_TREE=CV_HIST_SPARSE; -CV_TERMCRIT_NUMBER=CV_TERMCRIT_ITER; -CV_SEQ_ELTYPE_PTR=CV_USRTYPE1; -CV_SEQ_CONTOUR=CV_SEQ_POLYGON; -CV_STORAGE_WRITE_TEXT=CV_STORAGE_WRITE; -CV_STORAGE_WRITE_BINARY=CV_STORAGE_WRITE; -CV_NODE_INTEGER=CV_NODE_INT; -CV_NODE_FLOAT=CV_NODE_REAL; -CV_NODE_STRING=CV_NODE_STR; -CV_DXT_INVERSE_SCALE=CV_DXT_INV_SCALE; -CV_RGB2RGBA=CV_BGR2BGRA; -CV_FONT_VECTOR0=CV_FONT_HERSHEY_SIMPLEX; -CV_RGBA2RGB=CV_BGRA2BGR; -CV_RGB2BGRA=CV_BGR2RGBA; -CV_BGRA2RGB=CV_RGBA2BGR; -CV_RGB2BGR=CV_BGR2RGB; -CV_RGBA2BGRA=CV_BGRA2RGBA; -CV_GRAY2RGB=CV_GRAY2BGR; -CV_GRAY2RGBA=CV_GRAY2BGRA; -CV_BayerBG2RGB=CV_BayerRG2BGR; -CV_BayerGB2RGB=CV_BayerGR2BGR; -CV_BayerRG2RGB=CV_BayerBG2BGR; -CV_BayerGR2RGB=CV_BayerGB2BGR; - -CV_MAKE_TYPE=@CV_MAKETYPE; -CV_IS_CONT_MAT=@CV_IS_MAT_CONT; -cvGetSubArr=@cvGetSubRect; -cvZero=@cvSetZero; -cvCvtScale=@cvConvertScale; -cvScale=@cvConvertScale; -cvCvtScaleAbs=@cvConvertScaleAbs; -cvCheckArray=@cvCheckArr; -cvMatMulAddEx=@cvGEMM; -cvMatMulAddS=@cvTransform; -cvT=@cvTranspose; -cvMirror=@cvFlip; -cvInv=@cvInvert; -cvMahalonobis=@cvMahalanobis; -cvFFT=@cvDFT; -cvGraphFindEdge=@cvFindGraphEdge; -cvGraphFindEdgeByPtr=@cvFindGraphEdgeByPtr; -cvDrawRect=@cvRectangle; -cvDrawLine=@cvLine; -cvDrawCircle=@cvCircle; -cvDrawEllipse=@cvEllipse; -cvDrawPolyLine=@cvPolyLine; -cvCalcHist=@cvCalcArrHist; - -## use subsasgn/assign, combine with above -## or expose octave_swig_type install_global etc -cv.CV_MAKE_TYPE=@CV_MAKETYPE; -cv.CV_IS_CONT_MAT=@CV_IS_MAT_CONT; -cv.cvGetSubArr=@cvGetSubRect; -cv.cvZero=@cvSetZero; -cv.cvCvtScale=@cvConvertScale; -cv.cvScale=@cvConvertScale; -cv.cvCvtScaleAbs=@cvConvertScaleAbs; -cv.cvCheckArray=@cvCheckArr; -cv.cvMatMulAddEx=@cvGEMM; -cv.cvMatMulAddS=@cvTransform; -cv.cvT=@cvTranspose; -cv.cvMirror=@cvFlip; -cv.cvInv=@cvInvert; -cv.cvMahalonobis=@cvMahalanobis; -cv.cvFFT=@cvDFT; -cv.cvGraphFindEdge=@cvFindGraphEdge; -cv.cvGraphFindEdgeByPtr=@cvFindGraphEdgeByPtr; -cv.cvDrawRect=@cvRectangle; -cv.cvDrawLine=@cvLine; -cv.cvDrawCircle=@cvCircle; -cv.cvDrawEllipse=@cvEllipse; -cv.cvDrawPolyLine=@cvPolyLine; -cv.cvCalcHist=@cvCalcArrHist; - -## add %octavecode support, or use subsref - -function [count,seq] = cvFindContours(varargin) - global cv; - [count, seq] = cv.cvFindContoursUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_CvPoint.cast(seq); - endif -endfunction -cv.cvFindContours=@cvFindContours; - -function [count,seq] = cvHoughCircles(varargin) - global cv; - [count, seq] = cv.cvHoughCirclesUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_float_3.cast(seq); - endif -endfunction -cv.cvHoughCircles=@cvHoughCircles; - -function [count,seq] = cvPyrSegmentation(varargin) - global cv; - [count, seq] = cv.cvPyrSegmentationUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_CvConnectedComp.cast(seq); - endif -endfunction -cv.cvPyrSegmentation=@cvPyrSegmentation; - -function [count,seq] = cvApproxChains(varargin) - global cv; - [count, seq] = cv.cvApproxChainsUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_CvPoint.cast(seq); - endif -endfunction -cv.cvApproxChains=@cvApproxChains; - -function [count,seq] = cvContourFromContourTree(varargin) - global cv; - [count, seq] = cv.cvContourFromContourTreeUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_CvPoint.cast(seq); - endif -endfunction -cv.cvContourFromContourTree=@cvContourFromContourTree; - -function [count,seq] = cvConvexityDefects(varargin) - global cv; - [count, seq] = cv.cvConvexityDefectsUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_CvConvexityDefect.cast(seq); - endif -endfunction -cv.cvConvexityDefects=@cvConvexityDefects; - -function seq = cvHoughLines2(varargin) - global cv; - seq = cv.cvHoughLinesUntyped( varargin{:} ); - if (swig_this(seq)) - seq = cv.CvSeq_CvPoint.cast(seq); - t = CV_SEQ_ELTYPE(seq) - if (t == cv.CV_32SC4) - seq = cv.CvSeq_CvPoint_2.cast(seq) - else - seq = cv.CvSeq_float_2.cast(seq) - endif - endif -endfunction -cv.cvHoughLines2=@cvHoughLines2; - - -function c = CvSeq_map(self) - c = cell(1, self.total); - for i = 1:self.total, c{i} = self{i}; end; -endfunction -cv.CvSeq_map=@CvSeq_map; - -function c = CvSeq_hrange(self) - c = {}; - i = 0; - if swig_this(self) - s = self; - while swig_this(s.h_next), s = s.cast(s.h_next); c{++i} = s; end; - endif -endfunction -cv.CvSeq_hrange=@CvSeq_hrange; - -function c = CvSeq_vrange(self) - c = {}; - i = 0; - if swig_this(self) - s = self; - while swig_this(s.v_next), s = s.cast(s.v_next); c{++i} = s; end; - endif -endfunction -cv.CvSeq_vrange=@CvSeq_vrange; diff --git a/interfaces/swig/octave/adapters.i b/interfaces/swig/octave/adapters.i deleted file mode 100644 index b3d1c5f84..000000000 --- a/interfaces/swig/octave/adapters.i +++ /dev/null @@ -1,452 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2008-04-07, Xavier Delacour - - -// The trouble here is that Octave arrays are in Fortran order, while OpenCV -// arrays are in C order. Neither Octave nor OpenCV seem to provide n-dim -// transpose, so we do that here. - -// For images, we also scale the result to lie within [0-1]. - - -// * add support for sparse matrices - -// * add support for complex matrices - -// * add support for roi and coi, or complain if either is set - -// * test case for channel==1 -// * test case for channel=={2,3,4} -// * test case for 2 dim, 1 dim, n dim cases - -%{ - -class ndim_iterator { - int nd; - int dims[CV_MAX_DIM]; - int step[CV_MAX_DIM]; - int curr[CV_MAX_DIM]; - uchar* _data; - int _type; - bool done; - public: - ndim_iterator() {} - ndim_iterator(CvMat* m) { - int c = CV_MAT_CN(m->type); - int elem_size = CV_ELEM_SIZE1(m->type); - nd = c == 1 ? 2 : 3; - dims[0] = m->rows; - dims[1] = m->cols; - dims[2] = c; - step[0] = m->step; - step[1] = c * elem_size; - step[2] = elem_size; - curr[0] = curr[1] = curr[2] = 0; - _data = m->data.ptr; - _type = m->type; - done = false; - } - ndim_iterator(CvMatND* m) { - int c = CV_MAT_CN(m->type); - int elem_size = CV_ELEM_SIZE1(m->type); - nd = m->dims + (c == 1 ? 0 : 1); - for (int j = 0; j < m->dims; ++j) { - dims[j] = m->dim[j].size; - step[j] = m->dim[j].step; - curr[j] = 0; - } - if (c > 1) { - dims[m->dims] = c; - step[m->dims] = elem_size; - curr[m->dims] = 0; - } - _data = m->data.ptr; - _type = m->type; - done = false; - } - ndim_iterator(IplImage* img) { - nd = img->nChannels == 1 ? 2 : 3; - dims[0] = img->height; - dims[1] = img->width; - dims[2] = img->nChannels; - - switch (img->depth) { - case IPL_DEPTH_8U: _type = CV_8U; break; - case IPL_DEPTH_8S: _type = CV_8S; break; - case IPL_DEPTH_16U: _type = CV_16U; break; - case IPL_DEPTH_16S: _type = CV_16S; break; - case IPL_DEPTH_32S: _type = CV_32S; break; - case IPL_DEPTH_32F: _type = CV_32F; break; - case IPL_DEPTH_1U: _type = CV_64F; break; - default: - error("unsupported image depth"); - return; - } - - int elem_size = CV_ELEM_SIZE1(_type); - step[0] = img->widthStep; - step[1] = img->nChannels * elem_size; - step[2] = elem_size; - curr[0] = curr[1] = curr[2] = 0; - _data = (uchar*)img->imageData; - done = false; - } - ndim_iterator(NDArray& nda) { - dim_vector d(nda.dims()); - nd = d.length(); - int last_step = sizeof(double); - for (int j = 0; j < d.length(); ++j) { - dims[j] = d(j); - step[j] = last_step; - last_step *= dims[j]; - curr[j] = 0; - } - _data = (uchar*)const_cast(nda.data()); - _type = CV_64F; - done = false; - } - - operator bool () const { - return !done; - } - uchar* data() { - return _data; - } - int type() const { - return _type; - } - ndim_iterator& operator++ () { - int curr_dim = 0; - for (;;) { - _data += step[curr_dim]; - if (++curr[curr_dim] < dims[curr_dim]) - break; - curr[curr_dim] = 0; - _data -= step[curr_dim] * dims[curr_dim]; - ++curr_dim; - if (curr_dim == nd) { - done = true; - break; - } - } - return *this; - } -}; - -template - void transpose_copy_typed(ndim_iterator src_it, ndim_iterator dst_it, - double scale) { - assert(sizeof(T1) == CV_ELEM_SIZE1(src_it.type())); - assert(sizeof(T2) == CV_ELEM_SIZE1(dst_it.type())); - if (scale == 1) { - while (src_it) { - *(T2*)dst_it.data() = (T2)*(T1*)src_it.data(); - ++src_it; - ++dst_it; - } - } else { - while (src_it) { - *(T2*)dst_it.data() = (T2)(scale * (*(T1*)src_it.data())); - ++src_it; - ++dst_it; - } - } -} - -template -void transpose_copy2(ndim_iterator src_it, ndim_iterator dst_it, - double scale) { - switch (CV_MAT_DEPTH(dst_it.type())) { - case CV_8U: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_8S: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_16U: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_16S: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_32S: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_32F: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_64F: transpose_copy_typed(src_it,dst_it,scale); break; - default: - error("unsupported dest array type (supported types are CV_8U, CV_8S, " - "CV_16U, CV_16S, CV_32S, CV_32F, CV_64F)"); - } -} - -void transpose_copy(ndim_iterator src_it, ndim_iterator dst_it, - double scale = 1) { - switch (CV_MAT_DEPTH(src_it.type())) { - case CV_8U: transpose_copy2(src_it,dst_it,scale); break; - case CV_8S: transpose_copy2(src_it,dst_it,scale); break; - case CV_16U: transpose_copy2(src_it,dst_it,scale); break; - case CV_16S: transpose_copy2(src_it,dst_it,scale); break; - case CV_32S: transpose_copy2(src_it,dst_it,scale); break; - case CV_32F: transpose_copy2(src_it,dst_it,scale); break; - case CV_64F: transpose_copy2(src_it,dst_it,scale); break; - default: - error("unsupported source array type (supported types are CV_8U, CV_8S, " - "CV_16U, CV_16S, CV_32S, CV_32F, CV_64F)"); - } -} - -octave_value cv2mat(CvArr* arr) { - dim_vector d; - NDArray nda; - - if (CV_IS_MAT(arr)) { - // m x n x c - CvMat* m = (CvMat*)arr; - - int c = CV_MAT_CN(m->type); - if (c == 1) { - d.resize(2); - d(0) = m->rows; - d(1) = m->cols; - } else { - d.resize(3); - d(0) = m->rows; - d(1) = m->cols; - d(2) = c; - } - - nda = NDArray(d); - transpose_copy(m, nda); - } - else if (CV_IS_MATND(arr)) { - // m1 x m2 x ... x mn x c - CvMatND* m = (CvMatND*)arr; - - int c = CV_MAT_CN(m->type); - if (c == 1) { - d.resize(m->dims); - for (int j = 0; j < m->dims; ++j) - d(j) = m->dim[j].size; - } else { - d.resize(m->dims + 1); - for (int j = 0; j < m->dims; ++j) - d(j) = m->dim[j].size; - d(m->dims) = c; - } - - nda = NDArray(d); - transpose_copy(m, nda); - } - else if (CV_IS_IMAGE(arr)) { - // m x n x c - IplImage* img = (IplImage*)arr; - - if (img->nChannels == 1) { - d.resize(2); - d(0) = img->height; - d(1) = img->width; - } else { - d.resize(3); - d(0) = img->height; - d(1) = img->width; - d(2) = img->nChannels; - } - - nda = NDArray(d); - transpose_copy(img, nda); - } - else { - error("unsupported array type (supported types are CvMat, CvMatND, IplImage)"); - return octave_value(); - } - - return nda; -} - -octave_value mat2cv(const octave_value& ov, int type) { - NDArray nda(ov.array_value()); - if (error_state) - return 0; - - dim_vector d = ov.dims(); - assert(d.length() > 0); - - int nd = d.length(); - int last_dim = d(d.length() - 1); - int c = CV_MAT_CN(type); - if (c != 1 && c != last_dim) { - error("last dimension and channel must agree, or channel must equal one"); - return 0; - } - if (c > 1) - --nd; - - if (nd == 2) { - CvMat *m = cvCreateMat(d(0), d(1), type); - transpose_copy(nda, m); - return SWIG_NewPointerObj(m, SWIGTYPE_p_CvMat, SWIG_POINTER_OWN); - } - else { - int tmp[CV_MAX_DIM]; - for (int j = 0; j < nd; ++j) - tmp[j] = d(j); - CvMatND *m = cvCreateMatND(nd, tmp, type); - transpose_copy(nda, m); - return SWIG_NewPointerObj(m, SWIGTYPE_p_CvMatND, SWIG_POINTER_OWN); - } -} - -octave_value cv2im(CvArr* arr) { - if (!CV_IS_IMAGE(arr) && !CV_IS_MAT(arr)) { - error("input is not an OpenCV image or 2D matrix"); - return octave_value(); - } - - dim_vector d; - NDArray nda; - - if (CV_IS_MAT(arr)) { - // m x n x c - CvMat* m = (CvMat*)arr; - - int c = CV_MAT_CN(m->type); - if (c == 1) { - d.resize(2); - d(0) = m->rows; - d(1) = m->cols; - } else { - d.resize(3); - d(0) = m->rows; - d(1) = m->cols; - d(2) = c; - } - - nda = NDArray(d); - transpose_copy(m, nda, 1/256.0); - } - else if (CV_IS_IMAGE(arr)) { - // m x n x c - IplImage* img = (IplImage*)arr; - - if (img->nChannels == 1) { - d.resize(2); - d(0) = img->height; - d(1) = img->width; - } else { - d.resize(3); - d(0) = img->height; - d(1) = img->width; - d(2) = img->nChannels; - } - - nda = NDArray(d); - transpose_copy(img, nda, 1/256.0); - } - - return nda; -} - -CvMat* im2cv(const octave_value& ov, int depth) { - NDArray nda(ov.array_value()); - if (error_state) - return 0; - - dim_vector d = ov.dims(); - assert(d.length() > 0); - - if (d.length() != 2 && d.length() != 3 && - !(d.length() == 3 && d(2) <= 4)) { - error("input must be m x n or m x n x c matrix, where 1<=c<=4"); - return 0; - } - - int channels = d.length() == 2 ? 1 : d(2); - int type = CV_MAKETYPE(depth, channels); - - CvMat *m = cvCreateMat(d(0), d(1), type); - transpose_copy(nda, m, 256); - - return m; -} - -%} - -%newobject im2cv; - -%feature("autodoc", 0) cv2mat; -%feature("autodoc", 0) mat2cv; -%feature("autodoc", 0) cv2im; -%feature("autodoc", 0) im2cv; - -%docstring cv2mat { -@deftypefn {Loadable Function} @var{m1} = cv2mat (@var{m2}) -Convert the CvMat, CvMatND, or IplImage @var{m2} into an Octave real matrix @var{m1}. -The dimensions @var{m1} are those of @var{m2}, plus an addition dimension -if @var{m2} has more than one channel. -@end deftypefn -} - -%docstring mat2cv { -@deftypefn {Loadable Function} @var{m1} = mat2cv (@var{m2}, @var{type}) -Convert the Octave array @var{m2} into either a CvMat or a CvMatND of type -@var{type}. -@var{type} is one of CV_8UC(n), CV_8SC(n), CV_16UC(n), CV_16SC(n), CV_32SC(n), -CV_32FC(n), CV_64FC(n), where n indicates channel and is between 1 and 4. -If the dimension of @var{m2} is equal to 2 (not counting channels), -a CvMat is returned. Otherwise, a CvMatND is returned. -@end deftypefn -} - -%docstring cv2im { -@deftypefn {Loadable Function} @var{im} = cv2im (@var{I}) -Convert the OpenCV image or 2D matrix @var{I} into an Octave image @var{im}. -@var{im} is a real matrix of dimension height x width or -height x width x channels, with values within the interval [0,1]). -@end deftypefn -} - -%docstring im2cv { -@deftypefn {Loadable Function} @var{I} = im2cv (@var{im}, @var{depth}) -Convert the Octave image @var{im} into the OpenCV image @var{I} of depth -@var{depth}. -@var{im} is a real matrix of dimension height x width or -height x width x channels, with values within the interval [0,1]. -@var{depth} must be one of CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F. -@end deftypefn -} - -octave_value cv2mat(CvArr* arr); -octave_value mat2cv(const octave_value& ov, int type); -octave_value cv2im(CvArr* arr); -CvMat* im2cv(const octave_value& ov, int depth); diff --git a/interfaces/swig/octave/cv.i b/interfaces/swig/octave/cv.i deleted file mode 100644 index 867ef138e..000000000 --- a/interfaces/swig/octave/cv.i +++ /dev/null @@ -1,87 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University -// 2008-04-03, Xavier Delacour - - -// todo remove these.. -#pragma SWIG nowarn=312,362,303,365,366,367,368,370,371,372,451,454,503 - - -%{ -#include "octhelpers.h" -#include "octcvseq.hpp" -#include "octerror.h" -%} - - -// direct SWIG to generate octave docstrings -%feature("autodoc", 1); - -// include octave-specific files -%include "./octtypemaps.i" -%include "./cvshadow.i" - -// parse OpenCV headers -%include "../general/cv.i" - -// Accessors for the CvMat and IplImage data structure are defined here -%include "./cvarr.i" - -// Octave sequence compatibility for CvSeq -%include "./cvseq.i" - - -%include "./imagedata.i" - -// include some wrappers to manipulate CvSeq types -%include "./octcvseq.hpp" - -// aliases from #defines -%include "./cvaliases.i" - -%insert(init) %{ - cvRedirectError(function_ptr_generator(), void_ptr_generator(), void_ptrptr_generator()); -%} - diff --git a/interfaces/swig/octave/cv_wrap.cpp b/interfaces/swig/octave/cv_wrap.cpp deleted file mode 100644 index 078c48755..000000000 --- a/interfaces/swig/octave/cv_wrap.cpp +++ /dev/null @@ -1,106279 +0,0 @@ -/* ---------------------------------------------------------------------------- - * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.40 - * - * This file is not intended to be easily readable and contains a number of - * coding conventions designed to improve portability and efficiency. Do not make - * changes to this file unless you know what you are doing--modify the SWIG - * interface file instead. - * ----------------------------------------------------------------------------- */ - -#define SWIGOCTAVE -#define SWIG_name_d "cv" -#define SWIG_name cv -#define OCTAVE_API_VERSION_OPTION 0 - - -#ifdef __cplusplus -/* SwigValueWrapper is described in swig.swg */ -template class SwigValueWrapper { - struct SwigMovePointer { - T *ptr; - SwigMovePointer(T *p) : ptr(p) { } - ~SwigMovePointer() { delete ptr; } - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); -public: - SwigValueWrapper() : pointer(0) { } - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } - operator T&() const { return *pointer.ptr; } - T *operator&() { return pointer.ptr; } -}; - -template T SwigValueInit() { - return T(); -} -#endif - -/* ----------------------------------------------------------------------------- - * This section contains generic SWIG labels for method/variable - * declarations/attributes, and other compiler dependent labels. - * ----------------------------------------------------------------------------- */ - -/* template workaround for compilers that cannot correctly implement the C++ standard */ -#ifndef SWIGTEMPLATEDISAMBIGUATOR -# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -# define SWIGTEMPLATEDISAMBIGUATOR template -# elif defined(__HP_aCC) -/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ -/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -# define SWIGTEMPLATEDISAMBIGUATOR template -# else -# define SWIGTEMPLATEDISAMBIGUATOR -# endif -#endif - -/* inline attribute */ -#ifndef SWIGINLINE -# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -# else -# define SWIGINLINE -# endif -#endif - -/* attribute recognised by some compilers to avoid 'unused' warnings */ -#ifndef SWIGUNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -# elif defined(__ICC) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -#endif - -#ifndef SWIG_MSC_UNSUPPRESS_4505 -# if defined(_MSC_VER) -# pragma warning(disable : 4505) /* unreferenced local function has been removed */ -# endif -#endif - -#ifndef SWIGUNUSEDPARM -# ifdef __cplusplus -# define SWIGUNUSEDPARM(p) -# else -# define SWIGUNUSEDPARM(p) p SWIGUNUSED -# endif -#endif - -/* internal SWIG method */ -#ifndef SWIGINTERN -# define SWIGINTERN static SWIGUNUSED -#endif - -/* internal inline SWIG method */ -#ifndef SWIGINTERNINLINE -# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE -#endif - -/* exporting methods */ -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -# ifndef GCC_HASCLASSVISIBILITY -# define GCC_HASCLASSVISIBILITY -# endif -#endif - -#ifndef SWIGEXPORT -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if defined(STATIC_LINKED) -# define SWIGEXPORT -# else -# define SWIGEXPORT __declspec(dllexport) -# endif -# else -# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -# define SWIGEXPORT __attribute__ ((visibility("default"))) -# else -# define SWIGEXPORT -# endif -# endif -#endif - -/* calling conventions for Windows */ -#ifndef SWIGSTDCALL -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# define SWIGSTDCALL __stdcall -# else -# define SWIGSTDCALL -# endif -#endif - -/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) -# define _CRT_SECURE_NO_DEPRECATE -#endif - -/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) -# define _SCL_SECURE_NO_DEPRECATE -#endif - - - -#include -#include -#include -#include -#include - -/* ----------------------------------------------------------------------------- - * swigrun.swg - * - * This file contains generic C API SWIG runtime support for pointer - * type checking. - * ----------------------------------------------------------------------------- */ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "4" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -# define SWIG_QUOTE_STRING(x) #x -# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -# define SWIG_TYPE_TABLE_NAME -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the SWIG runtime code. - In 99.9% of the cases, SWIG just needs to declare them as 'static'. - - But only do this if strictly necessary, ie, if you have problems - with your compiler or suchlike. -*/ - -#ifndef SWIGRUNTIME -# define SWIGRUNTIME SWIGINTERN -#endif - -#ifndef SWIGRUNTIMEINLINE -# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -/* Generic buffer size */ -#ifndef SWIG_BUFFER_SIZE -# define SWIG_BUFFER_SIZE 1024 -#endif - -/* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 - -/* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 - - -/* - Flags/methods for returning states. - - The SWIG conversion methods, as ConvertPtr, return and integer - that tells if the conversion was successful or not. And if not, - an error code can be returned (see swigerrors.swg for the codes). - - Use the following macros/flags to set or process the returning - states. - - In old versions of SWIG, code such as the following was usually written: - - if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { - // success code - } else { - //fail code - } - - Now you can be more explicit: - - int res = SWIG_ConvertPtr(obj,vptr,ty.flags); - if (SWIG_IsOK(res)) { - // success code - } else { - // fail code - } - - which is the same really, but now you can also do - - Type *ptr; - int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); - if (SWIG_IsOK(res)) { - // success code - if (SWIG_IsNewObj(res) { - ... - delete *ptr; - } else { - ... - } - } else { - // fail code - } - - I.e., now SWIG_ConvertPtr can return new objects and you can - identify the case and take care of the deallocation. Of course that - also requires SWIG_ConvertPtr to return new result values, such as - - int SWIG_ConvertPtr(obj, ptr,...) { - if () { - if () { - *ptr = ; - return SWIG_NEWOBJ; - } else { - *ptr = ; - return SWIG_OLDOBJ; - } - } else { - return SWIG_BADOBJ; - } - } - - Of course, returning the plain '0(success)/-1(fail)' still works, but you can be - more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the - SWIG errors code. - - Finally, if the SWIG_CASTRANK_MODE is enabled, the result code - allows to return the 'cast rank', for example, if you have this - - int food(double) - int fooi(int); - - and you call - - food(1) // cast rank '1' (1 -> 1.0) - fooi(1) // cast rank '0' - - just use the SWIG_AddCast()/SWIG_CheckState() -*/ - -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) - -/* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) -/* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) -/* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) -/* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) -/* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) - -/* Cast-Rank Mode */ -#if defined(SWIG_CASTRANK_MODE) -# ifndef SWIG_TypeRank -# define SWIG_TypeRank unsigned long -# endif -# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -# define SWIG_MAXCASTRANK (2) -# endif -# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) -# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) { - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; -} -SWIGINTERNINLINE int SWIG_CheckState(int r) { - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; -} -#else /* no cast-rank mode */ -# define SWIG_AddCast -# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) -#endif - - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *, int *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -/* Structure to store information on one type */ -typedef struct swig_type_info { - const char *name; /* mangled name of this type */ - const char *str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info *cast; /* linked list of types that can cast into this type */ - void *clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ -} swig_type_info; - -/* Structure to store a type and conversion function used for casting */ -typedef struct swig_cast_info { - swig_type_info *type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info *next; /* pointer to next cast in linked list */ - struct swig_cast_info *prev; /* pointer to the previous cast */ -} swig_cast_info; - -/* Structure used to store module information - * Each module generates one structure like this, and the runtime collects - * all of these structures and stores them in a circularly linked list.*/ -typedef struct swig_module_info { - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info *next; /* Pointer to next element in circularly linked list */ - swig_type_info **type_initial; /* Array of initially generated type structures */ - swig_cast_info **cast_initial; /* Array of initially generated casting structures */ - void *clientdata; /* Language specific module data */ -} swig_module_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); -} - -/* - Check type equivalence in a name list like ||... - Return 0 if not equal, 1 if equal -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Check type equivalence in a name list like ||... - Return 0 if equal, -1 if nb < tb, 1 if nb > tb -*/ -SWIGRUNTIME int -SWIG_TypeCompare(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - - -/* - Check the typename -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (!type) return NULL; - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - swig_cast_info *cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - - while (cast) { - if (!cast->converter) { - swig_type_info *tc = cast->type; - if (!tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; - } -} -SWIGRUNTIME void -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; -} - -/* - Search for a swig_type_info structure only by mangled name - Search is a O(log #types) - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_MangledTypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - swig_module_info *iter = start; - do { - if (iter->size) { - register size_t l = 0; - register size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - register size_t i = (l + r) >> 1; - const char *iname = iter->types[i]->name; - if (iname) { - register int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } else if (compare < 0) { - if (i) { - r = i - 1; - } else { - break; - } - } else if (compare > 0) { - l = i + 1; - } - } else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; -} - -/* - Search for a swig_type_info structure for either a mangled name or a human readable name. - It first searches the mangled names of the types, which is a O(log #types) - If a type is not found it then searches the human readable names, which is O(#types). - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - /* STEP 1: Search the name field using binary search */ - swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info *iter = start; - do { - register size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } - - /* neither found a match */ - return 0; -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static const char hex[17] = "0123456789abcdef"; - register const unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register char d = *(c++); - register unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 - - - - -#if OCTAVE_API_VERSION_OPTION>0 -#define USE_OCTAVE_API_VERSION OCTAVE_API_VERSION_OPTION -#else - -#include -#ifdef OCTAVE_API_VERSION_N -#define USE_OCTAVE_API_VERSION OCTAVE_API_VERSION_N - -#else // Interim hack to distinguish between Octave 3.2 and earlier versions. - -#define ComplexLU __ignore -#include -#undef ComplexLU -#ifdef octave_Complex_LU_h -#define USE_OCTAVE_API_VERSION 36 -#else -#define USE_OCTAVE_API_VERSION 37 -#endif - -#endif - -#endif - -SWIGRUNTIME bool SWIG_check_num_args(const char *func_name, int num_args, int max_args, int min_args, int varargs) { - if (num_args > max_args && !varargs) - error("function %s takes at most %i arguments", func_name, max_args); - else if (num_args < min_args) - error("function %s requires at least %i arguments", func_name, min_args); - else - return true; - return false; -} - -SWIGRUNTIME octave_value_list *SWIG_Octave_AppendOutput(octave_value_list *ovl, const octave_value &ov) { - ovl->append(ov); - return ovl; -} - -SWIGRUNTIME octave_value SWIG_ErrorType(int code) { - switch (code) { - case SWIG_MemoryError: - return "SWIG_MemoryError"; - case SWIG_IOError: - return "SWIG_IOError"; - case SWIG_RuntimeError: - return "SWIG_RuntimeError"; - case SWIG_IndexError: - return "SWIG_IndexError"; - case SWIG_TypeError: - return "SWIG_TypeError"; - case SWIG_DivisionByZero: - return "SWIG_DivisionByZero"; - case SWIG_OverflowError: - return "SWIG_OverflowError"; - case SWIG_SyntaxError: - return "SWIG_SyntaxError"; - case SWIG_ValueError: - return "SWIG_ValueError"; - case SWIG_SystemError: - return "SWIG_SystemError"; - case SWIG_AttributeError: - return "SWIG_AttributeError"; - } - return "SWIG unknown error"; -} - -SWIGRUNTIME octave_value SWIG_Error(int code, const char *msg) { - octave_value type(SWIG_ErrorType(code)); - std::string r = msg; - r += " (" + type.string_value() + ")"; - error(r.c_str()); - return octave_value(r); -} - -#define SWIG_fail goto fail - -#define SWIG_Octave_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Octave_ConvertPtrAndOwn(obj, pptr, type, flags, own) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Octave_NewPointerObj(ptr, type, flags) -#define swig_owntype int - -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Octave_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Octave_NewPackedObj(ptr, sz, type) - -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_ConvertPtr(obj, pptr, type, 0) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_NewPointerObj(ptr, type, 0) - -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Octave_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Octave_NewPackedObj(ptr, sz, type) - -#define SWIG_GetModule(clientdata) SWIG_Octave_GetModule(clientdata) -#define SWIG_SetModule(clientdata, pointer) SWIG_Octave_SetModule(clientdata,pointer); -#define SWIG_MODULE_CLIENTDATA_TYPE void* - -#define Octave_Error_Occurred() 0 -#define SWIG_Octave_AddErrorMsg(msg) {;} - -SWIGRUNTIME swig_module_info *SWIG_Octave_GetModule(void *clientdata); -SWIGRUNTIME void SWIG_Octave_SetModule(void *clientdata, swig_module_info *pointer); - -// For backward compatibility only -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) 0 - -// Runtime API implementation - -#include -#include -#include - -typedef octave_value_list(*octave_func) (const octave_value_list &, int); -class octave_swig_type; - -namespace Swig { - class Director; - - SWIGRUNTIME void swig_register_director(octave_swig_type *self, void *ptr, Director *d); - SWIGRUNTIME void swig_director_destroyed(octave_swig_type *self, Director *d); - SWIGRUNTIME void swig_director_set_self(Director *d, octave_swig_type *self); - - SWIGRUNTIME octave_base_value *swig_value_ref(octave_swig_type *ost); - SWIGRUNTIME octave_swig_type *swig_value_deref(octave_value ov); - SWIGRUNTIME octave_swig_type *swig_value_deref(const octave_base_value &ov); - - typedef std::map < void *, Director * > rtdir_map; - - SWIGINTERN rtdir_map* get_rtdir_map() { - static swig_module_info *module = 0; - if (!module) - module = SWIG_GetModule(0); - if (!module) - return 0; - if (!module->clientdata) - module->clientdata = new rtdir_map; - return (rtdir_map *) module->clientdata; - } - - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *d) { - rtdir_map* rm = get_rtdir_map(); - if (rm) - (*rm)[vptr] = d; - } - - SWIGINTERNINLINE void erase_rtdir(void *vptr) { - rtdir_map* rm = get_rtdir_map(); - if (rm) - (*rm).erase(vptr); - } - - SWIGINTERNINLINE Director *get_rtdir(void *vptr) { - rtdir_map* rm = get_rtdir_map(); - if (!rm) - return 0; - rtdir_map::const_iterator pos = rm->find(vptr); - Director *rtdir = (pos != rm->end())? pos->second : 0; - return rtdir; - } -} - - struct swig_octave_member { - const char *name; - octave_func method; - octave_func get_method; - octave_func set_method; - int flags; // 1 static, 2 global - const char *doc; - bool is_static() const { - return flags &1; - } bool is_global() const { - return flags &2; - } - }; - - struct swig_octave_class { - const char *name; - swig_type_info **type; - int director; - octave_func constructor; - const char *constructor_doc; - octave_func destructor; - const swig_octave_member *members; - const char **base_names; - const swig_type_info **base; - }; - - // octave_swig_type plays the role of both the shadow class and the class - // representation within Octave, since there is no support for classes. - // - // These should really be decoupled, with the class support added to Octave - // and the shadow class given by an m-file script. That would dramatically - // reduce the runtime complexity, and be more in line w/ other modules. - - class octave_swig_type:public octave_base_value { - struct cpp_ptr { - void *ptr; - bool destroyed; - cpp_ptr(void *_ptr):ptr(_ptr), destroyed(false) { - }}; - typedef std::pair < const swig_type_info *, cpp_ptr > type_ptr_pair; - - mutable swig_module_info *module; - - const swig_type_info *construct_type; // type of special type object - std::vector < type_ptr_pair > types; // our c++ base classes - int own; // whether we call c++ destructors when we die - - typedef std::pair < const swig_octave_member *, octave_value > member_value_pair; - typedef std::map < std::string, member_value_pair > member_map; - member_map members; - bool always_static; - - const swig_octave_member *find_member(const swig_type_info *type, const std::string &name) { - if (!type->clientdata) - return 0; - swig_octave_class *c = (swig_octave_class *) type->clientdata; - const swig_octave_member *m; - for (m = c->members; m->name; ++m) - if (m->name == name) - return m; - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - return 0; - if ((m = find_member(c->base[j], name))) - return m; - } - return 0; - } - - member_value_pair *find_member(const std::string &name, bool insert_if_not_found) { - member_map::iterator it = members.find(name); - if (it != members.end()) - return &it->second; - const swig_octave_member *m; - for (unsigned int j = 0; j < types.size(); ++j) - if ((m = find_member(types[j].first, name))) - return &members.insert(std::make_pair(name, std::make_pair(m, octave_value()))).first->second; - if (!insert_if_not_found) - return 0; - return &members[name]; - } - - const swig_type_info *find_base(const std::string &name, const swig_type_info *base) { - if (!base) { - for (unsigned int j = 0; j < types.size(); ++j) { - assert(types[j].first->clientdata); - swig_octave_class *cj = (swig_octave_class *) types[j].first->clientdata; - if (cj->name == name) - return types[j].first; - } - return 0; - } - assert(base->clientdata); - swig_octave_class *c = (swig_octave_class *) base->clientdata; - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - return 0; - assert(c->base[j]->clientdata); - swig_octave_class *cj = (swig_octave_class *) c->base[j]->clientdata; - if (cj->name == name) - return c->base[j]; - } - return 0; - } - - void load_members(const swig_octave_class* c,member_map& out) const { - for (const swig_octave_member *m = c->members; m->name; ++m) { - if (out.find(m->name) == out.end()) - out.insert(std::make_pair(m->name, std::make_pair(m, octave_value()))); - } - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - continue; - assert(c->base[j]->clientdata); - const swig_octave_class *cj = - (const swig_octave_class *) c->base[j]->clientdata; - load_members(cj,out); - } - } - - void load_members(member_map& out) const { - out=members; - for (unsigned int j = 0; j < types.size(); ++j) - if (types[j].first->clientdata) - load_members((const swig_octave_class *) types[j].first->clientdata, out); - } - - octave_value_list member_invoke(member_value_pair *m, const octave_value_list &args, int nargout) { - if (m->second.is_defined()) - return m->second.subsref("(", std::list < octave_value_list > (1, args), nargout); - else if (m->first && m->first->method) - return m->first->method(args, nargout); - error("member not defined or not invocable"); - return octave_value_list(); - } - - bool dispatch_unary_op(const std::string &symbol, octave_value &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() < 1) - return false; - ret = argout(0); - return true; - } - - bool dispatch_binary_op(const std::string &symbol, const octave_base_value &rhs, octave_value &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - args.append(make_value_hack(rhs)); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() < 1) - return false; - ret = argout(0); - return true; - } - - bool dispatch_index_op(const std::string &symbol, const octave_value_list &rhs, octave_value_list &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - args.append(rhs); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() >= 1) - ret = argout(0); - return true; - } - - octave_value_list member_deref(member_value_pair *m, const octave_value_list &args) { - if (m->second.is_defined()) - return m->second; - else if (m->first) { - if (m->first->get_method) - return m->first->get_method(args, 1); - else if (m->first->method) - return octave_value(new octave_builtin(m->first->method)); - } - error("undefined member"); - return octave_value_list(); - } - - static octave_value make_value_hack(const octave_base_value &x) { - ((octave_swig_type &) x).count++; - return octave_value((octave_base_value *) &x); - } - - octave_swig_type(const octave_swig_type &x); - octave_swig_type &operator=(const octave_swig_type &rhs); - public: - - octave_swig_type(void *_ptr = 0, const swig_type_info *_type = 0, int _own = 0, - bool _always_static = false) - : module(0), construct_type(_ptr ? 0 : _type), own(_own), - always_static(_always_static) { - if (_type || _ptr) - types.push_back(std::make_pair(_type, _ptr)); - if (_ptr) { - Swig::Director *d = Swig::get_rtdir(_ptr); - if (d) - Swig::swig_director_set_self(d, this); - } - } - - ~octave_swig_type() { - if (own) { - ++count; - for (unsigned int j = 0; j < types.size(); ++j) { - if (!types[j].first || !types[j].first->clientdata) - continue; - swig_octave_class *c = (swig_octave_class *) types[j].first->clientdata; - if (c->destructor && !types[j].second.destroyed && types[j].second.ptr) { - c->destructor(as_value(), 0); - } - } - } - for (unsigned int j = 0; j < types.size(); ++j) - Swig::erase_rtdir(types[j].second.ptr); - } - - octave_value as_value() { - ++count; - return Swig::swig_value_ref(this); - } - - void incref() { - ++count; - } - - void decref() { - if (!--count) - delete this; - } - - long swig_this() const { - if (!types.size()) - return (long) this; - return (long) types[0].second.ptr; - } - const char* help_text() const { - if (!types.size()) - return 0; - if (!types[0].first->clientdata) - return 0; - swig_octave_class *c = (swig_octave_class *) types[0].first->clientdata; - return c->constructor_doc; - } - - std::string swig_type_name() const { - // * need some way to manually name subclasses. - // * eg optional first arg to subclass(), or named_subclass() - std::string ret; - for (unsigned int j = 0; j < types.size(); ++j) { - if (j) - ret += "_"; - if (types[j].first->clientdata) { - swig_octave_class *c = (swig_octave_class *) types[j].first->clientdata; - ret += c->name; - } else - ret += types[j].first->name; - } - return ret; - } - - void merge(octave_swig_type &rhs) { - rhs.own = 0; - for (unsigned int j = 0; j < rhs.types.size(); ++j) { - assert(!rhs.types[j].second.destroyed); - Swig::Director *d = Swig::get_rtdir(rhs.types[j].second.ptr); - if (d) - Swig::swig_director_set_self(d, this); - } - types.insert(types.end(), rhs.types.begin(), rhs.types.end()); - members.insert(rhs.members.begin(), rhs.members.end()); - rhs.types.clear(); - rhs.members.clear(); - } - - void install_global() { - for (member_map::const_iterator it = members.begin(); it != members.end(); ++it) { - if (it->second.first && it->second.first->method) - install_builtin_function(it->second.first->method, it->first, - it->second.first->doc?it->second.first->doc:std::string()); - else if (it->second.second.is_defined()) { -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(it->first, true)); -#else - symbol_table::varref(it->first); - symbol_table::mark_global(it->first); -#endif - set_global_value(it->first, it->second.second); - -#if USE_OCTAVE_API_VERSION<37 - octave_swig_type *ost = Swig::swig_value_deref(it->second.second); - if (ost) { - const char* h = ost->help_text(); - if (h) { - symbol_record *sr = global_sym_tab->lookup (it->first, true); - sr->document(h); - } - } -#endif - } - } - } - - void *cast(swig_type_info *type, int *_own, int flags) { - if (_own) - *_own = own; - if (flags &SWIG_POINTER_DISOWN) - own = 0; - if (!type && types.size()) - return types[0].second.ptr; - for (unsigned int j = 0; j < types.size(); ++j) - if (type == types[j].first) - return types[j].second.ptr; - for (unsigned int j = 0; j < types.size(); ++j) { - swig_cast_info *tc = SWIG_TypeCheck(types[j].first->name, type); - if (!tc) - continue; - int newmemory = 0; - void *vptr = SWIG_TypeCast(tc, types[j].second.ptr, &newmemory); - assert(!newmemory); // newmemory handling not yet implemented - return vptr; - } - return 0; - } - - bool is_owned() const { - return own; - } - - void director_destroyed(Swig::Director *d) { - bool found = false; - for (unsigned int j = 0; j < types.size(); ++j) { - Swig::Director *dj = Swig::get_rtdir(types[j].second.ptr); - if (dj == d) { - types[j].second.destroyed = true; - found = true; - } - } - assert(found); - } - - void assign(const std::string &name, const octave_value &ov) { - members[name] = std::make_pair((const swig_octave_member *) 0, ov); - } - - void assign(const std::string &name, const swig_octave_member *m) { - members[name] = std::make_pair(m, octave_value()); - } - - octave_base_value *clone() const { - // pass-by-value is probably not desired, and is harder; - // requires calling copy constructors of contained types etc. - assert(0); - *(int *) 0 = 0; - return 0; - } - - octave_base_value *empty_clone() const { - return new octave_swig_type(); - } - - bool is_defined() const { - return true; - } - - virtual bool is_map() const { - return true; - } - - virtual octave_value subsref(const std::string &ops, const std::list < octave_value_list > &idx) { - octave_value_list ovl = subsref(ops, idx, 1); - return ovl.length()? ovl(0) : octave_value(); - } - - virtual octave_value_list subsref(const std::string &ops, const std::list < octave_value_list > &idx, int nargout) { - assert(ops.size() > 0); - assert(ops.size() == idx.size()); - - std::list < octave_value_list >::const_iterator idx_it = idx.begin(); - int skip = 0; - octave_value_list sub_ovl; - - // constructor invocation - if (ops[skip] == '(' && construct_type) { - assert(construct_type->clientdata); - swig_octave_class *c = (swig_octave_class *) construct_type->clientdata; - if (!c->constructor) { - error("cannot create instance"); - return octave_value_list(); - } - octave_value_list args; - if (c->director) - args.append(Swig::swig_value_ref(new octave_swig_type(this, 0, 0))); - args.append(*idx_it++); - ++skip; - sub_ovl = c->constructor(args, nargout); - } - // member dereference or invocation - else if (ops[skip] == '.') { - std::string subname; - const swig_type_info *base = 0; // eg, a.base.base_cpp_mem - for (;;) { - octave_value_list subname_ovl(*idx_it++); - ++skip; - assert(subname_ovl.length() == 1 && subname_ovl(0).is_string()); - subname = subname_ovl(0).string_value(); - - const swig_type_info *next_base = find_base(subname, base); - if (!next_base || skip >= (int) ops.size() || ops[skip] != '.') - break; - base = next_base; - } - - member_value_pair tmp, *m = &tmp; - if (!base || !(m->first = find_member(base, subname))) - m = find_member(subname, false); - if (!m) { - error("member not found"); - return octave_value_list(); - } - - octave_value_list args; - if (!always_static && - (!m->first || (!m->first->is_static() && !m->first->is_global()))) - args.append(as_value()); - if (skip < (int) ops.size() && ops[skip] == '(' && - ((m->first && m->first->method) || m->second.is_function() || - m->second.is_function_handle())) { - args.append(*idx_it++); - ++skip; - sub_ovl = member_invoke(m, args, nargout); - } else { - sub_ovl = member_deref(m, args); - } - } - // index operator - else { - if (ops[skip] == '(' || ops[skip] == '{') { - const char *op_name = ops[skip] == '(' ? "__paren__" : "__brace__"; - octave_value_list args; - args.append(*idx_it++); - ++skip; - if (!dispatch_index_op(op_name, args, sub_ovl)) { - error("error evaluating index operator"); - return octave_value_list(); - } - } else { - error("unsupported subsref"); - return octave_value_list(); - } - } - - if (skip >= (int) ops.size()) - return sub_ovl; - if (sub_ovl.length() < 1) { - error("bad subs ref"); - return octave_value_list(); - } - return sub_ovl(0).next_subsref(nargout, ops, idx, skip); - } - - octave_value subsasgn(const std::string &ops, const std::list < octave_value_list > &idx, const octave_value &rhs) { - assert(ops.size() > 0); - assert(ops.size() == idx.size()); - - std::list < octave_value_list >::const_iterator idx_it = idx.begin(); - int skip = 0; - - if (ops.size() > 1) { - std::list < octave_value_list >::const_iterator last = idx.end(); - --last; - std::list < octave_value_list > next_idx(idx.begin(), last); - octave_value next_ov = subsref(ops.substr(0, ops.size() - 1), next_idx); - next_ov.subsasgn(ops.substr(ops.size() - 1), std::list < octave_value_list > (1, *last), rhs); - } - - else if (ops[skip] == '(' || ops[skip] == '{') { - const char *op_name = ops[skip] == '(' ? "__paren_asgn__" : "__brace_asgn__"; - member_value_pair *m = find_member(op_name, false); - if (m) { - octave_value_list args; - args.append(as_value()); - args.append(*idx_it); - args.append(rhs); - member_invoke(m, args, 1); - } else - error("%s member not found", op_name); - } - - else if (ops[skip] == '.') { - octave_value_list subname_ovl(*idx_it++); - ++skip; - assert(subname_ovl.length() == 1 &&subname_ovl(0).is_string()); - std::string subname = subname_ovl(0).string_value(); - - member_value_pair *m = find_member(subname, true); - if (!m->first || !m->first->set_method) { - m->first = 0; - m->second = rhs; - } else if (m->first->set_method) { - octave_value_list args; - if (!m->first->is_static() && !m->first->is_global()) - args.append(as_value()); - args.append(rhs); - m->first->set_method(args, 1); - } else - error("member not assignable"); - } else - error("unsupported subsasgn"); - - return as_value(); - } - - virtual bool is_string() const { - octave_swig_type *nc_this = const_cast < octave_swig_type *>(this); - return !!nc_this->find_member("__str__", false); - } - - virtual std::string string_value(bool force = false) const { - octave_swig_type *nc_this = const_cast < octave_swig_type *>(this); - member_value_pair *m = nc_this->find_member("__str__", false); - if (!m) { - error("__str__ method not defined"); - return std::string(); - } - octave_value_list outarg = nc_this->member_invoke(m, octave_value_list(nc_this->as_value()), 1); - if (outarg.length() < 1 || !outarg(0).is_string()) { - error("__str__ method did not return a string"); - return std::string(); - } - return outarg(0).string_value(); - } - - virtual Octave_map map_value() const { - return Octave_map(); - } - - virtual string_vector map_keys() const { - member_map tmp; - load_members(tmp); - - string_vector keys(tmp.size()); - int k = 0; - for (member_map::iterator it = tmp.begin(); it != tmp.end(); ++it) - keys(k++) = it->first; - - return keys; - } - - virtual bool save_ascii (std::ostream& os) { - return true; - } - - virtual bool load_ascii (std::istream& is) { - return true; - } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) { - return true; - } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) { - return true; - } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) { - return true; - } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) { - return true; - } -#endif - - virtual octave_value convert_to_str(bool pad = false, bool force = false, char type = '"') const { - return string_value(); - } - - virtual octave_value convert_to_str_internal(bool pad, bool force, char type) const { - return string_value(); - } - - static bool dispatch_global_op(const std::string &symbol, const octave_value_list &args, octave_value &ret) { - // we assume that "op_"-prefixed functions are installed in global namespace - // (rather than any module namespace). - - octave_value fcn = get_global_value(symbol, true); - if (!fcn.is_function() && !fcn.is_function_handle()) - return false; - ret = fcn.subsref("(", std::list < octave_value_list > (1, args)); - return true; - } - - static octave_value dispatch_unary_op(const octave_base_value &x, const char *op_name) { - octave_swig_type *ost = Swig::swig_value_deref(x); - assert(ost); - - octave_value ret; - if (ost->dispatch_unary_op(std::string("__") + op_name + std::string("__"), ret)) - return ret; - std::string symbol = "op_" + ost->swig_type_name() + "_" + op_name; - octave_value_list args; - args.append(make_value_hack(x)); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - error("could not dispatch unary operator"); - return octave_value(); - } - - static octave_value dispatch_binary_op(const octave_base_value &lhs, const octave_base_value &rhs, const char *op_name) { - octave_swig_type *lhs_ost = Swig::swig_value_deref(lhs); - octave_swig_type *rhs_ost = Swig::swig_value_deref(rhs); - - octave_value ret; - if (lhs_ost && lhs_ost->dispatch_binary_op(std::string("__") + op_name + std::string("__"), rhs, ret)) - return ret; - - std::string symbol; - octave_value_list args; - args.append(make_value_hack(lhs)); - args.append(make_value_hack(rhs)); - - symbol = "op_"; - symbol += lhs_ost ? lhs_ost->swig_type_name() : lhs.type_name(); - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += rhs_ost ? rhs_ost->swig_type_name() : rhs.type_name(); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - symbol = "op_"; - symbol += lhs_ost ? lhs_ost->swig_type_name() : lhs.type_name(); - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += "any"; - if (dispatch_global_op(symbol, args, ret)) - return ret; - - symbol = "op_"; - symbol += "any"; - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += rhs_ost ? rhs_ost->swig_type_name() : rhs.type_name(); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - error("could not dispatch binary operator"); - return octave_value(); - } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const { - if (is_string()) { - os << string_value(); - return; - } - - member_map tmp; - load_members(tmp); - - os << "{" << std::endl; - for (unsigned int j = 0; j < types.size(); ++j) { - if (types[j].first->clientdata) { - const swig_octave_class *c = (const swig_octave_class *) types[j].first->clientdata; - os << " " << c->name << ", ptr = " << types[j].second.ptr << std::endl; - } else { - os << " " << types[j].first->name << ", ptr = " << types[j].second.ptr << std::endl; - } - } - for (member_map::const_iterator it = tmp.begin(); it != tmp.end(); ++it) { - if (it->second.first) { - const char *objtype = it->second.first->method ? "method" : "variable"; - const char *modifier = (it->second.first->flags &1) ? "static " : (it->second.first->flags &2) ? "global " : ""; - os << " " << it->second.first->name << " (" << modifier << objtype << ")" << std::endl; - assert(it->second.first->name == it->first); - } else { - os << " " << it->first << std::endl; - } - } - os << "}" << std::endl; - } - }; - - // Octave tries hard to preserve pass-by-value semantics. Eg, assignments - // will call clone() via make_unique() if there is more than one outstanding - // reference to the lhs, and forces the clone's reference count to 1 - // (so you can't just increment your own count and return this). - // - // One way to fix this (without modifying Octave) is to add a level of - // indirection such that clone copies ref-counted pointer and we keep - // pass-by-ref semantics (which are more natural/expected for C++ bindings). - // - // Supporting both pass-by-{ref,value} and toggling via %feature/option - // might be nice. - - class octave_swig_ref:public octave_base_value { - octave_swig_type *ptr; - public: - octave_swig_ref(octave_swig_type *_ptr = 0) - :ptr(_ptr) { } - - ~octave_swig_ref() - { if (ptr) ptr->decref(); } - - octave_swig_type *get_ptr() const - { return ptr; } - - octave_base_value *clone() const - { if (ptr) ptr->incref(); return new octave_swig_ref(ptr); } - - octave_base_value *empty_clone() const - { return new octave_swig_ref(0); } - - bool is_defined() const - { return ptr->is_defined(); } - - virtual bool is_map() const - { return ptr->is_map(); } - - virtual octave_value subsref(const std::string &ops, const std::list < octave_value_list > &idx) - { return ptr->subsref(ops, idx); } - - virtual octave_value_list subsref(const std::string &ops, const std::list < octave_value_list > &idx, int nargout) - { return ptr->subsref(ops, idx, nargout); } - - octave_value subsasgn(const std::string &ops, const std::list < octave_value_list > &idx, const octave_value &rhs) - { return ptr->subsasgn(ops, idx, rhs); } - - virtual bool is_string() const - { return ptr->is_string(); } - - virtual std::string string_value(bool force = false) const - { return ptr->string_value(force); } - - virtual Octave_map map_value() const - { return ptr->map_value(); } - - virtual string_vector map_keys() const - { return ptr->map_keys(); } - - virtual bool save_ascii (std::ostream& os) - { return ptr->save_ascii(os); } - - virtual bool load_ascii (std::istream& is) - { return ptr->load_ascii(is); } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) - { return ptr->save_binary(os, save_as_floats); } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) - { return ptr->load_binary(is, swap, fmt); } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) - { return ptr->save_hdf5(loc_id, name, save_as_floats); } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) - { return ptr->load_hdf5(loc_id, name, have_h5giterate_bug); } -#endif - - virtual octave_value convert_to_str(bool pad = false, bool force = false, char type = '"') const - { return ptr->convert_to_str(pad, force, type); } - - virtual octave_value convert_to_str_internal(bool pad, bool force, char type) const - { return ptr->convert_to_str_internal(pad, force, type); } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const - { return ptr->print(os, pr_as_read_syntax); } - - private: - DECLARE_OCTAVE_ALLOCATOR; - DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA; - }; - DEFINE_OCTAVE_ALLOCATOR(octave_swig_ref); - DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(octave_swig_ref, "swig_ref", "swig_ref"); - - class octave_swig_packed:public octave_base_value { - swig_type_info *type; - std::vector < char > buf; - public: - - octave_swig_packed(swig_type_info *_type = 0, const void *_buf = 0, size_t _buf_len = 0) - : type(_type), buf((const char*)_buf, (const char*)_buf + _buf_len) { - } - - bool copy(swig_type_info *outtype, void *ptr, size_t sz) const { - if (outtype && outtype != type) - return false; - assert(sz <= buf.size()); - std::copy(buf.begin(), buf.begin()+sz, (char*)ptr); - return true; - } - - octave_base_value *clone() const { - return new octave_swig_packed(*this); - } - - octave_base_value *empty_clone() const { - return new octave_swig_packed(); - } - - bool is_defined() const { - return true; - } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const { - os << "swig packed type: name = " << (type ? type->name : std::string()) << ", len = " << buf.size() << std::endl; - } - - - virtual bool save_ascii (std::ostream& os) { - return true; - } - - virtual bool load_ascii (std::istream& is) { - return true; - } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) { - return true; - } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) { - return true; - } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) { - return true; - } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) { - return true; - } -#endif - - private: - DECLARE_OCTAVE_ALLOCATOR; - DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA; - }; - DEFINE_OCTAVE_ALLOCATOR(octave_swig_packed); - DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(octave_swig_packed, "swig_packed", "swig_packed"); - - static octave_value_list octave_set_immutable(const octave_value_list &args, int nargout) { - error("attempt to set immutable member variable"); - return octave_value_list(); - } - - struct octave_value_ref { - const octave_value_list &ovl; - int j; - - octave_value_ref(const octave_value_list &_ovl, int _j) - :ovl(_ovl), j(_j) { } - - operator octave_value() const { - return ovl(j); - } - - octave_value operator*() const { - return ovl(j); - } - }; - - octave_value_list swig_subclass(const octave_value_list &args, int nargout) { - octave_swig_type *top = new octave_swig_type; - for (int j = 0; j < args.length(); ++j) { - if (args(j).type_id() == octave_swig_ref::static_type_id()) { - octave_swig_ref *osr = static_cast < octave_swig_ref *>(args(j).internal_rep()); - octave_swig_type *ost = osr->get_ptr(); - if (!ost->is_owned()) { - error("cannot subclass object not constructed on octave side"); - return octave_value_list(); - } - top->merge(*ost); - } else if (args(j).is_function_handle()) { - top->assign(args(j).fcn_handle_value()->fcn_name(), args(j)); - } else if (args(j).is_string()) { - if (j + 1 >= args.length()) { - error("member assignments must be of string,value form"); - return octave_value_list(); - } - top->assign(args(j).string_value(), args(j + 1)); - ++j; - } else { - error("invalid arguments to subclass"); - return octave_value_list(); - } - } - return octave_value(Swig::swig_value_ref(top)); - } - - octave_value_list swig_type(const octave_value_list &args, int nargout) { - if (args.length() != 1) { - error("swig_typeinfo must be called with only a single object"); - return octave_value_list(); - } - octave_swig_type *ost = Swig::swig_value_deref(args(0)); - if (!ost) { - error("object is not a swig_ref"); - return octave_value_list(); - } - return octave_value(ost->swig_type_name()); - } - - octave_value_list swig_typequery(const octave_value_list &args, int nargout) { - if (args.length() != 1 || !args(0).is_string()) { - error("swig_typeinfo must be called with single string argument"); - return octave_value_list(); - } - swig_module_info *module = SWIG_GetModule(0); - swig_type_info *type = SWIG_TypeQueryModule(module, module, args(0).string_value().c_str()); - if (!type) - return octave_value(""); - return octave_value(type->name); - } - - octave_value_list swig_this(const octave_value_list &args, int nargout) { - if (args.length() != 1) { - error("swig_typeinfo must be called with only a single object"); - return octave_value_list(); - } - if (args(0).is_matrix_type() && args(0).rows() == 0 && args(0).columns() == 0) - return octave_value(octave_uint64(0)); - octave_swig_type *ost = Swig::swig_value_deref(args(0)); - if (!ost) { - error("object is not a swig_ref"); - return octave_value_list(); - } - return octave_value(octave_uint64((unsigned long long) ost->swig_this())); - } - -#define SWIG_DIRECTORS - -namespace Swig { - class Director { - octave_swig_type *self; - bool disowned; - - Director(const Director &x); - Director &operator=(const Director &rhs); - public: - - Director(void *vptr):self(0), disowned(false) { - set_rtdir(vptr, this); - } - - ~Director() { - swig_director_destroyed(self, this); - if (disowned) - self->decref(); - } - - void swig_set_self(octave_swig_type *new_self) { - assert(!disowned); - self = new_self; - } - - octave_swig_type *swig_get_self() const { - return self; - } - - void swig_disown() { - if (disowned) - return; - disowned = true; - self->incref(); - } - }; - - struct DirectorTypeMismatchException { - static void raise(const char *msg) { - // ... todo - throw(DirectorTypeMismatchException()); - } - - static void raise(const octave_value &ov, const char *msg) { - // ... todo - raise(msg); - } - }; - struct DirectorPureVirtualException { - static void raise(const char *msg) { - // ... todo - throw(DirectorPureVirtualException()); - } - - static void raise(const octave_value &ov, const char *msg) { - // ... todo - raise(msg); - } - }; - -} - - SWIGRUNTIME void swig_acquire_ownership(void *vptr) { - // assert(0); - // ... todo - } - - SWIGRUNTIME void swig_acquire_ownership_array(void *vptr) { - // assert(0); - // ... todo - } - - SWIGRUNTIME void swig_acquire_ownership_obj(void *vptr, int own) { - // assert(0); - // ... todo - } - - namespace Swig { - SWIGRUNTIME void swig_director_destroyed(octave_swig_type *self, Director *d) { - self->director_destroyed(d); - } - - SWIGRUNTIME void swig_director_set_self(Director *d, octave_swig_type *self) { - d->swig_set_self(self); - } - - SWIGRUNTIME octave_base_value *swig_value_ref(octave_swig_type *ost) { - return new octave_swig_ref(ost); - } - - SWIGRUNTIME octave_swig_type *swig_value_deref(octave_value ov) { - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - return swig_value_deref(*ov.internal_rep()); - } - - SWIGRUNTIME octave_swig_type *swig_value_deref(const octave_base_value &ov) { - if (ov.type_id() != octave_swig_ref::static_type_id()) - return 0; - const octave_swig_ref *osr = static_cast < const octave_swig_ref *>(&ov); - return osr->get_ptr(); - } - - } - -#define swig_unary_op(name) \ -SWIGRUNTIME octave_value swig_unary_op_##name(const octave_base_value &x) { \ - return octave_swig_type::dispatch_unary_op(x,#name); \ -} -#define swig_binary_op(name) \ -SWIGRUNTIME octave_value swig_binary_op_##name(const octave_base_value&lhs,const octave_base_value &rhs) { \ - return octave_swig_type::dispatch_binary_op(lhs,rhs,#name); \ -} -#define swigreg_unary_op(name) \ -if (!octave_value_typeinfo::lookup_unary_op(octave_value::op_##name,tid)) \ -octave_value_typeinfo::register_unary_op(octave_value::op_##name,tid,swig_unary_op_##name); -#define swigreg_binary_op(name) \ -if (!octave_value_typeinfo::lookup_binary_op(octave_value::op_##name,tid1,tid2)) \ -octave_value_typeinfo::register_binary_op(octave_value::op_##name,tid1,tid2,swig_binary_op_##name); - - swig_unary_op(not); - swig_unary_op(uplus); - swig_unary_op(uminus); - swig_unary_op(transpose); - swig_unary_op(hermitian); - swig_unary_op(incr); - swig_unary_op(decr); - - swig_binary_op(add); - swig_binary_op(sub); - swig_binary_op(mul); - swig_binary_op(div); - swig_binary_op(pow); - swig_binary_op(ldiv); - swig_binary_op(lshift); - swig_binary_op(rshift); - swig_binary_op(lt); - swig_binary_op(le); - swig_binary_op(eq); - swig_binary_op(ge); - swig_binary_op(gt); - swig_binary_op(ne); - swig_binary_op(el_mul); - swig_binary_op(el_div); - swig_binary_op(el_pow); - swig_binary_op(el_ldiv); - swig_binary_op(el_and); - swig_binary_op(el_or); - - SWIGRUNTIME void SWIG_InstallUnaryOps(int tid) { - swigreg_unary_op(not); - swigreg_unary_op(uplus); - swigreg_unary_op(uminus); - swigreg_unary_op(transpose); - swigreg_unary_op(hermitian); - swigreg_unary_op(incr); - swigreg_unary_op(decr); - } - SWIGRUNTIME void SWIG_InstallBinaryOps(int tid1, int tid2) { - swigreg_binary_op(add); - swigreg_binary_op(sub); - swigreg_binary_op(mul); - swigreg_binary_op(div); - swigreg_binary_op(pow); - swigreg_binary_op(ldiv); - swigreg_binary_op(lshift); - swigreg_binary_op(rshift); - swigreg_binary_op(lt); - swigreg_binary_op(le); - swigreg_binary_op(eq); - swigreg_binary_op(ge); - swigreg_binary_op(gt); - swigreg_binary_op(ne); - swigreg_binary_op(el_mul); - swigreg_binary_op(el_div); - swigreg_binary_op(el_pow); - swigreg_binary_op(el_ldiv); - swigreg_binary_op(el_and); - swigreg_binary_op(el_or); - } - SWIGRUNTIME void SWIG_InstallOps(int tid) { - // here we assume that tid are conseq integers increasing from zero, and - // that our tid is the last one. might be better to have explicit string - // list of types we should bind to, and use lookup_type to resolve their tid. - - SWIG_InstallUnaryOps(tid); - SWIG_InstallBinaryOps(tid, tid); - for (int j = 0; j < tid; ++j) { - SWIG_InstallBinaryOps(j, tid); - SWIG_InstallBinaryOps(tid, j); - } - } - -SWIGRUNTIME octave_value SWIG_Octave_NewPointerObj(void *ptr, swig_type_info *type, int flags) { - int own = (flags &SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - - Swig::Director *d = Swig::get_rtdir(ptr); - if (d && d->swig_get_self()) - return d->swig_get_self()->as_value(); - return Swig::swig_value_ref(new octave_swig_type(ptr, type, own)); -} - -SWIGRUNTIME int SWIG_Octave_ConvertPtrAndOwn(octave_value ov, void **ptr, swig_type_info *type, int flags, int *own) { - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - if (!ov.is_defined() || - (ov.is_matrix_type() && ov.rows() == 0 && ov.columns() == 0) ) { - if (ptr) - *ptr = 0; - return SWIG_OK; - } - if (ov.type_id() != octave_swig_ref::static_type_id()) - return SWIG_ERROR; - octave_swig_ref *osr = static_cast < octave_swig_ref *>(ov.internal_rep()); - octave_swig_type *ost = osr->get_ptr(); - void *vptr = ost->cast(type, own, flags); - if (!vptr) - return SWIG_ERROR; - if (ptr) - *ptr = vptr; - return SWIG_OK; -} - -SWIGRUNTIME octave_value SWIG_Octave_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { - return new octave_swig_packed(type, (char *) ptr, sz); -} - -SWIGRUNTIME int SWIG_Octave_ConvertPacked(const octave_value &ov, void *ptr, size_t sz, swig_type_info *type) { - if (!ov.is_defined()) - return SWIG_ERROR; - if (ov.type_id() != octave_swig_packed::static_type_id()) - return SWIG_ERROR; - octave_swig_packed *ost = static_cast < octave_swig_packed *>(ov.internal_rep()); - return ost->copy(type, (char *) ptr, sz) ? SWIG_OK : SWIG_ERROR; -} - -void SWIG_Octave_SetConstant(octave_swig_type *module_ns, const std::string &name, const octave_value &ov) { - module_ns->assign(name, ov); -} - -SWIGRUNTIME swig_module_info *SWIG_Octave_GetModule(void *clientdata) { - octave_value ov = get_global_value("__SWIG_MODULE__" SWIG_TYPE_TABLE_NAME SWIG_RUNTIME_VERSION, true); - if (!ov.is_defined() || - ov.type_id() != octave_swig_packed::static_type_id()) - return 0; - const octave_swig_packed* osp = - static_cast < const octave_swig_packed *> (ov.internal_rep()); - swig_module_info *pointer = 0; - osp->copy(0, &pointer, sizeof(swig_module_info *)); - return pointer; -} - -SWIGRUNTIME void SWIG_Octave_SetModule(void *clientdata, swig_module_info *pointer) { - octave_value ov = new octave_swig_packed(0, &pointer, sizeof(swig_module_info *)); - const char *module_var = "__SWIG_MODULE__" SWIG_TYPE_TABLE_NAME SWIG_RUNTIME_VERSION; -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(module_var, true)); -#else - symbol_table::varref(module_var); - symbol_table::mark_global(module_var); -#endif - set_global_value(module_var, ov); -} - - - -#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) - -#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else - - - - #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -#define SWIGTYPE_p_Cv32suf swig_types[0] -#define SWIGTYPE_p_Cv64suf swig_types[1] -#define SWIGTYPE_p_CvAttrList swig_types[2] -#define SWIGTYPE_p_CvAvgComp swig_types[3] -#define SWIGTYPE_p_CvBox2D swig_types[4] -#define SWIGTYPE_p_CvChain swig_types[5] -#define SWIGTYPE_p_CvChainPtReader swig_types[6] -#define SWIGTYPE_p_CvConDensation swig_types[7] -#define SWIGTYPE_p_CvConnectedComp swig_types[8] -#define SWIGTYPE_p_CvContour swig_types[9] -#define SWIGTYPE_p_CvContourTree swig_types[10] -#define SWIGTYPE_p_CvConvexityDefect swig_types[11] -#define SWIGTYPE_p_CvFeatureTree swig_types[12] -#define SWIGTYPE_p_CvFileNode swig_types[13] -#define SWIGTYPE_p_CvFileNode_data swig_types[14] -#define SWIGTYPE_p_CvFileStorage swig_types[15] -#define SWIGTYPE_p_CvFilter swig_types[16] -#define SWIGTYPE_p_CvFont swig_types[17] -#define SWIGTYPE_p_CvGenericHash swig_types[18] -#define SWIGTYPE_p_CvGraph swig_types[19] -#define SWIGTYPE_p_CvGraphEdge swig_types[20] -#define SWIGTYPE_p_CvGraphScanner swig_types[21] -#define SWIGTYPE_p_CvGraphVtx swig_types[22] -#define SWIGTYPE_p_CvGraphVtx2D swig_types[23] -#define SWIGTYPE_p_CvHaarClassifier swig_types[24] -#define SWIGTYPE_p_CvHaarClassifierCascade swig_types[25] -#define SWIGTYPE_p_CvHaarFeature swig_types[26] -#define SWIGTYPE_p_CvHaarFeature_rect swig_types[27] -#define SWIGTYPE_p_CvHaarStageClassifier swig_types[28] -#define SWIGTYPE_p_CvHidHaarClassifierCascade swig_types[29] -#define SWIGTYPE_p_CvHistogram swig_types[30] -#define SWIGTYPE_p_CvHuMoments swig_types[31] -#define SWIGTYPE_p_CvImage swig_types[32] -#define SWIGTYPE_p_CvKalman swig_types[33] -#define SWIGTYPE_p_CvLSH swig_types[34] -#define SWIGTYPE_p_CvLSHOperations swig_types[35] -#define SWIGTYPE_p_CvLineIterator swig_types[36] -#define SWIGTYPE_p_CvMSERParams swig_types[37] -#define SWIGTYPE_p_CvMat swig_types[38] -#define SWIGTYPE_p_CvMatND swig_types[39] -#define SWIGTYPE_p_CvMatND_data swig_types[40] -#define SWIGTYPE_p_CvMatND_dim swig_types[41] -#define SWIGTYPE_p_CvMat_data swig_types[42] -#define SWIGTYPE_p_CvMatrix swig_types[43] -#define SWIGTYPE_p_CvMatrix3 swig_types[44] -#define SWIGTYPE_p_CvMemBlock swig_types[45] -#define SWIGTYPE_p_CvMemStorage swig_types[46] -#define SWIGTYPE_p_CvMemStoragePos swig_types[47] -#define SWIGTYPE_p_CvModule swig_types[48] -#define SWIGTYPE_p_CvModuleInfo swig_types[49] -#define SWIGTYPE_p_CvMoments swig_types[50] -#define SWIGTYPE_p_CvNArrayIterator swig_types[51] -#define SWIGTYPE_p_CvNextEdgeType swig_types[52] -#define SWIGTYPE_p_CvPOSITObject swig_types[53] -#define SWIGTYPE_p_CvPluginFuncInfo swig_types[54] -#define SWIGTYPE_p_CvPoint swig_types[55] -#define SWIGTYPE_p_CvPoint2D32f swig_types[56] -#define SWIGTYPE_p_CvPoint2D64f swig_types[57] -#define SWIGTYPE_p_CvPoint3D32f swig_types[58] -#define SWIGTYPE_p_CvPoint3D64f swig_types[59] -#define SWIGTYPE_p_CvQuadEdge2D swig_types[60] -#define SWIGTYPE_p_CvRNG_Wrapper swig_types[61] -#define SWIGTYPE_p_CvRandState swig_types[62] -#define SWIGTYPE_p_CvRect swig_types[63] -#define SWIGTYPE_p_CvSURFParams swig_types[64] -#define SWIGTYPE_p_CvSURFPoint swig_types[65] -#define SWIGTYPE_p_CvScalar swig_types[66] -#define SWIGTYPE_p_CvSeq swig_types[67] -#define SWIGTYPE_p_CvSeqBlock swig_types[68] -#define SWIGTYPE_p_CvSeqReader swig_types[69] -#define SWIGTYPE_p_CvSeqWriter swig_types[70] -#define SWIGTYPE_p_CvSet swig_types[71] -#define SWIGTYPE_p_CvSetElem swig_types[72] -#define SWIGTYPE_p_CvSize swig_types[73] -#define SWIGTYPE_p_CvSize2D32f swig_types[74] -#define SWIGTYPE_p_CvSlice swig_types[75] -#define SWIGTYPE_p_CvSparseMat swig_types[76] -#define SWIGTYPE_p_CvSparseMatIterator swig_types[77] -#define SWIGTYPE_p_CvSparseNode swig_types[78] -#define SWIGTYPE_p_CvStarDetectorParams swig_types[79] -#define SWIGTYPE_p_CvStarKeypoint swig_types[80] -#define SWIGTYPE_p_CvStereoBMState swig_types[81] -#define SWIGTYPE_p_CvStereoGCState swig_types[82] -#define SWIGTYPE_p_CvString swig_types[83] -#define SWIGTYPE_p_CvStringHashNode swig_types[84] -#define SWIGTYPE_p_CvSubdiv2D swig_types[85] -#define SWIGTYPE_p_CvSubdiv2DEdge_Wrapper swig_types[86] -#define SWIGTYPE_p_CvSubdiv2DPoint swig_types[87] -#define SWIGTYPE_p_CvSubdiv2DPointLocation swig_types[88] -#define SWIGTYPE_p_CvTermCriteria swig_types[89] -#define SWIGTYPE_p_CvTreeNodeIterator swig_types[90] -#define SWIGTYPE_p_CvTupleT_CvPoint_2_t swig_types[91] -#define SWIGTYPE_p_CvTupleT_float_2_t swig_types[92] -#define SWIGTYPE_p_CvTupleT_float_3_t swig_types[93] -#define SWIGTYPE_p_CvType swig_types[94] -#define SWIGTYPE_p_CvTypeInfo swig_types[95] -#define SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t swig_types[96] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t swig_types[97] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint_t swig_types[98] -#define SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t swig_types[99] -#define SWIGTYPE_p_CvTypedSeqT_CvRect_t swig_types[100] -#define SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t swig_types[101] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t swig_types[102] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t swig_types[103] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t swig_types[104] -#define SWIGTYPE_p__CvContourScanner swig_types[105] -#define SWIGTYPE_p__IplConvKernel swig_types[106] -#define SWIGTYPE_p__IplConvKernelFP swig_types[107] -#define SWIGTYPE_p__IplImage swig_types[108] -#define SWIGTYPE_p__IplROI swig_types[109] -#define SWIGTYPE_p__IplTileInfo swig_types[110] -#define SWIGTYPE_p_a_2__float swig_types[111] -#define SWIGTYPE_p_a_2__signed_char swig_types[112] -#define SWIGTYPE_p_a_3__float swig_types[113] -#define SWIGTYPE_p_allocator_type swig_types[114] -#define SWIGTYPE_p_char swig_types[115] -#define SWIGTYPE_p_difference_type swig_types[116] -#define SWIGTYPE_p_double swig_types[117] -#define SWIGTYPE_p_f_int_int_int_int_int__p__IplROI swig_types[118] -#define SWIGTYPE_p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage swig_types[119] -#define SWIGTYPE_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int swig_types[120] -#define SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void swig_types[121] -#define SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void swig_types[122] -#define SWIGTYPE_p_f_p__IplImage_int__void swig_types[123] -#define SWIGTYPE_p_f_p__IplImage_int_int__void swig_types[124] -#define SWIGTYPE_p_f_p_p_void__void swig_types[125] -#define SWIGTYPE_p_f_p_q_const__IplImage__p__IplImage swig_types[126] -#define SWIGTYPE_p_f_p_q_const__char_int__p_CvMat swig_types[127] -#define SWIGTYPE_p_f_p_q_const__char_int__p__IplImage swig_types[128] -#define SWIGTYPE_p_f_p_q_const__char_p_q_const__void__void swig_types[129] -#define SWIGTYPE_p_f_p_q_const__char_p_q_const__void_p_q_const__int__int swig_types[130] -#define SWIGTYPE_p_f_p_q_const__float_p_q_const__float_p_void__float swig_types[131] -#define SWIGTYPE_p_f_p_q_const__void__int swig_types[132] -#define SWIGTYPE_p_f_p_q_const__void__p_void swig_types[133] -#define SWIGTYPE_p_f_p_q_const__void_p_q_const__void_p_void__int swig_types[134] -#define SWIGTYPE_p_f_p_void_p_void__int swig_types[135] -#define SWIGTYPE_p_f_size_t_p_void__p_void swig_types[136] -#define SWIGTYPE_p_float swig_types[137] -#define SWIGTYPE_p_int swig_types[138] -#define SWIGTYPE_p_int64_t swig_types[139] -#define SWIGTYPE_p_p_CvConDensation swig_types[140] -#define SWIGTYPE_p_p_CvFileStorage swig_types[141] -#define SWIGTYPE_p_p_CvGraphEdge swig_types[142] -#define SWIGTYPE_p_p_CvGraphScanner swig_types[143] -#define SWIGTYPE_p_p_CvGraphVtx swig_types[144] -#define SWIGTYPE_p_p_CvHaarClassifierCascade swig_types[145] -#define SWIGTYPE_p_p_CvHistogram swig_types[146] -#define SWIGTYPE_p_p_CvKalman swig_types[147] -#define SWIGTYPE_p_p_CvLSH swig_types[148] -#define SWIGTYPE_p_p_CvMat swig_types[149] -#define SWIGTYPE_p_p_CvMatND swig_types[150] -#define SWIGTYPE_p_p_CvMemStorage swig_types[151] -#define SWIGTYPE_p_p_CvPOSITObject swig_types[152] -#define SWIGTYPE_p_p_CvPoint swig_types[153] -#define SWIGTYPE_p_p_CvSeq swig_types[154] -#define SWIGTYPE_p_p_CvSeqBlock swig_types[155] -#define SWIGTYPE_p_p_CvSetElem swig_types[156] -#define SWIGTYPE_p_p_CvSparseMat swig_types[157] -#define SWIGTYPE_p_p_CvStereoBMState swig_types[158] -#define SWIGTYPE_p_p_CvStereoGCState swig_types[159] -#define SWIGTYPE_p_p_CvSubdiv2DPoint swig_types[160] -#define SWIGTYPE_p_p_CvTypedSeqT_CvConnectedComp_t swig_types[161] -#define SWIGTYPE_p_p_CvTypedSeqT_CvPoint2D32f_t swig_types[162] -#define SWIGTYPE_p_p_CvTypedSeqT_CvPoint_t swig_types[163] -#define SWIGTYPE_p_p_CvTypedSeqT_CvQuadEdge2D_t swig_types[164] -#define SWIGTYPE_p_p_CvTypedSeqT_CvRect_t swig_types[165] -#define SWIGTYPE_p_p_CvTypedSeqT_CvSeq_p_t swig_types[166] -#define SWIGTYPE_p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t swig_types[167] -#define SWIGTYPE_p_p_CvTypedSeqT_CvTupleT_float_2_t_t swig_types[168] -#define SWIGTYPE_p_p_CvTypedSeqT_CvTupleT_float_3_t_t swig_types[169] -#define SWIGTYPE_p_p__CvContourScanner swig_types[170] -#define SWIGTYPE_p_p__IplConvKernel swig_types[171] -#define SWIGTYPE_p_p__IplImage swig_types[172] -#define SWIGTYPE_p_p_char swig_types[173] -#define SWIGTYPE_p_p_float swig_types[174] -#define SWIGTYPE_p_p_p_CvMat swig_types[175] -#define SWIGTYPE_p_p_unsigned_char swig_types[176] -#define SWIGTYPE_p_p_void swig_types[177] -#define SWIGTYPE_p_short swig_types[178] -#define SWIGTYPE_p_signed_char swig_types[179] -#define SWIGTYPE_p_size_t swig_types[180] -#define SWIGTYPE_p_size_type swig_types[181] -#define SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t swig_types[182] -#define SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type swig_types[183] -#define SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type swig_types[184] -#define SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t swig_types[185] -#define SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type swig_types[186] -#define SWIGTYPE_p_swig__OctSwigIterator swig_types[187] -#define SWIGTYPE_p_uint64_t swig_types[188] -#define SWIGTYPE_p_unsigned_char swig_types[189] -#define SWIGTYPE_p_unsigned_int swig_types[190] -#define SWIGTYPE_p_unsigned_short swig_types[191] -#define SWIGTYPE_p_value_type swig_types[192] -#define SWIGTYPE_p_void swig_types[193] -static swig_type_info *swig_types[195]; -static swig_module_info swig_module = {swig_types, 194, 0, 0, 0, 0}; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) -#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) - -/* -------- TYPES TABLE (END) -------- */ - - -#define SWIGVERSION 0x010340 -#define SWIG_VERSION SWIGVERSION - - -#define SWIG_as_voidptr(a) (void *)((const void *)(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a)) - - -#include - - -#include "octhelpers.h" -#include "octcvseq.hpp" -#include "octerror.h" - - - - - static inline bool OctSwigObject_Check(const octave_value& ov) { - return ov.type_id()==octave_swig_ref::static_type_id(); - } - - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg); - static CvArr * OctSequence_to_CvArr( octave_value obj ); - - // convert a octave sequence/array/list object into a c-array -#define OctObject_AsArrayImpl(func, ctype, ptype) \ - int func(octave_value obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(OctNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = OctObject_As##ptype( obj ); \ - } \ - else if(OctList_Check(obj) || OctTuple_Check(obj)){ \ - int seqsize = OctSequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - error("OctObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - error("OctObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - error("OctObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(OctObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - error("could not convert to CvPoint"); - return cvPoint(0,0); - } - - static CvPoint2D32f OctObject_to_CvPoint2D32f(octave_value obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(OctObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - error("could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); - } - - static CvScalar OctObject_to_CvScalar(octave_value obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(OctObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); - } - - // if octave sequence type, convert to CvMat or CvMatND - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg){ - CvArr * cvarr; - *freearg = false; - - // check if OpenCV type - if ( OctSwigObject_Check(obj) ){ - SWIG_ConvertPtr(obj, &cvarr, 0, SWIG_POINTER_EXCEPTION); - } - else if (OctList_Check(obj) || OctTuple_Check(obj)){ - cvarr = OctSequence_to_CvArr( obj ); - *freearg = (cvarr != NULL); - } - else if (OctLong_Check(obj) && OctLong_AsLong(obj)==0){ - return NULL; - } - else { - SWIG_ConvertPtr(obj, (void**)&cvarr, 0, SWIG_POINTER_EXCEPTION); - } - return cvarr; - } - - static int OctObject_GetElemType(octave_value obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(OctTuple_Check(obj) || OctList_Check(obj)) return CV_MAKE_TYPE(CV_32F, OctSequence_Size( obj )); - if(OctLong_Check(obj)) return CV_32S; - return CV_32F; - } - - // Would like this to convert Octave lists to CvMat - // Also lists of CvPoints, CvScalars, CvMats? etc - static CvArr * OctSequence_to_CvArr( octave_value obj ){ - int dims[CV_MAX_DIM] = {1,1,1}; - int ndim=0; - int cvtype; - octave_value item; - - // figure out dimensions - for(item = obj; - (OctTuple_Check(item) || OctList_Check(item)); - item = OctSequence_GetItem(item, 0)) - { - dims[ndim] = OctSequence_Size( item ); - ndim++; - } - - if(ndim==0){ - error("Cannot convert an empty octave object to a CvArr"); - return NULL; - } - - cvtype = OctObject_GetElemType(item); - // collapse last dim into NCH if we found a single channel, but the last dim is <=3 - if(CV_MAT_CN(cvtype)==1 && dims[ndim-1]>1 && dims[ndim-1]<4){ - cvtype=CV_MAKE_TYPE(cvtype, dims[ndim-1]); - dims[ndim-1]=1; - ndim--; - } - - if(cvtype==-1){ - error("Could not determine OpenCV element type of Octave sequence"); - return NULL; - } - - // CvMat - if(ndim<=2){ - CvMat *m = cvCreateMat(dims[0], dims[1], cvtype); - for(int i=0; i 1 ){ - // double check size - assert((OctTuple_Check(rowobj) || OctList_Check(rowobj)) && - OctSequence_Size(rowobj) == dims[1]); - - for(int j=0; j 3"); - return NULL; - } - - - // Wrapper class - class CvRNG_Wrapper { - private: - CvRNG m_val; - public: - CvRNG_Wrapper( const CvRNG & val ) : - m_val(val) - { - } - CvRNG * ptr() { return &m_val; } - CvRNG & ref() { return m_val; } - bool operator==(const CvRNG_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvRNG_Wrapper & x){ - return m_val!=x.m_val; - } - }; - - -SWIGINTERNINLINE octave_value - SWIG_From_bool (bool value) -{ - return octave_value(value); -} - - - // Wrapper class - class CvSubdiv2DEdge_Wrapper { - private: - CvSubdiv2DEdge m_val; - public: - CvSubdiv2DEdge_Wrapper( const CvSubdiv2DEdge & val ) : - m_val(val) - { - } - CvSubdiv2DEdge * ptr() { return &m_val; } - CvSubdiv2DEdge & ref() { return m_val; } - bool operator==(const CvSubdiv2DEdge_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvSubdiv2DEdge_Wrapper & x){ - return m_val!=x.m_val; - } - }; - - - SWIGINTERN int SWIG_AsVal_unsigned_SS_long (const octave_value& ov, unsigned long* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (ov.is_double_type()||ov.is_single_type()) { - double v=ov.double_value(); - if (v<0) - return SWIG_OverflowError; - if (v!=floor(v)) - return SWIG_TypeError; - } - if (ov.is_int8_type()||ov.is_int16_type()|| - ov.is_int32_type()) { - long v=ov.long_value(); - if (v<0) - return SWIG_OverflowError; - } - if (ov.is_int64_type()) { - long long v=ov.int64_scalar_value().value(); - if (v<0) - return SWIG_OverflowError; - } - if (val) - *val = ov.ulong_value(); - return SWIG_OK; - } - - -SWIGINTERNINLINE int -SWIG_AsVal_size_t (octave_value obj, size_t *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = (size_t)(v); - return res; -} - - -#include "cvshadow.h" - - -#include - - -#if defined(__GNUC__) -# if __GNUC__ == 2 && __GNUC_MINOR <= 96 -# define SWIG_STD_NOMODERN_STL -# endif -#endif - - -#include -#include - - -#include - - -#include - - -namespace swig { - struct stop_iteration { - }; - - struct OctSwigIterator { - private: - octave_value _seq; - - protected: - OctSwigIterator(octave_value seq) : _seq(seq) - { - } - - public: - virtual ~OctSwigIterator() {} - - virtual octave_value value() const = 0; - - virtual OctSwigIterator *incr(size_t n = 1) = 0; - - virtual OctSwigIterator *decr(size_t n = 1) - { - throw stop_iteration(); - } - - virtual ptrdiff_t distance(const OctSwigIterator &x) const - { - throw std::invalid_argument("operation not supported"); - } - - virtual bool equal (const OctSwigIterator &x) const - { - throw std::invalid_argument("operation not supported"); - } - - virtual OctSwigIterator *copy() const = 0; - - octave_value next() - { - octave_value obj = value(); - incr(); - return obj; - } - - octave_value previous() - { - decr(); - return value(); - } - - OctSwigIterator *advance(ptrdiff_t n) - { - return (n > 0) ? incr(n) : decr(-n); - } - - bool operator == (const OctSwigIterator& x) const - { - return equal(x); - } - - bool operator != (const OctSwigIterator& x) const - { - return ! operator==(x); - } - - OctSwigIterator* operator ++ () { - incr(); - return this; - } - - OctSwigIterator* operator -- () { - decr(); - return this; - } - - OctSwigIterator* operator + (ptrdiff_t n) const - { - return copy()->advance(n); - } - - OctSwigIterator* operator - (ptrdiff_t n) const - { - return copy()->advance(-n); - } - - ptrdiff_t operator - (const OctSwigIterator& x) const - { - return x.distance(*this); - } - - static swig_type_info* descriptor() { - static int init = 0; - static swig_type_info* desc = 0; - if (!init) { - desc = SWIG_TypeQuery("swig::OctSwigIterator *"); - init = 1; - } - return desc; - } - }; -} - - - SWIGINTERNINLINE octave_value SWIG_From_long (long value) - { - return octave_value(value); - } - - -SWIGINTERNINLINE octave_value -SWIG_From_ptrdiff_t (ptrdiff_t value) -{ - return SWIG_From_long ((long)(value)); -} - - - SWIGINTERN int SWIG_AsVal_long (const octave_value& ov, long* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (ov.is_double_type()||ov.is_single_type()) { - double v=ov.double_value(); - if (v!=floor(v)) - return SWIG_TypeError; - } - if (val) - *val = ov.long_value(); - return SWIG_OK; - } - - -SWIGINTERNINLINE int -SWIG_AsVal_ptrdiff_t (octave_value obj, ptrdiff_t *val) -{ - long v; - int res = SWIG_AsVal_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = (ptrdiff_t)(v); - return res; -} - - -#include - - -#include - - -#include - - -#include - - -#include -#include -#include - - -namespace swig { - template - struct noconst_traits { - typedef Type noconst_type; - }; - - template - struct noconst_traits { - typedef Type noconst_type; - }; - - /* - type categories - */ - struct pointer_category { }; - struct value_category { }; - - /* - General traits that provides type_name and type_info - */ - template struct traits { }; - - template - inline const char* type_name() { - return traits::noconst_type >::type_name(); - } - - template - struct traits_info { - static swig_type_info *type_query(std::string name) { - name += " *"; - return SWIG_TypeQuery(name.c_str()); - } - static swig_type_info *type_info() { - static swig_type_info *info = type_query(type_name()); - return info; - } - }; - - template - inline swig_type_info *type_info() { - return traits_info::type_info(); - } - - /* - Partial specialization for pointers - */ - template struct traits { - typedef pointer_category category; - static std::string make_ptr_name(const char* name) { - std::string ptrname = name; - ptrname += " *"; - return ptrname; - } - static const char* type_name() { - static std::string name = make_ptr_name(swig::type_name()); - return name.c_str(); - } - }; - - template - struct traits_as { }; - - template - struct traits_check { }; - -} - - -namespace swig { -// Traits that provides the from method - template struct traits_from_ptr { - static octave_value from(Type *val, int owner = 0) { - return SWIG_NewPointerObj(val, type_info(), owner); - } - }; - - template struct traits_from { - static octave_value from(const Type& val) { - return traits_from_ptr::from(new Type(val), 1); - } - }; - - template struct traits_from { - static octave_value from(Type* val) { - return traits_from_ptr::from(val, 0); - } - }; - - template struct traits_from { - static octave_value from(const Type* val) { - return traits_from_ptr::from(const_cast(val), 0); - } - }; - - - template - inline octave_value from(const Type& val) { - return traits_from::from(val); - } - - template - inline octave_value from_ptr(Type* val, int owner) { - return traits_from_ptr::from(val, owner); - } - - // Traits that provides the asval/as/check method - template - struct traits_asptr { - static int asptr(const octave_value& obj, Type **val) { - Type *p; - int res = SWIG_ConvertPtr(obj, (void**)&p, type_info(), 0); - if (SWIG_IsOK(res)) { - if (val) *val = p; - } - return res; - } - }; - - template - inline int asptr(const octave_value& obj, Type **vptr) { - return traits_asptr::asptr(obj, vptr); - } - - template - struct traits_asval { - static int asval(const octave_value& obj, Type *val) { - if (val) { - Type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (!SWIG_IsOK(res)) return res; - if (p) { - typedef typename noconst_traits::noconst_type noconst_type; - *(const_cast(val)) = *p; - if (SWIG_IsNewObj(res)){ - delete p; - res = SWIG_DelNewMask(res); - } - return res; - } else { - return SWIG_ERROR; - } - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template struct traits_asval { - static int asval(const octave_value& obj, Type **val) { - if (val) { - typedef typename noconst_traits::noconst_type noconst_type; - noconst_type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (SWIG_IsOK(res)) { - *(const_cast(val)) = p; - } - return res; - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template - inline int asval(const octave_value& obj, Type *val) { - return traits_asval::asval(obj, val); - } - - template - struct traits_as { - static Type as(const octave_value& obj, bool throw_error) { - Type v; - int res = asval(obj, &v); - if (!obj.is_defined() || !SWIG_IsOK(res)) { - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - } - return v; - } - }; - - template - struct traits_as { - static Type as(const octave_value& obj, bool throw_error) { - Type *v = 0; - int res = traits_asptr::asptr(obj, &v); - if (SWIG_IsOK(res) && v) { - if (SWIG_IsNewObj(res)) { - Type r(*v); - delete v; - return r; - } else { - return *v; - } - } else { - // Uninitialized return value, no Type() constructor required. - static Type *v_def = (Type*) malloc(sizeof(Type)); - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - memset(v_def,0,sizeof(Type)); - return *v_def; - } - } - }; - - template - struct traits_as { - static Type* as(const octave_value& obj, bool throw_error) { - Type *v = 0; - int res = traits_asptr::asptr(obj, &v); - if (SWIG_IsOK(res)) { - return v; - } else { - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - return 0; - } - } - }; - - template - inline Type as(const octave_value& obj, bool te = false) { - return traits_as::category>::as(obj, te); - } - - template - struct traits_check { - static bool check(const octave_value& obj) { - int res = asval(obj, (Type *)(0)); - return SWIG_IsOK(res) ? true : false; - } - }; - - template - struct traits_check { - static bool check(const octave_value& obj) { - int res = asptr(obj, (Type **)(0)); - return SWIG_IsOK(res) ? true : false; - } - }; - - template - inline bool check(const octave_value& obj) { - return traits_check::category>::check(obj); - } -} - - -#include - -namespace std { - template <> - struct less : public binary_function - { - bool - operator()(const octave_value& v, const octave_value& w) const - { - octave_value res = do_binary_op(octave_value::op_le,v,w); - return res.is_true(); - } - }; -} - -namespace swig { - inline size_t - check_index(ptrdiff_t i, size_t size, bool insert = false) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) - return (size_t) (i + size); - } else if ( (size_t) i < size ) { - return (size_t) i; - } else if (insert && ((size_t) i == size)) { - return size; - } - - throw std::out_of_range("index out of range"); - } - - inline size_t - slice_index(ptrdiff_t i, size_t size) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) { - return (size_t) (i + size); - } else { - throw std::out_of_range("index out of range"); - } - } else { - return ( (size_t) i < size ) ? ((size_t) i) : size; - } - } - - template - inline typename Sequence::iterator - getpos(Sequence* self, Difference i) { - typename Sequence::iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline typename Sequence::const_iterator - cgetpos(const Sequence* self, Difference i) { - typename Sequence::const_iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline Sequence* - getslice(const Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size); - typename Sequence::size_type jj = swig::slice_index(j, size); - - if (jj > ii) { - typename Sequence::const_iterator vb = self->begin(); - typename Sequence::const_iterator ve = self->begin(); - std::advance(vb,ii); - std::advance(ve,jj); - return new Sequence(vb, ve); - } else { - return new Sequence(); - } - } - - template - inline void - setslice(Sequence* self, Difference i, Difference j, const InputSeq& v) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj < ii) jj = ii; - size_t ssize = jj - ii; - if (ssize <= v.size()) { - typename Sequence::iterator sb = self->begin(); - typename InputSeq::const_iterator vmid = v.begin(); - std::advance(sb,ii); - std::advance(vmid, jj - ii); - self->insert(std::copy(v.begin(), vmid, sb), vmid, v.end()); - } else { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - self->insert(sb, v.begin(), v.end()); - } - } - - template - inline void - delslice(Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj > ii) { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - } - } -} - - -#if defined(__SUNPRO_CC) && defined(_RWSTD_VER) -# if !defined(SWIG_NO_STD_NOITERATOR_TRAITS_STL) -# define SWIG_STD_NOITERATOR_TRAITS_STL -# endif -#endif - -#if !defined(SWIG_STD_NOITERATOR_TRAITS_STL) -#include -#else -namespace std { - template - struct iterator_traits { - typedef ptrdiff_t difference_type; - typedef typename Iterator::value_type value_type; - }; - - template - struct iterator_traits<__reverse_bi_iterator > { - typedef Distance difference_type; - typedef T value_type; - }; - - template - struct iterator_traits { - typedef T value_type; - typedef ptrdiff_t difference_type; - }; - - template - inline typename iterator_traits<_InputIterator>::difference_type - distance(_InputIterator __first, _InputIterator __last) - { - typename iterator_traits<_InputIterator>::difference_type __n = 0; - while (__first != __last) { - ++__first; ++__n; - } - return __n; - } -} -#endif - - -namespace swig { - template - class OctSwigIterator_T : public OctSwigIterator - { - public: - typedef OutIterator out_iterator; - typedef typename std::iterator_traits::value_type value_type; - typedef OctSwigIterator_T self_type; - - OctSwigIterator_T(out_iterator curr, octave_value seq) - : OctSwigIterator(seq), current(curr) - { - } - - const out_iterator& get_current() const - { - return current; - } - - - bool equal (const OctSwigIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return (current == iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - ptrdiff_t distance(const OctSwigIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return std::distance(current, iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - protected: - out_iterator current; - }; - - template - struct from_oper - { - typedef const ValueType& argument_type; - typedef octave_value result_type; - result_type operator()(argument_type v) const - { - return swig::from(v); - } - }; - - template::value_type, - typename FromOper = from_oper > - class OctSwigIteratorOpen_T : public OctSwigIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef OctSwigIterator_T base; - typedef OctSwigIteratorOpen_T self_type; - - OctSwigIteratorOpen_T(out_iterator curr, octave_value seq) - : OctSwigIterator_T(curr, seq) - { - } - - octave_value value() const { - return from(static_cast(*(base::current))); - } - - OctSwigIterator *copy() const - { - return new self_type(*this); - } - - OctSwigIterator *incr(size_t n = 1) - { - while (n--) { - ++base::current; - } - return this; - } - - OctSwigIterator *decr(size_t n = 1) - { - while (n--) { - --base::current; - } - return this; - } - }; - - template::value_type, - typename FromOper = from_oper > - class OctSwigIteratorClosed_T : public OctSwigIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef OctSwigIterator_T base; - typedef OctSwigIteratorClosed_T self_type; - - OctSwigIteratorClosed_T(out_iterator curr, out_iterator first, out_iterator last, octave_value seq) - : OctSwigIterator_T(curr, seq), begin(first), end(last) - { - } - - octave_value value() const { - if (base::current == end) { - throw stop_iteration(); - } else { - return from(static_cast(*(base::current))); - } - } - - OctSwigIterator *copy() const - { - return new self_type(*this); - } - - OctSwigIterator *incr(size_t n = 1) - { - while (n--) { - if (base::current == end) { - throw stop_iteration(); - } else { - ++base::current; - } - } - return this; - } - - OctSwigIterator *decr(size_t n = 1) - { - while (n--) { - if (base::current == begin) { - throw stop_iteration(); - } else { - --base::current; - } - } - return this; - } - - private: - out_iterator begin; - out_iterator end; - }; - - template - inline OctSwigIterator* - make_output_iterator(const OutIter& current, const OutIter& begin,const OutIter& end, octave_value seq = octave_value()) - { - return new OctSwigIteratorClosed_T(current, begin, end, seq); - } - - template - inline OctSwigIterator* - make_output_iterator(const OutIter& current, octave_value seq = octave_value()) - { - return new OctSwigIteratorOpen_T(current, seq); - } -} - - -namespace swig -{ - template - struct OctSequence_Ref // * octave can't support these, because of how assignment works - { - OctSequence_Ref(const octave_value& seq, int index) - : _seq(seq), _index(index) - { - } - - operator T () const - { - // swig::SwigVar_PyObject item = OctSequence_GetItem(_seq, _index); - octave_value item; // * todo - try { - return swig::as(item, true); - } catch (std::exception& e) { - char msg[1024]; - sprintf(msg, "in sequence element %d ", _index); - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - SWIG_Octave_AddErrorMsg(msg); - SWIG_Octave_AddErrorMsg(e.what()); - throw; - } - } - - OctSequence_Ref& operator=(const T& v) - { - // OctSequence_SetItem(_seq, _index, swig::from(v)); - // * todo - return *this; - } - - private: - octave_value _seq; - int _index; - }; - - template - struct OctSequence_ArrowProxy - { - OctSequence_ArrowProxy(const T& x): m_value(x) {} - const T* operator->() const { return &m_value; } - operator const T*() const { return &m_value; } - T m_value; - }; - - template - struct OctSequence_InputIterator - { - typedef OctSequence_InputIterator self; - - typedef std::random_access_iterator_tag iterator_category; - typedef Reference reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - - OctSequence_InputIterator() - { - } - - OctSequence_InputIterator(const octave_value& seq, int index) - : _seq(seq), _index(index) - { - } - - reference operator*() const - { - return reference(_seq, _index); - } - - OctSequence_ArrowProxy - operator->() const { - return OctSequence_ArrowProxy(operator*()); - } - - bool operator==(const self& ri) const - { - return (_index == ri._index); - } - - bool operator!=(const self& ri) const - { - return !(operator==(ri)); - } - - self& operator ++ () - { - ++_index; - return *this; - } - - self& operator -- () - { - --_index; - return *this; - } - - self& operator += (difference_type n) - { - _index += n; - return *this; - } - - self operator +(difference_type n) const - { - return self(_seq, _index + n); - } - - self& operator -= (difference_type n) - { - _index -= n; - return *this; - } - - self operator -(difference_type n) const - { - return self(_seq, _index - n); - } - - difference_type operator - (const self& ri) const - { - return _index - ri._index; - } - - bool operator < (const self& ri) const - { - return _index < ri._index; - } - - reference - operator[](difference_type n) const - { - return reference(_seq, _index + n); - } - - private: - octave_value _seq; - difference_type _index; - }; - - template - struct OctSequence_Cont - { - typedef OctSequence_Ref reference; - typedef const OctSequence_Ref const_reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - typedef int size_type; - typedef const pointer const_pointer; - typedef OctSequence_InputIterator iterator; - typedef OctSequence_InputIterator const_iterator; - - OctSequence_Cont(const octave_value& seq) : _seq(seq) - { - // * assert that we have map type etc. - /* - if (!OctSequence_Check(seq)) { - throw std::invalid_argument("a sequence is expected"); - } - _seq = seq; - Py_INCREF(_seq); - */ - } - - ~OctSequence_Cont() - { - } - - size_type size() const - { - // return static_cast(OctSequence_Size(_seq)); - return 0; // * todo - } - - bool empty() const - { - return size() == 0; - } - - iterator begin() - { - return iterator(_seq, 0); - } - - const_iterator begin() const - { - return const_iterator(_seq, 0); - } - - iterator end() - { - return iterator(_seq, size()); - } - - const_iterator end() const - { - return const_iterator(_seq, size()); - } - - reference operator[](difference_type n) - { - return reference(_seq, n); - } - - const_reference operator[](difference_type n) const - { - return const_reference(_seq, n); - } - - bool check(bool set_err = true) const - { - int s = size(); - for (int i = 0; i < s; ++i) { - // swig::SwigVar_PyObject item = OctSequence_GetItem(_seq, i); - octave_value item; // * todo - if (!swig::check(item)) { - if (set_err) { - char msg[1024]; - sprintf(msg, "in sequence element %d", i); - SWIG_Error(SWIG_RuntimeError, msg); - } - return false; - } - } - return true; - } - - private: - octave_value _seq; - }; - -} - - -#include - - - SWIGINTERN int SWIG_AsVal_double (const octave_value& ov, double* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (val) - *val = ov.double_value(); - return SWIG_OK; - } - - -SWIGINTERN int -SWIG_AsVal_float (octave_value obj, float *val) -{ - double v; - int res = SWIG_AsVal_double (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < -FLT_MAX || v > FLT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = (float)(v); - } - } - return res; -} - - - SWIGINTERNINLINE octave_value SWIG_From_double (double value) - { - return octave_value(value); - } - - -SWIGINTERNINLINE octave_value -SWIG_From_float (float value) -{ - return SWIG_From_double (value); -} - - -namespace swig { - template <> struct traits { - typedef value_category category; - static const char* type_name() { return"float"; } - }; - template <> struct traits_asval { - typedef float value_type; - static int asval(octave_value obj, value_type *val) { - return SWIG_AsVal_float (obj, val); - } - }; - template <> struct traits_from { - typedef float value_type; - static octave_value from(const value_type& val) { - return SWIG_From_float (val); - } - }; -} - - -namespace swig { - template - inline void - assign(const OctSeq& octseq, Seq* seq) { -#ifdef SWIG_STD_NOASSIGN_STL - typedef typename OctSeq::value_type value_type; - typename OctSeq::const_iterator it = octseq.begin(); - for (;it != octseq.end(); ++it) { - seq->insert(seq->end(),(value_type)(*it)); - } -#else - seq->assign(octseq.begin(), octseq.end()); -#endif - } - - template - struct traits_asptr_stdseq { - typedef Seq sequence; - typedef T value_type; - - static int asptr(const octave_value& obj, sequence **seq) { - if (!obj.is_defined() || Swig::swig_value_deref(obj)) { - sequence *p; - if (SWIG_ConvertPtr(obj,(void**)&p, - swig::type_info(),0) == SWIG_OK) { - if (seq) *seq = p; - return SWIG_OLDOBJ; - } - } else if (obj.is_cell()) { - try { - OctSequence_Cont octseq(obj); - if (seq) { - sequence *pseq = new sequence(); - assign(octseq, pseq); - *seq = pseq; - return SWIG_NEWOBJ; - } else { - return octseq.check() ? SWIG_OK : SWIG_ERROR; - } - } catch (std::exception& e) { - if (seq&&!error_state) - error("swig type error: %s",e.what()); - return SWIG_ERROR; - } - } - return SWIG_ERROR; - } - }; - - template - struct traits_from_stdseq { - typedef Seq sequence; - typedef T value_type; - typedef typename Seq::size_type size_type; - typedef typename sequence::const_iterator const_iterator; - - static octave_value from(const sequence& seq) { - - - - - - - size_type size = seq.size(); - if (size <= (size_type)INT_MAX) { - Cell c(size,1); - int i = 0; - for (const_iterator it = seq.begin(); - it != seq.end(); ++it, ++i) { - c(i) = swig::from(*it); - } - return c; - } else { - error("swig overflow error: sequence size not valid in octave"); - return octave_value(); - } - return octave_value(); - } - }; -} - - - namespace swig { - template - struct traits_asptr > { - static int asptr(const octave_value& obj, std::vector **vec) { - return traits_asptr_stdseq >::asptr(obj, vec); - } - }; - - template - struct traits_from > { - static octave_value from(const std::vector& vec) { - return traits_from_stdseq >::from(vec); - } - }; - } - - - namespace swig { - template <> struct traits > > { - typedef pointer_category category; - static const char* type_name() { - return "std::vector<" "float" "," "std::allocator< float >" " >"; - } - }; - } - -SWIGINTERN std::vector< float >::value_type std_vector_Sl_float_Sg__pop(std::vector< float > *self){ - if (self->size() == 0) - throw std::out_of_range("pop from empty container"); - std::vector >::value_type x = self->back(); - self->pop_back(); - return x; - } -SWIGINTERN std::vector< float >::value_type std_vector_Sl_float_Sg____paren__(std::vector< float > *self,std::vector< float >::difference_type i){ - return *(swig::cgetpos(self, i)); - } -SWIGINTERN void std_vector_Sl_float_Sg____paren_asgn__(std::vector< float > *self,std::vector< float >::difference_type i,std::vector< float >::value_type x){ - *(swig::getpos(self,i)) = x; - } -SWIGINTERN void std_vector_Sl_float_Sg__append(std::vector< float > *self,std::vector< float >::value_type x){ - self->push_back(x); - } - - SWIGINTERNINLINE octave_value SWIG_From_unsigned_SS_long (unsigned long value) - { - return octave_value(value); - } - - -SWIGINTERNINLINE octave_value -SWIG_From_size_t (size_t value) -{ - return SWIG_From_unsigned_SS_long ((unsigned long)(value)); -} - - - namespace swig { - template <> struct traits { - typedef pointer_category category; - static const char* type_name() { return"CvPoint"; } - }; - } - - - namespace swig { - template <> struct traits > > { - typedef pointer_category category; - static const char* type_name() { - return "std::vector<" "CvPoint" "," "std::allocator< CvPoint >" " >"; - } - }; - } - -SWIGINTERN std::vector< CvPoint >::value_type std_vector_Sl_CvPoint_Sg__pop(std::vector< CvPoint > *self){ - if (self->size() == 0) - throw std::out_of_range("pop from empty container"); - std::vector >::value_type x = self->back(); - self->pop_back(); - return x; - } -SWIGINTERN std::vector< CvPoint >::value_type std_vector_Sl_CvPoint_Sg____paren__(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i){ - return *(swig::cgetpos(self, i)); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____paren_asgn__(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i,std::vector< CvPoint >::value_type x){ - *(swig::getpos(self,i)) = x; - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg__append(std::vector< CvPoint > *self,std::vector< CvPoint >::value_type x){ - self->push_back(x); - } - -#include -#if !defined(SWIG_NO_LLONG_MAX) -# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) -# define LLONG_MAX __LONG_LONG_MAX__ -# define LLONG_MIN (-LLONG_MAX - 1LL) -# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -# endif -#endif - - -SWIGINTERN int -SWIG_AsVal_int (octave_value obj, int *val) -{ - long v; - int res = SWIG_AsVal_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = (int)(v); - } - } - return res; -} - - -#include "cxtypes.h" -#include "cxcore.h" -#include "cvtypes.h" -#include "cv.h" - - -SWIGINTERNINLINE octave_value -SWIG_From_int (int value) -{ - return SWIG_From_long (value); -} - - -#include - - -CvMat * cvCreateImageMat( CvSize size, int depth, int channels ){ - static const signed char icvDepthToType[]= - { - -1, -1, CV_8U, CV_8S, CV_16U, CV_16S, -1, -1, - CV_32F, CV_32S, -1, -1, -1, -1, -1, -1, CV_64F, -1 - }; - - depth = icvDepthToType[((depth & 255) >> 2) + (depth < 0)]; - return cvCreateMat( size.height, size.width, CV_MAKE_TYPE(depth, channels)); -} -#define cvCloneImageMat( mat ) cvCloneMat( mat ) - -#ifdef WIN32 - -CvModuleInfo *CvModule::first=0; -CvModuleInfo *CvModule::last=0; -CvTypeInfo *CvType::first=0; -CvTypeInfo *CvType::last=0; - -#endif - - - -SWIGINTERN swig_type_info* -SWIG_pchar_descriptor(void) -{ - static int init = 0; - static swig_type_info* info = 0; - if (!init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; -} - - -SWIGINTERNINLINE octave_value -SWIG_FromCharPtrAndSize(const char* carray, size_t size) -{ - return std::string(carray,carray+size); -} - - -SWIGINTERNINLINE octave_value -SWIG_FromCharPtr(const char *cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); -} - - -SWIGINTERN int -SWIG_AsVal_unsigned_SS_int (octave_value obj, unsigned int *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v > UINT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = (unsigned int)(v); - } - } - return res; -} - - -SWIGINTERNINLINE octave_value -SWIG_From_unsigned_SS_int (unsigned int value) -{ - return SWIG_From_unsigned_SS_long (value); -} - -SWIGINTERN void delete_IplImage(IplImage *self){ IplImage * dummy = self; cvReleaseImage (& dummy); } -SWIGINTERN IplImage *IplImage_operator_Sa___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAdd(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sm___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvMul(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Ss___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSub(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sd___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvDiv(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sx___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXor(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sa___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sx___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Ss___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 2); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 2); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Se__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 0); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Se__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 0); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 4); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 4); - return res; - } -SWIGINTERN IplImage *IplImage_operator_SN__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 5); - return res; - } -SWIGINTERN IplImage *IplImage_operator_SN__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 5); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 3); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 3); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 1); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 1); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sm___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, res, val); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sd___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, res, 1.0/val); - return res; - } -SWIGINTERN IplImage *IplImage___radd____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAdd(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rsub____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSub(arg, self, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rdiv____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvDiv(arg, self, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rmul____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvMatMul(arg, self, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___radd____SWIG_1(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___radd____SWIG_2(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rsub____SWIG_1(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubRS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rsub____SWIG_2(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubRS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvArr *IplImage___rmul____SWIG_1(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, retarg, arg); - return retarg; - } -SWIGINTERN CvArr *IplImage___rdiv____SWIG_1(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, retarg, 1.0/arg); - return retarg; - } -SWIGINTERN IplImage *IplImage___ror____SWIG_0(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOrS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___ror____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOrS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rand____SWIG_0(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAndS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rand____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAndS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rxor____SWIG_0(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rxor____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvArr *IplImage___req__(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 0); - return retarg; - } -SWIGINTERN CvArr *IplImage___rgt__(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 1); - return retarg; - } -SWIGINTERN CvArr *IplImage___rge__(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 2); - return retarg; - } -SWIGINTERN CvArr *IplImage___rlt__(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 3); - return retarg; - } -SWIGINTERN CvArr *IplImage___rle__(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 4); - return retarg; - } -SWIGINTERN CvArr *IplImage___rne__(IplImage *self,double arg){ - CvArr * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 5); - return retarg; - } -SWIGINTERN IplImage *IplImage___pow__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvPow(self, retarg, arg); - return retarg; - } -SWIGINTERN char *IplImage___str(IplImage *self){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - return ""; - } -SWIGINTERN void IplImage___paren_asgn__SWIG_0(IplImage *self,octave_value object,double val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } -SWIGINTERN void IplImage___paren_asgn__SWIG_1(IplImage *self,octave_value object,CvPoint val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void IplImage___paren_asgn__SWIG_2(IplImage *self,octave_value object,CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void IplImage___paren_asgn__SWIG_3(IplImage *self,octave_value object,CvScalar val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, val); - } -SWIGINTERN void IplImage___paren_asgn__SWIG_4(IplImage *self,octave_value object,CvArr *arr){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvConvert(arr, &tmp); - } -SWIGINTERN octave_value IplImage___paren(IplImage *self,octave_value object){ - CvMat mat; - IplImage * im; - CvRect subrect = OctSlice_to_CvRect( self, object ); - - // return scalar if single element - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, SWIGTYPE_p_CvScalar, 1 ); - } - switch(((type) & ((1 << 3) - 1))){ - case 0: - return OctLong_FromUnsignedLong( CV_IMAGE_ELEM(self, uchar, subrect.y, subrect.x ) ); - case 1: - return OctLong_FromLong( CV_IMAGE_ELEM(self, char, subrect.y, subrect.x ) ); - case 2: - return OctLong_FromUnsignedLong( CV_IMAGE_ELEM(self, ushort, subrect.y, subrect.x ) ); - case 3: - return OctLong_FromLong( CV_IMAGE_ELEM(self, short, subrect.y, subrect.x ) ); - case 4: - return OctLong_FromLong( CV_IMAGE_ELEM(self, int, subrect.y, subrect.x ) ); - case 5: - return OctFloat_FromDouble( CV_IMAGE_ELEM(self, float, subrect.y, subrect.x) ); - case 6: - return OctFloat_FromDouble( CV_IMAGE_ELEM(self, double, subrect.y, subrect.x) ); - } - } - - // otherwise return array - im = (IplImage *) cvAlloc(sizeof(IplImage)); - cvGetSubRect(self, &mat, subrect); - im = cvGetImage(&mat, im); - return SWIG_NewPointerObj( im, SWIGTYPE_p__IplImage, 1 ); - } -SWIGINTERN void delete_IplConvKernel(IplConvKernel *self){ IplConvKernel * dummy = self; cvReleaseStructuringElement (& dummy); } - -typedef union { - uchar* ptr; - short* s; - int* i; - float* fl; - double* db; - } CvMat_data; - - -SWIGINTERN void delete_CvMat(CvMat *self){ CvMat * dummy = self; cvReleaseMat (& dummy); } -SWIGINTERN CvMat *CvMat_operator_Sa___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAdd(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sm___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvMul(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Ss___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvSub(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sd___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvDiv(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sx___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvXor(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sa___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sx___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Ss___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvSubS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 2); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 2); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Se__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 0); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Se__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 0); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 4); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 4); - return res; - } -SWIGINTERN CvMat *CvMat_operator_SN__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 5); - return res; - } -SWIGINTERN CvMat *CvMat_operator_SN__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 5); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 3); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 3); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 1); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 1); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sm___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, res, val); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sd___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, res, 1.0/val); - return res; - } -SWIGINTERN CvMat *CvMat___radd____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAdd(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rsub____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvSub(arg, self, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rdiv____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvDiv(arg, self, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rmul____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvMatMul(arg, self, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___radd____SWIG_1(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___radd____SWIG_2(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rsub____SWIG_1(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvSubRS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rsub____SWIG_2(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvSubRS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvArr *CvMat___rmul____SWIG_1(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, retarg, arg); - return retarg; - } -SWIGINTERN CvArr *CvMat___rdiv____SWIG_1(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, retarg, 1.0/arg); - return retarg; - } -SWIGINTERN CvMat *CvMat___ror____SWIG_0(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvOrS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___ror____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvOrS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rand____SWIG_0(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAndS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rand____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAndS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rxor____SWIG_0(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rxor____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvArr *CvMat___req__(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 0); - return retarg; - } -SWIGINTERN CvArr *CvMat___rgt__(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 1); - return retarg; - } -SWIGINTERN CvArr *CvMat___rge__(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 2); - return retarg; - } -SWIGINTERN CvArr *CvMat___rlt__(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 3); - return retarg; - } -SWIGINTERN CvArr *CvMat___rle__(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 4); - return retarg; - } -SWIGINTERN CvArr *CvMat___rne__(CvMat *self,double arg){ - CvArr * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 5); - return retarg; - } -SWIGINTERN CvMat *CvMat___pow__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvPow(self, retarg, arg); - return retarg; - } -SWIGINTERN char *CvMat___str(CvMat *self){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - return ""; - } -SWIGINTERN void CvMat___paren_asgn__SWIG_0(CvMat *self,octave_value object,double val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,206,CHECK_SLICE_BOUNDS@*/ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - if(subrect.width<=0 || subrect.height<=0 || - subrect.width>self->cols || subrect.height>self->rows || - subrect.x<0 || subrect.y<0 || - subrect.x>= self->cols || subrect.y >=self->rows){ - char errstr[256]; - // previous function already set error string - if(subrect.width==0 && subrect.height==0 && subrect.x==0 && subrect.y==0) return ; - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - error(errstr); - return ; - } -else{} -/*@SWIG@*/; - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } -SWIGINTERN void CvMat___paren_asgn__SWIG_1(CvMat *self,octave_value object,CvPoint val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,206,CHECK_SLICE_BOUNDS@*/ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - if(subrect.width<=0 || subrect.height<=0 || - subrect.width>self->cols || subrect.height>self->rows || - subrect.x<0 || subrect.y<0 || - subrect.x>= self->cols || subrect.y >=self->rows){ - char errstr[256]; - // previous function already set error string - if(subrect.width==0 && subrect.height==0 && subrect.x==0 && subrect.y==0) return ; - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - error(errstr); - return ; - } -else{} -/*@SWIG@*/; - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void CvMat___paren_asgn__SWIG_2(CvMat *self,octave_value object,CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - /*@SWIG:./cvarr.i,206,CHECK_SLICE_BOUNDS@*/ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - if(subrect.width<=0 || subrect.height<=0 || - subrect.width>self->cols || subrect.height>self->rows || - subrect.x<0 || subrect.y<0 || - subrect.x>= self->cols || subrect.y >=self->rows){ - char errstr[256]; - // previous function already set error string - if(subrect.width==0 && subrect.height==0 && subrect.x==0 && subrect.y==0) return ; - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - error(errstr); - return ; - } -else{} -/*@SWIG@*/; - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void CvMat___paren_asgn__SWIG_3(CvMat *self,octave_value object,CvScalar val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - /*@SWIG:./cvarr.i,206,CHECK_SLICE_BOUNDS@*/ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - if(subrect.width<=0 || subrect.height<=0 || - subrect.width>self->cols || subrect.height>self->rows || - subrect.x<0 || subrect.y<0 || - subrect.x>= self->cols || subrect.y >=self->rows){ - char errstr[256]; - // previous function already set error string - if(subrect.width==0 && subrect.height==0 && subrect.x==0 && subrect.y==0) return ; - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - error(errstr); - return ; - } -else{} -/*@SWIG@*/; - cvSet(&tmp, val); - } -SWIGINTERN void CvMat___paren_asgn__SWIG_4(CvMat *self,octave_value object,CvArr *arr){ - CvMat tmp, src_stub, *src; - CvRect subrect = OctSlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,206,CHECK_SLICE_BOUNDS@*/ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - if(subrect.width<=0 || subrect.height<=0 || - subrect.width>self->cols || subrect.height>self->rows || - subrect.x<0 || subrect.y<0 || - subrect.x>= self->cols || subrect.y >=self->rows){ - char errstr[256]; - // previous function already set error string - if(subrect.width==0 && subrect.height==0 && subrect.x==0 && subrect.y==0) return ; - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - error(errstr); - return ; - } -else{} -/*@SWIG@*/; - cvGetSubRect(self, &tmp, subrect); - - // Reshape source array to fit destination - // This will be used a lot for small arrays b/c - // OctObject_to_CvArr tries to compress a 2-D octave - // array with 1-4 columns into a multichannel vector - src=cvReshape(arr, &src_stub, CV_MAT_CN(tmp.type), tmp.rows); - - cvConvert(src, &tmp); - } -SWIGINTERN octave_value CvMat___paren(CvMat *self,octave_value object){ - CvMat * mat; - CvRect subrect = OctSlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,206,CHECK_SLICE_BOUNDS@*/ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - if(subrect.width<=0 || subrect.height<=0 || - subrect.width>self->cols || subrect.height>self->rows || - subrect.x<0 || subrect.y<0 || - subrect.x>= self->cols || subrect.y >=self->rows){ - char errstr[256]; - // previous function already set error string - if(subrect.width==0 && subrect.height==0 && subrect.x==0 && subrect.y==0) return octave_value(); - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - subrect.x, subrect.y, subrect.x+subrect.width, subrect.y+subrect.height, self->cols, self->rows); - error(errstr); - return octave_value(); - } -else{} -/*@SWIG@*/; - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, SWIGTYPE_p_CvScalar, 1 ); - } - switch(((type) & ((1 << 3) - 1))){ - case 0: - return OctLong_FromUnsignedLong( CV_MAT_ELEM(*self, uchar, subrect.y, subrect.x ) ); - case 1: - return OctLong_FromLong( CV_MAT_ELEM(*self, char, subrect.y, subrect.x ) ); - case 2: - return OctLong_FromUnsignedLong( CV_MAT_ELEM(*self, ushort, subrect.y, subrect.x ) ); - case 3: - return OctLong_FromLong( CV_MAT_ELEM(*self, short, subrect.y, subrect.x ) ); - case 4: - return OctLong_FromLong( CV_MAT_ELEM(*self, int, subrect.y, subrect.x ) ); - case 5: - return OctFloat_FromDouble( CV_MAT_ELEM(*self, float, subrect.y, subrect.x) ); - case 6: - return OctFloat_FromDouble( CV_MAT_ELEM(*self, double, subrect.y, subrect.x) ); - } - } - mat = (CvMat *) cvAlloc(sizeof(CvMat)); - cvGetSubRect(self, mat, subrect); - - // cvGetSubRect doesn't do this since it assumes mat lives on the stack - mat->hdr_refcount = self->hdr_refcount; - mat->refcount = self->refcount; - cvIncRefData(mat); - - return SWIG_NewPointerObj( mat, SWIGTYPE_p_CvMat, 1 ); - } - -typedef struct { - int size; - int step; - } CvMatND_dim; - - - -typedef union { - uchar* ptr; - float* fl; - double* db; - int* i; - short* s; - } CvMatND_data; - - -SWIGINTERN void delete_CvMatND(CvMatND *self){ CvMatND * dummy = self; cvReleaseMatND (& dummy); } -SWIGINTERN void delete_CvSparseMat(CvSparseMat *self){ CvSparseMat * dummy = self; cvReleaseSparseMat (& dummy); } -SWIGINTERN void delete_CvHistogram(CvHistogram *self){ CvHistogram * dummy = self; cvReleaseHist (& dummy); } -SWIGINTERN char const *CvPoint___str__(CvPoint *self){ - static char str[64]; - snprintf(str, 64, "[%d %d]", self->x, self->y); - return str; - } -SWIGINTERN char const *CvPoint___repr__(CvPoint *self){ - static char str[64]; - snprintf(str, 64, "cvPoint(%d,%d)", self->x, self->y); - return str; - } -SWIGINTERN char const *CvPoint2D32f___str__(CvPoint2D32f *self){ - static char str[64]; - snprintf(str, 64, "[%f %f]", self->x, self->y); - return str; - } -SWIGINTERN char const *CvPoint2D32f___repr__(CvPoint2D32f *self){ - static char str[64]; - snprintf(str, 64, "cvPoint2D32f(%f,%f)", self->x, self->y); - return str; - } -SWIGINTERN char const *CvScalar___str__(CvScalar *self){ - static char str[256]; - snprintf(str, 256, "[%f, %f, %f, %f]", self->val[0], self->val[1], self->val[2], self->val[3]); - return str; - } -SWIGINTERN char const *CvScalar___repr__(CvScalar *self){ - static char str[256]; - snprintf(str, 256, "cvScalar(%f, %f, %f, %f)", self->val[0], self->val[1], self->val[2], self->val[3]); - return str; - } -SWIGINTERN double const CvScalar___getitem__(CvScalar *self,int index){ - if (index >= 4) { - - - - error("indice must be lower than 4"); - - return 0; - } - if (index < -4) { - - - - error("indice must be bigger or egal to -4"); - - return 0; - } - if (index < 0) { - /* negative index means from the end in python */ - index = 4 - index; - } - return self->val [index]; - } -SWIGINTERN void CvScalar___setitem__(CvScalar *self,int index,double value){ - if (index >= 4) { - - - - error("indice must be lower than 4"); - - return; - } - if (index < -4) { - - - - error("indice must be bigger or egal to -4"); - - return; - } - if (index < 0) { - /* negative index means from the end in python */ - index = 4 - index; - } - self->val [index] = value; - } -SWIGINTERN void delete_CvMemStorage(CvMemStorage *self){ CvMemStorage * dummy = self; cvReleaseMemStorage (& dummy); } - -SWIGINTERN int -SWIG_AsCharPtrAndSize(octave_value ov, char** cptr, size_t* psize, int *alloc) -{ - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - if (!ov.is_string()) - return SWIG_TypeError; - - std::string str=ov.string_value(); - size_t len=str.size(); - char* cstr=(char*)str.c_str(); - if (alloc) { - *cptr = (char*)(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); - *alloc = SWIG_NEWOBJ; - } else if (cptr) - *cptr = cstr; - if (psize) - *psize = len + 1; - return SWIG_OK; -} - - - - - -typedef union { - double f; - int i; - CvString str; - CvSeq* seq; - CvFileNodeHash* map; - } CvFileNode_data; - - -SWIGINTERN void delete_CvGraphScanner(CvGraphScanner *self){ CvGraphScanner * dummy = self; cvReleaseGraphScanner (& dummy); } - -SWIGINTERN int -SWIG_AsVal_bool (const octave_value& ov, bool *val) -{ - if (!ov.is_bool_type()) - return SWIG_ERROR; - if (val) - *val = ov.bool_value(); - return SWIG_OK; -} - - -SWIGINTERN int -SWIG_AsCharArray(octave_value obj, char *val, size_t size) -{ - char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize; - if (csize <= size) { - if (val) { - if (csize) memcpy(val, cptr, csize*sizeof(char)); - if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) delete[] cptr; - } - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_char (octave_value obj, char *val) -{ - int res = SWIG_AsCharArray(obj, val, 1); - if (!SWIG_IsOK(res)) { - long v; - res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); - if (SWIG_IsOK(res)) { - if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { - if (val) *val = (char)(v); - } else { - res = SWIG_OverflowError; - } - } - } - return res; -} - - -SWIGINTERNINLINE octave_value -SWIG_From_char (char c) -{ - return SWIG_FromCharPtrAndSize(&c,1); -} - -SWIGINTERN CvTypedSeq< CvQuadEdge2D > *CvSubdiv2D_typed_edges_get(CvSubdiv2D *self){ - return (CvTypedSeq *) self->edges; - } -SWIGINTERN void CvSubdiv2D_typed_edges_set(CvSubdiv2D *self,CvTypedSeq< CvQuadEdge2D > *){ - } -SWIGINTERN void delete_CvConDensation(CvConDensation *self){ CvConDensation * dummy = self; cvReleaseConDensation (& dummy); } -SWIGINTERN void delete_CvKalman(CvKalman *self){ CvKalman * dummy = self; cvReleaseKalman (& dummy); } - -typedef struct { - CvRect r; - float weight; - } CvHaarFeature_rect; - - -SWIGINTERN void delete_CvHaarClassifierCascade(CvHaarClassifierCascade *self){ CvHaarClassifierCascade * dummy = self; cvReleaseHaarClassifierCascade (& dummy); } -SWIGINTERN void delete_CvLSH(CvLSH *self){ CvLSH * dummy = self; cvReleaseLSH (& dummy); } - -int CvMat_cols_get(CvMat * m){ - return m->cols; -} -void CvMat_cols_set(CvMat * m, int cols){ - m->cols = cols; -} -int CvMat_rows_get(CvMat *m){ - return m->rows; -} -void CvMat_rows_set(CvMat *m, int rows){ - m->rows = rows; -} -int CvMat_width_get(CvMat * m){ - return m->cols; -} -void CvMat_width_set(CvMat * m, int width){ - m->cols = width; -} -int CvMat_height_get(CvMat *m){ - return m->rows; -} -void CvMat_height_set(CvMat * m, int height){ - m->rows = height; -} -int CvMat_depth_get(CvMat * m){ - return cvIplDepth(m->type); -} -void CvMat_depth_set(CvMat *m, int depth){ - cvError(CV_StsNotImplemented, "CvMat_depth_set", "Not Implemented", __FILE__, __LINE__); -} -int CvMat_nChannels_get(CvMat * m){ - return CV_MAT_CN(m->type); -} -void CvMat_nChannels_set(CvMat *m, int nChannels){ - int depth = CV_MAT_DEPTH(m->type); - m->type = CV_MAKETYPE(depth, nChannels); -} -int CvMat_origin_get(CvMat * m){ - /* Always 0 - top-left origin */ - return 0; -} -void CvMat_origin_set(CvMat * m, int origin){ - cvError(CV_StsNotImplemented, "CvMat_origin_get", "IplImage is replaced by CvMat in Python, so its fields are read-only", __FILE__, __LINE__); -} -int CvMat_dataOrder_get(CvMat * m){ - cvError(CV_StsNotImplemented, "CvMat_dataOrder_get", "Not Implemented", __FILE__, __LINE__); - return 0; -} -void CvMat_dataOrder_set(CvMat * m, int dataOrder){ - cvError(CV_StsNotImplemented, "CvMat_dataOrder_get", "IplImage is replaced by CvMat in Python, so its fields are read-only", __FILE__, __LINE__); -} -int CvMat_imageSize_get(CvMat * m){ - int step = m->step ? m->step : CV_ELEM_SIZE(m->type) * m->cols; - return step*m->rows; -} -void CvMat_imageSize_set(CvMat * m, int imageSize){ - cvError(CV_StsNotImplemented, "CvMat_imageSize_set", "IplImage is not implemented in Python, so origin is read-only", __FILE__, __LINE__); -} -int CvMat_widthStep_get(CvMat * m){ - return m->step; -} -void CvMat_widthStep_set(CvMat *m, int widthStep){ - m->step = widthStep; -} - - - -/// Accessor to convert a Octave string into the imageData. -void CvMat_imageData_set(CvMat * self, octave_value object) -{ - /* - char* oct_string = OctString_AsString(object); - int depth = CV_MAT_DEPTH(self->type); - int cn = CV_MAT_CN(self->type); - - if (depth == CV_8U && cn==3){ - // RGB case - // The data is reordered beause OpenCV uses BGR instead of RGB - - for (long line = 0; line < self->rows; ++line) - for (long pixel = 0; pixel < self->cols; ++pixel) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - long position = line*self->step + pixel*3; - long sourcepos = line*self->cols*3 + pixel*3; - self->data.ptr[position ] = oct_string[sourcepos+2]; - self->data.ptr[position+1] = oct_string[sourcepos+1]; - self->data.ptr[position+2] = oct_string[sourcepos ]; - } - } - else if (depth == CV_8U && cn==1) - { - // Grayscale 8bit case - - for (long line = 0; line < self->rows; ++line) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - memcpy - ( - self->data.ptr + line*self->step, - oct_string + line*self->cols, - self->step - ); - } - } - else if ( depth == CV_32F ) - { - // float (32bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*self->step, - oct_string + line*self->cols*sizeof(float), - self->step - ); - } - } - else if ( depth == CV_64F ) - { - // double (64bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*self->step, - oct_string + line*self->cols*sizeof(double), - self->step - ); - } - } - else - { - // make some noise - SendErrorToOctave (SWIG_TypeError, - "CvMat_imageData_set", - "cannot convert string data to this image format", - __FILE__, __LINE__, NULL); - } - */ -} - -/// Accessor to convert the imageData into a Octave string. -octave_value CvMat_imageData_get(CvMat * self) -{ - /* - if (!self->data.ptr) - { - OctErr_SetString(OctExc_TypeError, "Data pointer of CvMat is NULL"); - return NULL; - } - return OctString_FromStringAndSize((const char *)self->data.ptr, self->rows*self->step); - */ - return octave_value(); -} - - -const char* _wrap_cvGetDimSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetDimSize (@var{arr}, @var{index})\n\ -@var{arr} is of type CvArr. @var{index} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCalcImageHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcHist (@var{image}, @var{hist}, @var{accumulate} = 0, @var{mask} = nil)\n\ -@var{image} is of type . @var{hist} is of type CvHistogram. @var{accumulate} is of type int. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_create_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} create (@var{self}, @var{rows}, @var{cols}, @var{type})\n\ -@var{self} is of type CvMatrix. @var{rows} is of type int. @var{cols} is of type int. @var{type} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_create_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} create (@var{self}, @var{size}, @var{depth}, @var{channels})\n\ -@var{self} is of type CvImage. @var{size} is of type CvSize. @var{depth} is of type int. @var{channels} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvROIToRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvROIToRect (@var{roi})\n\ -@var{roi} is of type . @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvImage_height_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = height (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_SEQ_KIND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_SEQ_KIND (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSolve_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSolve (@var{src1}, @var{src2}, @var{dst}, @var{method} = 0)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{method} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvBoundingRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvBoundingRect (@var{points}, @var{update} = 0)\n\ -@var{points} is of type CvArr. @var{update} is of type int. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CV_MAT_ELEM_PTR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_MAT_ELEM_PTR (@var{mat}, @var{row}, @var{col})\n\ -@var{mat} is of type CvMat. @var{row} is of type int. @var{col} is of type int. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_front_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = front (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_front_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = front (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_depth_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = depth (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseImageHeader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseImageHeader (@var{image})\n\ -@var{image} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvClearND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearND (@var{arr}, @var{idx})\n\ -@var{arr} is of type CvArr. @var{idx} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetHistBinRanges_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetHistBinRanges (@var{hist}, @var{ranges}, @var{uniform} = 1)\n\ -@var{hist} is of type CvHistogram. @var{ranges} is of type float. @var{uniform} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSubS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSubS (@var{src}, @var{value}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{value} is of type CvScalar. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvMorphologyEx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMorphologyEx (@var{src}, @var{dst}, @var{temp}, @var{element}, @var{operation}, @var{iterations} = 1)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{temp} is of type CvArr. @var{element} is of type . @var{operation} is of type int. @var{iterations} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvHaarFeature_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvHaarFeature::CvHaarFeature ()\n\ -@var{retval} is of type CvHaarFeature. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHaarFeature_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHaarFeature::~CvHaarFeature (@var{self})\n\ -@var{self} is of type CvHaarFeature. \n\ -@end deftypefn"; -const char* _wrap_cvReshape_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReshape (@var{arr}, @var{header}, @var{new_cn}, @var{new_rows} = 0)\n\ -@var{arr} is of type CvArr. @var{header} is of type CvMat. @var{new_cn} is of type int. @var{new_rows} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvConvertScale_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConvertScale (@var{src}, @var{dst}, @var{scale} = 1, @var{shift} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{scale} is of type double. @var{shift} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvSquareAcc_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSquareAcc (@var{image}, @var{sqsum}, @var{mask} = nil)\n\ -@var{image} is of type CvArr. @var{sqsum} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvMaxS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMaxS (@var{src}, @var{value}, @var{dst})\n\ -@var{src} is of type CvArr. @var{value} is of type double. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvMatchContourTrees_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMatchContourTrees (@var{tree1}, @var{tree2}, @var{method}, @var{threshold})\n\ -@var{tree1} is of type CvContourTree. @var{tree2} is of type CvContourTree. @var{method} is of type int. @var{threshold} is of type double. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CV_MAT_ELEM_PTR_FAST_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_MAT_ELEM_PTR_FAST (@var{mat}, @var{row}, @var{col}, @var{pix_size})\n\ -@var{mat} is of type CvMat. @var{row} is of type int. @var{col} is of type int. @var{pix_size} is of type int. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvLUT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLUT (@var{src}, @var{dst}, @var{lut})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{lut} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPopFront_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqPopFront (@var{seq}, @var{element} = nil)\n\ -@var{seq} is of type CvSeq. @var{element} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvReshapeMatND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReshapeMatND (@var{arr}, @var{sizeof_header}, @var{header}, @var{new_cn}, @var{new_dims}, @var{new_sizes})\n\ -@var{arr} is of type CvArr. @var{sizeof_header} is of type int. @var{header} is of type CvArr. @var{new_cn} is of type int. @var{new_dims} is of type int. @var{new_sizes} is of type int. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCloneMatND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCloneMatND (@var{mat})\n\ -@var{mat} is of type CvMatND. @var{retval} is of type CvMatND. \n\ -@end deftypefn"; -const char* _wrap_cvCreateMatND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateMatND (@var{dims}, @var{type})\n\ -@var{dims} is of type int. @var{type} is of type int. @var{retval} is of type CvMatND. \n\ -@end deftypefn"; -const char* _wrap_cvMatMul_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMatMul (@var{src1}, @var{src2}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvRQDecomp3x3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRQDecomp3x3 (@var{matrixM}, @var{matrixR}, @var{matrixQ}, @var{matrixQx} = nil, @var{matrixQy} = nil, @var{matrixQz} = nil, @var{eulerAngles} = nil)\n\ -@var{matrixM} is of type CvMat. @var{matrixR} is of type CvMat. @var{matrixQ} is of type CvMat. @var{matrixQx} is of type CvMat. @var{matrixQy} is of type CvMat. @var{matrixQz} is of type CvMat. @var{eulerAngles} is of type CvPoint3D64f. \n\ -@end deftypefn"; -const char* _wrap_cvGetErrInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetErrInfo (@var{errcode_desc}, @var{description}, @var{filename}, @var{line})\n\ -@var{errcode_desc} is of type char. @var{description} is of type char. @var{filename} is of type char. @var{line} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetRectSubPix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetRectSubPix (@var{src}, @var{dst}, @var{center})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{center} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_cvFindCornerSubPix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFindCornerSubPix (@var{image}, @var{corners}, @var{win}, @var{zero_zone}, @var{criteria})\n\ -@var{image} is of type CvArr. @var{corners} is of type CvPoint2D32f. @var{win} is of type CvSize. @var{zero_zone} is of type CvSize. @var{criteria} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPushFront_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqPushFront (@var{seq}, @var{element} = nil)\n\ -@var{seq} is of type CvSeq. @var{element} is of type void. @var{retval} is of type schar. \n\ -@end deftypefn"; -const char* _wrap_cvSmooth_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSmooth (@var{src}, @var{dst}, @var{smoothtype} = 2, @var{size1} = 3, @var{size2} = 0, @var{sigma1} = 0, @var{sigma2} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{smoothtype} is of type int. @var{size1} is of type int. @var{size2} is of type int. @var{sigma1} is of type double. @var{sigma2} is of type double. \n\ -@end deftypefn"; -const char* _wrap_new_CvSubdiv2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSubdiv2D::CvSubdiv2D ()\n\ -@var{retval} is of type CvSubdiv2D. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSubdiv2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSubdiv2D::~CvSubdiv2D (@var{self})\n\ -@var{self} is of type CvSubdiv2D. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSubdiv2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateSubdiv2D (@var{subdiv_type}, @var{header_size}, @var{vtx_size}, @var{quadedge_size}, @var{storage})\n\ -@var{subdiv_type} is of type int. @var{header_size} is of type int. @var{vtx_size} is of type int. @var{quadedge_size} is of type int. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSubdiv2D. \n\ -@end deftypefn"; -const char* _wrap_cvSetErrMode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSetErrMode (@var{mode})\n\ -@var{mode} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetErrMode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetErrMode ()\n\ -@var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphVtxDegree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphVtxDegree (@var{graph}, @var{vtx_idx})\n\ -@var{graph} is of type CvGraph. @var{vtx_idx} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rle___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rle__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rle___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rle__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvPrevTreeNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPrevTreeNode (@var{tree_iterator})\n\ -@var{tree_iterator} is of type CvTreeNodeIterator. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvNextTreeNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvNextTreeNode (@var{tree_iterator})\n\ -@var{tree_iterator} is of type CvTreeNodeIterator. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvKMeans2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvKMeans2 (@var{samples}, @var{cluster_count}, @var{labels}, @var{termcrit}, @var{attempts} = 1, @var{rng} = 0, @var{flags} = 0, @var{_centers} = 0, @var{compactness} = 0)\n\ -@var{samples} is of type CvArr. @var{cluster_count} is of type int. @var{labels} is of type CvArr. @var{termcrit} is of type CvTermCriteria. @var{attempts} is of type int. @var{rng} is of type CvRNG. @var{flags} is of type int. @var{_centers} is of type CvArr. @var{compactness} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_step_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = step (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_LSHSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = LSHSize (@var{lsh})\n\ -@var{lsh} is of type CvLSH. @var{retval} is of type unsigned int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_INDEX_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_INDEX (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRemap_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRemap (@var{src}, @var{dst}, @var{mapx}, @var{mapy}, @var{flags} = 1+8, @var{fillval} = cvScalarAll(0))\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{mapx} is of type CvArr. @var{mapy} is of type CvArr. @var{flags} is of type int. @var{fillval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_CvImage_depth_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = depth (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSub_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSub (@var{src1}, @var{src2}, @var{dst}, @var{mask} = nil)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvInitMatNDHeader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInitMatNDHeader (@var{mat}, @var{dims}, @var{type}, @var{data} = nil)\n\ -@var{mat} is of type CvMatND. @var{dims} is of type int. @var{type} is of type int. @var{data} is of type void. @var{retval} is of type CvMatND. \n\ -@end deftypefn"; -const char* _wrap_cvCreateMatNDHeader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateMatNDHeader (@var{dims}, @var{type})\n\ -@var{dims} is of type int. @var{type} is of type int. @var{retval} is of type CvMatND. \n\ -@end deftypefn"; -const char* _wrap_cvInitMatHeader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInitMatHeader (@var{mat}, @var{rows}, @var{cols}, @var{type}, @var{data} = nil, @var{step} = 0x7fffffff)\n\ -@var{mat} is of type CvMat. @var{rows} is of type int. @var{cols} is of type int. @var{type} is of type int. @var{data} is of type void. @var{step} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvCreateMatHeader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateMatHeader (@var{rows}, @var{cols}, @var{type})\n\ -@var{rows} is of type int. @var{cols} is of type int. @var{type} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_IplImage___ror___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __ror__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___ror___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __ror__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvFindFeatures_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFindFeatures (@var{tr}, @var{query_points}, @var{indices}, @var{dist}, @var{k}, @var{emax} = 20)\n\ -@var{tr} is of type CvFeatureTree. @var{query_points} is of type CvMat. @var{indices} is of type CvMat. @var{dist} is of type CvMat. @var{k} is of type int. @var{emax} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvPoint2D32f)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_next_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = next (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type octave_value. \n\ -@end deftypefn"; -const char* _wrap_CvPoint___repr___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __repr__ (@var{self})\n\ -@var{self} is of type CvPoint. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_CvPoint2D32f___repr___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __repr__ (@var{self})\n\ -@var{self} is of type CvPoint2D32f. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_CvScalar___repr___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __repr__ (@var{self})\n\ -@var{self} is of type CvScalar. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvSum_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSum (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_new_CvSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSlice::CvSlice ()\n\ -@var{retval} is of type CvSlice. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSlice::~CvSlice (@var{self})\n\ -@var{self} is of type CvSlice. \n\ -@end deftypefn"; -const char* _wrap_cvSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSlice (@var{start}, @var{end})\n\ -@var{start} is of type int. @var{end} is of type int. @var{retval} is of type CvSlice. \n\ -@end deftypefn"; -const char* _wrap_cvSetIPLAllocators_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetIPLAllocators (@var{create_header}, @var{allocate_data}, @var{deallocate}, @var{create_roi}, @var{clone_image})\n\ -@var{create_header} is of type Cv_iplCreateImageHeader. @var{allocate_data} is of type Cv_iplAllocateImageData. @var{deallocate} is of type Cv_iplDeallocate. @var{create_roi} is of type Cv_iplCreateROI. @var{clone_image} is of type Cv_iplCloneImage. \n\ -@end deftypefn"; -const char* _wrap_CV_WRITE_SEQ_ELEM_VAR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_WRITE_SEQ_ELEM_VAR (@var{elem_ptr}, @var{writer})\n\ -@var{elem_ptr} is of type void. @var{writer} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_cvSeqRemove_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqRemove (@var{seq}, @var{index})\n\ -@var{seq} is of type CvSeq. @var{index} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseFeatureTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseFeatureTree (@var{tr})\n\ -@var{tr} is of type CvFeatureTree. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_SEQ_IS_SIMPLE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_SEQ_IS_SIMPLE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_SIMPLE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_SIMPLE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_empty_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = empty (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_empty_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = empty (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_cvSubRS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSubRS (@var{src}, @var{value}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{value} is of type CvScalar. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_16SC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_16SC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MATND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MATND (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPyrSegmentationUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPyrSegmentation (@var{src}, @var{dst}, @var{storage}, @var{comp}, @var{level}, @var{threshold1}, @var{threshold2})\n\ -@var{src} is of type . @var{dst} is of type . @var{storage} is of type CvMemStorage. @var{comp} is of type CvSeq. @var{level} is of type int. @var{threshold1} is of type double. @var{threshold2} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvFindContoursUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindContours (@var{image}, @var{storage}, @var{first_contour}, @var{header_size} = sizeof(CvContour), @var{mode} = 1, @var{method} = 2, @var{offset} = cvPoint(0,0))\n\ -@var{image} is of type CvArr. @var{storage} is of type CvMemStorage. @var{first_contour} is of type CvSeq. @var{header_size} is of type int. @var{mode} is of type int. @var{method} is of type int. @var{offset} is of type CvPoint. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvApproxChainsUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvApproxChains (@var{src_seq}, @var{storage}, @var{method} = 2, @var{parameter} = 0, @var{minimal_perimeter} = 0, @var{recursive} = 0)\n\ -@var{src_seq} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{method} is of type int. @var{parameter} is of type double. @var{minimal_perimeter} is of type int. @var{recursive} is of type int. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvContourFromContourTreeUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvContourFromContourTree (@var{tree}, @var{storage}, @var{criteria})\n\ -@var{tree} is of type CvContourTree. @var{storage} is of type CvMemStorage. @var{criteria} is of type CvTermCriteria. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvConvexityDefectsUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvConvexityDefects (@var{contour}, @var{convexhull}, @var{storage} = nil)\n\ -@var{contour} is of type CvArr. @var{convexhull} is of type CvArr. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvHoughLinesUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvHoughLines2 (@var{image}, @var{line_storage}, @var{method}, @var{rho}, @var{theta}, @var{threshold}, @var{param1} = 0, @var{param2} = 0)\n\ -@var{image} is of type CvArr. @var{line_storage} is of type void. @var{method} is of type int. @var{rho} is of type double. @var{theta} is of type double. @var{threshold} is of type int. @var{param1} is of type double. @var{param2} is of type double. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvHoughCirclesUntyped_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvHoughCircles (@var{image}, @var{circle_storage}, @var{method}, @var{dp}, @var{min_dist}, @var{param1} = 100, @var{param2} = 100, @var{min_radius} = 0, @var{max_radius} = 0)\n\ -@var{image} is of type CvArr. @var{circle_storage} is of type void. @var{method} is of type int. @var{dp} is of type double. @var{min_dist} is of type double. @var{param1} is of type double. @var{param2} is of type double. @var{min_radius} is of type int. @var{max_radius} is of type int. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvAbs_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAbs (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSobel_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSobel (@var{src}, @var{dst}, @var{xorder}, @var{yorder}, @var{aperture_size} = 3)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{xorder} is of type int. @var{yorder} is of type int. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___eq___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator == (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvSubdiv2DEdge_Wrapper___eq___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator == (@var{self}, @var{x})\n\ -@var{self} is of type CvSubdiv2DEdge_Wrapper. @var{x} is of type CvSubdiv2DEdge_Wrapper. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvRNG_Wrapper___eq___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator == (@var{self}, @var{x})\n\ -@var{self} is of type CvRNG_Wrapper. @var{x} is of type CvRNG_Wrapper. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator___eq___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator == (@var{self}, @var{x})\n\ -@var{self} is of type OctSwigIterator. @var{x} is of type OctSwigIterator. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvMat___eq___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator == (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvFloor_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFloor (@var{value})\n\ -@var{value} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMat (@var{rows}, @var{cols}, @var{type})\n\ -@var{rows} is of type int. @var{cols} is of type int. @var{type} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_SWAP_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_SWAP (@var{a}, @var{b}, @var{t})\n\ -@var{a} is of type int. @var{b} is of type int. @var{t} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_begin_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = begin (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type const_iterator. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_begin_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = begin (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type const_iterator. \n\ -@end deftypefn"; -const char* _wrap_cvMax_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMax (@var{src1}, @var{src2}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseMatND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseMatND (@var{mat})\n\ -@var{mat} is of type CvMatND. \n\ -@end deftypefn"; -const char* _wrap_cvAcc_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAcc (@var{image}, @var{sum}, @var{mask} = nil)\n\ -@var{image} is of type CvArr. @var{sum} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_previous_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = previous (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type octave_value. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rdiv___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rdiv__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rdiv___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rdiv__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. @var{retval} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvTuple<(CvPoint,2)>)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvTuple<(float,2)>)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_float_2. \n\ -@end deftypefn"; -const char* _wrap_cvCmpS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCmpS (@var{src}, @var{value}, @var{dst}, @var{cmp_op})\n\ -@var{src} is of type CvArr. @var{value} is of type double. @var{dst} is of type CvArr. @var{cmp_op} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvConvexityDefect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvConvexityDefect::CvConvexityDefect ()\n\ -@var{retval} is of type CvConvexityDefect. \n\ -@end deftypefn"; -const char* _wrap_delete_CvConvexityDefect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvConvexityDefect::~CvConvexityDefect (@var{self})\n\ -@var{self} is of type CvConvexityDefect. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_advance_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = advance (@var{self}, @var{n})\n\ -@var{self} is of type OctSwigIterator. @var{n} is of type ptrdiff_t. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_cvUnregisterType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvUnregisterType (@var{type_name})\n\ -@var{type_name} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvRegisterType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRegisterType (@var{info})\n\ -@var{info} is of type CvTypeInfo. \n\ -@end deftypefn"; -const char* _wrap_cvCheckArr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCheckArr (@var{arr}, @var{flags} = 0, @var{min_val} = 0, @var{max_val} = 0)\n\ -@var{arr} is of type CvArr. @var{flags} is of type int. @var{min_val} is of type double. @var{max_val} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFindExtrinsicCameraParams2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFindExtrinsicCameraParams2 (@var{object_points}, @var{image_points}, @var{camera_matrix}, @var{distortion_coeffs}, @var{rotation_vector}, @var{translation_vector}, @var{use_extrinsic_guess} = 0)\n\ -@var{object_points} is of type CvMat. @var{image_points} is of type CvMat. @var{camera_matrix} is of type CvMat. @var{distortion_coeffs} is of type CvMat. @var{rotation_vector} is of type CvMat. @var{translation_vector} is of type CvMat. @var{use_extrinsic_guess} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWarpAffine_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWarpAffine (@var{src}, @var{dst}, @var{map_matrix}, @var{flags} = 1+8, @var{fillval} = cvScalarAll(0))\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{map_matrix} is of type CvMat. @var{flags} is of type int. @var{fillval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_IplImage___add___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator + (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type CvScalar. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator___add___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator + (@var{self}, @var{n})\n\ -@var{self} is of type OctSwigIterator. @var{n} is of type ptrdiff_t. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_CvMat___add___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator + (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type CvScalar. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_HAAR_CLASSIFIER_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_HAAR_CLASSIFIER (@var{haar})\n\ -@var{haar} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvAdd_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAdd (@var{src1}, @var{src2}, @var{dst}, @var{mask} = nil)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvPutText_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPutText (@var{img}, @var{text}, @var{org}, @var{font}, @var{color})\n\ -@var{img} is of type CvArr. @var{text} is of type char. @var{org} is of type CvPoint. @var{font} is of type CvFont. @var{color} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_delete_IplConvKernelFP_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} IplConvKernelFP::~IplConvKernelFP (@var{self})\n\ -@var{self} is of type . \n\ -@end deftypefn"; -const char* _wrap_new_IplConvKernelFP_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = IplConvKernelFP::IplConvKernelFP ()\n\ -@var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CV_16UC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_16UC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_rend_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = rend (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type const_reverse_iterator. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_rend_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = rend (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type const_reverse_iterator. \n\ -@end deftypefn"; -const char* _wrap_cvMatchTemplate_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMatchTemplate (@var{image}, @var{templ}, @var{result}, @var{method})\n\ -@var{image} is of type CvArr. @var{templ} is of type CvArr. @var{result} is of type CvArr. @var{method} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetRemove_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetRemove (@var{set_header}, @var{index})\n\ -@var{set_header} is of type CvSet. @var{index} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvLSHRemove_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLSHRemove (@var{lsh}, @var{indices})\n\ -@var{lsh} is of type CvLSH. @var{indices} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_get_allocator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = get_allocator (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type allocator_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_get_allocator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = get_allocator (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type allocator_type. \n\ -@end deftypefn"; -const char* _wrap_cvTriangleArea_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvTriangleArea (@var{a}, @var{b}, @var{c})\n\ -@var{a} is of type CvPoint2D32f. @var{b} is of type CvPoint2D32f. @var{c} is of type CvPoint2D32f. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvEllipse_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvEllipse (@var{img}, @var{center}, @var{axes}, @var{angle}, @var{start_angle}, @var{end_angle}, @var{color}, @var{thickness} = 1, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{center} is of type CvPoint. @var{axes} is of type CvSize. @var{angle} is of type double. @var{start_angle} is of type double. @var{end_angle} is of type double. @var{color} is of type CvScalar. @var{thickness} is of type int. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_erase_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = erase (@var{self}, @var{first}, @var{last})\n\ -@var{self} is of type CvPointVector. @var{first} is of type iterator. @var{last} is of type iterator. @var{retval} is of type iterator. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_erase_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = erase (@var{self}, @var{first}, @var{last})\n\ -@var{self} is of type FloatVector. @var{first} is of type iterator. @var{last} is of type iterator. @var{retval} is of type iterator. \n\ -@end deftypefn"; -const char* _wrap_cvCopyHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCopyHist (@var{src}, @var{dst})\n\ -@var{src} is of type CvHistogram. @var{dst} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_cvInitUndistortRectifyMap_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInitUndistortRectifyMap (@var{camera_matrix}, @var{dist_coeffs}, @var{R}, @var{new_camera_matrix}, @var{mapx}, @var{mapy})\n\ -@var{camera_matrix} is of type CvMat. @var{dist_coeffs} is of type CvMat. @var{R} is of type CvMat. @var{new_camera_matrix} is of type CvMat. @var{mapx} is of type CvArr. @var{mapy} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvImage_coi_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = coi (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_STRING_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_STRING (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_ARE_TYPES_EQ_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_ARE_TYPES_EQ (@var{mat1}, @var{mat2})\n\ -@var{mat1} is of type CvMat. @var{mat2} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvInvSqrt_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInvSqrt (@var{value})\n\ -@var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvRound_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRound (@var{value})\n\ -@var{value} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWriteInt_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWriteInt (@var{fs}, @var{name}, @var{value})\n\ -@var{fs} is of type CvFileStorage. @var{name} is of type char. @var{value} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCanny_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCanny (@var{image}, @var{edges}, @var{threshold1}, @var{threshold2}, @var{aperture_size} = 3)\n\ -@var{image} is of type CvArr. @var{edges} is of type CvArr. @var{threshold1} is of type double. @var{threshold2} is of type double. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_attach_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} attach (@var{self}, @var{img})\n\ -@var{self} is of type CvImage. @var{img} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_pop_back_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} pop_back (@var{self})\n\ -@var{self} is of type CvPointVector. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_pop_back_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} pop_back (@var{self})\n\ -@var{self} is of type FloatVector. \n\ -@end deftypefn"; -const char* _wrap_cvGetCols_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetCols (@var{arr}, @var{submat}, @var{start_col}, @var{end_col})\n\ -@var{arr} is of type CvArr. @var{submat} is of type CvMat. @var{start_col} is of type int. @var{end_col} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvImage_roi_row_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = roi_row (@var{self}, @var{y})\n\ -@var{self} is of type CvImage. @var{y} is of type int. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_cvReadRawData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReadRawData (@var{fs}, @var{src}, @var{dst}, @var{dt})\n\ -@var{fs} is of type CvFileStorage. @var{src} is of type CvFileNode. @var{dst} is of type void. @var{dt} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvStartReadRawData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartReadRawData (@var{fs}, @var{src}, @var{reader})\n\ -@var{fs} is of type CvFileStorage. @var{src} is of type CvFileNode. @var{reader} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_cvWriteRawData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWriteRawData (@var{fs}, @var{src}, @var{len}, @var{dt})\n\ -@var{fs} is of type CvFileStorage. @var{src} is of type void. @var{len} is of type int. @var{dt} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvGetRawData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetRawData (@var{arr}, @var{data}, @var{step} = nil, @var{roi_size} = nil)\n\ -@var{arr} is of type CvArr. @var{data} is of type uchar. @var{step} is of type int. @var{roi_size} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_cvScalarToRawData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvScalarToRawData (@var{scalar}, @var{data}, @var{type}, @var{extend_to_12} = 0)\n\ -@var{scalar} is of type CvScalar. @var{data} is of type void. @var{type} is of type int. @var{extend_to_12} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_save_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} save (@var{self}, @var{filename}, @var{imgname})\n\ -@var{self} is of type CvImage. @var{filename} is of type char. @var{imgname} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvContourArea_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvContourArea (@var{contour}, @var{slice} = cvSlice(0, 0x3fffffff))\n\ -@var{contour} is of type CvArr. @var{slice} is of type CvSlice. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_push_back_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} push_back (@var{self}, @var{x})\n\ -@var{self} is of type CvPointVector. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_push_back_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} push_back (@var{self}, @var{x})\n\ -@var{self} is of type FloatVector. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_cvMatchShapes_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMatchShapes (@var{object1}, @var{object2}, @var{method}, @var{parameter} = 0)\n\ -@var{object1} is of type void. @var{object2} is of type void. @var{method} is of type int. @var{parameter} is of type double. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvComposeRT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvComposeRT (@var{_rvec1}, @var{_tvec1}, @var{_rvec2}, @var{_tvec2}, @var{_rvec3}, @var{_tvec3}, @var{dr3dr1} = 0, @var{dr3dt1} = 0, @var{dr3dr2} = 0, @var{dr3dt2} = 0, @var{dt3dr1} = 0, @var{dt3dt1} = 0, @var{dt3dr2} = 0, @var{dt3dt2} = 0)\n\ -@var{_rvec1} is of type CvMat. @var{_tvec1} is of type CvMat. @var{_rvec2} is of type CvMat. @var{_tvec2} is of type CvMat. @var{_rvec3} is of type CvMat. @var{_tvec3} is of type CvMat. @var{dr3dr1} is of type CvMat. @var{dr3dt1} is of type CvMat. @var{dr3dr2} is of type CvMat. @var{dr3dt2} is of type CvMat. @var{dt3dr1} is of type CvMat. @var{dt3dt1} is of type CvMat. @var{dt3dr2} is of type CvMat. @var{dt3dt2} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvFindType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindType (@var{type_name})\n\ -@var{type_name} is of type char. @var{retval} is of type CvTypeInfo. \n\ -@end deftypefn"; -const char* _wrap_cvContourPerimeter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvContourPerimeter_Shadow (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvAbsDiffS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAbsDiffS (@var{src}, @var{dst}, @var{value})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvCorrectMatches_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCorrectMatches (@var{F}, @var{points1}, @var{points2}, @var{new_points1}, @var{new_points2})\n\ -@var{F} is of type CvMat. @var{points1} is of type CvMat. @var{points2} is of type CvMat. @var{new_points1} is of type CvMat. @var{new_points2} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_POLYLINE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_POLYLINE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_resize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} resize (@var{self}, @var{new_size}, @var{x})\n\ -@var{self} is of type CvPointVector. @var{new_size} is of type size_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_resize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} resize (@var{self}, @var{new_size}, @var{x})\n\ -@var{self} is of type FloatVector. @var{new_size} is of type size_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_cvResize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvResize (@var{src}, @var{dst}, @var{interpolation} = 1)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{interpolation} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGoodFeaturesToTrack_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGoodFeaturesToTrack (@var{image}, @var{eig_image}, @var{temp_image}, @var{corners}, @var{quality_level}, @var{min_distance}, @var{mask} = nil, @var{block_size} = 3, @var{use_harris} = 0, @var{k} = 0.04)\n\ -@var{image} is of type CvArr. @var{eig_image} is of type CvArr. @var{temp_image} is of type CvArr. @var{corners} is of type CvPoint2D32f. @var{quality_level} is of type double. @var{min_distance} is of type double. @var{mask} is of type CvArr. @var{block_size} is of type int. @var{use_harris} is of type int. @var{k} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvFitEllipse2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFitEllipse2 (@var{points})\n\ -@var{points} is of type CvArr. @var{retval} is of type CvBox2D. \n\ -@end deftypefn"; -const char* _wrap_CV_PREV_POINT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_PREV_POINT (@var{reader})\n\ -@var{reader} is of type CvSeqReader. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CV_CURRENT_POINT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_CURRENT_POINT (@var{reader})\n\ -@var{reader} is of type CvSeqReader. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CV_READ_CHAIN_POINT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_READ_CHAIN_POINT (@var{_pt}, @var{reader})\n\ -@var{_pt} is of type CvPoint. @var{reader} is of type CvChainPtReader. \n\ -@end deftypefn"; -const char* _wrap_cvFlushSeqWriter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFlushSeqWriter (@var{writer})\n\ -@var{writer} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeqWriter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSeqWriter::~CvSeqWriter (@var{self})\n\ -@var{self} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeqWriter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSeqWriter::CvSeqWriter ()\n\ -@var{retval} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_cvNot_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvNot (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvGetOptimalDFTSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetOptimalDFTSize (@var{size0})\n\ -@var{size0} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetSize (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_cvSeqSort_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqSort (@var{seq}, @var{func}, @var{userdata} = nil)\n\ -@var{seq} is of type CvSeq. @var{func} is of type CvCmpFunc. @var{userdata} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvCvtColor_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCvtColor (@var{src}, @var{dst}, @var{code})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{code} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCornerMinEigenVal_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCornerMinEigenVal (@var{image}, @var{eigenval}, @var{block_size}, @var{aperture_size} = 3)\n\ -@var{image} is of type CvArr. @var{eigenval} is of type CvArr. @var{block_size} is of type int. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvPoint_2. @var{retval} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_float_2. @var{retval} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_cvPyrUp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPyrUp (@var{src}, @var{dst}, @var{filter} = CV_GAUSSIAN_5x5)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{filter} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCalcOpticalFlowPyrLK_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcOpticalFlowPyrLK (@var{prev}, @var{curr}, @var{prev_pyr}, @var{curr_pyr}, @var{prev_features}, @var{curr_features}, @var{win_size}, @var{level}, @var{status}, @var{track_error}, @var{criteria}, @var{flags})\n\ -@var{prev} is of type CvArr. @var{curr} is of type CvArr. @var{prev_pyr} is of type CvArr. @var{curr_pyr} is of type CvArr. @var{prev_features} is of type CvPoint2D32f. @var{curr_features} is of type CvPoint2D32f. @var{win_size} is of type CvSize. @var{level} is of type int. @var{status} is of type char. @var{track_error} is of type float. @var{criteria} is of type CvTermCriteria. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCalcAffineFlowPyrLK_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcAffineFlowPyrLK (@var{prev}, @var{curr}, @var{prev_pyr}, @var{curr_pyr}, @var{prev_features}, @var{curr_features}, @var{matrices}, @var{count}, @var{win_size}, @var{level}, @var{status}, @var{track_error}, @var{criteria}, @var{flags})\n\ -@var{prev} is of type CvArr. @var{curr} is of type CvArr. @var{prev_pyr} is of type CvArr. @var{curr_pyr} is of type CvArr. @var{prev_features} is of type CvPoint2D32f. @var{curr_features} is of type CvPoint2D32f. @var{matrices} is of type float. @var{count} is of type int. @var{win_size} is of type CvSize. @var{level} is of type int. @var{status} is of type char. @var{track_error} is of type float. @var{criteria} is of type CvTermCriteria. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_channels_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = channels (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_channels_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = channels (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvMixChannels_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMixChannels (@var{src}, @var{src_count}, @var{dst}, @var{dst_count}, @var{from_to}, @var{pair_count})\n\ -@var{src} is of type CvArr. @var{src_count} is of type int. @var{dst} is of type CvArr. @var{dst_count} is of type int. @var{from_to} is of type int. @var{pair_count} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvLinearPolar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLinearPolar (@var{src}, @var{dst}, @var{center}, @var{maxRadius}, @var{flags} = 1+8)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{center} is of type CvPoint2D32f. @var{maxRadius} is of type double. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_write_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} write (@var{self}, @var{fs}, @var{matname})\n\ -@var{self} is of type CvMatrix. @var{fs} is of type CvFileStorage. @var{matname} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvCalcOpticalFlowBM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcOpticalFlowBM (@var{prev}, @var{curr}, @var{block_size}, @var{shift_size}, @var{max_range}, @var{use_previous}, @var{velx}, @var{vely})\n\ -@var{prev} is of type CvArr. @var{curr} is of type CvArr. @var{block_size} is of type CvSize. @var{shift_size} is of type CvSize. @var{max_range} is of type CvSize. @var{use_previous} is of type int. @var{velx} is of type CvArr. @var{vely} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCloneGraph_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCloneGraph (@var{graph}, @var{storage})\n\ -@var{graph} is of type CvGraph. @var{storage} is of type CvMemStorage. @var{retval} is of type CvGraph. \n\ -@end deftypefn"; -const char* _wrap_cvCreateGraph_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateGraph (@var{graph_flags}, @var{header_size}, @var{vtx_size}, @var{edge_size}, @var{storage})\n\ -@var{graph_flags} is of type int. @var{header_size} is of type int. @var{vtx_size} is of type int. @var{edge_size} is of type int. @var{storage} is of type CvMemStorage. @var{retval} is of type CvGraph. \n\ -@end deftypefn"; -const char* _wrap_cvAttrValue_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvAttrValue (@var{attr}, @var{attr_name})\n\ -@var{attr} is of type CvAttrList. @var{attr_name} is of type char. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_clone_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = clone (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type CvMatrix. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqPop (@var{seq}, @var{element} = nil)\n\ -@var{seq} is of type CvSeq. @var{element} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvSegmentMotion_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSegmentMotion_Shadow (@var{mhi}, @var{seg_mask}, @var{storage}, @var{timestamp}, @var{seg_thresh})\n\ -@var{mhi} is of type CvArr. @var{seg_mask} is of type CvArr. @var{storage} is of type CvMemStorage. @var{timestamp} is of type double. @var{seg_thresh} is of type double. @var{retval} is of type CvSeq_CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_cvFastArctan_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFastArctan (@var{y}, @var{x})\n\ -@var{y} is of type float. @var{x} is of type float. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rne__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rne__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_VAL_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_VAL (@var{mat}, @var{node})\n\ -@var{mat} is of type CvSparseMat. @var{node} is of type CvSparseNode. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MASK_ARR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MASK_ARR (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCornerHarris_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCornerHarris (@var{image}, @var{harris_responce}, @var{block_size}, @var{aperture_size} = 3, @var{k} = 0.04)\n\ -@var{image} is of type CvArr. @var{harris_responce} is of type CvArr. @var{block_size} is of type int. @var{aperture_size} is of type int. @var{k} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CvImage_detach_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} detach (@var{self})\n\ -@var{self} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_cvGetTickFrequency_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetTickFrequency ()\n\ -@var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_IplImage___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{object}, @var{arr})\n\ -@var{self} is of type . @var{object} is of type octave_value. @var{arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{object}, @var{arr})\n\ -@var{self} is of type CvMat. @var{object} is of type octave_value. @var{arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_CvPoint_2___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvTuple_CvPoint_2. @var{i} is of type int. @var{obj} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_2___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvTuple_float_2. @var{i} is of type int. @var{obj} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_3___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvTuple_float_3. @var{i} is of type int. @var{obj} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint. @var{i} is of type int. @var{obj} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. @var{i} is of type int. @var{obj} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvRect. @var{i} is of type int. @var{obj} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvSeq. @var{i} is of type int. @var{obj} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. @var{i} is of type int. @var{obj} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvConnectedComp. @var{i} is of type int. @var{obj} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint_2. @var{i} is of type int. @var{obj} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_float_2. @var{i} is of type int. @var{obj} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3___paren_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_float_3. @var{i} is of type int. @var{obj} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_IplImage___ge___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator >= (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___ge___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator >= (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_POINT_SET_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_POINT_SET (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_INT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_INT (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFloodFill_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFloodFill (@var{image}, @var{seed_point}, @var{new_val}, @var{lo_diff} = cvScalarAll(0), @var{up_diff} = cvScalarAll(0), @var{comp} = nil, @var{flags} = 4, @var{mask} = nil)\n\ -@var{image} is of type CvArr. @var{seed_point} is of type CvPoint. @var{new_val} is of type CvScalar. @var{lo_diff} is of type CvScalar. @var{up_diff} is of type CvScalar. @var{comp} is of type CvConnectedComp. @var{flags} is of type int. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_CONVEX_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_CONVEX (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPartition_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqPartition (@var{seq}, @var{storage}, @var{labels}, @var{is_equal}, @var{userdata})\n\ -@var{seq} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{labels} is of type CvSeq. @var{is_equal} is of type CvCmpFunc. @var{userdata} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SPARSE_MAT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SPARSE_MAT (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSeqSearch_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqSearch (@var{seq}, @var{elem}, @var{func}, @var{is_sorted}, @var{elem_idx}, @var{userdata} = nil)\n\ -@var{seq} is of type CvSeq. @var{elem} is of type void. @var{func} is of type CvCmpFunc. @var{is_sorted} is of type int. @var{elem_idx} is of type int. @var{userdata} is of type void. @var{retval} is of type schar. \n\ -@end deftypefn"; -const char* _wrap_CV_32SC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_32SC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_NEXT_LINE_POINT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_NEXT_LINE_POINT (@var{line_iterator})\n\ -@var{line_iterator} is of type CvLineIterator. \n\ -@end deftypefn"; -const char* _wrap_cvCreateHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateHist (@var{dims}, @var{type}, @var{ranges} = nil, @var{uniform} = 1)\n\ -@var{dims} is of type int. @var{type} is of type int. @var{ranges} is of type float. @var{uniform} is of type int. @var{retval} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SUBDIV2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SUBDIV2D (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvStarKeypoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvStarKeypoint::CvStarKeypoint ()\n\ -@var{retval} is of type CvStarKeypoint. \n\ -@end deftypefn"; -const char* _wrap_delete_CvStarKeypoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvStarKeypoint::~CvStarKeypoint (@var{self})\n\ -@var{self} is of type CvStarKeypoint. \n\ -@end deftypefn"; -const char* _wrap_cvStarKeypoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvStarKeypoint (@var{pt}, @var{size}, @var{response})\n\ -@var{pt} is of type CvPoint. @var{size} is of type int. @var{response} is of type float. @var{retval} is of type CvStarKeypoint. \n\ -@end deftypefn"; -const char* _wrap_cvPreCornerDetect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPreCornerDetect (@var{image}, @var{corners}, @var{aperture_size} = 3)\n\ -@var{image} is of type CvArr. @var{corners} is of type CvArr. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRandShuffle_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRandShuffle (@var{mat}, @var{rng}, @var{iter_factor} = 1.)\n\ -@var{mat} is of type CvArr. @var{rng} is of type CvRNG. @var{iter_factor} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvSolveCubic_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSolveCubic (@var{coeffs}, @var{roots})\n\ -@var{coeffs} is of type CvMat. @var{roots} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_asIplImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator IplImage* (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_delete_IplImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} IplImage (@var{self})\n\ -@var{self} is of type . \n\ -@end deftypefn"; -const char* _wrap_new_CvPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvPoint::CvPoint ()\n\ -@var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvPoint::~CvPoint (@var{self})\n\ -@var{self} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_cvPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPoint (@var{x}, @var{y})\n\ -@var{x} is of type int. @var{y} is of type int. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvPoint)>::CvTypedSeq<(CvPoint)> ()\n\ -@var{retval} is of type CvSeq_CvPoint. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvPoint)>::~CvTypedSeq<(CvPoint)> (@var{self})\n\ -@var{self} is of type CvSeq_CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_HOLE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_HOLE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWriteComment_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWriteComment (@var{fs}, @var{comment}, @var{eol_comment})\n\ -@var{fs} is of type CvFileStorage. @var{comment} is of type char. @var{eol_comment} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_write_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} write (@var{self}, @var{fs}, @var{imgname})\n\ -@var{self} is of type CvImage. @var{fs} is of type CvFileStorage. @var{imgname} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvEllipseBox_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvEllipseBox (@var{img}, @var{box}, @var{color}, @var{thickness} = 1, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{box} is of type CvBox2D. @var{color} is of type CvScalar. @var{thickness} is of type int. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReadChainPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadChainPoint (@var{reader})\n\ -@var{reader} is of type CvChainPtReader. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_cvMinEnclosingCircle_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMinEnclosingCircle (@var{points}, @var{center})\n\ -@var{points} is of type CvArr. @var{center} is of type CvPoint2D32f. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphGetEdgeCount_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphGetEdgeCount (@var{graph})\n\ -@var{graph} is of type CvGraph. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPolarToCart_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPolarToCart (@var{magnitude}, @var{angle}, @var{x}, @var{y}, @var{angle_in_degrees} = 0)\n\ -@var{magnitude} is of type CvArr. @var{angle} is of type CvArr. @var{x} is of type CvArr. @var{y} is of type CvArr. @var{angle_in_degrees} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPyrMeanShiftFiltering_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPyrMeanShiftFiltering (@var{src}, @var{dst}, @var{sp}, @var{sr}, @var{max_level} = 1, @var{termcrit} = cvTermCriteria(1 +2,5,1))\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{sp} is of type double. @var{sr} is of type double. @var{max_level} is of type int. @var{termcrit} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_CvImage_clone_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = clone (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_CV_INIT_3X3_DELTAS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_INIT_3X3_DELTAS (@var{deltas}, @var{step}, @var{nch})\n\ -@var{deltas} is of type double. @var{step} is of type int. @var{nch} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{object})\n\ -@var{self} is of type . @var{object} is of type octave_value. @var{retval} is of type octave_value. \n\ -@end deftypefn"; -const char* _wrap_CvMat___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{object})\n\ -@var{self} is of type CvMat. @var{object} is of type octave_value. @var{retval} is of type octave_value. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_CvPoint_2___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvTuple_CvPoint_2. @var{i} is of type int. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_2___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvTuple_float_2. @var{i} is of type int. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_3___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvTuple_float_3. @var{i} is of type int. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvPoint. @var{i} is of type int. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. @var{i} is of type int. @var{retval} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvRect. @var{i} is of type int. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvSeq. @var{i} is of type int. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. @var{i} is of type int. @var{retval} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvConnectedComp. @var{i} is of type int. @var{retval} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvPoint_2. @var{i} is of type int. @var{retval} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_float_2. @var{i} is of type int. @var{retval} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3___paren_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_float_3. @var{i} is of type int. @var{retval} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPopMulti_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqPopMulti (@var{seq}, @var{elements}, @var{count}, @var{in_front} = 0)\n\ -@var{seq} is of type CvSeq. @var{elements} is of type void. @var{count} is of type int. @var{in_front} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvMakeSeqHeaderForArray_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMakeSeqHeaderForArray (@var{seq_type}, @var{header_size}, @var{elem_size}, @var{elements}, @var{total}, @var{seq}, @var{block})\n\ -@var{seq_type} is of type int. @var{header_size} is of type int. @var{elem_size} is of type int. @var{elements} is of type void. @var{total} is of type int. @var{seq} is of type CvSeq. @var{block} is of type CvSeqBlock. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvMakeHistHeaderForArray_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMakeHistHeaderForArray (@var{dims}, @var{hist}, @var{data}, @var{ranges} = nil, @var{uniform} = 1)\n\ -@var{dims} is of type int. @var{hist} is of type CvHistogram. @var{data} is of type float. @var{ranges} is of type float. @var{uniform} is of type int. @var{retval} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_new_CvSURFPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSURFPoint::CvSURFPoint ()\n\ -@var{retval} is of type CvSURFPoint. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSURFPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSURFPoint::~CvSURFPoint (@var{self})\n\ -@var{self} is of type CvSURFPoint. \n\ -@end deftypefn"; -const char* _wrap_cvSURFPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSURFPoint (@var{pt}, @var{laplacian}, @var{size}, @var{dir} = 0, @var{hessian} = 0)\n\ -@var{pt} is of type CvPoint2D32f. @var{laplacian} is of type int. @var{size} is of type int. @var{dir} is of type float. @var{hessian} is of type float. @var{retval} is of type CvSURFPoint. \n\ -@end deftypefn"; -const char* _wrap_CvImage_roi_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = roi_size (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_cvXorS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvXorS (@var{src}, @var{value}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{value} is of type CvScalar. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MAT_CONST_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MAT_CONST (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvSize2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSize2D32f::CvSize2D32f ()\n\ -@var{retval} is of type CvSize2D32f. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSize2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSize2D32f::~CvSize2D32f (@var{self})\n\ -@var{self} is of type CvSize2D32f. \n\ -@end deftypefn"; -const char* _wrap_cvSize2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSize2D32f (@var{width}, @var{height})\n\ -@var{width} is of type double. @var{height} is of type double. @var{retval} is of type CvSize2D32f. \n\ -@end deftypefn"; -const char* _wrap_cvAttrList_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvAttrList ()\n\ -@var{retval} is of type CvAttrList. \n\ -@end deftypefn"; -const char* _wrap_delete_CvAttrList_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvAttrList::~CvAttrList (@var{self})\n\ -@var{self} is of type CvAttrList. \n\ -@end deftypefn"; -const char* _wrap_new_CvAttrList_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvAttrList::CvAttrList ()\n\ -@var{retval} is of type CvAttrList. \n\ -@end deftypefn"; -const char* _wrap_CvImage_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = size (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_cvGet1D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGet1D (@var{arr}, @var{idx0})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_CvImage_show_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} show (@var{self}, @var{window_name})\n\ -@var{self} is of type CvImage. @var{window_name} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvCloneSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCloneSeq (@var{seq}, @var{storage} = nil)\n\ -@var{seq} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPushMulti_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqPushMulti (@var{seq}, @var{elements}, @var{count}, @var{in_front} = 0)\n\ -@var{seq} is of type CvSeq. @var{elements} is of type void. @var{count} is of type int. @var{in_front} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCopyMakeBorder_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCopyMakeBorder (@var{src}, @var{dst}, @var{offset}, @var{bordertype}, @var{value} = cvScalarAll(0))\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{offset} is of type CvPoint. @var{bordertype} is of type int. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvMin_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMin (@var{src1}, @var{src2}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvGuiBoxReport_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGuiBoxReport (@var{status}, @var{func_name}, @var{err_msg}, @var{file_name}, @var{line}, @var{userdata})\n\ -@var{status} is of type int. @var{func_name} is of type char. @var{err_msg} is of type char. @var{file_name} is of type char. @var{line} is of type int. @var{userdata} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvStdErrReport_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvStdErrReport (@var{status}, @var{func_name}, @var{err_msg}, @var{file_name}, @var{line}, @var{userdata})\n\ -@var{status} is of type int. @var{func_name} is of type char. @var{err_msg} is of type char. @var{file_name} is of type char. @var{line} is of type int. @var{userdata} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvNulDevReport_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvNulDevReport (@var{status}, @var{func_name}, @var{err_msg}, @var{file_name}, @var{line}, @var{userdata})\n\ -@var{status} is of type int. @var{func_name} is of type char. @var{err_msg} is of type char. @var{file_name} is of type char. @var{line} is of type int. @var{userdata} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCountNonZero_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCountNonZero (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvSubdiv2DEdge_Wrapper_ptr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = ptr (@var{self})\n\ -@var{self} is of type CvSubdiv2DEdge_Wrapper. @var{retval} is of type CvSubdiv2DEdge. \n\ -@end deftypefn"; -const char* _wrap_CvRNG_Wrapper_ptr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = ptr (@var{self})\n\ -@var{self} is of type CvRNG_Wrapper. @var{retval} is of type CvRNG. \n\ -@end deftypefn"; -const char* _wrap_cvFindGraphEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindGraphEdge (@var{graph}, @var{start_idx}, @var{end_idx})\n\ -@var{graph} is of type CvGraph. @var{start_idx} is of type int. @var{end_idx} is of type int. @var{retval} is of type CvGraphEdge. \n\ -@end deftypefn"; -const char* _wrap_delete_CvGraphEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvGraphEdge::~CvGraphEdge (@var{self})\n\ -@var{self} is of type CvGraphEdge. \n\ -@end deftypefn"; -const char* _wrap_new_CvGraphEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvGraphEdge::CvGraphEdge ()\n\ -@var{retval} is of type CvGraphEdge. \n\ -@end deftypefn"; -const char* _wrap_cvConvertPointsHomogeneous_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConvertPointsHomogeneous (@var{src}, @var{dst})\n\ -@var{src} is of type CvMat. @var{dst} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvStereoGCState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvStereoGCState::CvStereoGCState ()\n\ -@var{retval} is of type CvStereoGCState. \n\ -@end deftypefn"; -const char* _wrap_delete_CvStereoGCState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvStereoGCState::~CvStereoGCState (@var{self})\n\ -@var{self} is of type CvStereoGCState. \n\ -@end deftypefn"; -const char* _wrap_cvCreateStereoGCState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateStereoGCState (@var{numberOfDisparities}, @var{maxIters})\n\ -@var{numberOfDisparities} is of type int. @var{maxIters} is of type int. @var{retval} is of type CvStereoGCState. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseStereoGCState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseStereoGCState (@var{state})\n\ -@var{state} is of type CvStereoGCState. \n\ -@end deftypefn"; -const char* _wrap_cvGet2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGet2D (@var{arr}, @var{idx0}, @var{idx1})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvSetND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetND (@var{arr}, @var{idx}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx} is of type int. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_new_CvPoint2D64f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvPoint2D64f::CvPoint2D64f ()\n\ -@var{retval} is of type CvPoint2D64f. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPoint2D64f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvPoint2D64f::~CvPoint2D64f (@var{self})\n\ -@var{self} is of type CvPoint2D64f. \n\ -@end deftypefn"; -const char* _wrap_cvPoint2D64f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPoint2D64f (@var{x}, @var{y})\n\ -@var{x} is of type double. @var{y} is of type double. @var{retval} is of type CvPoint2D64f. \n\ -@end deftypefn"; -const char* _wrap_cvClearHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearHist (@var{hist})\n\ -@var{hist} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_cvFitLine_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFitLine (@var{points}, @var{dist_type}, @var{param}, @var{reps}, @var{aeps}, @var{line})\n\ -@var{points} is of type CvArr. @var{dist_type} is of type int. @var{param} is of type double. @var{reps} is of type double. @var{aeps} is of type double. @var{line} is of type float. \n\ -@end deftypefn"; -const char* _wrap_cvCalcMatMulDeriv_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcMatMulDeriv (@var{A}, @var{B}, @var{dABdA}, @var{dABdB})\n\ -@var{A} is of type CvMat. @var{B} is of type CvMat. @var{dABdA} is of type CvMat. @var{dABdB} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvCircle_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCircle (@var{img}, @var{center}, @var{radius}, @var{color}, @var{thickness} = 1, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{center} is of type CvPoint. @var{radius} is of type int. @var{color} is of type CvScalar. @var{thickness} is of type int. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvTuple_float_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTuple<(float,2)>::CvTuple<(float,2)> ()\n\ -@var{retval} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_delete_CvTuple_float_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTuple<(float,2)>::~CvTuple<(float,2)> (@var{self})\n\ -@var{self} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_float_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvTuple<(float,2)>)>::CvTypedSeq<(CvTuple<(float,2)>)> ()\n\ -@var{retval} is of type CvSeq_float_2. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_float_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvTuple<(float,2)>)>::~CvTypedSeq<(CvTuple<(float,2)>)> (@var{self})\n\ -@var{self} is of type CvSeq_float_2. \n\ -@end deftypefn"; -const char* _wrap_new_CvTuple_float_3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTuple<(float,3)>::CvTuple<(float,3)> ()\n\ -@var{retval} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_delete_CvTuple_float_3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTuple<(float,3)>::~CvTuple<(float,3)> (@var{self})\n\ -@var{self} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_float_3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvTuple<(float,3)>)>::CvTypedSeq<(CvTuple<(float,3)>)> ()\n\ -@var{retval} is of type CvSeq_float_3. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_float_3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvTuple<(float,3)>)>::~CvTypedSeq<(CvTuple<(float,3)>)> (@var{self})\n\ -@var{self} is of type CvSeq_float_3. \n\ -@end deftypefn"; -const char* _wrap_cvStereoCalibrate_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStereoCalibrate (@var{object_points}, @var{image_points1}, @var{image_points2}, @var{npoints}, @var{camera_matrix1}, @var{dist_coeffs1}, @var{camera_matrix2}, @var{dist_coeffs2}, @var{image_size}, @var{R}, @var{T}, @var{E} = 0, @var{F} = 0, @var{term_crit} = cvTermCriteria( 1 +2,30,1e-6), @var{flags} = 256)\n\ -@var{object_points} is of type CvMat. @var{image_points1} is of type CvMat. @var{image_points2} is of type CvMat. @var{npoints} is of type CvMat. @var{camera_matrix1} is of type CvMat. @var{dist_coeffs1} is of type CvMat. @var{camera_matrix2} is of type CvMat. @var{dist_coeffs2} is of type CvMat. @var{image_size} is of type CvSize. @var{R} is of type CvMat. @var{T} is of type CvMat. @var{E} is of type CvMat. @var{F} is of type CvMat. @var{term_crit} is of type CvTermCriteria. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetReal1D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetReal1D (@var{arr}, @var{idx0}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetReal1D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetReal1D (@var{arr}, @var{idx0})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvSVD_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSVD (@var{A}, @var{W}, @var{U} = nil, @var{V} = nil, @var{flags} = 0)\n\ -@var{A} is of type CvArr. @var{W} is of type CvArr. @var{U} is of type CvArr. @var{V} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_read_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = read (@var{self}, @var{fs}, @var{seqname}, @var{idx})\n\ -@var{self} is of type CvMatrix. @var{fs} is of type CvFileStorage. @var{seqname} is of type char. @var{idx} is of type int. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvConnectedComp. @var{retval} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_cvThreshHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvThreshHist (@var{hist}, @var{threshold})\n\ -@var{hist} is of type CvHistogram. @var{threshold} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_CONTOUR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_CONTOUR (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_CHAIN_CONTOUR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_CHAIN_CONTOUR (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGet3D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGet3D (@var{arr}, @var{idx0}, @var{idx1}, @var{idx2})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{idx2} is of type int. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMatND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMatND (@var{self})\n\ -@var{self} is of type CvMatND. \n\ -@end deftypefn"; -const char* _wrap_cvFindFeaturesBoxed_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindFeaturesBoxed (@var{tr}, @var{bounds_min}, @var{bounds_max}, @var{out_indices})\n\ -@var{tr} is of type CvFeatureTree. @var{bounds_min} is of type CvMat. @var{bounds_max} is of type CvMat. @var{out_indices} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_set_coi_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} set_coi (@var{self}, @var{coi})\n\ -@var{self} is of type CvImage. @var{coi} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFillPoly_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFillPoly (@var{img}, @var{pts}, @var{npts}, @var{contours}, @var{color}, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{pts} is of type CvPoint. @var{npts} is of type int. @var{contours} is of type int. @var{color} is of type CvScalar. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvTypeOf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvTypeOf (@var{struct_ptr})\n\ -@var{struct_ptr} is of type void. @var{retval} is of type CvTypeInfo. \n\ -@end deftypefn"; -const char* _wrap_cvPolyLine_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPolyLine (@var{img}, @var{pts}, @var{npts}, @var{contours}, @var{is_closed}, @var{color}, @var{thickness} = 1, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{pts} is of type CvPoint. @var{npts} is of type int. @var{contours} is of type int. @var{is_closed} is of type int. @var{color} is of type CvScalar. @var{thickness} is of type int. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{x})\n\ -@var{self} is of type CvPointVector. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{x})\n\ -@var{self} is of type FloatVector. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint. @var{obj} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. @var{obj} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvRect. @var{obj} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvSeq. @var{obj} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. @var{obj} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvConnectedComp. @var{obj} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint_2. @var{obj} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_float_2. @var{obj} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3_append_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} append (@var{self}, @var{obj})\n\ -@var{self} is of type CvSeq_float_3. @var{obj} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_cvInitTreeNodeIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInitTreeNodeIterator (@var{tree_iterator}, @var{first}, @var{max_level})\n\ -@var{tree_iterator} is of type CvTreeNodeIterator. @var{first} is of type void. @var{max_level} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvTreeNodeIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTreeNodeIterator::~CvTreeNodeIterator (@var{self})\n\ -@var{self} is of type CvTreeNodeIterator. \n\ -@end deftypefn"; -const char* _wrap_new_CvTreeNodeIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTreeNodeIterator::CvTreeNodeIterator ()\n\ -@var{retval} is of type CvTreeNodeIterator. \n\ -@end deftypefn"; -const char* _wrap_cvInitLineIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInitLineIterator (@var{image}, @var{pt1}, @var{pt2}, @var{line_iterator}, @var{connectivity} = 8, @var{left_to_right} = 0)\n\ -@var{image} is of type CvArr. @var{pt1} is of type CvPoint. @var{pt2} is of type CvPoint. @var{line_iterator} is of type CvLineIterator. @var{connectivity} is of type int. @var{left_to_right} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvInitNArrayIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInitNArrayIterator (@var{count}, @var{arrs}, @var{mask}, @var{stubs}, @var{array_iterator}, @var{flags} = 0)\n\ -@var{count} is of type int. @var{arrs} is of type CvArr. @var{mask} is of type CvArr. @var{stubs} is of type CvMatND. @var{array_iterator} is of type CvNArrayIterator. @var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvNArrayIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvNArrayIterator::~CvNArrayIterator (@var{self})\n\ -@var{self} is of type CvNArrayIterator. \n\ -@end deftypefn"; -const char* _wrap_new_CvNArrayIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvNArrayIterator::CvNArrayIterator ()\n\ -@var{retval} is of type CvNArrayIterator. \n\ -@end deftypefn"; -const char* _wrap_cvInitSparseMatIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInitSparseMatIterator (@var{mat}, @var{mat_iterator})\n\ -@var{mat} is of type CvSparseMat. @var{mat_iterator} is of type CvSparseMatIterator. @var{retval} is of type CvSparseNode. \n\ -@end deftypefn"; -const char* _wrap_delete_OctSwigIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} swig::~OctSwigIterator (@var{self})\n\ -@var{self} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_new_CvSparseMatIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSparseMatIterator::CvSparseMatIterator ()\n\ -@var{retval} is of type CvSparseMatIterator. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSparseMatIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSparseMatIterator::~CvSparseMatIterator (@var{self})\n\ -@var{self} is of type CvSparseMatIterator. \n\ -@end deftypefn"; -const char* _wrap_new_CvLineIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvLineIterator::CvLineIterator ()\n\ -@var{retval} is of type CvLineIterator. \n\ -@end deftypefn"; -const char* _wrap_delete_CvLineIterator_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvLineIterator::~CvLineIterator (@var{self})\n\ -@var{self} is of type CvLineIterator. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_COLLECTION_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_COLLECTION (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFindStereoCorrespondenceBM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFindStereoCorrespondenceBM (@var{left}, @var{right}, @var{disparity}, @var{state})\n\ -@var{left} is of type CvArr. @var{right} is of type CvArr. @var{disparity} is of type CvArr. @var{state} is of type CvStereoBMState. \n\ -@end deftypefn"; -const char* _wrap_cvFindNearestPoint2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindNearestPoint2D (@var{subdiv}, @var{pt})\n\ -@var{subdiv} is of type CvSubdiv2D. @var{pt} is of type CvPoint2D32f. @var{retval} is of type CvSubdiv2DPoint. \n\ -@end deftypefn"; -const char* _wrap_cvSetReal2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetReal2D (@var{arr}, @var{idx0}, @var{idx1}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetReal2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetReal2D (@var{arr}, @var{idx0}, @var{idx1})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvIsInf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvIsInf (@var{value})\n\ -@var{value} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_SEQ_ELTYPE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_SEQ_ELTYPE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_end_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = end (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type const_iterator. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_end_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = end (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type const_iterator. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_row_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = row (@var{self}, @var{i})\n\ -@var{self} is of type CvMatrix. @var{i} is of type int. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_delete_Cv32suf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} Cv32suf::~Cv32suf (@var{self})\n\ -@var{self} is of type Cv32suf. \n\ -@end deftypefn"; -const char* _wrap_new_Cv32suf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Cv32suf::Cv32suf ()\n\ -@var{retval} is of type Cv32suf. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rlt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rlt__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rlt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rlt__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCalcBackProject_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcBackProject (@var{image}, @var{dst}, @var{hist})\n\ -@var{image} is of type . @var{dst} is of type CvArr. @var{hist} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_cvCalcArrBackProject_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcArrBackProject (@var{image}, @var{dst}, @var{hist})\n\ -@var{image} is of type CvArr. @var{dst} is of type CvArr. @var{hist} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_cvFilter2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFilter2D (@var{src}, @var{dst}, @var{kernel}, @var{anchor} = cvPoint(-1,-1))\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{kernel} is of type CvMat. @var{anchor} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvPoint. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SET_ELEM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SET_ELEM (@var{ptr})\n\ -@var{ptr} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPOSIT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPOSIT (@var{posit_object}, @var{image_points}, @var{focal_length}, @var{criteria}, @var{rotation_matrix}, @var{translation_vector})\n\ -@var{posit_object} is of type CvPOSITObject. @var{image_points} is of type CvPoint2D32f. @var{focal_length} is of type double. @var{criteria} is of type CvTermCriteria. @var{rotation_matrix} is of type CvMatr32f. @var{translation_vector} is of type CvVect32f. \n\ -@end deftypefn"; -const char* _wrap_cvConvertScaleAbs_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConvertScaleAbs (@var{src}, @var{dst}, @var{scale} = 1, @var{shift} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{scale} is of type double. @var{shift} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvCalcOpticalFlowHS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcOpticalFlowHS (@var{prev}, @var{curr}, @var{use_previous}, @var{velx}, @var{vely}, @var{lambda}, @var{criteria})\n\ -@var{prev} is of type CvArr. @var{curr} is of type CvArr. @var{use_previous} is of type int. @var{velx} is of type CvArr. @var{vely} is of type CvArr. @var{lambda} is of type double. @var{criteria} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_cvMaxRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMaxRect (@var{rect1}, @var{rect2})\n\ -@var{rect1} is of type CvRect. @var{rect2} is of type CvRect. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvRANSACUpdateNumIters_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRANSACUpdateNumIters (@var{p}, @var{err_prob}, @var{model_points}, @var{max_iters})\n\ -@var{p} is of type double. @var{err_prob} is of type double. @var{model_points} is of type int. @var{max_iters} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvTuple<(float,3)>)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_float_3. \n\ -@end deftypefn"; -const char* _wrap_cvRepeat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRepeat (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseLSH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseLSH (@var{lsh})\n\ -@var{lsh} is of type CvLSH. \n\ -@end deftypefn"; -const char* _wrap_cvCalcSubdivVoronoi2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcSubdivVoronoi2D (@var{subdiv})\n\ -@var{subdiv} is of type CvSubdiv2D. \n\ -@end deftypefn"; -const char* _wrap_cvClearSubdivVoronoi2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearSubdivVoronoi2D (@var{subdiv})\n\ -@var{subdiv} is of type CvSubdiv2D. \n\ -@end deftypefn"; -const char* _wrap_cvApproxPoly_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvApproxPoly_Shadow (@var{src_seq}, @var{header_size}, @var{storage}, @var{method}, @var{parameter})\n\ -@var{src_seq} is of type void. @var{header_size} is of type int. @var{storage} is of type CvMemStorage. @var{method} is of type int. @var{parameter} is of type double. @var{retval} is of type CvSeq_CvPoint. \n\ -@end deftypefn"; -const char* _wrap_cvSetReal3D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetReal3D (@var{arr}, @var{idx0}, @var{idx1}, @var{idx2}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{idx2} is of type int. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetReal3D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetReal3D (@var{arr}, @var{idx0}, @var{idx1}, @var{idx2})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{idx2} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvAnd_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAnd (@var{src1}, @var{src2}, @var{dst}, @var{mask} = nil)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvError_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvError (@var{status}, @var{func_name}, @var{err_msg}, @var{file_name}, @var{line})\n\ -@var{status} is of type int. @var{func_name} is of type char. @var{err_msg} is of type char. @var{file_name} is of type char. @var{line} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSampleLine_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSampleLine (@var{image}, @var{pt1}, @var{pt2}, @var{buffer}, @var{connectivity} = 8)\n\ -@var{image} is of type CvArr. @var{pt1} is of type CvPoint. @var{pt2} is of type CvPoint. @var{buffer} is of type void. @var{connectivity} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvInitFont_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInitFont (@var{font}, @var{hscale}, @var{vscale}, @var{shear} = 0, @var{thickness} = 1, @var{line_type} = 8)\n\ -@var{font} is of type CvFont. @var{hscale} is of type double. @var{vscale} is of type double. @var{shear} is of type double. @var{thickness} is of type int. @var{line_type} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_rows_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = rows (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCheckContourConvexity_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCheckContourConvexity (@var{contour})\n\ -@var{contour} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvAbsDiff_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAbsDiff (@var{src1}, @var{src2}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvMemStorageAlloc_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMemStorageAlloc (@var{storage}, @var{size})\n\ -@var{storage} is of type CvMemStorage. @var{size} is of type size_t. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvConDensUpdateByTime_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConDensUpdateByTime (@var{condens})\n\ -@var{condens} is of type CvConDensation. \n\ -@end deftypefn"; -const char* _wrap_new_CvTuple_CvPoint_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTuple<(CvPoint,2)>::CvTuple<(CvPoint,2)> ()\n\ -@var{retval} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_delete_CvTuple_CvPoint_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTuple<(CvPoint,2)>::~CvTuple<(CvPoint,2)> (@var{self})\n\ -@var{self} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvPoint_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvTuple<(CvPoint,2)>)>::CvTypedSeq<(CvTuple<(CvPoint,2)>)> ()\n\ -@var{retval} is of type CvSeq_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvPoint_2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvTuple<(CvPoint,2)>)>::~CvTypedSeq<(CvTuple<(CvPoint,2)>)> (@var{self})\n\ -@var{self} is of type CvSeq_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPluginFuncInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvPluginFuncInfo::~CvPluginFuncInfo (@var{self})\n\ -@var{self} is of type CvPluginFuncInfo. \n\ -@end deftypefn"; -const char* _wrap_new_CvPluginFuncInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvPluginFuncInfo::CvPluginFuncInfo ()\n\ -@var{retval} is of type CvPluginFuncInfo. \n\ -@end deftypefn"; -const char* _wrap_cvRNG_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRNG ()\n\ -@var{retval} is of type CvRNG. \n\ -@end deftypefn"; -const char* _wrap_CV_8SC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_8SC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_load_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = load (@var{self}, @var{filename})\n\ -@var{self} is of type CvMatrix. @var{filename} is of type char. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_cvScaleAdd_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvScaleAdd (@var{src1}, @var{scale}, @var{src2}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{scale} is of type CvScalar. @var{src2} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_IplImage___div___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator / (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___div___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator / (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvUndistort2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvUndistort2 (@var{src}, @var{dst}, @var{camera_matrix}, @var{distortion_coeffs})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{camera_matrix} is of type CvMat. @var{distortion_coeffs} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_clear_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} clear (@var{self})\n\ -@var{self} is of type CvMatrix. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_clear_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} clear (@var{self})\n\ -@var{self} is of type CvPointVector. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_clear_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} clear (@var{self})\n\ -@var{self} is of type FloatVector. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector___paren_asgn___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn__ (@var{self}, @var{i}, @var{x})\n\ -@var{self} is of type CvPointVector. @var{i} is of type difference_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector___paren_asgn___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __paren_asgn__ (@var{self}, @var{i}, @var{x})\n\ -@var{self} is of type FloatVector. @var{i} is of type difference_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_cvReadReal_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadReal (@var{node}, @var{default_value} = 0.)\n\ -@var{node} is of type CvFileNode. @var{default_value} is of type double. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvStereoRectifyUncalibrated_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvStereoRectifyUncalibrated (@var{points1}, @var{points2}, @var{F}, @var{img_size}, @var{H1}, @var{H2}, @var{threshold} = 5)\n\ -@var{points1} is of type CvMat. @var{points2} is of type CvMat. @var{F} is of type CvMat. @var{img_size} is of type CvSize. @var{H1} is of type CvMat. @var{H2} is of type CvMat. @var{threshold} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHistogram_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHistogram (@var{self})\n\ -@var{self} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_CV_READ_EDGE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_READ_EDGE (@var{pt1}, @var{pt2}, @var{reader})\n\ -@var{pt1} is of type CvPoint. @var{pt2} is of type CvPoint. @var{reader} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_cvCalibrationMatrixValues_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalibrationMatrixValues (@var{camera_matrix}, @var{image_size}, @var{aperture_width} = 0, @var{aperture_height} = 0, @var{fovx} = nil, @var{fovy} = nil, @var{focal_length} = nil, @var{principal_point} = nil, @var{pixel_aspect_ratio} = nil)\n\ -@var{camera_matrix} is of type CvMat. @var{image_size} is of type CvSize. @var{aperture_width} is of type double. @var{aperture_height} is of type double. @var{fovx} is of type double. @var{fovy} is of type double. @var{focal_length} is of type double. @var{principal_point} is of type CvPoint2D64f. @var{pixel_aspect_ratio} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvCartToPolar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCartToPolar (@var{x}, @var{y}, @var{magnitude}, @var{angle} = nil, @var{angle_in_degrees} = 0)\n\ -@var{x} is of type CvArr. @var{y} is of type CvArr. @var{magnitude} is of type CvArr. @var{angle} is of type CvArr. @var{angle_in_degrees} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvType (@var{type_name}, @var{is_instance})\n\ -@var{type_name} is of type char. @var{is_instance} is of type CvIsInstanceFunc. @var{retval} is of type CvType. \n\ -@end deftypefn"; -const char* _wrap_delete_CvType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvType (@var{self})\n\ -@var{self} is of type CvType. \n\ -@end deftypefn"; -const char* _wrap_cvDrawContours_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDrawContours (@var{img}, @var{contour}, @var{external_color}, @var{hole_color}, @var{max_level}, @var{thickness} = 1, @var{line_type} = 8, @var{offset} = cvPoint(0,0))\n\ -@var{img} is of type CvArr. @var{contour} is of type CvSeq. @var{external_color} is of type CvScalar. @var{hole_color} is of type CvScalar. @var{max_level} is of type int. @var{thickness} is of type int. @var{line_type} is of type int. @var{offset} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_cvStartFindContours_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvStartFindContours (@var{image}, @var{storage}, @var{header_size} = sizeof(CvContour), @var{mode} = 1, @var{method} = 2, @var{offset} = cvPoint(0,0))\n\ -@var{image} is of type CvArr. @var{storage} is of type CvMemStorage. @var{header_size} is of type int. @var{mode} is of type int. @var{method} is of type int. @var{offset} is of type CvPoint. @var{retval} is of type CvContourScanner. \n\ -@end deftypefn"; -const char* _wrap_cvEndFindContours_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvEndFindContours (@var{scanner})\n\ -@var{scanner} is of type CvContourScanner. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_HIST_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_HIST (@var{hist})\n\ -@var{hist} is of type CvHistogram. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvScalarAll_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvScalarAll (@var{val0123})\n\ -@var{val0123} is of type double. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvCalcMotionGradient_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcMotionGradient (@var{mhi}, @var{mask}, @var{orientation}, @var{delta1}, @var{delta2}, @var{aperture_size} = 3)\n\ -@var{mhi} is of type CvArr. @var{mask} is of type CvArr. @var{orientation} is of type CvArr. @var{delta1} is of type double. @var{delta2} is of type double. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvAXPY_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAXPY (@var{A}, @var{real_scalar}, @var{B}, @var{C})\n\ -@var{A} is of type CvArr. @var{real_scalar} is of type double. @var{B} is of type CvArr. @var{C} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvExtractMSER_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvExtractMSER (@var{_img}, @var{_mask}, @var{contours}, @var{storage}, @var{params})\n\ -@var{_img} is of type CvArr. @var{_mask} is of type CvArr. @var{contours} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{params} is of type CvMSERParams. \n\ -@end deftypefn"; -const char* _wrap_cvRandInt_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRandInt (@var{rng})\n\ -@var{rng} is of type CvRNG. @var{retval} is of type unsigned int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvConDensation_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvConDensation (@var{self})\n\ -@var{self} is of type CvConDensation. \n\ -@end deftypefn"; -const char* _wrap_cvCreateConDensation_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateConDensation (@var{dynam_params}, @var{measure_params}, @var{sample_count})\n\ -@var{dynam_params} is of type int. @var{measure_params} is of type int. @var{sample_count} is of type int. @var{retval} is of type CvConDensation. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseConDensation_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseConDensation (@var{condens})\n\ -@var{condens} is of type CvConDensation. \n\ -@end deftypefn"; -const char* _wrap_cvSqrt_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSqrt (@var{value})\n\ -@var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_FLOW_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_FLOW (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvDet (@var{mat})\n\ -@var{mat} is of type CvArr. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvPointTo32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPointTo32f (@var{point})\n\ -@var{point} is of type CvPoint. @var{retval} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CV_SUBDIV2D_NEXT_EDGE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_SUBDIV2D_NEXT_EDGE (@var{edge})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{retval} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CV_HIST_HAS_RANGES_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_HIST_HAS_RANGES (@var{hist})\n\ -@var{hist} is of type CvHistogram. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_8UC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_8UC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHaarClassifierCascade_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHaarClassifierCascade (@var{self})\n\ -@var{self} is of type CvHaarClassifierCascade. \n\ -@end deftypefn"; -const char* _wrap_cvLoadHaarClassifierCascade_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvLoadHaarClassifierCascade (@var{directory}, @var{orig_window_size})\n\ -@var{directory} is of type char. @var{orig_window_size} is of type CvSize. @var{retval} is of type CvHaarClassifierCascade. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseHaarClassifierCascade_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseHaarClassifierCascade (@var{cascade})\n\ -@var{cascade} is of type CvHaarClassifierCascade. \n\ -@end deftypefn"; -const char* _wrap_cvSetImagesForHaarClassifierCascade_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetImagesForHaarClassifierCascade (@var{cascade}, @var{sum}, @var{sqsum}, @var{tilted_sum}, @var{scale})\n\ -@var{cascade} is of type CvHaarClassifierCascade. @var{sum} is of type CvArr. @var{sqsum} is of type CvArr. @var{tilted_sum} is of type CvArr. @var{scale} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvRunHaarClassifierCascade_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRunHaarClassifierCascade (@var{cascade}, @var{pt}, @var{start_stage} = 0)\n\ -@var{cascade} is of type CvHaarClassifierCascade. @var{pt} is of type CvPoint. @var{start_stage} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvAndS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAndS (@var{src}, @var{value}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{value} is of type CvScalar. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvImage_roi_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = roi (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvSubdiv2DEdge_Wrapper_ref_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = ref (@var{self})\n\ -@var{self} is of type CvSubdiv2DEdge_Wrapper. @var{retval} is of type CvSubdiv2DEdge. \n\ -@end deftypefn"; -const char* _wrap_CvRNG_Wrapper_ref_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = ref (@var{self})\n\ -@var{self} is of type CvRNG_Wrapper. @var{retval} is of type CvRNG. \n\ -@end deftypefn"; -const char* _wrap_cvInpaint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInpaint (@var{src}, @var{inpaint_mask}, @var{dst}, @var{inpaintRange}, @var{flags})\n\ -@var{src} is of type CvArr. @var{inpaint_mask} is of type CvArr. @var{dst} is of type CvArr. @var{inpaintRange} is of type double. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvStartNextStream_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartNextStream (@var{fs})\n\ -@var{fs} is of type CvFileStorage. \n\ -@end deftypefn"; -const char* _wrap_cvWatershed_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWatershed (@var{image}, @var{markers})\n\ -@var{image} is of type CvArr. @var{markers} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvResetImageROI_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvResetImageROI (@var{image})\n\ -@var{image} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvCalcOpticalFlowLK_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcOpticalFlowLK (@var{prev}, @var{curr}, @var{win_size}, @var{velx}, @var{vely})\n\ -@var{prev} is of type CvArr. @var{curr} is of type CvArr. @var{win_size} is of type CvSize. @var{velx} is of type CvArr. @var{vely} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvImage_clear_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} clear (@var{self})\n\ -@var{self} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_new_CvPoint3D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvPoint3D32f::CvPoint3D32f ()\n\ -@var{retval} is of type CvPoint3D32f. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPoint3D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvPoint3D32f::~CvPoint3D32f (@var{self})\n\ -@var{self} is of type CvPoint3D32f. \n\ -@end deftypefn"; -const char* _wrap_cvPoint3D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPoint3D32f (@var{x}, @var{y}, @var{z})\n\ -@var{x} is of type double. @var{y} is of type double. @var{z} is of type double. @var{retval} is of type CvPoint3D32f. \n\ -@end deftypefn"; -const char* _wrap_CV_NEXT_GRAPH_EDGE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NEXT_GRAPH_EDGE (@var{edge}, @var{vertex})\n\ -@var{edge} is of type CvGraphEdge. @var{vertex} is of type CvGraphVtx. @var{retval} is of type CvGraphEdge. \n\ -@end deftypefn"; -const char* _wrap_cvGraphRemoveEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGraphRemoveEdge (@var{graph}, @var{start_idx}, @var{end_idx})\n\ -@var{graph} is of type CvGraph. @var{start_idx} is of type int. @var{end_idx} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFindStereoCorrespondenceGC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFindStereoCorrespondenceGC (@var{left}, @var{right}, @var{disparityLeft}, @var{disparityRight}, @var{state}, @var{useDisparityGuess} = 0)\n\ -@var{left} is of type CvArr. @var{right} is of type CvArr. @var{disparityLeft} is of type CvArr. @var{disparityRight} is of type CvArr. @var{state} is of type CvStereoGCState. @var{useDisparityGuess} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFlip_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFlip (@var{src}, @var{dst} = nil, @var{flip_mode} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{flip_mode} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvKalmanPredict_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvKalmanPredict (@var{kalman}, @var{control} = nil)\n\ -@var{kalman} is of type CvKalman. @var{control} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvGetDiag_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetDiag (@var{arr}, @var{submat}, @var{diag} = 0)\n\ -@var{arr} is of type CvArr. @var{submat} is of type CvMat. @var{diag} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvMinMaxLoc_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMinMaxLoc (@var{arr}, @var{min_val}, @var{max_val}, @var{min_loc} = nil, @var{max_loc} = nil, @var{mask} = nil)\n\ -@var{arr} is of type CvArr. @var{min_val} is of type double. @var{max_val} is of type double. @var{min_loc} is of type CvPoint. @var{max_loc} is of type CvPoint. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_swap_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} swap (@var{self}, @var{v})\n\ -@var{self} is of type CvPointVector. @var{v} is of type CvPointVector. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_swap_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} swap (@var{self}, @var{v})\n\ -@var{self} is of type FloatVector. @var{v} is of type FloatVector. \n\ -@end deftypefn"; -const char* _wrap_cvEndWriteSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvEndWriteSeq (@var{writer})\n\ -@var{writer} is of type CvSeqWriter. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvStartWriteSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartWriteSeq (@var{seq_flags}, @var{header_size}, @var{elem_size}, @var{storage}, @var{writer})\n\ -@var{seq_flags} is of type int. @var{header_size} is of type int. @var{elem_size} is of type int. @var{storage} is of type CvMemStorage. @var{writer} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_cvRectToROI_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRectToROI (@var{rect}, @var{coi})\n\ -@var{rect} is of type CvRect. @var{coi} is of type int. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvSave_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSave (@var{filename}, @var{struct_ptr}, @var{name} = nil, @var{comment} = nil, @var{attributes} = cvAttrList())\n\ -@var{filename} is of type char. @var{struct_ptr} is of type void. @var{name} is of type char. @var{comment} is of type char. @var{attributes} is of type CvAttrList. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rxor___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rxor__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___rxor___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rxor__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvLogPolar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLogPolar (@var{src}, @var{dst}, @var{center}, @var{M}, @var{flags} = 1+8)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{center} is of type CvPoint2D32f. @var{M} is of type double. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCvtSeqToArray_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCvtSeqToArray_Shadow (@var{seq}, @var{elements})\n\ -@var{seq} is of type CvSeq. @var{elements} is of type CvArr. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_MAT_DEPTH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_MAT_DEPTH (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvThreshold_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvThreshold (@var{src}, @var{dst}, @var{threshold}, @var{max_value}, @var{threshold_type})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{threshold} is of type double. @var{max_value} is of type double. @var{threshold_type} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvAdaptiveThreshold_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAdaptiveThreshold (@var{src}, @var{dst}, @var{max_value}, @var{adaptive_method} = 0, @var{threshold_type} = 0, @var{block_size} = 3, @var{param1} = 5)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{max_value} is of type double. @var{adaptive_method} is of type int. @var{threshold_type} is of type int. @var{block_size} is of type int. @var{param1} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvEndWriteStruct_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvEndWriteStruct (@var{fs})\n\ -@var{fs} is of type CvFileStorage. \n\ -@end deftypefn"; -const char* _wrap_cvStartWriteStruct_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartWriteStruct (@var{fs}, @var{name}, @var{struct_flags}, @var{type_name} = nil, @var{attributes} = cvAttrList())\n\ -@var{fs} is of type CvFileStorage. @var{name} is of type char. @var{struct_flags} is of type int. @var{type_name} is of type char. @var{attributes} is of type CvAttrList. \n\ -@end deftypefn"; -const char* _wrap_new_CvMatrix3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMatrix3::CvMatrix3 ()\n\ -@var{retval} is of type CvMatrix3. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMatrix3_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMatrix3::~CvMatrix3 (@var{self})\n\ -@var{self} is of type CvMatrix3. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_GRAPH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_GRAPH (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPointSeqFromMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPointSeqFromMat (@var{seq_kind}, @var{mat}, @var{contour_header}, @var{block})\n\ -@var{seq_kind} is of type int. @var{mat} is of type CvArr. @var{contour_header} is of type CvContour. @var{block} is of type CvSeqBlock. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseMat (@var{mat})\n\ -@var{mat} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvConvert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConvert (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSeqPush_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqPush (@var{seq}, @var{element} = nil)\n\ -@var{seq} is of type CvSeq. @var{element} is of type void. @var{retval} is of type schar. \n\ -@end deftypefn"; -const char* _wrap_delete_CvGraph_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvGraph::~CvGraph (@var{self})\n\ -@var{self} is of type CvGraph. \n\ -@end deftypefn"; -const char* _wrap_new_CvGraph_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvGraph::CvGraph ()\n\ -@var{retval} is of type CvGraph. \n\ -@end deftypefn"; -const char* _wrap_cvFirstType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFirstType ()\n\ -@var{retval} is of type CvTypeInfo. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_CvPoint_2___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvTuple_CvPoint_2. @var{i} is of type int. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_2___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvTuple_float_2. @var{i} is of type int. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_3___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvTuple_float_3. @var{i} is of type int. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvPoint. @var{i} is of type int. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. @var{i} is of type int. @var{retval} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvRect. @var{i} is of type int. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvSeq. @var{i} is of type int. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. @var{i} is of type int. @var{retval} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvConnectedComp. @var{i} is of type int. @var{retval} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_CvPoint_2. @var{i} is of type int. @var{retval} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_float_2. @var{i} is of type int. @var{retval} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3___brace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __brace (@var{self}, @var{i})\n\ -@var{self} is of type CvSeq_float_3. @var{i} is of type int. @var{retval} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_cvRandArr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRandArr (@var{rng}, @var{arr}, @var{dist_type}, @var{param1}, @var{param2})\n\ -@var{rng} is of type CvRNG. @var{arr} is of type CvArr. @var{dist_type} is of type int. @var{param1} is of type CvScalar. @var{param2} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvClearGraph_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearGraph (@var{graph})\n\ -@var{graph} is of type CvGraph. \n\ -@end deftypefn"; -const char* _wrap_cvGetHashedKey_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetHashedKey (@var{fs}, @var{name}, @var{len} = -1, @var{create_missing} = 0)\n\ -@var{fs} is of type CvFileStorage. @var{name} is of type char. @var{len} is of type int. @var{create_missing} is of type int. @var{retval} is of type CvStringHashNode. \n\ -@end deftypefn"; -const char* _wrap_cvGEMM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGEMM (@var{src1}, @var{src2}, @var{alpha}, @var{src3}, @var{beta}, @var{dst}, @var{tABC} = 0)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{alpha} is of type double. @var{src3} is of type CvArr. @var{beta} is of type double. @var{dst} is of type CvArr. @var{tABC} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateKalman_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateKalman (@var{dynam_params}, @var{measure_params}, @var{control_params} = 0)\n\ -@var{dynam_params} is of type int. @var{measure_params} is of type int. @var{control_params} is of type int. @var{retval} is of type CvKalman. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseKalman_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseKalman (@var{kalman})\n\ -@var{kalman} is of type CvKalman. \n\ -@end deftypefn"; -const char* _wrap_cvmGet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvmGet (@var{mat}, @var{row}, @var{col})\n\ -@var{mat} is of type CvMat. @var{row} is of type int. @var{col} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeqReader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSeqReader::~CvSeqReader (@var{self})\n\ -@var{self} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeqReader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSeqReader::CvSeqReader ()\n\ -@var{retval} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_IMAGE_HDR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_IMAGE_HDR (@var{img})\n\ -@var{img} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCloneImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCloneImageMat (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvCreateImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateImageMat (@var{size}, @var{depth}, @var{channels})\n\ -@var{size} is of type CvSize. @var{depth} is of type int. @var{channels} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = size (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type size_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = size (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type size_type. \n\ -@end deftypefn"; -const char* _wrap_IplImage___gt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator > (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___gt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator > (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvSURFParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSURFParams::CvSURFParams ()\n\ -@var{retval} is of type CvSURFParams. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSURFParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSURFParams::~CvSURFParams (@var{self})\n\ -@var{self} is of type CvSURFParams. \n\ -@end deftypefn"; -const char* _wrap_cvSURFParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSURFParams (@var{hessianThreshold}, @var{extended} = 0)\n\ -@var{hessianThreshold} is of type double. @var{extended} is of type int. @var{retval} is of type CvSURFParams. \n\ -@end deftypefn"; -const char* _wrap_new_CvMSERParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMSERParams::CvMSERParams ()\n\ -@var{retval} is of type CvMSERParams. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMSERParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMSERParams::~CvMSERParams (@var{self})\n\ -@var{self} is of type CvMSERParams. \n\ -@end deftypefn"; -const char* _wrap_cvMSERParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMSERParams (@var{delta} = 5, @var{min_area} = 60, @var{max_area} = 14400, @var{max_variation} = .25, @var{min_diversity} = .2, @var{max_evolution} = 200, @var{area_threshold} = 1.01, @var{min_margin} = .003, @var{edge_blur_size} = 5)\n\ -@var{delta} is of type int. @var{min_area} is of type int. @var{max_area} is of type int. @var{max_variation} is of type float. @var{min_diversity} is of type float. @var{max_evolution} is of type int. @var{area_threshold} is of type double. @var{min_margin} is of type double. @var{edge_blur_size} is of type int. @var{retval} is of type CvMSERParams. \n\ -@end deftypefn"; -const char* _wrap_new_CvStarDetectorParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvStarDetectorParams::CvStarDetectorParams ()\n\ -@var{retval} is of type CvStarDetectorParams. \n\ -@end deftypefn"; -const char* _wrap_delete_CvStarDetectorParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvStarDetectorParams::~CvStarDetectorParams (@var{self})\n\ -@var{self} is of type CvStarDetectorParams. \n\ -@end deftypefn"; -const char* _wrap_cvStarDetectorParams_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvStarDetectorParams (@var{maxSize} = 45, @var{responseThreshold} = 30, @var{lineThresholdProjected} = 10, @var{lineThresholdBinarized} = 8, @var{suppressNonmaxSize} = 5)\n\ -@var{maxSize} is of type int. @var{responseThreshold} is of type int. @var{lineThresholdProjected} is of type int. @var{lineThresholdBinarized} is of type int. @var{suppressNonmaxSize} is of type int. @var{retval} is of type CvStarDetectorParams. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_is_valid_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = is_valid (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvImage_is_valid_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = is_valid (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_cvGraphRemoveVtx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphRemoveVtx (@var{graph}, @var{index})\n\ -@var{graph} is of type CvGraph. @var{index} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rmul___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rmul__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rmul___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rmul__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvPyrDown_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPyrDown (@var{src}, @var{dst}, @var{filter} = CV_GAUSSIAN_5x5)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{filter} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSeq::CvSeq ()\n\ -@var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSeq::~CvSeq (@var{self})\n\ -@var{self} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(p.CvSeq)>::CvTypedSeq<(p.CvSeq)> ()\n\ -@var{retval} is of type CvSeq_CvSeq. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(p.CvSeq)>::~CvTypedSeq<(p.CvSeq)> (@var{self})\n\ -@var{self} is of type CvSeq_CvSeq. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSet::~CvSet (@var{self})\n\ -@var{self} is of type CvSet. \n\ -@end deftypefn"; -const char* _wrap_new_CvSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSet::CvSet ()\n\ -@var{retval} is of type CvSet. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IDX_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IDX (@var{mat}, @var{node})\n\ -@var{mat} is of type CvSparseMat. @var{node} is of type CvSparseNode. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_POLYGON_TREE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_POLYGON_TREE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDiv_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDiv (@var{src1}, @var{src2}, @var{dst}, @var{scale} = 1)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{scale} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvReduce_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReduce (@var{src}, @var{dst}, @var{dim} = -1, @var{op} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{dim} is of type int. @var{op} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvComputeCorrespondEpilines_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvComputeCorrespondEpilines (@var{points}, @var{which_image}, @var{fundamental_matrix}, @var{correspondent_lines})\n\ -@var{points} is of type CvMat. @var{which_image} is of type int. @var{fundamental_matrix} is of type CvMat. @var{correspondent_lines} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSize::CvSize ()\n\ -@var{retval} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSize::~CvSize (@var{self})\n\ -@var{self} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_cvClipLine_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvClipLine (@var{img_size}, @var{pt1}, @var{pt2})\n\ -@var{img_size} is of type CvSize. @var{pt1} is of type CvPoint. @var{pt2} is of type CvPoint. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetSubRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetSubRect (@var{arr}, @var{submat}, @var{rect})\n\ -@var{arr} is of type CvArr. @var{submat} is of type CvMat. @var{rect} is of type CvRect. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvNorm_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvNorm (@var{arr1}, @var{arr2} = nil, @var{norm_type} = 4, @var{mask} = nil)\n\ -@var{arr1} is of type CvArr. @var{arr2} is of type CvArr. @var{norm_type} is of type int. @var{mask} is of type CvArr. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvCalcArrHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcArrHist (@var{arr}, @var{hist}, @var{accumulate} = 0, @var{mask} = nil)\n\ -@var{arr} is of type CvArr. @var{hist} is of type CvHistogram. @var{accumulate} is of type int. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSetZero_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetZero (@var{arr})\n\ -@var{arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateSeq (@var{seq_flags}, @var{header_size}, @var{elem_size}, @var{storage})\n\ -@var{seq_flags} is of type int. @var{header_size} is of type int. @var{elem_size} is of type int. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvmSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvmSet (@var{mat}, @var{row}, @var{col}, @var{value})\n\ -@var{mat} is of type CvMat. @var{row} is of type int. @var{col} is of type int. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CV_CMP_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_CMP (@var{a}, @var{b})\n\ -@var{a} is of type int. @var{b} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateSet (@var{set_flags}, @var{header_size}, @var{elem_size}, @var{storage})\n\ -@var{set_flags} is of type int. @var{header_size} is of type int. @var{elem_size} is of type int. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSet. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DEdgeDst_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DEdgeDst (@var{edge})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{retval} is of type CvSubdiv2DPoint. \n\ -@end deftypefn"; -const char* _wrap_cvSeqInsertSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqInsertSlice (@var{seq}, @var{before_index}, @var{from_arr})\n\ -@var{seq} is of type CvSeq. @var{before_index} is of type int. @var{from_arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_ARE_DEPTHS_EQ_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_ARE_DEPTHS_EQ (@var{mat1}, @var{mat2})\n\ -@var{mat1} is of type CvMat. @var{mat2} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_MAT_TYPE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_MAT_TYPE (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphAddEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphAddEdge (@var{graph}, @var{start_idx}, @var{end_idx}, @var{edge} = nil, @var{inserted_edge} = nil)\n\ -@var{graph} is of type CvGraph. @var{start_idx} is of type int. @var{end_idx} is of type int. @var{edge} is of type CvGraphEdge. @var{inserted_edge} is of type CvGraphEdge. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_SEQ_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_SEQ (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SET_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SET (@var{set})\n\ -@var{set} is of type CvSet. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvGraphVtx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvGraphVtx::~CvGraphVtx (@var{self})\n\ -@var{self} is of type CvGraphVtx. \n\ -@end deftypefn"; -const char* _wrap_new_CvGraphVtx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvGraphVtx::CvGraphVtx ()\n\ -@var{retval} is of type CvGraphVtx. \n\ -@end deftypefn"; -const char* _wrap_cvGetGraphVtx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetGraphVtx (@var{graph}, @var{idx})\n\ -@var{graph} is of type CvGraph. @var{idx} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvTranspose_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvTranspose (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvUpdateMotionHistory_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvUpdateMotionHistory (@var{silhouette}, @var{mhi}, @var{timestamp}, @var{duration})\n\ -@var{silhouette} is of type CvArr. @var{mhi} is of type CvArr. @var{timestamp} is of type double. @var{duration} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetNextSparseNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetNextSparseNode (@var{mat_iterator})\n\ -@var{mat_iterator} is of type CvSparseMatIterator. @var{retval} is of type CvSparseNode. \n\ -@end deftypefn"; -const char* _wrap_new_CvSparseNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSparseNode::CvSparseNode ()\n\ -@var{retval} is of type CvSparseNode. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSparseNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSparseNode::~CvSparseNode (@var{self})\n\ -@var{self} is of type CvSparseNode. \n\ -@end deftypefn"; -const char* _wrap_cvGetThreadNum_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetThreadNum ()\n\ -@var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetSeqElem_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetSeqElem (@var{seq}, @var{index})\n\ -@var{seq} is of type CvSeq. @var{index} is of type int. @var{retval} is of type schar. \n\ -@end deftypefn"; -const char* _wrap_cvGraphRemoveVtxByPtr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphRemoveVtxByPtr (@var{graph}, @var{vtx})\n\ -@var{graph} is of type CvGraph. @var{vtx} is of type CvGraphVtx. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetFileNodeName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetFileNodeName (@var{node})\n\ -@var{node} is of type CvFileNode. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_capacity_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = capacity (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type size_type. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_capacity_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = capacity (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type size_type. \n\ -@end deftypefn"; -const char* _wrap_cvAvgSdv_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAvgSdv (@var{arr}, @var{mean}, @var{std_dev}, @var{mask} = nil)\n\ -@var{arr} is of type CvArr. @var{mean} is of type CvScalar. @var{std_dev} is of type CvScalar. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_delete_CvKalman_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvKalman (@var{self})\n\ -@var{self} is of type CvKalman. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvPoint)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvPoint. \n\ -@end deftypefn"; -const char* _wrap_new_CvMoments_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMoments::CvMoments ()\n\ -@var{retval} is of type CvMoments. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMoments_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMoments::~CvMoments (@var{self})\n\ -@var{self} is of type CvMoments. \n\ -@end deftypefn"; -const char* _wrap_new_CvHuMoments_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvHuMoments::CvHuMoments ()\n\ -@var{retval} is of type CvHuMoments. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHuMoments_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHuMoments::~CvHuMoments (@var{self})\n\ -@var{self} is of type CvHuMoments. \n\ -@end deftypefn"; -const char* _wrap_new_CvChainPtReader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvChainPtReader::CvChainPtReader ()\n\ -@var{retval} is of type CvChainPtReader. \n\ -@end deftypefn"; -const char* _wrap_delete_CvChainPtReader_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvChainPtReader::~CvChainPtReader (@var{self})\n\ -@var{self} is of type CvChainPtReader. \n\ -@end deftypefn"; -const char* _wrap_cvMoments_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMoments (@var{arr}, @var{moments}, @var{binary} = 0)\n\ -@var{arr} is of type CvArr. @var{moments} is of type CvMoments. @var{binary} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetHuMoments_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetHuMoments (@var{moments}, @var{hu_moments})\n\ -@var{moments} is of type CvMoments. @var{hu_moments} is of type CvHuMoments. \n\ -@end deftypefn"; -const char* _wrap_cvSetImageIOFunctions_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSetImageIOFunctions (@var{_load_image}, @var{_load_image_m}, @var{_save_image}, @var{_show_image})\n\ -@var{_load_image} is of type CvLoadImageFunc. @var{_load_image_m} is of type CvLoadImageMFunc. @var{_save_image} is of type CvSaveImageFunc. @var{_show_image} is of type CvShowImageFunc. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvAvg_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvAvg (@var{arr}, @var{mask} = nil)\n\ -@var{arr} is of type CvArr. @var{mask} is of type CvArr. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_IplImage___req___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __req__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___req___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __req__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseImage (@var{image})\n\ -@var{image} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvSnakeImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSnakeImage_Shadow (@var{image}, @var{points}, @var{alpha}, @var{beta}, @var{gamma}, @var{win}, @var{criteria})\n\ -@var{image} is of type CvMat. @var{points} is of type CvPointVector. @var{alpha} is of type FloatVector. @var{beta} is of type FloatVector. @var{gamma} is of type FloatVector. @var{win} is of type CvSize. @var{criteria} is of type CvTermCriteria. @var{retval} is of type CvPointVector. \n\ -@end deftypefn"; -const char* _wrap_CvImage_origin_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = origin (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetRows_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetRows (@var{arr}, @var{submat}, @var{start_row}, @var{end_row}, @var{delta_row} = 1)\n\ -@var{arr} is of type CvArr. @var{submat} is of type CvMat. @var{start_row} is of type int. @var{end_row} is of type int. @var{delta_row} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvWriteReal_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWriteReal (@var{fs}, @var{name}, @var{value})\n\ -@var{fs} is of type CvFileStorage. @var{name} is of type char. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvMul_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMul (@var{src1}, @var{src2}, @var{dst}, @var{scale} = 1)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{scale} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvOr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvOr (@var{src1}, @var{src2}, @var{dst}, @var{mask} = nil)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSetSeqReaderPos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetSeqReaderPos (@var{reader}, @var{index}, @var{is_relative} = 0)\n\ -@var{reader} is of type CvSeqReader. @var{index} is of type int. @var{is_relative} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetSeqReaderPos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetSeqReaderPos (@var{reader})\n\ -@var{reader} is of type CvSeqReader. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseGraphScanner_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseGraphScanner (@var{scanner})\n\ -@var{scanner} is of type CvGraphScanner. \n\ -@end deftypefn"; -const char* _wrap_cvCreateGraphScanner_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateGraphScanner (@var{graph}, @var{vtx} = nil, @var{mask} = -1)\n\ -@var{graph} is of type CvGraph. @var{vtx} is of type CvGraphVtx. @var{mask} is of type int. @var{retval} is of type CvGraphScanner. \n\ -@end deftypefn"; -const char* _wrap_delete_CvGraphScanner_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvGraphScanner (@var{self})\n\ -@var{self} is of type CvGraphScanner. \n\ -@end deftypefn"; -const char* _wrap_cvNormalize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvNormalize (@var{src}, @var{dst}, @var{a} = 1., @var{b} = 0., @var{norm_type} = 4, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{a} is of type double. @var{b} is of type double. @var{norm_type} is of type int. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSize (@var{width}, @var{height})\n\ -@var{width} is of type int. @var{height} is of type int. @var{retval} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_copy_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = copy (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_TEMP_MAT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_TEMP_MAT (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseFileStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseFileStorage (@var{fs})\n\ -@var{fs} is of type CvFileStorage. \n\ -@end deftypefn"; -const char* _wrap_cvOpenFileStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvOpenFileStorage (@var{filename}, @var{memstorage}, @var{flags})\n\ -@var{filename} is of type char. @var{memstorage} is of type CvMemStorage. @var{flags} is of type int. @var{retval} is of type CvFileStorage. \n\ -@end deftypefn"; -const char* _wrap_cvClearMemStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearMemStorage (@var{storage})\n\ -@var{storage} is of type CvMemStorage. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseMemStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseMemStorage (@var{storage})\n\ -@var{storage} is of type CvMemStorage. \n\ -@end deftypefn"; -const char* _wrap_cvCreateChildMemStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateChildMemStorage (@var{parent})\n\ -@var{parent} is of type CvMemStorage. @var{retval} is of type CvMemStorage. \n\ -@end deftypefn"; -const char* _wrap_cvCreateMemStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateMemStorage (@var{block_size} = 0)\n\ -@var{block_size} is of type int. @var{retval} is of type CvMemStorage. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMemStorage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMemStorage (@var{self})\n\ -@var{self} is of type CvMemStorage. \n\ -@end deftypefn"; -const char* _wrap_cvIncRefData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvIncRefData (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDecRefData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDecRefData (@var{arr})\n\ -@var{arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSVBkSb_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSVBkSb (@var{W}, @var{U}, @var{V}, @var{B}, @var{X}, @var{flags})\n\ -@var{W} is of type CvArr. @var{U} is of type CvArr. @var{V} is of type CvArr. @var{B} is of type CvArr. @var{X} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCalibrateCamera2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalibrateCamera2 (@var{object_points}, @var{image_points}, @var{point_counts}, @var{image_size}, @var{camera_matrix}, @var{distortion_coeffs}, @var{rotation_vectors} = nil, @var{translation_vectors} = nil, @var{flags} = 0)\n\ -@var{object_points} is of type CvMat. @var{image_points} is of type CvMat. @var{point_counts} is of type CvMat. @var{image_size} is of type CvSize. @var{camera_matrix} is of type CvMat. @var{distortion_coeffs} is of type CvMat. @var{rotation_vectors} is of type CvMat. @var{translation_vectors} is of type CvMat. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_EMPTY_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_EMPTY (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvNextGraphItem_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvNextGraphItem (@var{scanner})\n\ -@var{scanner} is of type CvGraphScanner. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_USER_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_USER (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateStructuringElementEx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateStructuringElementEx (@var{cols}, @var{rows}, @var{anchor_x}, @var{anchor_y}, @var{shape}, @var{values} = nil)\n\ -@var{cols} is of type int. @var{rows} is of type int. @var{anchor_x} is of type int. @var{anchor_y} is of type int. @var{shape} is of type int. @var{values} is of type int. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvInitUndistortMap_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInitUndistortMap (@var{camera_matrix}, @var{distortion_coeffs}, @var{mapx}, @var{mapy})\n\ -@var{camera_matrix} is of type CvMat. @var{distortion_coeffs} is of type CvMat. @var{mapx} is of type CvArr. @var{mapy} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___str_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __str (@var{self})\n\ -@var{self} is of type CvMat. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvSetMemoryManager_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetMemoryManager (@var{alloc_func} = nil, @var{free_func} = nil, @var{userdata} = nil)\n\ -@var{alloc_func} is of type CvAllocFunc. @var{free_func} is of type CvFreeFunc. @var{userdata} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvDCT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDCT (@var{src}, @var{dst}, @var{flags})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateKDTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateKDTree (@var{desc})\n\ -@var{desc} is of type CvMat. @var{retval} is of type CvFeatureTree. \n\ -@end deftypefn"; -const char* _wrap_CvImage_read_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = read (@var{self}, @var{fs}, @var{seqname}, @var{idx})\n\ -@var{self} is of type CvImage. @var{fs} is of type CvFileStorage. @var{seqname} is of type char. @var{idx} is of type int. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_IplImage___le___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator <= (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___le___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator <= (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvAlloc_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvAlloc (@var{size})\n\ -@var{size} is of type size_t. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvKalmanCorrect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvKalmanCorrect (@var{kalman}, @var{measurement})\n\ -@var{kalman} is of type CvKalman. @var{measurement} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_REV_READ_SEQ_ELEM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_REV_READ_SEQ_ELEM (@var{elem}, @var{reader})\n\ -@var{elem} is of type CvPoint. @var{reader} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_CV_READ_SEQ_ELEM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_READ_SEQ_ELEM (@var{elem}, @var{reader})\n\ -@var{elem} is of type CvPoint. @var{reader} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_CV_PREV_SEQ_ELEM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_PREV_SEQ_ELEM (@var{elem_size}, @var{reader})\n\ -@var{elem_size} is of type int. @var{reader} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_CV_NEXT_SEQ_ELEM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_NEXT_SEQ_ELEM (@var{elem_size}, @var{reader})\n\ -@var{elem_size} is of type int. @var{reader} is of type CvSeqReader. \n\ -@end deftypefn"; -const char* _wrap_CV_WRITE_SEQ_ELEM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_WRITE_SEQ_ELEM (@var{elem}, @var{writer})\n\ -@var{elem} is of type CvPoint. @var{writer} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_delete_CvGraphVtx2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvGraphVtx2D::~CvGraphVtx2D (@var{self})\n\ -@var{self} is of type CvGraphVtx2D. \n\ -@end deftypefn"; -const char* _wrap_new_CvGraphVtx2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvGraphVtx2D::CvGraphVtx2D ()\n\ -@var{retval} is of type CvGraphVtx2D. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvRect)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvSliceLength_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSliceLength (@var{slice}, @var{seq})\n\ -@var{slice} is of type CvSlice. @var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvArcLength_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvArcLength_Shadow (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_new_CvHaarFeature_rect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvHaarFeature_rect::CvHaarFeature_rect ()\n\ -@var{retval} is of type CvHaarFeature_rect. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHaarFeature_rect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHaarFeature_rect::~CvHaarFeature_rect (@var{self})\n\ -@var{self} is of type CvHaarFeature_rect. \n\ -@end deftypefn"; -const char* _wrap_cvPtrND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPtrND (@var{arr}, @var{idx}, @var{type} = nil, @var{create_node} = 1, @var{precalc_hashval} = nil)\n\ -@var{arr} is of type CvArr. @var{idx} is of type int. @var{type} is of type int. @var{create_node} is of type int. @var{precalc_hashval} is of type unsigned int. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator___decr___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator -- (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_new_CvAvgComp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvAvgComp::CvAvgComp ()\n\ -@var{retval} is of type CvAvgComp. \n\ -@end deftypefn"; -const char* _wrap_delete_CvAvgComp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvAvgComp::~CvAvgComp (@var{self})\n\ -@var{self} is of type CvAvgComp. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rand___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rand__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___rand___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rand__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvConnectedComp)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_cvReshapeND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReshapeND (@var{arr}, @var{header}, @var{new_cn}, @var{new_dims}, @var{new_sizes})\n\ -@var{arr} is of type CvArr. @var{header} is of type CvMat. @var{new_cn} is of type int. @var{new_dims} is of type int. @var{new_sizes} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvImage_reset_roi_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} reset_roi (@var{self})\n\ -@var{self} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_CvImage_set_roi_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} set_roi (@var{self}, @var{roi})\n\ -@var{self} is of type CvImage. @var{roi} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMatrix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMatrix (@var{self})\n\ -@var{self} is of type CvMatrix. \n\ -@end deftypefn"; -const char* _wrap_new_CvMatrix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMatrix (@var{fs}, @var{seqname}, @var{idx})\n\ -@var{fs} is of type CvFileStorage. @var{seqname} is of type char. @var{idx} is of type int. @var{retval} is of type CvMatrix. \n\ -@end deftypefn"; -const char* _wrap_cvCalcCovarMatrix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcCovarMatrix (@var{vects}, @var{count}, @var{cov_mat}, @var{avg}, @var{flags})\n\ -@var{vects} is of type CvArr. @var{count} is of type int. @var{cov_mat} is of type CvArr. @var{avg} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cv2DRotationMatrix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cv2DRotationMatrix (@var{center}, @var{angle}, @var{scale}, @var{map_matrix})\n\ -@var{center} is of type CvPoint2D32f. @var{angle} is of type double. @var{scale} is of type double. @var{map_matrix} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvDecomposeProjectionMatrix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDecomposeProjectionMatrix (@var{projMatr}, @var{calibMatr}, @var{rotMatr}, @var{posVect}, @var{rotMatrX} = nil, @var{rotMatrY} = nil, @var{rotMatrZ} = nil, @var{eulerAngles} = nil)\n\ -@var{projMatr} is of type CvMat. @var{calibMatr} is of type CvMat. @var{rotMatr} is of type CvMat. @var{posVect} is of type CvMat. @var{rotMatrX} is of type CvMat. @var{rotMatrY} is of type CvMat. @var{rotMatrZ} is of type CvMat. @var{eulerAngles} is of type CvPoint3D64f. \n\ -@end deftypefn"; -const char* _wrap_cvMultiplyAcc_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMultiplyAcc (@var{image1}, @var{image2}, @var{acc}, @var{mask} = nil)\n\ -@var{image1} is of type CvArr. @var{image2} is of type CvArr. @var{acc} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvRect. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvExp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvExp (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_new_CvContourTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvContourTree::CvContourTree ()\n\ -@var{retval} is of type CvContourTree. \n\ -@end deftypefn"; -const char* _wrap_delete_CvContourTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvContourTree::~CvContourTree (@var{self})\n\ -@var{self} is of type CvContourTree. \n\ -@end deftypefn"; -const char* _wrap_cvCreateContourTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateContourTree (@var{contour}, @var{storage}, @var{threshold})\n\ -@var{contour} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{threshold} is of type double. @var{retval} is of type CvContourTree. \n\ -@end deftypefn"; -const char* _wrap_cvReadInt_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadInt (@var{node}, @var{default_value} = 0)\n\ -@var{node} is of type CvFileNode. @var{default_value} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCamShift_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCamShift (@var{prob_image}, @var{window}, @var{criteria}, @var{comp}, @var{box} = nil)\n\ -@var{prob_image} is of type CvArr. @var{window} is of type CvRect. @var{criteria} is of type CvTermCriteria. @var{comp} is of type CvConnectedComp. @var{box} is of type CvBox2D. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSet1D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSet1D (@var{arr}, @var{idx0}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DNextEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DNextEdge (@var{edge})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{retval} is of type CvSubdiv2DEdge. \n\ -@end deftypefn"; -const char* _wrap_cvRandReal_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRandReal (@var{rng})\n\ -@var{rng} is of type CvRNG. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvStereoRectify_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStereoRectify (@var{camera_matrix1}, @var{camera_matrix2}, @var{dist_coeffs1}, @var{dist_coeffs2}, @var{image_size}, @var{R}, @var{T}, @var{R1}, @var{R2}, @var{P1}, @var{P2}, @var{Q} = 0, @var{flags} = 1024)\n\ -@var{camera_matrix1} is of type CvMat. @var{camera_matrix2} is of type CvMat. @var{dist_coeffs1} is of type CvMat. @var{dist_coeffs2} is of type CvMat. @var{image_size} is of type CvSize. @var{R} is of type CvMat. @var{T} is of type CvMat. @var{R1} is of type CvMat. @var{R2} is of type CvMat. @var{P1} is of type CvMat. @var{P2} is of type CvMat. @var{Q} is of type CvMat. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_float_3. @var{retval} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_CV_ARE_SIZES_EQ_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_ARE_SIZES_EQ (@var{mat1}, @var{mat2})\n\ -@var{mat1} is of type CvMat. @var{mat2} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvQuadEdge2D)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_delete_IplConvKernel_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} IplConvKernel (@var{self})\n\ -@var{self} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_addref_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} addref (@var{self})\n\ -@var{self} is of type CvMatrix. \n\ -@end deftypefn"; -const char* _wrap_cvSolvePoly_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSolvePoly (@var{coeffs}, @var{roots2}, @var{maxiter} = 20, @var{fig} = 100)\n\ -@var{coeffs} is of type CvMat. @var{roots2} is of type CvMat. @var{maxiter} is of type int. @var{fig} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSet2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSet2D (@var{arr}, @var{idx0}, @var{idx1}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvCopy_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCopy (@var{src}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_GRAPH_EDGE_VISITED_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_GRAPH_EDGE_VISITED (@var{edge})\n\ -@var{edge} is of type CvGraphEdge. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_GRAPH_VERTEX_VISITED_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_GRAPH_VERTEX_VISITED (@var{vtx})\n\ -@var{vtx} is of type CvGraphVtx. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSeqElemIdx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqElemIdx (@var{seq}, @var{element}, @var{block} = nil)\n\ -@var{seq} is of type CvSeq. @var{element} is of type void. @var{block} is of type CvSeqBlock. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetSpatialMoment_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetSpatialMoment (@var{moments}, @var{x_order}, @var{y_order})\n\ -@var{moments} is of type CvMoments. @var{x_order} is of type int. @var{y_order} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetCentralMoment_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetCentralMoment (@var{moments}, @var{x_order}, @var{y_order})\n\ -@var{moments} is of type CvMoments. @var{x_order} is of type int. @var{y_order} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetNormalizedCentralMoment_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetNormalizedCentralMoment (@var{moments}, @var{x_order}, @var{y_order})\n\ -@var{moments} is of type CvMoments. @var{x_order} is of type int. @var{y_order} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CV_MAT_CN_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_MAT_CN (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRange_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRange (@var{mat}, @var{start}, @var{end})\n\ -@var{mat} is of type CvArr. @var{start} is of type double. @var{end} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_back_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = back (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_back_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = back (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_IplImage___str_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __str (@var{self})\n\ -@var{self} is of type . @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvFindChessboardCorners_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindChessboardCorners (@var{image}, @var{pattern_size}, @var{flags} = 1+2)\n\ -@var{image} is of type void. @var{pattern_size} is of type CvSize. @var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDrawChessboardCorners_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDrawChessboardCorners (@var{image}, @var{pattern_size}, @var{corners}, @var{pattern_was_found})\n\ -@var{image} is of type CvArr. @var{pattern_size} is of type CvSize. @var{corners} is of type CvPoint2D32f. @var{pattern_was_found} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphVtxIdx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphVtxIdx (@var{graph}, @var{vtx})\n\ -@var{graph} is of type CvGraph. @var{vtx} is of type CvGraphVtx. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rsub___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rsub__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___rsub___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rsub__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_64FC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_64FC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFindFundamentalMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindFundamentalMat (@var{points1}, @var{points2}, @var{fundamental_matrix}, @var{method} = 8, @var{param1} = 3., @var{param2} = 0.99, @var{status} = nil)\n\ -@var{points1} is of type CvMat. @var{points2} is of type CvMat. @var{fundamental_matrix} is of type CvMat. @var{method} is of type int. @var{param1} is of type double. @var{param2} is of type double. @var{status} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_RGB_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_RGB (@var{r}, @var{g}, @var{b})\n\ -@var{r} is of type double. @var{g} is of type double. @var{b} is of type int. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvInRange_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInRange (@var{src}, @var{lower}, @var{upper}, @var{dst})\n\ -@var{src} is of type CvArr. @var{lower} is of type CvArr. @var{upper} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_ELEM_SIZE1_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_ELEM_SIZE1 (@var{type})\n\ -@var{type} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCalcGlobalOrientation_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCalcGlobalOrientation (@var{orientation}, @var{mask}, @var{mhi}, @var{timestamp}, @var{duration})\n\ -@var{orientation} is of type CvArr. @var{mask} is of type CvArr. @var{mhi} is of type CvArr. @var{timestamp} is of type double. @var{duration} is of type double. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvRestoreMemStoragePos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRestoreMemStoragePos (@var{storage}, @var{pos})\n\ -@var{storage} is of type CvMemStorage. @var{pos} is of type CvMemStoragePos. \n\ -@end deftypefn"; -const char* _wrap_cvSaveMemStoragePos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSaveMemStoragePos (@var{storage}, @var{pos})\n\ -@var{storage} is of type CvMemStorage. @var{pos} is of type CvMemStoragePos. \n\ -@end deftypefn"; -const char* _wrap_new_CvMemStoragePos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMemStoragePos::CvMemStoragePos ()\n\ -@var{retval} is of type CvMemStoragePos. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMemStoragePos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMemStoragePos::~CvMemStoragePos (@var{self})\n\ -@var{self} is of type CvMemStoragePos. \n\ -@end deftypefn"; -const char* _wrap_CvSubdiv2D_typed_edges_get_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = typed_edges_get (@var{self})\n\ -@var{self} is of type CvSubdiv2D. @var{retval} is of type CvSeq_CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_cvEigenVV_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvEigenVV (@var{mat}, @var{evects}, @var{evals}, @var{eps} = 0, @var{lowindex} = -1, @var{highindex} = -1)\n\ -@var{mat} is of type CvArr. @var{evects} is of type CvArr. @var{evals} is of type CvArr. @var{eps} is of type double. @var{lowindex} is of type int. @var{highindex} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvLog_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLog (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvImage_load_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = load (@var{self}, @var{filename})\n\ -@var{self} is of type CvImage. @var{filename} is of type char. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_cvSet3D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSet3D (@var{arr}, @var{idx0}, @var{idx1}, @var{idx2}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{idx2} is of type int. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseData (@var{arr})\n\ -@var{arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvDFT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDFT (@var{src}, @var{dst}, @var{flags}, @var{nonzero_rows} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{flags} is of type int. @var{nonzero_rows} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MAT_CONT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MAT_CONT (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCloneMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCloneMat (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvExtractSURF_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvExtractSURF (@var{img}, @var{mask}, @var{keypoints}, @var{descriptors}, @var{storage}, @var{params}, @var{useProvidedKeyPts} = 0)\n\ -@var{img} is of type CvArr. @var{mask} is of type CvArr. @var{keypoints} is of type CvSeq. @var{descriptors} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{params} is of type CvSURFParams. @var{useProvidedKeyPts} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRectangle_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRectangle (@var{img}, @var{pt1}, @var{pt2}, @var{color}, @var{thickness} = 1, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{pt1} is of type CvPoint. @var{pt2} is of type CvPoint. @var{color} is of type CvScalar. @var{thickness} is of type int. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetCol_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetCol (@var{arr}, @var{submat}, @var{col})\n\ -@var{arr} is of type CvArr. @var{submat} is of type CvMat. @var{col} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvSetSeqBlockSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetSeqBlockSize (@var{seq}, @var{delta_elems})\n\ -@var{seq} is of type CvSeq. @var{delta_elems} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rge___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rge__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rge___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rge__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCalcBackProjectPatch_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcBackProjectPatch (@var{image}, @var{dst}, @var{range}, @var{hist}, @var{method}, @var{factor})\n\ -@var{image} is of type . @var{dst} is of type CvArr. @var{range} is of type CvSize. @var{hist} is of type CvHistogram. @var{method} is of type int. @var{factor} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvCalcArrBackProjectPatch_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcArrBackProjectPatch (@var{image}, @var{dst}, @var{range}, @var{hist}, @var{method}, @var{factor})\n\ -@var{image} is of type CvArr. @var{dst} is of type CvArr. @var{range} is of type CvSize. @var{hist} is of type CvHistogram. @var{method} is of type int. @var{factor} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = data (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_cvPow_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPow (@var{src}, @var{dst}, @var{power})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{power} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MAT_HDR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MAT_HDR (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SPARSE_MAT_HDR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SPARSE_MAT_HDR (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvConDensInitSampleSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConDensInitSampleSet (@var{condens}, @var{lower_bound}, @var{upper_bound})\n\ -@var{condens} is of type CvConDensation. @var{lower_bound} is of type CvMat. @var{upper_bound} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_POINT_SUBSET_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_POINT_SUBSET (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvMat_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMat_data::CvMat_data ()\n\ -@var{retval} is of type CvMat_data. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMat_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMat_data::~CvMat_data (@var{self})\n\ -@var{self} is of type CvMat_data. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_set_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} set_data (@var{self}, @var{data})\n\ -@var{self} is of type CvMatrix. @var{data} is of type void. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_CLOSED_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_CLOSED (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWriteString_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWriteString (@var{fs}, @var{name}, @var{str}, @var{quote} = 0)\n\ -@var{fs} is of type CvFileStorage. @var{name} is of type char. @var{str} is of type char. @var{quote} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvMemStorageAllocString_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMemStorageAllocString (@var{storage}, @var{ptr}, @var{len} = -1)\n\ -@var{storage} is of type CvMemStorage. @var{ptr} is of type char. @var{len} is of type int. @var{retval} is of type CvString. \n\ -@end deftypefn"; -const char* _wrap_CvSubdiv2D_typed_edges_set_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} typed_edges_set (@var{self}, @var{?})\n\ -@var{self} is of type CvSubdiv2D. @var{?} is of type CvSeq_CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_HAS_NAME_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_HAS_NAME (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCloneSparseMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCloneSparseMat (@var{mat})\n\ -@var{mat} is of type CvSparseMat. @var{retval} is of type CvSparseMat. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseSparseMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseSparseMat (@var{mat})\n\ -@var{mat} is of type CvSparseMat. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSparseMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateSparseMat (@var{dims}, @var{type})\n\ -@var{dims} is of type int. @var{type} is of type int. @var{retval} is of type CvSparseMat. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSparseMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSparseMat (@var{self})\n\ -@var{self} is of type CvSparseMat. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_equal_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = equal (@var{self}, @var{x})\n\ -@var{self} is of type OctSwigIterator. @var{x} is of type OctSwigIterator. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_POLYGON_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_POLYGON (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvXor_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvXor (@var{src1}, @var{src2}, @var{dst}, @var{mask} = nil)\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvLaplace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLaplace (@var{src}, @var{dst}, @var{aperture_size} = 3)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvLSHQuery_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLSHQuery (@var{lsh}, @var{query_points}, @var{indices}, @var{dist}, @var{k}, @var{emax})\n\ -@var{lsh} is of type CvLSH. @var{query_points} is of type CvMat. @var{indices} is of type CvMat. @var{dist} is of type CvMat. @var{k} is of type int. @var{emax} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetNew_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSetNew (@var{set_header})\n\ -@var{set_header} is of type CvSet. @var{retval} is of type CvSetElem. \n\ -@end deftypefn"; -const char* _wrap_CV_SIGN_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CV_SIGN (@var{a})\n\ -@var{a} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvConvertMaps_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConvertMaps (@var{mapx}, @var{mapy}, @var{mapxy}, @var{mapalpha})\n\ -@var{mapx} is of type CvArr. @var{mapy} is of type CvArr. @var{mapxy} is of type CvArr. @var{mapalpha} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSet (@var{arr}, @var{value}, @var{mask} = nil)\n\ -@var{arr} is of type CvArr. @var{value} is of type CvScalar. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSeqInsert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqInsert (@var{seq}, @var{before_index}, @var{element} = nil)\n\ -@var{seq} is of type CvSeq. @var{before_index} is of type int. @var{element} is of type void. @var{retval} is of type schar. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSpillTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateSpillTree (@var{raw_data}, @var{naive} = 50, @var{rho} = .7, @var{tau} = .1)\n\ -@var{raw_data} is of type CvMat. @var{naive} is of type int. @var{rho} is of type double. @var{tau} is of type double. @var{retval} is of type CvFeatureTree. \n\ -@end deftypefn"; -const char* _wrap_cvHaarDetectObjects_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvHaarDetectObjects_Shadow (@var{image}, @var{cascade}, @var{storage})\n\ -@var{image} is of type CvArr. @var{cascade} is of type CvHaarClassifierCascade. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSeq_CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvCalcImageHomography_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcImageHomography (@var{line}, @var{center}, @var{intrinsic}, @var{homography})\n\ -@var{line} is of type float. @var{center} is of type CvPoint3D32f. @var{intrinsic} is of type float. @var{homography} is of type float. \n\ -@end deftypefn"; -const char* _wrap_cvFindHomography_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindHomography (@var{src_points}, @var{dst_points}, @var{homography}, @var{method} = 0, @var{ransacReprojThreshold} = 0, @var{mask} = 0)\n\ -@var{src_points} is of type CvMat. @var{dst_points} is of type CvMat. @var{homography} is of type CvMat. @var{method} is of type int. @var{ransacReprojThreshold} is of type double. @var{mask} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_MAKETYPE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_MAKETYPE (@var{depth}, @var{cn})\n\ -@var{depth} is of type int. @var{cn} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWrite_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWrite (@var{fs}, @var{name}, @var{ptr}, @var{attributes} = cvAttrList())\n\ -@var{fs} is of type CvFileStorage. @var{name} is of type char. @var{ptr} is of type void. @var{attributes} is of type CvAttrList. \n\ -@end deftypefn"; -const char* _wrap_new_CvMatND_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMatND_data::CvMatND_data ()\n\ -@var{retval} is of type CvMatND_data. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMatND_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMatND_data::~CvMatND_data (@var{self})\n\ -@var{self} is of type CvMatND_data. \n\ -@end deftypefn"; -const char* _wrap_cvCalcPCA_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcPCA (@var{data}, @var{mean}, @var{eigenvals}, @var{eigenvects}, @var{flags})\n\ -@var{data} is of type CvArr. @var{mean} is of type CvArr. @var{eigenvals} is of type CvArr. @var{eigenvects} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRodrigues2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRodrigues2 (@var{src}, @var{dst}, @var{jacobian} = 0)\n\ -@var{src} is of type CvMat. @var{dst} is of type CvMat. @var{jacobian} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvNormalizeHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvNormalizeHist (@var{hist}, @var{factor})\n\ -@var{hist} is of type CvHistogram. @var{factor} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvEqualizeHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvEqualizeHist (@var{src}, @var{dst})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvClone_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvClone (@var{struct_ptr})\n\ -@var{struct_ptr} is of type void. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_new_CvHaarClassifier_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvHaarClassifier::CvHaarClassifier ()\n\ -@var{retval} is of type CvHaarClassifier. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHaarClassifier_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHaarClassifier::~CvHaarClassifier (@var{self})\n\ -@var{self} is of type CvHaarClassifier. \n\ -@end deftypefn"; -const char* _wrap_new_CvHaarStageClassifier_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvHaarStageClassifier::CvHaarStageClassifier ()\n\ -@var{retval} is of type CvHaarStageClassifier. \n\ -@end deftypefn"; -const char* _wrap_delete_CvHaarStageClassifier_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvHaarStageClassifier::~CvHaarStageClassifier (@var{self})\n\ -@var{self} is of type CvHaarStageClassifier. \n\ -@end deftypefn"; -const char* _wrap_cvMinAreaRect2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMinAreaRect2 (@var{points}, @var{storage} = nil)\n\ -@var{points} is of type CvArr. @var{storage} is of type CvMemStorage. @var{retval} is of type CvBox2D. \n\ -@end deftypefn"; -const char* _wrap_cvStartAppendToSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartAppendToSeq (@var{seq}, @var{writer})\n\ -@var{seq} is of type CvSeq. @var{writer} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_REAL_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_REAL (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_reserve_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} reserve (@var{self}, @var{n})\n\ -@var{self} is of type FloatVector. @var{n} is of type size_type. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_reserve_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} reserve (@var{self}, @var{n})\n\ -@var{self} is of type CvPointVector. @var{n} is of type size_type. \n\ -@end deftypefn"; -const char* _wrap_cvCompareHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCompareHist (@var{hist1}, @var{hist2}, @var{method})\n\ -@var{hist1} is of type CvHistogram. @var{hist2} is of type CvHistogram. @var{method} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvMerge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMerge (@var{src0}, @var{src1}, @var{src2}, @var{src3}, @var{dst})\n\ -@var{src0} is of type CvArr. @var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{src3} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_value_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = value (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type octave_value. \n\ -@end deftypefn"; -const char* _wrap_cvGetDims_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetDims (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector___paren___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren__ (@var{self}, @var{i})\n\ -@var{self} is of type CvPointVector. @var{i} is of type difference_type. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector___paren___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __paren__ (@var{self}, @var{i})\n\ -@var{self} is of type FloatVector. @var{i} is of type difference_type. @var{retval} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_cvInitIntrinsicParams2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInitIntrinsicParams2D (@var{object_points}, @var{image_points}, @var{npoints}, @var{image_size}, @var{camera_matrix}, @var{aspect_ratio} = 1.)\n\ -@var{object_points} is of type CvMat. @var{image_points} is of type CvMat. @var{npoints} is of type CvMat. @var{image_size} is of type CvSize. @var{camera_matrix} is of type CvMat. @var{aspect_ratio} is of type double. \n\ -@end deftypefn"; -const char* _wrap_IplImage___xor___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator ^ (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type CvScalar. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___xor___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator ^ (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type CvScalar. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvReadString_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadString (@var{node}, @var{default_value} = nil)\n\ -@var{node} is of type CvFileNode. @var{default_value} is of type char. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_delete_CvString_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvString::~CvString (@var{self})\n\ -@var{self} is of type CvString. \n\ -@end deftypefn"; -const char* _wrap_new_CvString_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvString::CvString ()\n\ -@var{retval} is of type CvString. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_assign_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} assign (@var{self}, @var{n}, @var{x})\n\ -@var{self} is of type CvPointVector. @var{n} is of type size_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_assign_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} assign (@var{self}, @var{n}, @var{x})\n\ -@var{self} is of type FloatVector. @var{n} is of type size_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_new_CvPoint3D64f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvPoint3D64f::CvPoint3D64f ()\n\ -@var{retval} is of type CvPoint3D64f. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPoint3D64f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvPoint3D64f::~CvPoint3D64f (@var{self})\n\ -@var{self} is of type CvPoint3D64f. \n\ -@end deftypefn"; -const char* _wrap_cvPoint3D64f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPoint3D64f (@var{x}, @var{y}, @var{z})\n\ -@var{x} is of type double. @var{y} is of type double. @var{z} is of type double. @var{retval} is of type CvPoint3D64f. \n\ -@end deftypefn"; -const char* _wrap_cvGetTickCount_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetTickCount ()\n\ -@var{retval} is of type int64. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DSymEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DSymEdge (@var{edge})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{retval} is of type CvSubdiv2DEdge. \n\ -@end deftypefn"; -const char* _wrap_cvPerspectiveTransform_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvPerspectiveTransform (@var{src}, @var{dst}, @var{mat})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{mat} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvTransform_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvTransform (@var{src}, @var{dst}, @var{transmat}, @var{shiftvec} = nil)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{transmat} is of type CvMat. @var{shiftvec} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_IplImage___ne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator != (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvSubdiv2DEdge_Wrapper___ne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator != (@var{self}, @var{x})\n\ -@var{self} is of type CvSubdiv2DEdge_Wrapper. @var{x} is of type CvSubdiv2DEdge_Wrapper. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvRNG_Wrapper___ne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator != (@var{self}, @var{x})\n\ -@var{self} is of type CvRNG_Wrapper. @var{x} is of type CvRNG_Wrapper. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator___ne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator != (@var{self}, @var{x})\n\ -@var{self} is of type OctSwigIterator. @var{x} is of type OctSwigIterator. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvMat___ne___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator != (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvGetAffineTransform_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetAffineTransform (@var{src}, @var{dst}, @var{map_matrix})\n\ -@var{src} is of type CvPoint2D32f. @var{dst} is of type CvPoint2D32f. @var{map_matrix} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvGetPerspectiveTransform_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetPerspectiveTransform (@var{src}, @var{dst}, @var{map_matrix})\n\ -@var{src} is of type CvPoint2D32f. @var{dst} is of type CvPoint2D32f. @var{map_matrix} is of type CvMat. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvEstimateRigidTransform_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvEstimateRigidTransform (@var{A}, @var{B}, @var{M}, @var{full_affine})\n\ -@var{A} is of type CvArr. @var{B} is of type CvArr. @var{M} is of type CvMat. @var{full_affine} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDistTransform_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDistTransform (@var{src}, @var{dst}, @var{distance_type} = 2, @var{mask_size} = 3, @var{mask} = nil, @var{labels} = nil)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{distance_type} is of type int. @var{mask_size} is of type int. @var{mask} is of type float. @var{labels} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DLocate_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DLocate (@var{subdiv}, @var{pt}, @var{edge})\n\ -@var{subdiv} is of type CvSubdiv2D. @var{pt} is of type CvPoint2D32f. @var{edge} is of type CvSubdiv2DEdge. @var{retval} is of type CvSubdiv2DPointLocation. \n\ -@end deftypefn"; -const char* _wrap_cvLine_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLine (@var{img}, @var{pt1}, @var{pt2}, @var{color}, @var{thickness} = 1, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{pt1} is of type CvPoint. @var{pt2} is of type CvPoint. @var{color} is of type CvScalar. @var{thickness} is of type int. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_release_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} release (@var{self})\n\ -@var{self} is of type CvMatrix. \n\ -@end deftypefn"; -const char* _wrap_CvImage_release_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} release (@var{self})\n\ -@var{self} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_cvRelease_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRelease (@var{struct_ptr})\n\ -@var{struct_ptr} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvGetMinMaxHistValue_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetMinMaxHistValue (@var{hist}, @var{min_value}, @var{max_value}, @var{min_idx} = nil, @var{max_idx} = nil)\n\ -@var{hist} is of type CvHistogram. @var{min_value} is of type float. @var{max_value} is of type float. @var{min_idx} is of type int. @var{max_idx} is of type int. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_insert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} insert (@var{self}, @var{pos}, @var{n}, @var{x})\n\ -@var{self} is of type FloatVector. @var{pos} is of type iterator. @var{n} is of type size_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_insert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} insert (@var{self}, @var{pos}, @var{n}, @var{x})\n\ -@var{self} is of type CvPointVector. @var{pos} is of type iterator. @var{n} is of type size_type. @var{x} is of type value_type. \n\ -@end deftypefn"; -const char* _wrap_cvSubdivDelaunay2DInsert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdivDelaunay2DInsert (@var{subdiv}, @var{pt})\n\ -@var{subdiv} is of type CvSubdiv2D. @var{pt} is of type CvPoint2D32f. @var{retval} is of type CvSubdiv2DPoint. \n\ -@end deftypefn"; -const char* _wrap_cvEllipse2Poly_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvEllipse2Poly (@var{center}, @var{axes}, @var{angle}, @var{arc_start}, @var{arc_end}, @var{pts}, @var{delta})\n\ -@var{center} is of type CvPoint. @var{axes} is of type CvSize. @var{angle} is of type int. @var{arc_start} is of type int. @var{arc_end} is of type int. @var{pts} is of type CvPoint. @var{delta} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_CHAIN_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_CHAIN (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_IMAGE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_IMAGE (@var{img})\n\ -@var{img} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvTypeInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypeInfo::~CvTypeInfo (@var{self})\n\ -@var{self} is of type CvTypeInfo. \n\ -@end deftypefn"; -const char* _wrap_new_CvTypeInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypeInfo::CvTypeInfo ()\n\ -@var{retval} is of type CvTypeInfo. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DEdgeOrg_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DEdgeOrg (@var{edge})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{retval} is of type CvSubdiv2DPoint. \n\ -@end deftypefn"; -const char* _wrap_delete_CvFont_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvFont::~CvFont (@var{self})\n\ -@var{self} is of type CvFont. \n\ -@end deftypefn"; -const char* _wrap_new_CvFont_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvFont::CvFont ()\n\ -@var{retval} is of type CvFont. \n\ -@end deftypefn"; -const char* _wrap_new_CvSubdiv2DPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSubdiv2DPoint::CvSubdiv2DPoint ()\n\ -@var{retval} is of type CvSubdiv2DPoint. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSubdiv2DPoint_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSubdiv2DPoint::~CvSubdiv2DPoint (@var{self})\n\ -@var{self} is of type CvSubdiv2DPoint. \n\ -@end deftypefn"; -const char* _wrap_cvLSHAdd_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvLSHAdd (@var{lsh}, @var{data}, @var{indices} = 0)\n\ -@var{lsh} is of type CvLSH. @var{data} is of type CvMat. @var{indices} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvAddWeighted_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAddWeighted (@var{src1}, @var{alpha}, @var{src2}, @var{beta}, @var{gamma}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{alpha} is of type double. @var{src2} is of type CvArr. @var{beta} is of type double. @var{gamma} is of type double. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvGetModuleInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetModuleInfo (@var{module_name}, @var{version}, @var{loaded_addon_plugins})\n\ -@var{module_name} is of type char. @var{version} is of type char. @var{loaded_addon_plugins} is of type char. \n\ -@end deftypefn"; -const char* _wrap_delete_CvModuleInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvModuleInfo::~CvModuleInfo (@var{self})\n\ -@var{self} is of type CvModuleInfo. \n\ -@end deftypefn"; -const char* _wrap_new_CvModuleInfo_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvModuleInfo::CvModuleInfo ()\n\ -@var{retval} is of type CvModuleInfo. \n\ -@end deftypefn"; -const char* _wrap_cvCalcProbDensity_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcProbDensity (@var{hist1}, @var{hist2}, @var{dst_hist}, @var{scale} = 255)\n\ -@var{hist1} is of type CvHistogram. @var{hist2} is of type CvHistogram. @var{dst_hist} is of type CvHistogram. @var{scale} is of type double. \n\ -@end deftypefn"; -const char* _wrap_delete_CvChain_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvChain::~CvChain (@var{self})\n\ -@var{self} is of type CvChain. \n\ -@end deftypefn"; -const char* _wrap_new_CvChain_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvChain::CvChain ()\n\ -@var{retval} is of type CvChain. \n\ -@end deftypefn"; -const char* _wrap_delete_CvImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvImage (@var{self})\n\ -@var{self} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_new_CvImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvImage (@var{fs}, @var{seqname}, @var{idx})\n\ -@var{fs} is of type CvFileStorage. @var{seqname} is of type char. @var{idx} is of type int. @var{retval} is of type CvImage. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvSeq. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvFree__texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFree_ (@var{ptr})\n\ -@var{ptr} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvIsNaN_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvIsNaN (@var{value})\n\ -@var{value} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvColorToScalar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvColorToScalar (@var{packed_color}, @var{arrtype})\n\ -@var{packed_color} is of type double. @var{arrtype} is of type int. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvRawDataToScalar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRawDataToScalar (@var{data}, @var{type}, @var{scalar})\n\ -@var{data} is of type void. @var{type} is of type int. @var{scalar} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_step_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = step (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDilate_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDilate (@var{src}, @var{dst}, @var{element} = nil, @var{iterations} = 1)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{element} is of type . @var{iterations} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSeqBlock_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCreateSeqBlock (@var{writer})\n\ -@var{writer} is of type CvSeqWriter. \n\ -@end deftypefn"; -const char* _wrap_cvChangeSeqBlock_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvChangeSeqBlock (@var{reader}, @var{direction})\n\ -@var{reader} is of type void. @var{direction} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeqBlock_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSeqBlock::CvSeqBlock ()\n\ -@var{retval} is of type CvSeqBlock. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeqBlock_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSeqBlock::~CvSeqBlock (@var{self})\n\ -@var{self} is of type CvSeqBlock. \n\ -@end deftypefn"; -const char* _wrap_cvMulSpectrums_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMulSpectrums (@var{src1}, @var{src2}, @var{dst}, @var{flags})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___mul___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator * (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___mul___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator * (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvRunningAvg_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRunningAvg (@var{image}, @var{acc}, @var{alpha}, @var{mask} = nil)\n\ -@var{image} is of type CvArr. @var{acc} is of type CvArr. @var{alpha} is of type double. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_delete_CvLSH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvLSH (@var{self})\n\ -@var{self} is of type CvLSH. \n\ -@end deftypefn"; -const char* _wrap_new_CvMemBlock_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMemBlock::CvMemBlock ()\n\ -@var{retval} is of type CvMemBlock. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMemBlock_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMemBlock::~CvMemBlock (@var{self})\n\ -@var{self} is of type CvMemBlock. \n\ -@end deftypefn"; -const char* _wrap_cvSplit_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSplit (@var{src}, @var{dst0}, @var{dst1}, @var{dst2}, @var{dst3})\n\ -@var{src} is of type CvArr. @var{dst0} is of type CvArr. @var{dst1} is of type CvArr. @var{dst2} is of type CvArr. @var{dst3} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_GRAPH_ORIENTED_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_GRAPH_ORIENTED (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPointFrom32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPointFrom32f (@var{point})\n\ -@var{point} is of type CvPoint2D32f. @var{retval} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_cvConvexHull2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvConvexHull2_Shadow (@var{points})\n\ -@var{points} is of type CvArr. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvCalcBayesianProb_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcBayesianProb (@var{src}, @var{number}, @var{dst})\n\ -@var{src} is of type CvHistogram. @var{number} is of type int. @var{dst} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_cvSeqRemoveSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqRemoveSlice (@var{seq}, @var{slice})\n\ -@var{seq} is of type CvSeq. @var{slice} is of type CvSlice. \n\ -@end deftypefn"; -const char* _wrap_new_CvMatND_dim_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvMatND_dim::CvMatND_dim ()\n\ -@var{retval} is of type CvMatND_dim. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMatND_dim_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMatND_dim::~CvMatND_dim (@var{self})\n\ -@var{self} is of type CvMatND_dim. \n\ -@end deftypefn"; -const char* _wrap_cvCreateLSH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateLSH (@var{ops}, @var{d}, @var{L} = 10, @var{k} = 10, @var{type} = (((6) &((1 << 3) -1)) +(((1) -1) << 3)), @var{r} = 4, @var{seed} = -1)\n\ -@var{ops} is of type CvLSHOperations. @var{d} is of type int. @var{L} is of type int. @var{k} is of type int. @var{type} is of type int. @var{r} is of type double. @var{seed} is of type int64. @var{retval} is of type CvLSH. \n\ -@end deftypefn"; -const char* _wrap_CvImage_width_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = width (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IABS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IABS (@var{a})\n\ -@var{a} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReadRawDataSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReadRawDataSlice (@var{fs}, @var{reader}, @var{count}, @var{dst}, @var{dt})\n\ -@var{fs} is of type CvFileStorage. @var{reader} is of type CvSeqReader. @var{count} is of type int. @var{dst} is of type void. @var{dt} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvErrorStr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvErrorStr (@var{status})\n\ -@var{status} is of type int. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_decr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = decr (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_cvCalcPGH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCalcPGH (@var{contour}, @var{hist})\n\ -@var{contour} is of type CvSeq. @var{hist} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_CV_IMAX_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IMAX (@var{a}, @var{b})\n\ -@var{a} is of type int. @var{b} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvMinS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMinS (@var{src}, @var{value}, @var{dst})\n\ -@var{src} is of type CvArr. @var{value} is of type double. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvNextNArraySlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvNextNArraySlice (@var{array_iterator})\n\ -@var{array_iterator} is of type CvNArrayIterator. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFont_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFont (@var{scale}, @var{thickness} = 1)\n\ -@var{scale} is of type double. @var{thickness} is of type int. @var{retval} is of type CvFont. \n\ -@end deftypefn"; -const char* _wrap_cvTreeToNodeSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvTreeToNodeSeq (@var{first}, @var{header_size}, @var{storage})\n\ -@var{first} is of type void. @var{header_size} is of type int. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvSetRemoveByPtr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetRemoveByPtr (@var{set_header}, @var{elem})\n\ -@var{set_header} is of type CvSet. @var{elem} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvSetNumThreads_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetNumThreads (@var{threads} = 0)\n\ -@var{threads} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetNumThreads_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetNumThreads ()\n\ -@var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_Cv64suf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} Cv64suf::~Cv64suf (@var{self})\n\ -@var{self} is of type Cv64suf. \n\ -@end deftypefn"; -const char* _wrap_new_Cv64suf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Cv64suf::Cv64suf ()\n\ -@var{retval} is of type Cv64suf. \n\ -@end deftypefn"; -const char* _wrap_new_CvStereoBMState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvStereoBMState::CvStereoBMState ()\n\ -@var{retval} is of type CvStereoBMState. \n\ -@end deftypefn"; -const char* _wrap_delete_CvStereoBMState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvStereoBMState::~CvStereoBMState (@var{self})\n\ -@var{self} is of type CvStereoBMState. \n\ -@end deftypefn"; -const char* _wrap_cvCreateStereoBMState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateStereoBMState (@var{preset} = 0, @var{numberOfDisparities} = 0)\n\ -@var{preset} is of type int. @var{numberOfDisparities} is of type int. @var{retval} is of type CvStereoBMState. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseStereoBMState_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseStereoBMState (@var{state})\n\ -@var{state} is of type CvStereoBMState. \n\ -@end deftypefn"; -const char* _wrap_cvSeqSlice_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSeqSlice (@var{seq}, @var{slice}, @var{storage} = nil, @var{copy_data} = 0)\n\ -@var{seq} is of type CvSeq. @var{slice} is of type CvSlice. @var{storage} is of type CvMemStorage. @var{copy_data} is of type int. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_new_CvScalar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvScalar::CvScalar ()\n\ -@var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_delete_CvScalar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvScalar::~CvScalar (@var{self})\n\ -@var{self} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvScalar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvScalar (@var{val0})\n\ -@var{val0} is of type double. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvRealScalar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRealScalar (@var{val0})\n\ -@var{val0} is of type double. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvErode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvErode (@var{src}, @var{dst}, @var{element} = nil, @var{iterations} = 1)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{element} is of type . @var{iterations} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___radd___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __radd__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___radd___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __radd__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvBox2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvBox2D::CvBox2D ()\n\ -@var{retval} is of type CvBox2D. \n\ -@end deftypefn"; -const char* _wrap_delete_CvBox2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvBox2D::~CvBox2D (@var{self})\n\ -@var{self} is of type CvBox2D. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MATND_HDR_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MATND_HDR (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRemoveNodeFromTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvRemoveNodeFromTree (@var{node}, @var{frame})\n\ -@var{node} is of type void. @var{frame} is of type void. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SEQ_CURVE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SEQ_CURVE (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvProjectPoints2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvProjectPoints2 (@var{object_points}, @var{rotation_vector}, @var{translation_vector}, @var{camera_matrix}, @var{distortion_coeffs}, @var{image_points}, @var{dpdrot} = nil, @var{dpdt} = nil, @var{dpdf} = nil, @var{dpdc} = nil, @var{dpddist} = nil, @var{aspect_ratio} = 0)\n\ -@var{object_points} is of type CvMat. @var{rotation_vector} is of type CvMat. @var{translation_vector} is of type CvMat. @var{camera_matrix} is of type CvMat. @var{distortion_coeffs} is of type CvMat. @var{image_points} is of type CvMat. @var{dpdrot} is of type CvMat. @var{dpdt} is of type CvMat. @var{dpdf} is of type CvMat. @var{dpdc} is of type CvMat. @var{dpddist} is of type CvMat. @var{aspect_ratio} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvSetIdentity_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetIdentity (@var{mat}, @var{value} = cvRealScalar(1))\n\ -@var{mat} is of type CvArr. @var{value} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvCmp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCmp (@var{src1}, @var{src2}, @var{dst}, @var{cmp_op})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. @var{cmp_op} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWriteFileNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWriteFileNode (@var{fs}, @var{new_node_name}, @var{node}, @var{embed})\n\ -@var{fs} is of type CvFileStorage. @var{new_node_name} is of type char. @var{node} is of type CvFileNode. @var{embed} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetFileNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetFileNode (@var{fs}, @var{map}, @var{key}, @var{create_missing} = 0)\n\ -@var{fs} is of type CvFileStorage. @var{map} is of type CvFileNode. @var{key} is of type CvStringHashNode. @var{create_missing} is of type int. @var{retval} is of type CvFileNode. \n\ -@end deftypefn"; -const char* _wrap_cvGetRootFileNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetRootFileNode (@var{fs}, @var{stream_index} = 0)\n\ -@var{fs} is of type CvFileStorage. @var{stream_index} is of type int. @var{retval} is of type CvFileNode. \n\ -@end deftypefn"; -const char* _wrap_delete_CvFileNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvFileNode::~CvFileNode (@var{self})\n\ -@var{self} is of type CvFileNode. \n\ -@end deftypefn"; -const char* _wrap_new_CvFileNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvFileNode::CvFileNode ()\n\ -@var{retval} is of type CvFileNode. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator___incr___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator ++ (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_TYPE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_TYPE (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvQuadEdge2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvQuadEdge2D::CvQuadEdge2D ()\n\ -@var{retval} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_delete_CvQuadEdge2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvQuadEdge2D::~CvQuadEdge2D (@var{self})\n\ -@var{self} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvQuadEdge2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvQuadEdge2D)>::CvTypedSeq<(CvQuadEdge2D)> ()\n\ -@var{retval} is of type CvSeq_CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvQuadEdge2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvQuadEdge2D)>::~CvTypedSeq<(CvQuadEdge2D)> (@var{self})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_cvFree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFree (@var{ptr})\n\ -@var{ptr} is of type void. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_set_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} set (@var{self}, @var{m}, @var{add_ref})\n\ -@var{self} is of type CvMatrix. @var{m} is of type CvMat. @var{add_ref} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq_cast_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(p.CvSeq)>::cast (@var{seq})\n\ -@var{seq} is of type CvSeq. @var{retval} is of type CvSeq_CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvCheckTermCriteria_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCheckTermCriteria (@var{criteria}, @var{default_eps}, @var{default_max_iters})\n\ -@var{criteria} is of type CvTermCriteria. @var{default_eps} is of type double. @var{default_max_iters} is of type int. @var{retval} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_new_CvTermCriteria_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTermCriteria::CvTermCriteria ()\n\ -@var{retval} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_delete_CvTermCriteria_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTermCriteria::~CvTermCriteria (@var{self})\n\ -@var{self} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_cvTermCriteria_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvTermCriteria (@var{type}, @var{max_iter}, @var{epsilon})\n\ -@var{type} is of type int. @var{max_iter} is of type int. @var{epsilon} is of type double. @var{retval} is of type CvTermCriteria. \n\ -@end deftypefn"; -const char* _wrap_CvScalar___getitem___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __getitem__ (@var{self}, @var{index})\n\ -@var{self} is of type CvScalar. @var{index} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CvScalar___setitem___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __setitem__ (@var{self}, @var{index}, @var{value})\n\ -@var{self} is of type CvScalar. @var{index} is of type int. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvMeanShift_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMeanShift (@var{prob_image}, @var{window}, @var{criteria}, @var{comp})\n\ -@var{prob_image} is of type CvArr. @var{window} is of type CvRect. @var{criteria} is of type CvTermCriteria. @var{comp} is of type CvConnectedComp. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreatePOSITObject_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreatePOSITObject (@var{points}, @var{point_count})\n\ -@var{points} is of type CvPoint3D32f. @var{point_count} is of type int. @var{retval} is of type CvPOSITObject. \n\ -@end deftypefn"; -const char* _wrap_cvReleasePOSITObject_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleasePOSITObject (@var{posit_object})\n\ -@var{posit_object} is of type CvPOSITObject. \n\ -@end deftypefn"; -const char* _wrap_cvRedirectError_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRedirectError (@var{error_handler}, @var{userdata} = nil, @var{prev_userdata} = nil)\n\ -@var{error_handler} is of type CvErrorCallback. @var{userdata} is of type void. @var{prev_userdata} is of type void. @var{retval} is of type CvErrorCallback. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_asCvMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator CvMat* (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvSetData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetData (@var{arr}, @var{data}, @var{step})\n\ -@var{arr} is of type CvArr. @var{data} is of type void. @var{step} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPointVector_rbegin_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = rbegin (@var{self})\n\ -@var{self} is of type CvPointVector. @var{retval} is of type const_reverse_iterator. \n\ -@end deftypefn"; -const char* _wrap_FloatVector_rbegin_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = rbegin (@var{self})\n\ -@var{self} is of type FloatVector. @var{retval} is of type const_reverse_iterator. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_type_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = type (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvInitSubdivDelaunay2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInitSubdivDelaunay2D (@var{subdiv}, @var{rect})\n\ -@var{subdiv} is of type CvSubdiv2D. @var{rect} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvCreateSubdivDelaunay2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateSubdivDelaunay2D (@var{rect}, @var{storage})\n\ -@var{rect} is of type CvRect. @var{storage} is of type CvMemStorage. @var{retval} is of type CvSubdiv2D. \n\ -@end deftypefn"; -const char* _wrap_cvGetMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetMat (@var{arr}, @var{header}, @var{coi} = nil, @var{allowND} = 0)\n\ -@var{arr} is of type CvArr. @var{header} is of type CvMat. @var{coi} is of type int. @var{allowND} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvFillConvexPoly_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvFillConvexPoly (@var{img}, @var{pts}, @var{npts}, @var{color}, @var{line_type} = 8, @var{shift} = 0)\n\ -@var{img} is of type CvArr. @var{pts} is of type CvPoint. @var{npts} is of type int. @var{color} is of type CvScalar. @var{line_type} is of type int. @var{shift} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphVtxDegreeByPtr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphVtxDegreeByPtr (@var{graph}, @var{vtx})\n\ -@var{graph} is of type CvGraph. @var{vtx} is of type CvGraphVtx. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvFindGraphEdgeByPtr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindGraphEdgeByPtr (@var{graph}, @var{start_vtx}, @var{end_vtx})\n\ -@var{graph} is of type CvGraph. @var{start_vtx} is of type CvGraphVtx. @var{end_vtx} is of type CvGraphVtx. @var{retval} is of type CvGraphEdge. \n\ -@end deftypefn"; -const char* _wrap_cvGraphRemoveEdgeByPtr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGraphRemoveEdgeByPtr (@var{graph}, @var{start_vtx}, @var{end_vtx})\n\ -@var{graph} is of type CvGraph. @var{start_vtx} is of type CvGraphVtx. @var{end_vtx} is of type CvGraphVtx. \n\ -@end deftypefn"; -const char* _wrap_cvGraphAddEdgeByPtr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphAddEdgeByPtr (@var{graph}, @var{start_vtx}, @var{end_vtx}, @var{edge} = nil, @var{inserted_edge} = nil)\n\ -@var{graph} is of type CvGraph. @var{start_vtx} is of type CvGraphVtx. @var{end_vtx} is of type CvGraphVtx. @var{edge} is of type CvGraphEdge. @var{inserted_edge} is of type CvGraphEdge. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetSetElem_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetSetElem (@var{set_header}, @var{index})\n\ -@var{set_header} is of type CvSet. @var{index} is of type int. @var{retval} is of type CvSetElem. \n\ -@end deftypefn"; -const char* _wrap_new_CvSetElem_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSetElem::CvSetElem ()\n\ -@var{retval} is of type CvSetElem. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSetElem_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSetElem::~CvSetElem (@var{self})\n\ -@var{self} is of type CvSetElem. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_save_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} save (@var{self}, @var{filename}, @var{matname})\n\ -@var{self} is of type CvMatrix. @var{filename} is of type char. @var{matname} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvCreatePyramid_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreatePyramid (@var{img}, @var{extra_layers}, @var{rate}, @var{layer_sizes} = 0, @var{bufarr} = 0, @var{calc} = 1, @var{filter} = CV_GAUSSIAN_5x5)\n\ -@var{img} is of type CvArr. @var{extra_layers} is of type int. @var{rate} is of type double. @var{layer_sizes} is of type CvSize. @var{bufarr} is of type CvArr. @var{calc} is of type int. @var{filter} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvReleasePyramid_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleasePyramid (@var{pyramid}, @var{extra_layers})\n\ -@var{pyramid} is of type CvMat. @var{extra_layers} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetAdd_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSetAdd (@var{set_header}, @var{elem} = nil, @var{inserted_elem} = nil)\n\ -@var{set_header} is of type CvSet. @var{elem} is of type CvSetElem. @var{inserted_elem} is of type CvSetElem. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___lt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator < (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___lt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator < (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvGetElemType_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetElemType (@var{arr})\n\ -@var{arr} is of type CvArr. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvIntegral_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvIntegral (@var{image}, @var{sum}, @var{sqsum} = nil, @var{tilted_sum} = nil)\n\ -@var{image} is of type CvArr. @var{sum} is of type CvArr. @var{sqsum} is of type CvArr. @var{tilted_sum} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvReprojectImageTo3D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReprojectImageTo3D (@var{disparityImage}, @var{_3dImage}, @var{Q}, @var{handleMissingValues} = 0)\n\ -@var{disparityImage} is of type CvArr. @var{_3dImage} is of type CvArr. @var{Q} is of type CvMat. @var{handleMissingValues} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvErrorFromIppStatus_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvErrorFromIppStatus (@var{ipp_status})\n\ -@var{ipp_status} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetErrStatus_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetErrStatus (@var{status})\n\ -@var{status} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetErrStatus_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetErrStatus ()\n\ -@var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvPoint___str___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __str__ (@var{self})\n\ -@var{self} is of type CvPoint. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_CvPoint2D32f___str___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __str__ (@var{self})\n\ -@var{self} is of type CvPoint2D32f. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_CvScalar___str___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __str__ (@var{self})\n\ -@var{self} is of type CvScalar. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvGetTextSize_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetTextSize (@var{text_string}, @var{font}, @var{text_size})\n\ -@var{text_string} is of type char. @var{font} is of type CvFont. @var{text_size} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_cvRead_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRead (@var{fs}, @var{node}, @var{attributes} = nil)\n\ -@var{fs} is of type CvFileStorage. @var{node} is of type CvFileNode. @var{attributes} is of type CvAttrList. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvReadStringByName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadStringByName (@var{fs}, @var{map}, @var{name}, @var{default_value} = nil)\n\ -@var{fs} is of type CvFileStorage. @var{map} is of type CvFileNode. @var{name} is of type char. @var{default_value} is of type char. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvGetFileNodeByName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetFileNodeByName (@var{fs}, @var{map}, @var{name})\n\ -@var{fs} is of type CvFileStorage. @var{map} is of type CvFileNode. @var{name} is of type char. @var{retval} is of type CvFileNode. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DGetEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DGetEdge (@var{edge}, @var{type})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{type} is of type CvNextEdgeType. @var{retval} is of type CvSubdiv2DEdge. \n\ -@end deftypefn"; -const char* _wrap_delete_CvMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvMat (@var{self})\n\ -@var{self} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvRect::CvRect ()\n\ -@var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_delete_CvRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvRect::~CvRect (@var{self})\n\ -@var{self} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvCalcEMD2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCalcEMD2 (@var{signature1}, @var{signature2}, @var{distance_type}, @var{distance_func} = nil, @var{cost_matrix} = nil, @var{flow} = nil, @var{lower_bound} = nil, @var{userdata} = nil)\n\ -@var{signature1} is of type CvArr. @var{signature2} is of type CvArr. @var{distance_type} is of type int. @var{distance_func} is of type CvDistanceFunction. @var{cost_matrix} is of type CvArr. @var{flow} is of type CvArr. @var{lower_bound} is of type float. @var{userdata} is of type void. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_cvPointPolygonTest_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPointPolygonTest (@var{contour}, @var{pt}, @var{measure_dist})\n\ -@var{contour} is of type CvArr. @var{pt} is of type CvPoint2D32f. @var{measure_dist} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvRect)>::CvTypedSeq<(CvRect)> ()\n\ -@var{retval} is of type CvSeq_CvRect. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvRect)>::~CvTypedSeq<(CvRect)> (@var{self})\n\ -@var{self} is of type CvSeq_CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvAddS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvAddS (@var{src}, @var{value}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{value} is of type CvScalar. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCbrt_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCbrt (@var{value})\n\ -@var{value} is of type float. @var{retval} is of type float. \n\ -@end deftypefn"; -const char* _wrap_cvMatMulAdd_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMatMulAdd (@var{src1}, @var{src2}, @var{src3}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{src3} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CV_ELEM_SIZE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_ELEM_SIZE (@var{type})\n\ -@var{type} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSort_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSort (@var{src}, @var{dst} = nil, @var{idxmat} = nil, @var{flags} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{idxmat} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvFileNode_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvFileNode_data::~CvFileNode_data (@var{self})\n\ -@var{self} is of type CvFileNode_data. \n\ -@end deftypefn"; -const char* _wrap_new_CvFileNode_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvFileNode_data::CvFileNode_data ()\n\ -@var{retval} is of type CvFileNode_data. \n\ -@end deftypefn"; -const char* _wrap_delete_IplROI_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} IplROI::~IplROI (@var{self})\n\ -@var{self} is of type . \n\ -@end deftypefn"; -const char* _wrap_new_IplROI_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = IplROI::IplROI ()\n\ -@var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvCreateData_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCreateData (@var{arr})\n\ -@var{arr} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvCreateMat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateMat (@var{rows}, @var{cols}, @var{type})\n\ -@var{rows} is of type int. @var{cols} is of type int. @var{type} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvCreateMemoryLSH_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateMemoryLSH (@var{d}, @var{n}, @var{L} = 10, @var{k} = 10, @var{type} = (((6) &((1 << 3) -1)) +(((1) -1) << 3)), @var{r} = 4, @var{seed} = -1)\n\ -@var{d} is of type int. @var{n} is of type int. @var{L} is of type int. @var{k} is of type int. @var{type} is of type int. @var{r} is of type double. @var{seed} is of type int64. @var{retval} is of type CvLSH. \n\ -@end deftypefn"; -const char* _wrap_delete_CvContour_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvContour::~CvContour (@var{self})\n\ -@var{self} is of type CvContour. \n\ -@end deftypefn"; -const char* _wrap_new_CvContour_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvContour::CvContour ()\n\ -@var{retval} is of type CvContour. \n\ -@end deftypefn"; -const char* _wrap_cvFindNextContour_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindNextContour (@var{scanner})\n\ -@var{scanner} is of type CvContourScanner. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvSubstituteContour_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSubstituteContour (@var{scanner}, @var{new_contour})\n\ -@var{scanner} is of type CvContourScanner. @var{new_contour} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CV_NODE_IS_MAP_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_NODE_IS_MAP (@var{flags})\n\ -@var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_MAT_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_MAT (@var{mat})\n\ -@var{mat} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_32FC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_32FC (@var{n})\n\ -@var{n} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphGetVtxCount_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphGetVtxCount (@var{graph})\n\ -@var{graph} is of type CvGraph. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvPtr1D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPtr1D (@var{arr}, @var{idx0}, @var{type} = nil)\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{type} is of type int. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_CV_ARE_CNS_EQ_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_ARE_CNS_EQ (@var{mat1}, @var{mat2})\n\ -@var{mat1} is of type CvMat. @var{mat2} is of type CvMat. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCrossProduct_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCrossProduct (@var{src1}, @var{src2}, @var{dst})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvDotProduct_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvDotProduct (@var{src1}, @var{src2})\n\ -@var{src1} is of type CvArr. @var{src2} is of type CvArr. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvStartReadSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartReadSeq (@var{seq}, @var{reader}, @var{reverse} = 0)\n\ -@var{seq} is of type CvSeq. @var{reader} is of type CvSeqReader. @var{reverse} is of type int. \n\ -@end deftypefn"; -const char* _wrap_delete_CvStringHashNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvStringHashNode::~CvStringHashNode (@var{self})\n\ -@var{self} is of type CvStringHashNode. \n\ -@end deftypefn"; -const char* _wrap_new_CvStringHashNode_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvStringHashNode::CvStringHashNode ()\n\ -@var{retval} is of type CvStringHashNode. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_SPARSE_HIST_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_SPARSE_HIST (@var{hist})\n\ -@var{hist} is of type CvHistogram. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_IplImage___sub___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator - (@var{self}, @var{val})\n\ -@var{self} is of type . @var{val} is of type CvScalar. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator___sub___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator - (@var{self}, @var{x})\n\ -@var{self} is of type OctSwigIterator. @var{x} is of type OctSwigIterator. @var{retval} is of type ptrdiff_t. \n\ -@end deftypefn"; -const char* _wrap_CvMat___sub___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = operator - (@var{self}, @var{val})\n\ -@var{self} is of type CvMat. @var{val} is of type CvScalar. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvSeqInvert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSeqInvert (@var{seq})\n\ -@var{seq} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvGraphAddVtx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphAddVtx (@var{graph}, @var{vtx} = nil, @var{inserted_vtx} = nil)\n\ -@var{graph} is of type CvGraph. @var{vtx} is of type CvGraphVtx. @var{inserted_vtx} is of type CvGraphVtx. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRegisterModule_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRegisterModule (@var{module_info})\n\ -@var{module_info} is of type CvModuleInfo. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGraphEdgeIdx_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGraphEdgeIdx (@var{graph}, @var{edge})\n\ -@var{graph} is of type CvGraph. @var{edge} is of type CvGraphEdge. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvModule_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvModule (@var{_info})\n\ -@var{_info} is of type CvModuleInfo. @var{retval} is of type CvModule. \n\ -@end deftypefn"; -const char* _wrap_delete_CvModule_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvModule (@var{self})\n\ -@var{self} is of type CvModule. \n\ -@end deftypefn"; -const char* _wrap_IplImage___pow___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __pow__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvMat___pow___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __pow__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvTriangulatePoints_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvTriangulatePoints (@var{projMatr1}, @var{projMatr2}, @var{projPoints1}, @var{projPoints2}, @var{points4D})\n\ -@var{projMatr1} is of type CvMat. @var{projMatr2} is of type CvMat. @var{projPoints1} is of type CvMat. @var{projPoints2} is of type CvMat. @var{points4D} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvMahalanobis_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvMahalanobis (@var{vec1}, @var{vec2}, @var{mat})\n\ -@var{vec1} is of type CvArr. @var{vec2} is of type CvArr. @var{mat} is of type CvArr. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseStructuringElement_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseStructuringElement (@var{element})\n\ -@var{element} is of type . \n\ -@end deftypefn"; -const char* _wrap_delete_CvSubdiv2DEdge_Wrapper_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSubdiv2DEdge_Wrapper::~CvSubdiv2DEdge_Wrapper (@var{self})\n\ -@var{self} is of type CvSubdiv2DEdge_Wrapper. \n\ -@end deftypefn"; -const char* _wrap_new_CvSubdiv2DEdge_Wrapper_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvSubdiv2DEdge_Wrapper (@var{val})\n\ -@var{val} is of type CvSubdiv2DEdge. @var{retval} is of type CvSubdiv2DEdge_Wrapper. \n\ -@end deftypefn"; -const char* _wrap_delete_CvRNG_Wrapper_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvRNG_Wrapper::~CvRNG_Wrapper (@var{self})\n\ -@var{self} is of type CvRNG_Wrapper. \n\ -@end deftypefn"; -const char* _wrap_new_CvRNG_Wrapper_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvRNG_Wrapper (@var{val})\n\ -@var{val} is of type CvRNG. @var{retval} is of type CvRNG_Wrapper. \n\ -@end deftypefn"; -const char* _wrap_cvCeil_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCeil (@var{value})\n\ -@var{value} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_distance_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = distance (@var{self}, @var{x})\n\ -@var{self} is of type OctSwigIterator. @var{x} is of type OctSwigIterator. @var{retval} is of type ptrdiff_t. \n\ -@end deftypefn"; -const char* _wrap_cvSubdiv2DRotateEdge_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSubdiv2DRotateEdge (@var{edge}, @var{rotate})\n\ -@var{edge} is of type CvSubdiv2DEdge. @var{rotate} is of type int. @var{retval} is of type CvSubdiv2DEdge. \n\ -@end deftypefn"; -const char* _wrap_cvPtr2D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPtr2D (@var{arr}, @var{idx0}, @var{idx1}, @var{type} = nil)\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{type} is of type int. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_cvBackProjectPCA_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvBackProjectPCA (@var{proj}, @var{mean}, @var{eigenvects}, @var{result})\n\ -@var{proj} is of type CvArr. @var{mean} is of type CvArr. @var{eigenvects} is of type CvArr. @var{result} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvProjectPCA_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvProjectPCA (@var{data}, @var{mean}, @var{eigenvects}, @var{result})\n\ -@var{data} is of type CvArr. @var{mean} is of type CvArr. @var{eigenvects} is of type CvArr. @var{result} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvReadByName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadByName (@var{fs}, @var{map}, @var{name}, @var{attributes} = nil)\n\ -@var{fs} is of type CvFileStorage. @var{map} is of type CvFileNode. @var{name} is of type char. @var{attributes} is of type CvAttrList. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvReadRealByName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadRealByName (@var{fs}, @var{map}, @var{name}, @var{default_value} = 0.)\n\ -@var{fs} is of type CvFileStorage. @var{map} is of type CvFileNode. @var{name} is of type char. @var{default_value} is of type double. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvReadIntByName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvReadIntByName (@var{fs}, @var{map}, @var{name}, @var{default_value} = 0)\n\ -@var{fs} is of type CvFileStorage. @var{map} is of type CvFileNode. @var{name} is of type char. @var{default_value} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRect (@var{x}, @var{y}, @var{width}, @var{height})\n\ -@var{x} is of type int. @var{y} is of type int. @var{width} is of type int. @var{height} is of type int. @var{retval} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_cvGetND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetND (@var{arr}, @var{idx})\n\ -@var{arr} is of type CvArr. @var{idx} is of type int. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvTrace_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvTrace (@var{mat})\n\ -@var{mat} is of type CvArr. @var{retval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvCompleteSymm_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCompleteSymm (@var{matrix}, @var{LtoR} = 0)\n\ -@var{matrix} is of type CvMat. @var{LtoR} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvLoad_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvLoad (@var{filename}, @var{memstorage} = nil, @var{name} = nil, @var{real_name} = nil)\n\ -@var{filename} is of type char. @var{memstorage} is of type CvMemStorage. @var{name} is of type char. @var{real_name} is of type char. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_IplImage___rgt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rgt__ (@var{self}, @var{arg})\n\ -@var{self} is of type . @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvMat___rgt___texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = __rgt__ (@var{self}, @var{arg})\n\ -@var{self} is of type CvMat. @var{arg} is of type double. @var{retval} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvImage_data_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = data (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_cols_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cols (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetRow_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetRow (@var{arr}, @var{submat}, @var{row})\n\ -@var{arr} is of type CvArr. @var{submat} is of type CvMat. @var{row} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D_pop_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pop (@var{self})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. @var{retval} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_UNIFORM_HIST_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_UNIFORM_HIST (@var{hist})\n\ -@var{hist} is of type CvHistogram. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_OctSwigIterator_incr_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = incr (@var{self})\n\ -@var{self} is of type OctSwigIterator. @var{retval} is of type OctSwigIterator. \n\ -@end deftypefn"; -const char* _wrap_cvPtr3D_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPtr3D (@var{arr}, @var{idx0}, @var{idx1}, @var{idx2}, @var{type} = nil)\n\ -@var{arr} is of type CvArr. @var{idx0} is of type int. @var{idx1} is of type int. @var{idx2} is of type int. @var{type} is of type int. @var{retval} is of type uchar. \n\ -@end deftypefn"; -const char* _wrap_new_CvPointVector_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = std::vector<(CvPoint)> (@var{size}, @var{value})\n\ -@var{size} is of type size_type. @var{value} is of type value_type. @var{retval} is of type CvPointVector. \n\ -@end deftypefn"; -const char* _wrap_delete_FloatVector_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} std::vector<(float)>::~vector<(float)> (@var{self})\n\ -@var{self} is of type FloatVector. \n\ -@end deftypefn"; -const char* _wrap_new_FloatVector_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = std::vector<(float)> (@var{size}, @var{value})\n\ -@var{size} is of type size_type. @var{value} is of type value_type. @var{retval} is of type FloatVector. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPointVector_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} std::vector<(CvPoint)>::~vector<(CvPoint)> (@var{self})\n\ -@var{self} is of type CvPointVector. \n\ -@end deftypefn"; -const char* _wrap_cvOrS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvOrS (@var{src}, @var{value}, @var{dst}, @var{mask} = nil)\n\ -@var{src} is of type CvArr. @var{value} is of type CvScalar. @var{dst} is of type CvArr. @var{mask} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvInsertNodeIntoTree_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInsertNodeIntoTree (@var{node}, @var{parent}, @var{frame})\n\ -@var{node} is of type void. @var{parent} is of type void. @var{frame} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvCornerEigenValsAndVecs_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvCornerEigenValsAndVecs (@var{image}, @var{eigenvv}, @var{block_size}, @var{aperture_size} = 3)\n\ -@var{image} is of type CvArr. @var{eigenvv} is of type CvArr. @var{block_size} is of type int. @var{aperture_size} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvUseOptimized_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvUseOptimized (@var{on_off})\n\ -@var{on_off} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CV_IS_STORAGE_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IS_STORAGE (@var{storage})\n\ -@var{storage} is of type CvMemStorage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_CvPoint_2___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvTuple_CvPoint_2. @var{i} is of type int. @var{obj} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_2___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvTuple_float_2. @var{i} is of type int. @var{obj} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvTuple_float_3___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvTuple_float_3. @var{i} is of type int. @var{obj} is of type float. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint. @var{i} is of type int. @var{obj} is of type CvPoint. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint2D32f___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. @var{i} is of type int. @var{obj} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvRect___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvRect. @var{i} is of type int. @var{obj} is of type CvRect. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvSeq___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvSeq. @var{i} is of type int. @var{obj} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvQuadEdge2D___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvQuadEdge2D. @var{i} is of type int. @var{obj} is of type CvQuadEdge2D. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvConnectedComp___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvConnectedComp. @var{i} is of type int. @var{obj} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_CvPoint_2___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_CvPoint_2. @var{i} is of type int. @var{obj} is of type CvTuple_CvPoint_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_2___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_float_2. @var{i} is of type int. @var{obj} is of type CvTuple_float_2. \n\ -@end deftypefn"; -const char* _wrap_CvSeq_float_3___brace_asgn_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} __brace_asgn (@var{self}, @var{i}, @var{obj})\n\ -@var{self} is of type CvSeq_float_3. @var{i} is of type int. @var{obj} is of type CvTuple_float_3. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseHist_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseHist (@var{hist})\n\ -@var{hist} is of type CvHistogram. \n\ -@end deftypefn"; -const char* _wrap_cvWarpPerspective_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvWarpPerspective (@var{src}, @var{dst}, @var{map_matrix}, @var{flags} = 1+8, @var{fillval} = cvScalarAll(0))\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{map_matrix} is of type CvMat. @var{flags} is of type int. @var{fillval} is of type CvScalar. \n\ -@end deftypefn"; -const char* _wrap_cvInvert_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInvert (@var{src}, @var{dst}, @var{method} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{method} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvMulTransposed_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMulTransposed (@var{src}, @var{dst}, @var{order}, @var{delta} = nil, @var{scale} = 1.)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{order} is of type int. @var{delta} is of type CvArr. @var{scale} is of type double. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_pix_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pix_size (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = size (@var{self})\n\ -@var{self} is of type CvMatrix. @var{retval} is of type CvSize. \n\ -@end deftypefn"; -const char* _wrap_CvImage_pix_size_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = pix_size (@var{self})\n\ -@var{self} is of type CvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvMatrix_show_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} show (@var{self}, @var{window_name})\n\ -@var{self} is of type CvMatrix. @var{window_name} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvIplDepth_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvIplDepth (@var{type})\n\ -@var{type} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_new_CvConnectedComp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvConnectedComp::CvConnectedComp ()\n\ -@var{retval} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_delete_CvConnectedComp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvConnectedComp::~CvConnectedComp (@var{self})\n\ -@var{self} is of type CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvConnectedComp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvConnectedComp)>::CvTypedSeq<(CvConnectedComp)> ()\n\ -@var{retval} is of type CvSeq_CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvConnectedComp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvConnectedComp)>::~CvTypedSeq<(CvConnectedComp)> (@var{self})\n\ -@var{self} is of type CvSeq_CvConnectedComp. \n\ -@end deftypefn"; -const char* _wrap_new_CvPoint2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvPoint2D32f::CvPoint2D32f ()\n\ -@var{retval} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_delete_CvPoint2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvPoint2D32f::~CvPoint2D32f (@var{self})\n\ -@var{self} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_cvPoint2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvPoint2D32f (@var{x}, @var{y})\n\ -@var{x} is of type double. @var{y} is of type double. @var{retval} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_cvSetRealND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetRealND (@var{arr}, @var{idx}, @var{value})\n\ -@var{arr} is of type CvArr. @var{idx} is of type int. @var{value} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvGetRealND_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetRealND (@var{arr}, @var{idx})\n\ -@var{arr} is of type CvArr. @var{idx} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvStartReadChainPoints_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvStartReadChainPoints (@var{chain}, @var{reader})\n\ -@var{chain} is of type CvChain. @var{reader} is of type CvChainPtReader. \n\ -@end deftypefn"; -const char* _wrap_cvFindDominantPoints_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvFindDominantPoints (@var{contour}, @var{storage}, @var{method} = 1, @var{parameter1} = 0, @var{parameter2} = 0, @var{parameter3} = 0, @var{parameter4} = 0)\n\ -@var{contour} is of type CvSeq. @var{storage} is of type CvMemStorage. @var{method} is of type int. @var{parameter1} is of type double. @var{parameter2} is of type double. @var{parameter3} is of type double. @var{parameter4} is of type double. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvBoxPoints_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvBoxPoints (@var{box}, @var{pt})\n\ -@var{box} is of type CvBox2D. @var{pt} is of type CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_cvGetStarKeypoints_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetStarKeypoints (@var{img}, @var{storage}, @var{params} = cvStarDetectorParams())\n\ -@var{img} is of type CvArr. @var{storage} is of type CvMemStorage. @var{params} is of type CvStarDetectorParams. @var{retval} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvUndistortPoints_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvUndistortPoints (@var{src}, @var{dst}, @var{camera_matrix}, @var{dist_coeffs}, @var{R} = 0, @var{P} = 0)\n\ -@var{src} is of type CvMat. @var{dst} is of type CvMat. @var{camera_matrix} is of type CvMat. @var{dist_coeffs} is of type CvMat. @var{R} is of type CvMat. @var{P} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvSeq_CvPoint2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvTypedSeq<(CvPoint2D32f)>::CvTypedSeq<(CvPoint2D32f)> ()\n\ -@var{retval} is of type CvSeq_CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSeq_CvPoint2D32f_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvTypedSeq<(CvPoint2D32f)>::~CvTypedSeq<(CvPoint2D32f)> (@var{self})\n\ -@var{self} is of type CvSeq_CvPoint2D32f. \n\ -@end deftypefn"; -const char* _wrap_CV_IMIN_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_IMIN (@var{a}, @var{b})\n\ -@var{a} is of type int. @var{b} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvClearSeq_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearSeq (@var{seq})\n\ -@var{seq} is of type CvSeq. \n\ -@end deftypefn"; -const char* _wrap_cvInRangeS_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvInRangeS (@var{src}, @var{lower}, @var{upper}, @var{dst})\n\ -@var{src} is of type CvArr. @var{lower} is of type CvScalar. @var{upper} is of type CvScalar. @var{dst} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_cvGetQuadrangleSubPix_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvGetQuadrangleSubPix (@var{src}, @var{dst}, @var{map_matrix})\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{map_matrix} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvClearSet_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvClearSet (@var{set_header})\n\ -@var{set_header} is of type CvSet. \n\ -@end deftypefn"; - -static octave_value_list _wrap_new_CvRNG_Wrapper (const octave_value_list& args, int nargout) { - CvRNG *arg1 = 0 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG_Wrapper *result = 0 ; - - if (!SWIG_check_num_args("new_CvRNG_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_uint64_t, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - arg1 = (CvRNG *)(argp1); - result = (CvRNG_Wrapper *)new CvRNG_Wrapper((CvRNG const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRNG_Wrapper, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper_ptr (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRNG_Wrapper_ptr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ptr" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - result = (CvRNG *)(arg1)->ptr(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper_ref (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRNG_Wrapper_ref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ref" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - result = (CvRNG *) &(arg1)->ref(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper___eq__ (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRNG_Wrapper___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___eq__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = (CvRNG_Wrapper *)(argp2); - result = (bool)(arg1)->operator ==((CvRNG_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper___ne__ (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRNG_Wrapper___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___ne__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = (CvRNG_Wrapper *)(argp2); - result = (bool)(arg1)->operator !=((CvRNG_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvRNG_Wrapper (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvRNG_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvRNG_Wrapper_members[] = { -{"ptr",_wrap_CvRNG_Wrapper_ptr,0,0,0,0}, -{"ref",_wrap_CvRNG_Wrapper_ref,0,0,0,0}, -{"__eq__",_wrap_CvRNG_Wrapper___eq__,0,0,0,0}, -{"__ne__",_wrap_CvRNG_Wrapper___ne__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvRNG_Wrapper_base_names[] = {0}; -static const swig_type_info *swig_CvRNG_Wrapper_base[] = {0}; -static swig_octave_class _wrap_class_CvRNG_Wrapper = {"CvRNG_Wrapper", &SWIGTYPE_p_CvRNG_Wrapper,0,_wrap_new_CvRNG_Wrapper,0,_wrap_delete_CvRNG_Wrapper,swig_CvRNG_Wrapper_members,swig_CvRNG_Wrapper_base_names,swig_CvRNG_Wrapper_base }; - -static octave_value_list _wrap_new_CvSubdiv2DEdge_Wrapper (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge *arg1 = 0 ; - CvSubdiv2DEdge temp1 ; - size_t val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge_Wrapper *result = 0 ; - - if (!SWIG_check_num_args("new_CvSubdiv2DEdge_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge""'"); - } - temp1 = (CvSubdiv2DEdge)(val1); - arg1 = &temp1; - result = (CvSubdiv2DEdge_Wrapper *)new CvSubdiv2DEdge_Wrapper((CvSubdiv2DEdge const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper_ptr (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper_ptr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ptr" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - result = (CvSubdiv2DEdge *)(arg1)->ptr(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper_ref (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper_ref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ref" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - result = (CvSubdiv2DEdge *) &(arg1)->ref(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper___eq__ (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = (CvSubdiv2DEdge_Wrapper *)(argp2); - result = (bool)(arg1)->operator ==((CvSubdiv2DEdge_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper___ne__ (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = (CvSubdiv2DEdge_Wrapper *)(argp2); - result = (bool)(arg1)->operator !=((CvSubdiv2DEdge_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSubdiv2DEdge_Wrapper (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSubdiv2DEdge_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSubdiv2DEdge_Wrapper_members[] = { -{"ptr",_wrap_CvSubdiv2DEdge_Wrapper_ptr,0,0,0,0}, -{"ref",_wrap_CvSubdiv2DEdge_Wrapper_ref,0,0,0,0}, -{"__eq__",_wrap_CvSubdiv2DEdge_Wrapper___eq__,0,0,0,0}, -{"__ne__",_wrap_CvSubdiv2DEdge_Wrapper___ne__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSubdiv2DEdge_Wrapper_base_names[] = {0}; -static const swig_type_info *swig_CvSubdiv2DEdge_Wrapper_base[] = {0}; -static swig_octave_class _wrap_class_CvSubdiv2DEdge_Wrapper = {"CvSubdiv2DEdge_Wrapper", &SWIGTYPE_p_CvSubdiv2DEdge_Wrapper,0,_wrap_new_CvSubdiv2DEdge_Wrapper,0,_wrap_delete_CvSubdiv2DEdge_Wrapper,swig_CvSubdiv2DEdge_Wrapper_members,swig_CvSubdiv2DEdge_Wrapper_base_names,swig_CvSubdiv2DEdge_Wrapper_base }; - -static octave_value_list _wrap_delete_OctSwigIterator (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_OctSwigIterator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_OctSwigIterator" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - delete arg1; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_value (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("OctSwigIterator_value",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_value" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - try { - result = ((swig::OctSwigIterator const *)arg1)->value(); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_incr__SWIG_0 (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - size_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator_incr",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_incr" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "OctSwigIterator_incr" "', argument " "2"" of type '" "size_t""'"); - } - arg2 = (size_t)(val2); - try { - result = (swig::OctSwigIterator *)(arg1)->incr(arg2); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_incr__SWIG_1 (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator_incr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_incr" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - try { - result = (swig::OctSwigIterator *)(arg1)->incr(); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_incr (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_OctSwigIterator_incr__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_OctSwigIterator_incr__SWIG_0(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_OctSwigIterator_decr__SWIG_0 (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - size_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator_decr",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_decr" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "OctSwigIterator_decr" "', argument " "2"" of type '" "size_t""'"); - } - arg2 = (size_t)(val2); - try { - result = (swig::OctSwigIterator *)(arg1)->decr(arg2); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_decr__SWIG_1 (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator_decr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_decr" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - try { - result = (swig::OctSwigIterator *)(arg1)->decr(); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_decr (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_OctSwigIterator_decr__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_OctSwigIterator_decr__SWIG_0(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_OctSwigIterator_distance (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - swig::OctSwigIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - ptrdiff_t result; - - if (!SWIG_check_num_args("OctSwigIterator_distance",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_distance" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_swig__OctSwigIterator, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "OctSwigIterator_distance" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "OctSwigIterator_distance" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - arg2 = (swig::OctSwigIterator *)(argp2); - try { - result = ((swig::OctSwigIterator const *)arg1)->distance((swig::OctSwigIterator const &)*arg2); - } - catch(std::invalid_argument &_e) { - error("C++ side threw an exception of type " "std::invalid_argument"); SWIG_fail; - } - - _outv = SWIG_From_ptrdiff_t((ptrdiff_t)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_equal (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - swig::OctSwigIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("OctSwigIterator_equal",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_equal" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_swig__OctSwigIterator, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "OctSwigIterator_equal" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "OctSwigIterator_equal" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - arg2 = (swig::OctSwigIterator *)(argp2); - try { - result = (bool)((swig::OctSwigIterator const *)arg1)->equal((swig::OctSwigIterator const &)*arg2); - } - catch(std::invalid_argument &_e) { - error("C++ side threw an exception of type " "std::invalid_argument"); SWIG_fail; - } - - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_copy (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator_copy",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_copy" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - result = (swig::OctSwigIterator *)((swig::OctSwigIterator const *)arg1)->copy(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_next (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("OctSwigIterator_next",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_next" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - try { - result = (arg1)->next(); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_previous (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("OctSwigIterator_previous",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_previous" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - try { - result = (arg1)->previous(); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator_advance (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator_advance",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator_advance" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "OctSwigIterator_advance" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = (ptrdiff_t)(val2); - try { - result = (swig::OctSwigIterator *)(arg1)->advance(arg2); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___eq__ (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - swig::OctSwigIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("OctSwigIterator___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___eq__" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_swig__OctSwigIterator, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "OctSwigIterator___eq__" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "OctSwigIterator___eq__" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - arg2 = (swig::OctSwigIterator *)(argp2); - result = (bool)((swig::OctSwigIterator const *)arg1)->operator ==((swig::OctSwigIterator const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___ne__ (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - swig::OctSwigIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("OctSwigIterator___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___ne__" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_swig__OctSwigIterator, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "OctSwigIterator___ne__" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "OctSwigIterator___ne__" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - arg2 = (swig::OctSwigIterator *)(argp2); - result = (bool)((swig::OctSwigIterator const *)arg1)->operator !=((swig::OctSwigIterator const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___incr__ (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator___incr__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___incr__" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - result = (swig::OctSwigIterator *)(arg1)->operator ++(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___decr__ (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator___decr__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___decr__" "', argument " "1"" of type '" "swig::OctSwigIterator *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - result = (swig::OctSwigIterator *)(arg1)->operator --(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___add__ (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator___add__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___add__" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "OctSwigIterator___add__" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = (ptrdiff_t)(val2); - try { - result = (swig::OctSwigIterator *)((swig::OctSwigIterator const *)arg1)->operator +(arg2); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___sub____SWIG_0 (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - swig::OctSwigIterator *result = 0 ; - - if (!SWIG_check_num_args("OctSwigIterator___sub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___sub__" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "OctSwigIterator___sub__" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = (ptrdiff_t)(val2); - try { - result = (swig::OctSwigIterator *)((swig::OctSwigIterator const *)arg1)->operator -(arg2); - } - catch(swig::stop_iteration &_e) { - { - error("stop_iteration exception"); - SWIG_fail; - } - } - - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__OctSwigIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___sub____SWIG_1 (const octave_value_list& args, int nargout) { - swig::OctSwigIterator *arg1 = (swig::OctSwigIterator *) 0 ; - swig::OctSwigIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - ptrdiff_t result; - - if (!SWIG_check_num_args("OctSwigIterator___sub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_swig__OctSwigIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "OctSwigIterator___sub__" "', argument " "1"" of type '" "swig::OctSwigIterator const *""'"); - } - arg1 = (swig::OctSwigIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_swig__OctSwigIterator, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "OctSwigIterator___sub__" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "OctSwigIterator___sub__" "', argument " "2"" of type '" "swig::OctSwigIterator const &""'"); - } - arg2 = (swig::OctSwigIterator *)(argp2); - result = ((swig::OctSwigIterator const *)arg1)->operator -((swig::OctSwigIterator const &)*arg2); - _outv = SWIG_From_ptrdiff_t((ptrdiff_t)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_OctSwigIterator___sub__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_OctSwigIterator___sub____SWIG_1(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__OctSwigIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_OctSwigIterator___sub____SWIG_0(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static swig_octave_member swig_OctSwigIterator_members[] = { -{"value",_wrap_OctSwigIterator_value,0,0,0,0}, -{"incr",_wrap_OctSwigIterator_incr,0,0,0,0}, -{"decr",_wrap_OctSwigIterator_decr,0,0,0,0}, -{"distance",_wrap_OctSwigIterator_distance,0,0,0,0}, -{"equal",_wrap_OctSwigIterator_equal,0,0,0,0}, -{"copy",_wrap_OctSwigIterator_copy,0,0,0,0}, -{"next",_wrap_OctSwigIterator_next,0,0,0,0}, -{"previous",_wrap_OctSwigIterator_previous,0,0,0,0}, -{"advance",_wrap_OctSwigIterator_advance,0,0,0,0}, -{"__eq__",_wrap_OctSwigIterator___eq__,0,0,0,0}, -{"__ne__",_wrap_OctSwigIterator___ne__,0,0,0,0}, -{"__incr__",_wrap_OctSwigIterator___incr__,0,0,0,0}, -{"__decr__",_wrap_OctSwigIterator___decr__,0,0,0,0}, -{"__add__",_wrap_OctSwigIterator___add__,0,0,0,0}, -{"__sub__",_wrap_OctSwigIterator___sub__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_OctSwigIterator_base_names[] = {0}; -static const swig_type_info *swig_OctSwigIterator_base[] = {0}; -static swig_octave_class _wrap_class_OctSwigIterator = {"OctSwigIterator", &SWIGTYPE_p_swig__OctSwigIterator,0,0,0,_wrap_delete_OctSwigIterator,swig_OctSwigIterator_members,swig_OctSwigIterator_base_names,swig_OctSwigIterator_base }; - -static octave_value_list _wrap_FloatVector_pop (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::value_type result; - - if (!SWIG_check_num_args("FloatVector_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_pop" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - try { - result = (std::vector< float >::value_type)std_vector_Sl_float_Sg__pop(arg1); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector___paren__ (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::value_type result; - - if (!SWIG_check_num_args("FloatVector___paren__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___paren__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___paren__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = (std::vector< float >::difference_type)(val2); - try { - result = (std::vector< float >::value_type)std_vector_Sl_float_Sg____paren__(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector___paren_asgn__ (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - std::vector< float >::value_type arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector___paren_asgn__",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___paren_asgn__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___paren_asgn__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = (std::vector< float >::difference_type)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector___paren_asgn__" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - arg3 = (std::vector< float >::value_type)(val3); - try { - std_vector_Sl_float_Sg____paren_asgn__(arg1,arg2,arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_append (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::value_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_append" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_append" "', argument " "2"" of type '" "std::vector< float >::value_type""'"); - } - arg2 = (std::vector< float >::value_type)(val2); - std_vector_Sl_float_Sg__append(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_FloatVector__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float > *result = 0 ; - - if (!SWIG_check_num_args("new_FloatVector",args.length(),0,0,0)) { - SWIG_fail; - } - result = (std::vector< float > *)new std::vector< float >(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_FloatVector__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = 0 ; - int res1 = SWIG_OLDOBJ ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float > *result = 0 ; - - if (!SWIG_check_num_args("new_FloatVector",args.length(),1,1,0)) { - SWIG_fail; - } - { - std::vector > *ptr = (std::vector > *)0; - res1 = swig::asptr(args(0), &ptr); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float > const &""'"); - } - arg1 = ptr; - } - result = (std::vector< float > *)new std::vector< float >((std::vector< float > const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (SWIG_IsNewObj(res1)) delete arg1; -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_empty (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("FloatVector_empty",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_empty" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = (bool)((std::vector< float > const *)arg1)->empty(); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_size (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::size_type result; - - if (!SWIG_check_num_args("FloatVector_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_size" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->size(); - _outv = SWIG_From_size_t((size_t)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_clear (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_clear" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - (arg1)->clear(); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_swap (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float > *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_swap",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_swap" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FloatVector_swap" "', argument " "2"" of type '" "std::vector< float > &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FloatVector_swap" "', argument " "2"" of type '" "std::vector< float > &""'"); - } - arg2 = (std::vector< float > *)(argp2); - (arg1)->swap(*arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_get_allocator (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - SwigValueWrapper< std::allocator< float > > result; - - if (!SWIG_check_num_args("FloatVector_get_allocator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_get_allocator" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->get_allocator(); - _outv = SWIG_NewPointerObj((new std::vector< float >::allocator_type((const std::vector< float >::allocator_type&)(result))), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_begin (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::const_iterator result; - - if (!SWIG_check_num_args("FloatVector_begin",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_begin" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->begin(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::const_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_end (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::const_iterator result; - - if (!SWIG_check_num_args("FloatVector_end",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_end" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->end(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::const_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_rbegin (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::const_reverse_iterator result; - - if (!SWIG_check_num_args("FloatVector_rbegin",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_rbegin" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->rbegin(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::const_reverse_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_rend (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::const_reverse_iterator result; - - if (!SWIG_check_num_args("FloatVector_rend",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_rend" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->rend(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::const_reverse_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_FloatVector__SWIG_2 (const octave_value_list& args, int nargout) { - std::vector< float >::size_type arg1 ; - size_t val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float > *result = 0 ; - - if (!SWIG_check_num_args("new_FloatVector",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float >::size_type""'"); - } - arg1 = (std::vector< float >::size_type)(val1); - result = (std::vector< float > *)new std::vector< float >(arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_pop_back (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_pop_back",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_pop_back" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - (arg1)->pop_back(); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_resize__SWIG_0 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_resize",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_resize" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_resize" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = (std::vector< float >::size_type)(val2); - (arg1)->resize(arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_erase__SWIG_0 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::iterator result; - - if (!SWIG_check_num_args("FloatVector_erase",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_erase" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - result = (arg1)->erase(arg2); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_erase__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - std::vector< float >::iterator arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - swig::OctSwigIterator *iter3 = 0 ; - int res3 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::iterator result; - - if (!SWIG_check_num_args("FloatVector_erase",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_erase" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - res3 = SWIG_ConvertPtr(args(2), SWIG_as_voidptrptr(&iter3), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res3) || !iter3) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "3"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter3); - if (iter_t) { - arg3 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "3"" of type '" "std::vector< float >::iterator""'"); - } - } - result = (arg1)->erase(arg2,arg3); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_erase (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_FloatVector_erase__SWIG_0(args, nargout); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_FloatVector_erase__SWIG_1(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_new_FloatVector__SWIG_3 (const octave_value_list& args, int nargout) { - std::vector< float >::size_type arg1 ; - std::vector< float >::value_type *arg2 = 0 ; - size_t val1 ; - int ecode1 = 0 ; - std::vector< float >::value_type temp2 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float > *result = 0 ; - - if (!SWIG_check_num_args("new_FloatVector",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float >::size_type""'"); - } - arg1 = (std::vector< float >::size_type)(val1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_FloatVector" "', argument " "2"" of type '" "std::vector< float >::value_type""'"); - } - temp2 = (std::vector< float >::value_type)(val2); - arg2 = &temp2; - result = (std::vector< float > *)new std::vector< float >(arg1,(std::vector< float >::value_type const &)*arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_FloatVector (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 0) { - return _wrap_new_FloatVector__SWIG_0(args, nargout); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_FloatVector__SWIG_2(args, nargout); - } - } - if (argc == 1) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_FloatVector__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_FloatVector__SWIG_3(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_FloatVector_push_back (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::value_type *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - std::vector< float >::value_type temp2 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_push_back",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_push_back" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_push_back" "', argument " "2"" of type '" "std::vector< float >::value_type""'"); - } - temp2 = (std::vector< float >::value_type)(val2); - arg2 = &temp2; - (arg1)->push_back((std::vector< float >::value_type const &)*arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_front (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::value_type *result = 0 ; - - if (!SWIG_check_num_args("FloatVector_front",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_front" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = (std::vector< float >::value_type *) &((std::vector< float > const *)arg1)->front(); - _outv = SWIG_From_float((float)(*result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_back (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::value_type *result = 0 ; - - if (!SWIG_check_num_args("FloatVector_back",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_back" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = (std::vector< float >::value_type *) &((std::vector< float > const *)arg1)->back(); - _outv = SWIG_From_float((float)(*result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_assign (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_assign",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_assign" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_assign" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = (std::vector< float >::size_type)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_assign" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = (std::vector< float >::value_type)(val3); - arg3 = &temp3; - (arg1)->assign(arg2,(std::vector< float >::value_type const &)*arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_resize__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_resize",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_resize" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_resize" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = (std::vector< float >::size_type)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_resize" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = (std::vector< float >::value_type)(val3); - arg3 = &temp3; - (arg1)->resize(arg2,(std::vector< float >::value_type const &)*arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_resize (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_resize__SWIG_0(args, nargout); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_resize__SWIG_1(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_FloatVector_insert__SWIG_0 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::iterator result; - - if (!SWIG_check_num_args("FloatVector_insert",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_insert" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_insert" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = (std::vector< float >::value_type)(val3); - arg3 = &temp3; - result = (arg1)->insert(arg2,(std::vector< float >::value_type const &)*arg3); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< float >::iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_insert__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - std::vector< float >::size_type arg3 ; - std::vector< float >::value_type *arg4 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - size_t val3 ; - int ecode3 = 0 ; - std::vector< float >::value_type temp4 ; - float val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_insert",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_insert" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - ecode3 = SWIG_AsVal_size_t(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_insert" "', argument " "3"" of type '" "std::vector< float >::size_type""'"); - } - arg3 = (std::vector< float >::size_type)(val3); - ecode4 = SWIG_AsVal_float(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FloatVector_insert" "', argument " "4"" of type '" "std::vector< float >::value_type""'"); - } - temp4 = (std::vector< float >::value_type)(val4); - arg4 = &temp4; - (arg1)->insert(arg2,arg3,(std::vector< float >::value_type const &)*arg4); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_insert (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_insert__SWIG_0(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_insert__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_FloatVector_reserve (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("FloatVector_reserve",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_reserve" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_reserve" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = (std::vector< float >::size_type)(val2); - (arg1)->reserve(arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_FloatVector_capacity (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< float >::size_type result; - - if (!SWIG_check_num_args("FloatVector_capacity",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_capacity" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = (std::vector< float > *)(argp1); - result = ((std::vector< float > const *)arg1)->capacity(); - _outv = SWIG_From_size_t((size_t)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_FloatVector (const octave_value_list& args, int nargout) { - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_FloatVector",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FloatVector" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = (std::vector< float > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_FloatVector_members[] = { -{"pop",_wrap_FloatVector_pop,0,0,0,0}, -{"__paren__",_wrap_FloatVector___paren__,0,0,0,0}, -{"__paren_asgn__",_wrap_FloatVector___paren_asgn__,0,0,0,0}, -{"append",_wrap_FloatVector_append,0,0,0,0}, -{"empty",_wrap_FloatVector_empty,0,0,0,0}, -{"size",_wrap_FloatVector_size,0,0,0,0}, -{"clear",_wrap_FloatVector_clear,0,0,0,0}, -{"swap",_wrap_FloatVector_swap,0,0,0,0}, -{"get_allocator",_wrap_FloatVector_get_allocator,0,0,0,0}, -{"begin",_wrap_FloatVector_begin,0,0,0,0}, -{"end",_wrap_FloatVector_end,0,0,0,0}, -{"rbegin",_wrap_FloatVector_rbegin,0,0,0,0}, -{"rend",_wrap_FloatVector_rend,0,0,0,0}, -{"pop_back",_wrap_FloatVector_pop_back,0,0,0,0}, -{"erase",_wrap_FloatVector_erase,0,0,0,0}, -{"push_back",_wrap_FloatVector_push_back,0,0,0,0}, -{"front",_wrap_FloatVector_front,0,0,0,0}, -{"back",_wrap_FloatVector_back,0,0,0,0}, -{"assign",_wrap_FloatVector_assign,0,0,0,0}, -{"resize",_wrap_FloatVector_resize,0,0,0,0}, -{"insert",_wrap_FloatVector_insert,0,0,0,0}, -{"reserve",_wrap_FloatVector_reserve,0,0,0,0}, -{"capacity",_wrap_FloatVector_capacity,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_FloatVector_base_names[] = {0}; -static const swig_type_info *swig_FloatVector_base[] = {0}; -static swig_octave_class _wrap_class_FloatVector = {"FloatVector", &SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t,0,_wrap_new_FloatVector,0,_wrap_delete_FloatVector,swig_FloatVector_members,swig_FloatVector_base_names,swig_FloatVector_base }; - -static octave_value_list _wrap_CvPointVector_pop (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::value_type result; - - if (!SWIG_check_num_args("CvPointVector_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_pop" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - try { - result = std_vector_Sl_CvPoint_Sg__pop(arg1); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - _outv = SWIG_NewPointerObj((new std::vector< CvPoint >::value_type((const std::vector< CvPoint >::value_type&)(result))), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector___paren__ (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::value_type result; - - if (!SWIG_check_num_args("CvPointVector___paren__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___paren__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___paren__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = (std::vector< CvPoint >::difference_type)(val2); - try { - result = std_vector_Sl_CvPoint_Sg____paren__(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - _outv = SWIG_NewPointerObj((new std::vector< CvPoint >::value_type((const std::vector< CvPoint >::value_type&)(result))), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector___paren_asgn__ (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - std::vector< CvPoint >::value_type arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector___paren_asgn__",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___paren_asgn__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___paren_asgn__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = (std::vector< CvPoint >::difference_type)(val2); - { - arg3 = OctObject_to_CvPoint(args(2)); - } - try { - std_vector_Sl_CvPoint_Sg____paren_asgn__(arg1,arg2,arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_append (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::value_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_append" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - { - arg2 = OctObject_to_CvPoint(args(1)); - } - std_vector_Sl_CvPoint_Sg__append(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPointVector__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("new_CvPointVector",args.length(),0,0,0)) { - SWIG_fail; - } - result = (std::vector< CvPoint > *)new std::vector< CvPoint >(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPointVector__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = 0 ; - int res1 = SWIG_OLDOBJ ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("new_CvPointVector",args.length(),1,1,0)) { - SWIG_fail; - } - { - std::vector > *ptr = (std::vector > *)0; - res1 = swig::asptr(args(0), &ptr); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint > const &""'"); - } - arg1 = ptr; - } - result = (std::vector< CvPoint > *)new std::vector< CvPoint >((std::vector< CvPoint > const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (SWIG_IsNewObj(res1)) delete arg1; -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_empty (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvPointVector_empty",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_empty" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = (bool)((std::vector< CvPoint > const *)arg1)->empty(); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_size (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::size_type result; - - if (!SWIG_check_num_args("CvPointVector_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_size" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->size(); - _outv = SWIG_From_size_t((size_t)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_clear (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_clear" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - (arg1)->clear(); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_swap (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint > *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_swap",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_swap" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPointVector_swap" "', argument " "2"" of type '" "std::vector< CvPoint > &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_swap" "', argument " "2"" of type '" "std::vector< CvPoint > &""'"); - } - arg2 = (std::vector< CvPoint > *)(argp2); - (arg1)->swap(*arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_get_allocator (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - SwigValueWrapper< std::allocator< CvPoint > > result; - - if (!SWIG_check_num_args("CvPointVector_get_allocator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_get_allocator" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->get_allocator(); - _outv = SWIG_NewPointerObj((new std::vector< CvPoint >::allocator_type((const std::vector< CvPoint >::allocator_type&)(result))), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_begin (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::const_iterator result; - - if (!SWIG_check_num_args("CvPointVector_begin",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_begin" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->begin(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::const_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_end (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::const_iterator result; - - if (!SWIG_check_num_args("CvPointVector_end",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_end" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->end(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::const_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_rbegin (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::const_reverse_iterator result; - - if (!SWIG_check_num_args("CvPointVector_rbegin",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_rbegin" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->rbegin(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::const_reverse_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_rend (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::const_reverse_iterator result; - - if (!SWIG_check_num_args("CvPointVector_rend",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_rend" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->rend(); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::const_reverse_iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPointVector__SWIG_2 (const octave_value_list& args, int nargout) { - std::vector< CvPoint >::size_type arg1 ; - size_t val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("new_CvPointVector",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg1 = (std::vector< CvPoint >::size_type)(val1); - result = (std::vector< CvPoint > *)new std::vector< CvPoint >(arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_pop_back (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_pop_back",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_pop_back" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - (arg1)->pop_back(); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_resize__SWIG_0 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_resize",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_resize" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_resize" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = (std::vector< CvPoint >::size_type)(val2); - (arg1)->resize(arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_erase__SWIG_0 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::iterator result; - - if (!SWIG_check_num_args("CvPointVector_erase",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_erase" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - result = (arg1)->erase(arg2); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_erase__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - std::vector< CvPoint >::iterator arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - swig::OctSwigIterator *iter3 = 0 ; - int res3 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::iterator result; - - if (!SWIG_check_num_args("CvPointVector_erase",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_erase" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - res3 = SWIG_ConvertPtr(args(2), SWIG_as_voidptrptr(&iter3), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res3) || !iter3) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "3"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter3); - if (iter_t) { - arg3 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "3"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - result = (arg1)->erase(arg2,arg3); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_erase (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_CvPointVector_erase__SWIG_0(args, nargout); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_CvPointVector_erase__SWIG_1(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_new_CvPointVector__SWIG_3 (const octave_value_list& args, int nargout) { - std::vector< CvPoint >::size_type arg1 ; - std::vector< CvPoint >::value_type *arg2 = 0 ; - size_t val1 ; - int ecode1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("new_CvPointVector",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg1 = (std::vector< CvPoint >::size_type)(val1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvPointVector" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvPointVector" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg2 = (std::vector< CvPoint >::value_type *)(argp2); - result = (std::vector< CvPoint > *)new std::vector< CvPoint >(arg1,(std::vector< CvPoint >::value_type const &)*arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPointVector (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 0) { - return _wrap_new_CvPointVector__SWIG_0(args, nargout); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvPointVector__SWIG_2(args, nargout); - } - } - if (argc == 1) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvPointVector__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvPointVector__SWIG_3(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvPointVector_push_back (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::value_type *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_push_back",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_push_back" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPointVector_push_back" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_push_back" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg2 = (std::vector< CvPoint >::value_type *)(argp2); - (arg1)->push_back((std::vector< CvPoint >::value_type const &)*arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_front (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::value_type *result = 0 ; - - if (!SWIG_check_num_args("CvPointVector_front",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_front" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = (std::vector< CvPoint >::value_type *) &((std::vector< CvPoint > const *)arg1)->front(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_back (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::value_type *result = 0 ; - - if (!SWIG_check_num_args("CvPointVector_back",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_back" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = (std::vector< CvPoint >::value_type *) &((std::vector< CvPoint > const *)arg1)->back(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_assign (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_assign",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_assign" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_assign" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = (std::vector< CvPoint >::size_type)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector_assign" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_assign" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = (std::vector< CvPoint >::value_type *)(argp3); - (arg1)->assign(arg2,(std::vector< CvPoint >::value_type const &)*arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_resize__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_resize",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_resize" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_resize" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = (std::vector< CvPoint >::size_type)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector_resize" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_resize" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = (std::vector< CvPoint >::value_type *)(argp3); - (arg1)->resize(arg2,(std::vector< CvPoint >::value_type const &)*arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_resize (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvPointVector_resize__SWIG_0(args, nargout); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector_resize__SWIG_1(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvPointVector_insert__SWIG_0 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::iterator result; - - if (!SWIG_check_num_args("CvPointVector_insert",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_insert" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector_insert" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_insert" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = (std::vector< CvPoint >::value_type *)(argp3); - result = (arg1)->insert(arg2,(std::vector< CvPoint >::value_type const &)*arg3); - _outv = SWIG_NewPointerObj(swig::make_output_iterator((const std::vector< CvPoint >::iterator &)(result)), - swig::OctSwigIterator::descriptor(),SWIG_POINTER_OWN); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_insert__SWIG_1 (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - std::vector< CvPoint >::size_type arg3 ; - std::vector< CvPoint >::value_type *arg4 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::OctSwigIterator *iter2 = 0 ; - int res2 ; - size_t val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_insert",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_insert" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), SWIG_as_voidptrptr(&iter2), swig::OctSwigIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::OctSwigIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - ecode3 = SWIG_AsVal_size_t(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvPointVector_insert" "', argument " "3"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg3 = (std::vector< CvPoint >::size_type)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvPointVector_insert" "', argument " "4"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_insert" "', argument " "4"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg4 = (std::vector< CvPoint >::value_type *)(argp4); - (arg1)->insert(arg2,arg3,(std::vector< CvPoint >::value_type const &)*arg4); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_insert (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector_insert__SWIG_0(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::OctSwigIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::OctSwigIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector_insert__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvPointVector_reserve (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPointVector_reserve",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_reserve" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_size_t(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_reserve" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = (std::vector< CvPoint >::size_type)(val2); - (arg1)->reserve(arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPointVector_capacity (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint >::size_type result; - - if (!SWIG_check_num_args("CvPointVector_capacity",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_capacity" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - result = ((std::vector< CvPoint > const *)arg1)->capacity(); - _outv = SWIG_From_size_t((size_t)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPointVector (const octave_value_list& args, int nargout) { - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPointVector",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = (std::vector< CvPoint > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPointVector_members[] = { -{"pop",_wrap_CvPointVector_pop,0,0,0,0}, -{"__paren__",_wrap_CvPointVector___paren__,0,0,0,0}, -{"__paren_asgn__",_wrap_CvPointVector___paren_asgn__,0,0,0,0}, -{"append",_wrap_CvPointVector_append,0,0,0,0}, -{"empty",_wrap_CvPointVector_empty,0,0,0,0}, -{"size",_wrap_CvPointVector_size,0,0,0,0}, -{"clear",_wrap_CvPointVector_clear,0,0,0,0}, -{"swap",_wrap_CvPointVector_swap,0,0,0,0}, -{"get_allocator",_wrap_CvPointVector_get_allocator,0,0,0,0}, -{"begin",_wrap_CvPointVector_begin,0,0,0,0}, -{"end",_wrap_CvPointVector_end,0,0,0,0}, -{"rbegin",_wrap_CvPointVector_rbegin,0,0,0,0}, -{"rend",_wrap_CvPointVector_rend,0,0,0,0}, -{"pop_back",_wrap_CvPointVector_pop_back,0,0,0,0}, -{"erase",_wrap_CvPointVector_erase,0,0,0,0}, -{"push_back",_wrap_CvPointVector_push_back,0,0,0,0}, -{"front",_wrap_CvPointVector_front,0,0,0,0}, -{"back",_wrap_CvPointVector_back,0,0,0,0}, -{"assign",_wrap_CvPointVector_assign,0,0,0,0}, -{"resize",_wrap_CvPointVector_resize,0,0,0,0}, -{"insert",_wrap_CvPointVector_insert,0,0,0,0}, -{"reserve",_wrap_CvPointVector_reserve,0,0,0,0}, -{"capacity",_wrap_CvPointVector_capacity,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPointVector_base_names[] = {0}; -static const swig_type_info *swig_CvPointVector_base[] = {0}; -static swig_octave_class _wrap_class_CvPointVector = {"CvPointVector", &SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t,0,_wrap_new_CvPointVector,0,_wrap_delete_CvPointVector,swig_CvPointVector_members,swig_CvPointVector_base_names,swig_CvPointVector_base }; - -static octave_value_list _wrap_cvCvtSeqToArray__SWIG_0 (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSlice arg3 ; - void *ptr1 ; - bool freearg2 = false ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("cvCvtSeqToArray",args.length(),3,3,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCvtSeqToArray" "', argument " "3"" of type '" "CvSlice""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCvtSeqToArray" "', argument " "3"" of type '" "CvSlice""'"); - } else { - arg3 = *((CvSlice *)(argp3)); - } - } - result = (CvArr *)cvCvtSeqToArray_Shadow((CvSeq const *)arg1,arg2,arg3); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCvtSeqToArray__SWIG_1 (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *ptr1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("cvCvtSeqToArray",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - result = (CvArr *)cvCvtSeqToArray_Shadow((CvSeq const *)arg1,arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCvtSeqToArray (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_cvCvtSeqToArray__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvCvtSeqToArray__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvArcLength__SWIG_0 (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSlice arg2 ; - int arg3 ; - void *ptr1 ; - void *argp2 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvArcLength",args.length(),3,3,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } else { - arg2 = *((CvSlice *)(argp2)); - } - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvArcLength" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - result = (double)cvArcLength_Shadow((CvSeq const *)arg1,arg2,arg3); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvArcLength__SWIG_1 (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSlice arg2 ; - void *ptr1 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvArcLength",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } else { - arg2 = *((CvSlice *)(argp2)); - } - } - result = (double)cvArcLength_Shadow((CvSeq const *)arg1,arg2); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvArcLength__SWIG_2 (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvArcLength",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (double)cvArcLength_Shadow((CvSeq const *)arg1); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvArcLength__SWIG_3 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvSlice arg2 ; - int arg3 ; - bool freearg1 = false ; - void *argp2 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvArcLength",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } else { - arg2 = *((CvSlice *)(argp2)); - } - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvArcLength" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - result = (double)cvArcLength_Shadow((void const *)arg1,arg2,arg3); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvArcLength__SWIG_4 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvSlice arg2 ; - bool freearg1 = false ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvArcLength",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvArcLength" "', argument " "2"" of type '" "CvSlice""'"); - } else { - arg2 = *((CvSlice *)(argp2)); - } - } - result = (double)cvArcLength_Shadow((void const *)arg1,arg2); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvArcLength__SWIG_5 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvArcLength",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - result = (double)cvArcLength_Shadow((void const *)arg1); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvArcLength (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvArcLength__SWIG_2(args, nargout); - } - } - if (argc == 1) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_cvArcLength__SWIG_5(args, nargout); - } - } - if (argc == 2) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvArcLength__SWIG_4(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvArcLength__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvArcLength__SWIG_0(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvArcLength__SWIG_3(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvContourPerimeter__SWIG_0 (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvContourPerimeter",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (double)cvContourPerimeter_Shadow(arg1); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvContourPerimeter__SWIG_1 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvContourPerimeter",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - result = (double)cvContourPerimeter_Shadow(arg1); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvContourPerimeter (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[1]={ - octave_value_ref(args,0) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvContourPerimeter__SWIG_0(args, nargout); - } - } - if (argc == 1) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_cvContourPerimeter__SWIG_1(args, nargout); - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvHaarDetectObjects__SWIG_0 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - int arg5 ; - int arg6 ; - CvSize arg7 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - void *argp7 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("cvHaarDetectObjects",args.length(),7,7,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = (CvHaarClassifierCascade *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHaarDetectObjects" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvHaarDetectObjects" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - { - res7 = SWIG_ConvertPtr(args(6), &argp7, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvHaarDetectObjects" "', argument " "7"" of type '" "CvSize""'"); - } - if (!argp7) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvHaarDetectObjects" "', argument " "7"" of type '" "CvSize""'"); - } else { - arg7 = *((CvSize *)(argp7)); - } - } - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvHaarDetectObjects__SWIG_1 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - int arg5 ; - int arg6 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("cvHaarDetectObjects",args.length(),6,6,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = (CvHaarClassifierCascade *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHaarDetectObjects" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvHaarDetectObjects" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvHaarDetectObjects__SWIG_2 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - int arg5 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("cvHaarDetectObjects",args.length(),5,5,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = (CvHaarClassifierCascade *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHaarDetectObjects" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4,arg5); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvHaarDetectObjects__SWIG_3 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("cvHaarDetectObjects",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = (CvHaarClassifierCascade *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvHaarDetectObjects__SWIG_4 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("cvHaarDetectObjects",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = (CvHaarClassifierCascade *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvHaarDetectObjects (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[7]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6) - }; - - if (argc == 3) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_4(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_3(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_2(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_1(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvSegmentMotion (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - double arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvConnectedComp > *result = 0 ; - - if (!SWIG_check_num_args("cvSegmentMotion",args.length(),5,5,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSegmentMotion" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSegmentMotion" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_double(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSegmentMotion" "', argument " "5"" of type '" "double""'"); - } - arg5 = (double)(val5); - result = (CvTypedSeq< CvConnectedComp > *)cvSegmentMotion_Shadow((void const *)arg1,arg2,arg3,arg4,arg5); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvApproxPoly__SWIG_0 (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - int arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - int arg4 ; - double arg5 ; - int arg6 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("cvApproxPoly",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvApproxPoly" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvApproxPoly" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvApproxPoly" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvApproxPoly" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - ecode5 = SWIG_AsVal_double(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvApproxPoly" "', argument " "5"" of type '" "double""'"); - } - arg5 = (double)(val5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvApproxPoly" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - result = (CvTypedSeq< CvPoint > *)cvApproxPoly_Shadow((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvApproxPoly__SWIG_1 (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - int arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - int arg4 ; - double arg5 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("cvApproxPoly",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvApproxPoly" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvApproxPoly" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvApproxPoly" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvApproxPoly" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - ecode5 = SWIG_AsVal_double(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvApproxPoly" "', argument " "5"" of type '" "double""'"); - } - arg5 = (double)(val5); - result = (CvTypedSeq< CvPoint > *)cvApproxPoly_Shadow((void const *)arg1,arg2,arg3,arg4,arg5); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvApproxPoly (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 5) { - int _v; - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[0], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvApproxPoly__SWIG_1(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[0], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvApproxPoly__SWIG_0(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvConvexHull2__SWIG_0 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvConvexHull2",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvConvexHull2" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvConvexHull2" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - result = (CvMat *)cvConvexHull2_Shadow((void const *)arg1,arg2,arg3); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvConvexHull2__SWIG_1 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvConvexHull2",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvConvexHull2" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - result = (CvMat *)cvConvexHull2_Shadow((void const *)arg1,arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvConvexHull2__SWIG_2 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvConvexHull2",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - result = (CvMat *)cvConvexHull2_Shadow((void const *)arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvConvexHull2 (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 1) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_cvConvexHull2__SWIG_2(args, nargout); - } - } - if (argc == 2) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvConvexHull2__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - { - void *ptr; - if(OctList_Check(argv[0]) || OctTuple_Check(argv[0])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[0], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvConvexHull2__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvSnakeImage__SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > arg2 ; - std::vector< float,std::allocator< float > > arg3 ; - std::vector< float,std::allocator< float > > arg4 ; - std::vector< float,std::allocator< float > > arg5 ; - CvSize arg6 ; - CvTermCriteria arg7 ; - int arg8 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp6 ; - int res6 = 0 ; - void *argp7 ; - int res7 = 0 ; - int val8 ; - int ecode8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint,std::allocator< CvPoint > > result; - - if (!SWIG_check_num_args("cvSnakeImage",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSnakeImage" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(1), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "2"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > >""'"); - } - arg2 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(2), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "3"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg3 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(3), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "4"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg4 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(4), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "5"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg5 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvSnakeImage" "', argument " "6"" of type '" "CvSize""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvSnakeImage" "', argument " "6"" of type '" "CvSize""'"); - } else { - arg6 = *((CvSize *)(argp6)); - } - } - { - res7 = SWIG_ConvertPtr(args(6), &argp7, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvSnakeImage" "', argument " "7"" of type '" "CvTermCriteria""'"); - } - if (!argp7) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvSnakeImage" "', argument " "7"" of type '" "CvTermCriteria""'"); - } else { - arg7 = *((CvTermCriteria *)(argp7)); - } - } - ecode8 = SWIG_AsVal_int(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvSnakeImage" "', argument " "8"" of type '" "int""'"); - } - arg8 = (int)(val8); - result = cvSnakeImage_Shadow((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); - _outv = swig::from((std::vector >)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSnakeImage__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > arg2 ; - std::vector< float,std::allocator< float > > arg3 ; - std::vector< float,std::allocator< float > > arg4 ; - std::vector< float,std::allocator< float > > arg5 ; - CvSize arg6 ; - CvTermCriteria arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp6 ; - int res6 = 0 ; - void *argp7 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - std::vector< CvPoint,std::allocator< CvPoint > > result; - - if (!SWIG_check_num_args("cvSnakeImage",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSnakeImage" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(1), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "2"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > >""'"); - } - arg2 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(2), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "3"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg3 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(3), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "4"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg4 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(args(4), &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "5"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg5 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvSnakeImage" "', argument " "6"" of type '" "CvSize""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvSnakeImage" "', argument " "6"" of type '" "CvSize""'"); - } else { - arg6 = *((CvSize *)(argp6)); - } - } - { - res7 = SWIG_ConvertPtr(args(6), &argp7, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvSnakeImage" "', argument " "7"" of type '" "CvTermCriteria""'"); - } - if (!argp7) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvSnakeImage" "', argument " "7"" of type '" "CvTermCriteria""'"); - } else { - arg7 = *((CvTermCriteria *)(argp7)); - } - } - result = cvSnakeImage_Shadow((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - _outv = swig::from((std::vector >)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSnakeImage (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[8]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7) - }; - - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[1], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[2], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[3], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[4], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvSnakeImage__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[1], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[2], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[3], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[4], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvSnakeImage__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvFree (const octave_value_list& args, int nargout) { - void **arg1 = (void **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvFree",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_p_void, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFree" "', argument " "1"" of type '" "void **""'"); - } - arg1 = (void **)(argp1); - cvFree(arg1); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_READ_CHAIN_POINT (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - CvChainPtReader arg2 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_READ_CHAIN_POINT",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvChainPtReader, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_READ_CHAIN_POINT" "', argument " "2"" of type '" "CvChainPtReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_READ_CHAIN_POINT" "', argument " "2"" of type '" "CvChainPtReader""'"); - } else { - arg2 = *((CvChainPtReader *)(argp2)); - } - } - CV_READ_CHAIN_POINT(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_MAT_ELEM_PTR (const octave_value_list& args, int nargout) { - CvMat arg1 ; - int arg2 ; - int arg3 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("CV_MAT_ELEM_PTR",args.length(),3,3,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvMat, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_MAT_ELEM_PTR" "', argument " "1"" of type '" "CvMat""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_MAT_ELEM_PTR" "', argument " "1"" of type '" "CvMat""'"); - } else { - arg1 = *((CvMat *)(argp1)); - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_MAT_ELEM_PTR" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_MAT_ELEM_PTR" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - result = (void *)CV_MAT_ELEM_PTR(arg1,arg2,arg3); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_MAT_ELEM_PTR_FAST (const octave_value_list& args, int nargout) { - CvMat arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("CV_MAT_ELEM_PTR_FAST",args.length(),4,4,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvMat, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "1"" of type '" "CvMat""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "1"" of type '" "CvMat""'"); - } else { - arg1 = *((CvMat *)(argp1)); - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - result = (void *)CV_MAT_ELEM_PTR_FAST(arg1,arg2,arg3,arg4); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_VAL (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("CV_NODE_VAL",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NODE_VAL" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NODE_VAL" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = (CvSparseNode *)(argp2); - result = (void *)CV_NODE_VAL(arg1,arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IDX (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CV_NODE_IDX",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NODE_IDX" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NODE_IDX" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = (CvSparseNode *)(argp2); - result = (int *)CV_NODE_IDX(arg1,arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_SUBDIV2D_NEXT_EDGE (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvQuadEdge2D *result = 0 ; - - if (!SWIG_check_num_args("CV_SUBDIV2D_NEXT_EDGE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - result = (CvQuadEdge2D *)CV_SUBDIV2D_NEXT_EDGE(arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_SWAP (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_SWAP",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_SWAP" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_SWAP" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_SWAP" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - CV_SWAP(arg1,arg2,arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IMIN (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IMIN",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IMIN" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_IMIN" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - result = (int)CV_IMIN(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IMAX (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IMAX",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IMAX" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_IMAX" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - result = (int)CV_IMAX(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IABS (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IABS",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IABS" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_IABS(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_CMP (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_CMP",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_CMP" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_CMP" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - CV_CMP(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_SIGN (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_SIGN",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_SIGN" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - CV_SIGN(arg1); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvInvSqrt (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvInvSqrt",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvInvSqrt" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - cvInvSqrt(arg1); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSqrt (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvSqrt",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSqrt" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - cvSqrt(arg1); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_IMAGE_HDR (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_IMAGE_HDR",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - result = (int)CV_IS_IMAGE_HDR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_IMAGE (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_IMAGE",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - result = (int)CV_IS_IMAGE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CV_MAT_DEPTH (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_MAT_DEPTH",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAT_DEPTH" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_MAT_DEPTH(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_MAKETYPE (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_MAKETYPE",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAKETYPE" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_MAKETYPE" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - result = (int)CV_MAKETYPE(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_8UC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_8UC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_8UC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_8UC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_8SC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_8SC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_8SC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_8SC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_16UC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_16UC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_16UC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_16UC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_16SC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_16SC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_16SC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_16SC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_32SC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_32SC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_32SC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_32SC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_32FC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_32FC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_32FC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_32FC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_64FC (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_64FC",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_64FC" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_64FC(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_MAT_CN (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_MAT_CN",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAT_CN" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_MAT_CN(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_MAT_TYPE (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_MAT_TYPE",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAT_TYPE" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_MAT_TYPE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MAT_CONT (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MAT_CONT",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IS_MAT_CONT" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_IS_MAT_CONT(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_TEMP_MAT (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_TEMP_MAT",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IS_TEMP_MAT" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_IS_TEMP_MAT(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MAT_HDR (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MAT_HDR",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_MAT_HDR" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_MAT_HDR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MAT (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MAT",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_MAT" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_MAT(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MASK_ARR (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MASK_ARR",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_MASK_ARR" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_MASK_ARR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_ARE_TYPES_EQ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_ARE_TYPES_EQ",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_ARE_TYPES_EQ" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_ARE_TYPES_EQ" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - result = (int)CV_ARE_TYPES_EQ(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_ARE_CNS_EQ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_ARE_CNS_EQ",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_ARE_CNS_EQ" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_ARE_CNS_EQ" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - result = (int)CV_ARE_CNS_EQ(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_ARE_DEPTHS_EQ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_ARE_DEPTHS_EQ",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_ARE_DEPTHS_EQ" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_ARE_DEPTHS_EQ" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - result = (int)CV_ARE_DEPTHS_EQ(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_ARE_SIZES_EQ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_ARE_SIZES_EQ",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_ARE_SIZES_EQ" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_ARE_SIZES_EQ" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - result = (int)CV_ARE_SIZES_EQ(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MAT_CONST (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MAT_CONST",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_MAT_CONST" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_MAT_CONST(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_ELEM_SIZE1 (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_ELEM_SIZE1",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_ELEM_SIZE1" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_ELEM_SIZE1(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_ELEM_SIZE (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_ELEM_SIZE",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_ELEM_SIZE" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_ELEM_SIZE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MATND_HDR (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MATND_HDR",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_MATND_HDR" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_MATND_HDR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_MATND (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_MATND",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_MATND" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_MATND(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SPARSE_MAT_HDR (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SPARSE_MAT_HDR",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_SPARSE_MAT_HDR" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_SPARSE_MAT_HDR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SPARSE_MAT (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SPARSE_MAT",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_SPARSE_MAT" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int)CV_IS_SPARSE_MAT(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_HIST (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_HIST",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_HIST" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (int)CV_IS_HIST(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_UNIFORM_HIST (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_UNIFORM_HIST",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_UNIFORM_HIST" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (int)CV_IS_UNIFORM_HIST(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SPARSE_HIST (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SPARSE_HIST",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_SPARSE_HIST" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (int)CV_IS_SPARSE_HIST(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_HIST_HAS_RANGES (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_HIST_HAS_RANGES",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_HIST_HAS_RANGES" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (int)CV_HIST_HAS_RANGES(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_STORAGE (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_STORAGE",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_STORAGE" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (int)CV_IS_STORAGE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SET_ELEM (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - int res1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SET_ELEM",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_SET_ELEM" "', argument " "1"" of type '" "void *""'"); - } - result = (int)CV_IS_SET_ELEM(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SET (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SET",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int)CV_IS_SET(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_SEQ_ELTYPE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_SEQ_ELTYPE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_SEQ_ELTYPE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_SEQ_KIND (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_SEQ_KIND",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_SEQ_KIND(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_INDEX (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_INDEX",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_INDEX(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_CURVE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_CURVE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CURVE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_CLOSED (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_CLOSED",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CLOSED(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_CONVEX (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_CONVEX",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CONVEX(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_HOLE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_HOLE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_HOLE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_SIMPLE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_SIMPLE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_SIMPLE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_POINT_SET (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_POINT_SET",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POINT_SET(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_POINT_SUBSET (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_POINT_SUBSET",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POINT_SUBSET(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_POLYLINE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_POLYLINE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POLYLINE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_POLYGON (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_POLYGON",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POLYGON(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_CHAIN (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_CHAIN",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CHAIN(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_CONTOUR (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_CONTOUR",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CONTOUR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_CHAIN_CONTOUR (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_CHAIN_CONTOUR",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CHAIN_CONTOUR(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SEQ_POLYGON_TREE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SEQ_POLYGON_TREE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POLYGON_TREE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_GRAPH (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_GRAPH",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_GRAPH(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_GRAPH_ORIENTED (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_GRAPH_ORIENTED",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_GRAPH_ORIENTED(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_SUBDIV2D (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_SUBDIV2D",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SUBDIV2D(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_WRITE_SEQ_ELEM_VAR (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - CvSeqWriter arg2 ; - int res1 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_WRITE_SEQ_ELEM_VAR",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_WRITE_SEQ_ELEM_VAR" "', argument " "1"" of type '" "void *""'"); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSeqWriter, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_WRITE_SEQ_ELEM_VAR" "', argument " "2"" of type '" "CvSeqWriter""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_WRITE_SEQ_ELEM_VAR" "', argument " "2"" of type '" "CvSeqWriter""'"); - } else { - arg2 = *((CvSeqWriter *)(argp2)); - } - } - CV_WRITE_SEQ_ELEM_VAR(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_WRITE_SEQ_ELEM (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - CvSeqWriter arg2 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_WRITE_SEQ_ELEM",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSeqWriter, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_WRITE_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqWriter""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_WRITE_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqWriter""'"); - } else { - arg2 = *((CvSeqWriter *)(argp2)); - } - } - CV_WRITE_SEQ_ELEM(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NEXT_SEQ_ELEM (const octave_value_list& args, int nargout) { - int arg1 ; - CvSeqReader arg2 ; - int val1 ; - int ecode1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_NEXT_SEQ_ELEM",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NEXT_SEQ_ELEM" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NEXT_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_NEXT_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - arg2 = *((CvSeqReader *)(argp2)); - } - } - CV_NEXT_SEQ_ELEM(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_PREV_SEQ_ELEM (const octave_value_list& args, int nargout) { - int arg1 ; - CvSeqReader arg2 ; - int val1 ; - int ecode1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_PREV_SEQ_ELEM",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_PREV_SEQ_ELEM" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_PREV_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_PREV_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - arg2 = *((CvSeqReader *)(argp2)); - } - } - CV_PREV_SEQ_ELEM(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_READ_SEQ_ELEM (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - CvSeqReader arg2 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_READ_SEQ_ELEM",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - arg2 = *((CvSeqReader *)(argp2)); - } - } - CV_READ_SEQ_ELEM(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_REV_READ_SEQ_ELEM (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - CvSeqReader arg2 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_REV_READ_SEQ_ELEM",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_REV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_REV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - arg2 = *((CvSeqReader *)(argp2)); - } - } - CV_REV_READ_SEQ_ELEM(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_CURRENT_POINT (const octave_value_list& args, int nargout) { - CvSeqReader arg1 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint result; - - if (!SWIG_check_num_args("CV_CURRENT_POINT",args.length(),1,1,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_CURRENT_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_CURRENT_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } else { - arg1 = *((CvSeqReader *)(argp1)); - } - } - result = CV_CURRENT_POINT(arg1); - _outv = SWIG_NewPointerObj((new CvPoint((const CvPoint&)(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_PREV_POINT (const octave_value_list& args, int nargout) { - CvSeqReader arg1 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint result; - - if (!SWIG_check_num_args("CV_PREV_POINT",args.length(),1,1,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_PREV_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_PREV_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } else { - arg1 = *((CvSeqReader *)(argp1)); - } - } - result = CV_PREV_POINT(arg1); - _outv = SWIG_NewPointerObj((new CvPoint((const CvPoint&)(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_READ_EDGE (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - CvPoint arg2 ; - CvSeqReader arg3 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_READ_EDGE",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - { - arg2 = OctObject_to_CvPoint(args(1)); - } - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvSeqReader, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CV_READ_EDGE" "', argument " "3"" of type '" "CvSeqReader""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_READ_EDGE" "', argument " "3"" of type '" "CvSeqReader""'"); - } else { - arg3 = *((CvSeqReader *)(argp3)); - } - } - CV_READ_EDGE(arg1,arg2,arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NEXT_GRAPH_EDGE (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphEdge *result = 0 ; - - if (!SWIG_check_num_args("CV_NEXT_GRAPH_EDGE",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NEXT_GRAPH_EDGE" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NEXT_GRAPH_EDGE" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = (CvGraphVtx *)(argp2); - result = (CvGraphEdge *)CV_NEXT_GRAPH_EDGE(arg1,arg2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_TYPE (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_TYPE",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_TYPE" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_TYPE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_INT (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_INT",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_INT" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_INT(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_REAL (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_REAL",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_REAL" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_REAL(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_STRING (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_STRING",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_STRING" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_STRING(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_SEQ (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_SEQ",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_SEQ" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_SEQ(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_MAP (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_MAP",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_MAP" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_MAP(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_COLLECTION (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_COLLECTION",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_COLLECTION" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_COLLECTION(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_FLOW (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_FLOW",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_FLOW" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_FLOW(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_EMPTY (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_EMPTY",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_EMPTY" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_EMPTY(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_IS_USER (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_IS_USER",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_USER" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_IS_USER(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_HAS_NAME (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_HAS_NAME",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_HAS_NAME" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - result = (int)CV_NODE_HAS_NAME(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NODE_SEQ_IS_SIMPLE (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_NODE_SEQ_IS_SIMPLE",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_NODE_SEQ_IS_SIMPLE(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvReshapeND (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 ; - int *arg5 = (int *) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvReshapeND",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode3 = SWIG_AsVal_int(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvReshapeND" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(2), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReshapeND" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - res5 = SWIG_ConvertPtr(args(3), &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvReshapeND" "', argument " "5"" of type '" "int *""'"); - } - arg5 = (int *)(argp5); - cvReshapeND(arg1,arg2,arg3,arg4,arg5); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvConvert (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvConvert",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - cvConvert(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvAXPY (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvAXPY",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvAXPY" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - arg4 = OctObject_to_CvArr(args(3), &freearg4); - } - cvAXPY(arg1,arg2,arg3,arg4); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvAbs (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvAbs",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - cvAbs(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvMatMulAdd (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvMatMulAdd",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - arg4 = OctObject_to_CvArr(args(3), &freearg4); - } - cvMatMulAdd(arg1,arg2,arg3,arg4); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvMatMul (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvMatMul",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - cvMatMul(arg1,arg2,arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetGraphVtx (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvGetGraphVtx",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetGraphVtx" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - cvGetGraphVtx(arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvGraphVtxIdx (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvGraphVtxIdx",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphVtxIdx" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = (CvGraphVtx *)(argp2); - result = (int)cvGraphVtxIdx(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvGraphEdgeIdx (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvGraphEdgeIdx",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphEdgeIdx" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = (CvGraphEdge *)(argp2); - result = (int)cvGraphEdgeIdx(arg1,arg2); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvGraphGetVtxCount (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvGraphGetVtxCount",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int)cvGraphGetVtxCount(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvGraphGetEdgeCount (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvGraphGetEdgeCount",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int)cvGraphGetEdgeCount(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_GRAPH_VERTEX_VISITED (const octave_value_list& args, int nargout) { - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_GRAPH_VERTEX_VISITED",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_GRAPH_VERTEX_VISITED" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = (CvGraphVtx *)(argp1); - result = (int)CV_IS_GRAPH_VERTEX_VISITED(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_GRAPH_EDGE_VISITED (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_GRAPH_EDGE_VISITED",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_GRAPH_EDGE_VISITED" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - result = (int)CV_IS_GRAPH_EDGE_VISITED(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_RGB (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - int arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("CV_RGB",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_RGB" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_RGB" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_RGB" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - result = CV_RGB(arg1,arg2,arg3); - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_NEXT_LINE_POINT (const octave_value_list& args, int nargout) { - CvLineIterator arg1 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_NEXT_LINE_POINT",args.length(),1,1,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvLineIterator, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NEXT_LINE_POINT" "', argument " "1"" of type '" "CvLineIterator""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_NEXT_LINE_POINT" "', argument " "1"" of type '" "CvLineIterator""'"); - } else { - arg1 = *((CvLineIterator *)(argp1)); - } - } - CV_NEXT_LINE_POINT(arg1); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_INIT_3X3_DELTAS (const octave_value_list& args, int nargout) { - double *arg1 = (double *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CV_INIT_3X3_DELTAS",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_INIT_3X3_DELTAS" "', argument " "1"" of type '" "double *""'"); - } - arg1 = (double *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_INIT_3X3_DELTAS" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_INIT_3X3_DELTAS" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - CV_INIT_3X3_DELTAS(arg1,arg2,arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CV_IS_HAAR_CLASSIFIER (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - int res1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CV_IS_HAAR_CLASSIFIER",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_HAAR_CLASSIFIER" "', argument " "1"" of type '" "void *""'"); - } - result = (int)CV_IS_HAAR_CLASSIFIER(arg1); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvCalcBackProject (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvHistogram *arg3 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCalcBackProject",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalcBackProject" "', argument " "1"" of type '" "IplImage *""'"); - } - arg1 = (IplImage *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalcBackProject" "', argument " "3"" of type '" "CvHistogram *""'"); - } - arg3 = (CvHistogram *)(argp3); - cvCalcBackProject(arg1,arg2,arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCalcBackProjectPatch (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSize arg3 ; - CvHistogram *arg4 = (CvHistogram *) 0 ; - int arg5 ; - double arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCalcBackProjectPatch",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalcBackProjectPatch" "', argument " "1"" of type '" "IplImage *""'"); - } - arg1 = (IplImage *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalcBackProjectPatch" "', argument " "3"" of type '" "CvSize""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCalcBackProjectPatch" "', argument " "3"" of type '" "CvSize""'"); - } else { - arg3 = *((CvSize *)(argp3)); - } - } - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCalcBackProjectPatch" "', argument " "4"" of type '" "CvHistogram *""'"); - } - arg4 = (CvHistogram *)(argp4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcBackProjectPatch" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - ecode6 = SWIG_AsVal_double(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCalcBackProjectPatch" "', argument " "6"" of type '" "double""'"); - } - arg6 = (double)(val6); - cvCalcBackProjectPatch(arg1,arg2,arg3,arg4,arg5,arg6); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCreateImage (const octave_value_list& args, int nargout) { - CvSize arg1 ; - int arg2 ; - int arg3 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvCreateImage",args.length(),3,3,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateImage" "', argument " "1"" of type '" "CvSize""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCreateImage" "', argument " "1"" of type '" "CvSize""'"); - } else { - arg1 = *((CvSize *)(argp1)); - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateImage" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateImage" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMat *)cvCreateImageMat(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvCloneImage (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvCloneImage",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCloneImage" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (CvMat *)cvCloneImageMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv32suf_i_set (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("Cv32suf_i_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_i_set" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv32suf_i_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->i = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv32suf_i_get (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("Cv32suf_i_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_i_get" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - result = (int) ((arg1)->i); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv32suf_u_set (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - unsigned int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - unsigned int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("Cv32suf_u_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_u_set" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv32suf_u_set" "', argument " "2"" of type '" "unsigned int""'"); - } - arg2 = (unsigned int)(val2); - if (arg1) (arg1)->u = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv32suf_u_get (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - unsigned int result; - - if (!SWIG_check_num_args("Cv32suf_u_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_u_get" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - result = (unsigned int) ((arg1)->u); - _outv = SWIG_From_unsigned_SS_int((unsigned int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv32suf_f_set (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("Cv32suf_f_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_f_set" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv32suf_f_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->f = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv32suf_f_get (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("Cv32suf_f_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_f_get" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - result = (float) ((arg1)->f); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_Cv32suf (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - Cv32suf *result = 0 ; - - if (!SWIG_check_num_args("new_Cv32suf",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (Cv32suf *)new Cv32suf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Cv32suf, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_Cv32suf (const octave_value_list& args, int nargout) { - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_Cv32suf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv32suf, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Cv32suf" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = (Cv32suf *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_Cv32suf_members[] = { -{"i",0,_wrap_Cv32suf_i_get,_wrap_Cv32suf_i_set,0,0}, -{"u",0,_wrap_Cv32suf_u_get,_wrap_Cv32suf_u_set,0,0}, -{"f",0,_wrap_Cv32suf_f_get,_wrap_Cv32suf_f_set,0,0}, -{0,0,0,0} -}; -static const char *swig_Cv32suf_base_names[] = {0}; -static const swig_type_info *swig_Cv32suf_base[] = {0}; -static swig_octave_class _wrap_class_Cv32suf = {"Cv32suf", &SWIGTYPE_p_Cv32suf,0,_wrap_new_Cv32suf,0,_wrap_delete_Cv32suf,swig_Cv32suf_members,swig_Cv32suf_base_names,swig_Cv32suf_base }; - -static octave_value_list _wrap_Cv64suf_i_set (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - int64 arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("Cv64suf_i_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_i_set" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_int64_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Cv64suf_i_set" "', argument " "2"" of type '" "int64""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Cv64suf_i_set" "', argument " "2"" of type '" "int64""'"); - } else { - arg2 = *((int64 *)(argp2)); - } - } - if (arg1) (arg1)->i = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv64suf_i_get (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int64 result; - - if (!SWIG_check_num_args("Cv64suf_i_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_i_get" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - result = ((arg1)->i); - _outv = SWIG_NewPointerObj((new int64((const int64&)(result))), SWIGTYPE_p_int64_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv64suf_u_set (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - uint64 arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("Cv64suf_u_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_u_set" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_uint64_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Cv64suf_u_set" "', argument " "2"" of type '" "uint64""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Cv64suf_u_set" "', argument " "2"" of type '" "uint64""'"); - } else { - arg2 = *((uint64 *)(argp2)); - } - } - if (arg1) (arg1)->u = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv64suf_u_get (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uint64 result; - - if (!SWIG_check_num_args("Cv64suf_u_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_u_get" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - result = ((arg1)->u); - _outv = SWIG_NewPointerObj((new uint64((const uint64&)(result))), SWIGTYPE_p_uint64_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv64suf_f_set (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("Cv64suf_f_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_f_set" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv64suf_f_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->f = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_Cv64suf_f_get (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("Cv64suf_f_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_f_get" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - result = (double) ((arg1)->f); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_Cv64suf (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - Cv64suf *result = 0 ; - - if (!SWIG_check_num_args("new_Cv64suf",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (Cv64suf *)new Cv64suf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Cv64suf, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_Cv64suf (const octave_value_list& args, int nargout) { - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_Cv64suf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_Cv64suf, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Cv64suf" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = (Cv64suf *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_Cv64suf_members[] = { -{"i",0,_wrap_Cv64suf_i_get,_wrap_Cv64suf_i_set,0,0}, -{"u",0,_wrap_Cv64suf_u_get,_wrap_Cv64suf_u_set,0,0}, -{"f",0,_wrap_Cv64suf_f_get,_wrap_Cv64suf_f_set,0,0}, -{0,0,0,0} -}; -static const char *swig_Cv64suf_base_names[] = {0}; -static const swig_type_info *swig_Cv64suf_base[] = {0}; -static swig_octave_class _wrap_class_Cv64suf = {"Cv64suf", &SWIGTYPE_p_Cv64suf,0,_wrap_new_Cv64suf,0,_wrap_delete_Cv64suf,swig_Cv64suf_members,swig_Cv64suf_base_names,swig_Cv64suf_base }; - -static octave_value_list _wrap_cvRound (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvRound",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRound" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = (int)cvRound(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvFloor (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvFloor",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvFloor" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = (int)cvFloor(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvCeil (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvCeil",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCeil" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = (int)cvCeil(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvIsNaN (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvIsNaN",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvIsNaN" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = (int)cvIsNaN(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvIsInf (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvIsInf",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvIsInf" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = (int)cvIsInf(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRNG__SWIG_0 (const octave_value_list& args, int nargout) { - int64 arg1 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG result; - - if (!SWIG_check_num_args("cvRNG",args.length(),1,1,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_int64_t, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRNG" "', argument " "1"" of type '" "int64""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvRNG" "', argument " "1"" of type '" "int64""'"); - } else { - arg1 = *((int64 *)(argp1)); - } - } - { - try { - result = cvRNG(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRNG__SWIG_1 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG result; - - if (!SWIG_check_num_args("cvRNG",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = cvRNG(); - } - catch (...) - { - SWIG_fail; - } - } - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRNG (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[1]={ - octave_value_ref(args,0) - }; - - if (argc == 0) { - return _wrap_cvRNG__SWIG_1(args, nargout); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_int64_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvRNG__SWIG_0(args, nargout); - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvRandInt (const octave_value_list& args, int nargout) { - CvRNG *arg1 = (CvRNG *) 0 ; - void *vptr1 ; - CvRNG_Wrapper *wrapper1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - unsigned int result; - - if (!SWIG_check_num_args("cvRandInt",args.length(),1,1,0)) { - SWIG_fail; - } - { - if(SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Octave object to C value"); - SWIG_fail; - } - wrapper1 = (CvRNG_Wrapper *) vptr1; - arg1 = wrapper1->ptr(); - } - { - try { - result = (unsigned int)cvRandInt(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_unsigned_SS_int((unsigned int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRandReal (const octave_value_list& args, int nargout) { - CvRNG *arg1 = (CvRNG *) 0 ; - void *vptr1 ; - CvRNG_Wrapper *wrapper1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvRandReal",args.length(),1,1,0)) { - SWIG_fail; - } - { - if(SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Octave object to C value"); - SWIG_fail; - } - wrapper1 = (CvRNG_Wrapper *) vptr1; - arg1 = wrapper1->ptr(); - } - { - try { - result = (double)cvRandReal(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_ID_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_ID_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_ID_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->ID = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_ID_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_ID_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->ID); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_nChannels_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_nChannels_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_nChannels_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nChannels = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_nChannels_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_nChannels_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->nChannels); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_depth_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_depth_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->depth = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_depth_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_depth_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->depth); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_dataOrder_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_dataOrder_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_dataOrder_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->dataOrder = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_dataOrder_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_dataOrder_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->dataOrder); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_origin_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_origin_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_origin_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->origin = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_origin_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_origin_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->origin); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_align_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_align_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_align_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->align = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_align_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_align_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->align); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_width_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_width_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->width = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_width_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_width_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->width); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_height_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_height_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->height = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_height_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_height_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->height); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_roi_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - _IplROI *arg2 = (_IplROI *) 0 ; - IplImage header1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_roi_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p__IplROI, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IplImage_roi_set" "', argument " "2"" of type '" "_IplROI *""'"); - } - arg2 = (_IplROI *)(argp2); - if (arg1) (arg1)->roi = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_roi_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - _IplROI *result = 0 ; - - if (!SWIG_check_num_args("IplImage_roi_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (_IplROI *) ((arg1)->roi); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplROI, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_imageSize_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_imageSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_imageSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->imageSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_imageSize_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_imageSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->imageSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_widthStep_set (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage_widthStep_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_widthStep_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->widthStep = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage_widthStep_get (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplImage_widthStep_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->widthStep); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_IplImage (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_IplImage",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - delete_IplImage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___add____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___add__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sa___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___mul____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___mul__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sm___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___sub____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___sub__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Ss___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___div____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___div__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sd___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___xor____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___xor__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sx___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___add____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___add__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage_operator_Sa___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___add__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___add____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___add____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___xor____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___xor__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage_operator_Sx___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___xor__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___xor____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___xor____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___sub____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___sub__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage_operator_Ss___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___sub__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___sub____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___sub____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___ge____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___ge__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sg__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___ge____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___ge__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___ge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Sg__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___ge__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___ge____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___ge____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___eq____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Se__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___eq____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___eq__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Se__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___eq__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___eq____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___eq____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___le____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___le__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sl__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___le____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___le__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___le__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Sl__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___le__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___le____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___le____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___ne____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_SN__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___ne____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___ne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_SN__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___ne__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___ne____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___ne____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___lt____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___lt__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sl___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___lt____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___lt__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___lt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Sl___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___lt__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___lt____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___lt____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___gt____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___gt__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sg___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___gt____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___gt__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___gt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Sg___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___gt__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___gt____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___gt____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___mul____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___mul__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___mul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Sm___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___mul__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___mul____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___mul____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___div____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___div__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___div__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage_operator_Sd___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___div__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___div____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___div____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___radd____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___radd__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage___radd____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rsub____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rsub__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage___rsub____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rdiv____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rdiv__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage___rdiv____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rmul____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rmul__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (IplImage *)IplImage___rmul____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___radd____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___radd__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage___radd____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___radd____SWIG_2 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___radd__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___radd__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage___radd____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___radd__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___radd____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___radd____SWIG_1(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___radd____SWIG_2(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___rsub____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rsub__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage___rsub____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rsub____SWIG_2 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rsub__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rsub__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage___rsub____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rsub__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___rsub____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___rsub____SWIG_1(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rsub____SWIG_2(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___rmul____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rmul__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rmul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rmul____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rmul__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___rmul____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rmul____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___rdiv____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rdiv__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rdiv__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rdiv____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rdiv__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___rdiv____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rdiv____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___ror____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___ror__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage___ror____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___ror____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___ror__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___ror__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage___ror____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___ror__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___ror____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___ror____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___rand____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rand__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage___rand____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rand____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rand__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rand__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage___rand____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rand__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___rand____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rand____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___rxor____SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rxor__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (IplImage *)IplImage___rxor____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rxor____SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rxor__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rxor__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage___rxor____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rxor__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___rxor____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rxor____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___req__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___req__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___req__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___req__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rgt__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rgt__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rgt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rgt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rge__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rge__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rge__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rlt__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rlt__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rlt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rlt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rle__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rle__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rle__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rle__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___rne__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("IplImage___rne__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)IplImage___rne__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___pow__ (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("IplImage___pow__",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___pow__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (IplImage *)IplImage___pow__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___str (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("IplImage___str",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - result = (char *)IplImage___str(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___paren_asgn__SWIG_0 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - octave_value arg2 ; - double arg3 ; - IplImage header1 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = args(1); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "IplImage___paren_asgn" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - IplImage___paren_asgn__SWIG_0(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___paren_asgn__SWIG_1 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - octave_value arg2 ; - CvPoint arg3 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = args(1); - { - arg3 = OctObject_to_CvPoint(args(2)); - } - { - try { - IplImage___paren_asgn__SWIG_1(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___paren_asgn__SWIG_2 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - octave_value arg2 ; - CvPoint2D32f arg3 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = args(1); - { - arg3 = OctObject_to_CvPoint2D32f(args(2)); - } - { - try { - IplImage___paren_asgn__SWIG_2(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___paren_asgn__SWIG_3 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - octave_value arg2 ; - CvScalar arg3 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = args(1); - { - arg3 = OctObject_to_CvScalar( args(2) ); - } - { - try { - IplImage___paren_asgn__SWIG_3(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___paren_asgn__SWIG_4 (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - octave_value arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg3 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplImage___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = args(1); - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - try { - IplImage___paren_asgn__SWIG_4(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_IplImage___paren_asgn (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvPoint, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___paren_asgn__SWIG_1(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvPoint2D32f, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___paren_asgn__SWIG_2(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___paren_asgn__SWIG_3(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[2]) || OctTuple_Check(argv[2])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[2], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_IplImage___paren_asgn__SWIG_4(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___paren_asgn__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_IplImage___paren (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - octave_value arg2 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("IplImage___paren",args.length(),2,2,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = args(1); - { - try { - result = IplImage___paren(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_IplImage_members[] = { -{"ID",0,_wrap_IplImage_ID_get,_wrap_IplImage_ID_set,0,0}, -{"nChannels",0,_wrap_IplImage_nChannels_get,_wrap_IplImage_nChannels_set,0,0}, -{"depth",0,_wrap_IplImage_depth_get,_wrap_IplImage_depth_set,0,0}, -{"dataOrder",0,_wrap_IplImage_dataOrder_get,_wrap_IplImage_dataOrder_set,0,0}, -{"origin",0,_wrap_IplImage_origin_get,_wrap_IplImage_origin_set,0,0}, -{"align",0,_wrap_IplImage_align_get,_wrap_IplImage_align_set,0,0}, -{"width",0,_wrap_IplImage_width_get,_wrap_IplImage_width_set,0,0}, -{"height",0,_wrap_IplImage_height_get,_wrap_IplImage_height_set,0,0}, -{"roi",0,_wrap_IplImage_roi_get,_wrap_IplImage_roi_set,0,0}, -{"imageSize",0,_wrap_IplImage_imageSize_get,_wrap_IplImage_imageSize_set,0,0}, -{"widthStep",0,_wrap_IplImage_widthStep_get,_wrap_IplImage_widthStep_set,0,0}, -{"__add__",_wrap_IplImage___add__,0,0,0,0}, -{"__xor__",_wrap_IplImage___xor__,0,0,0,0}, -{"__sub__",_wrap_IplImage___sub__,0,0,0,0}, -{"__ge__",_wrap_IplImage___ge__,0,0,0,0}, -{"__eq__",_wrap_IplImage___eq__,0,0,0,0}, -{"__le__",_wrap_IplImage___le__,0,0,0,0}, -{"__ne__",_wrap_IplImage___ne__,0,0,0,0}, -{"__lt__",_wrap_IplImage___lt__,0,0,0,0}, -{"__gt__",_wrap_IplImage___gt__,0,0,0,0}, -{"__mul__",_wrap_IplImage___mul__,0,0,0,0}, -{"__div__",_wrap_IplImage___div__,0,0,0,0}, -{"__radd__",_wrap_IplImage___radd__,0,0,0,0}, -{"__rsub__",_wrap_IplImage___rsub__,0,0,0,0}, -{"__rmul__",_wrap_IplImage___rmul__,0,0,0,0}, -{"__rdiv__",_wrap_IplImage___rdiv__,0,0,0,0}, -{"__ror__",_wrap_IplImage___ror__,0,0,0,0}, -{"__rand__",_wrap_IplImage___rand__,0,0,0,0}, -{"__rxor__",_wrap_IplImage___rxor__,0,0,0,0}, -{"__req__",_wrap_IplImage___req__,0,0,0,0}, -{"__rgt__",_wrap_IplImage___rgt__,0,0,0,0}, -{"__rge__",_wrap_IplImage___rge__,0,0,0,0}, -{"__rlt__",_wrap_IplImage___rlt__,0,0,0,0}, -{"__rle__",_wrap_IplImage___rle__,0,0,0,0}, -{"__rne__",_wrap_IplImage___rne__,0,0,0,0}, -{"__pow__",_wrap_IplImage___pow__,0,0,0,0}, -{"__str",_wrap_IplImage___str,0,0,0,0}, -{"__paren_asgn",_wrap_IplImage___paren_asgn,0,0,0,0}, -{"__paren",_wrap_IplImage___paren,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_IplImage_base_names[] = {0}; -static const swig_type_info *swig_IplImage_base[] = {0}; -static swig_octave_class _wrap_class_IplImage = {"IplImage", &SWIGTYPE_p__IplImage,0,0,0,_wrap_delete_IplImage,swig_IplImage_members,swig_IplImage_base_names,swig_IplImage_base }; - -static octave_value_list _wrap_IplROI_coi_set (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplROI_coi_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_coi_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_coi_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->coi = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_coi_get (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplROI_coi_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_coi_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - result = (int) ((arg1)->coi); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_xOffset_set (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplROI_xOffset_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_xOffset_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_xOffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->xOffset = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_xOffset_get (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplROI_xOffset_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_xOffset_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - result = (int) ((arg1)->xOffset); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_yOffset_set (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplROI_yOffset_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_yOffset_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_yOffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->yOffset = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_yOffset_get (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplROI_yOffset_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_yOffset_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - result = (int) ((arg1)->yOffset); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_width_set (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplROI_width_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_width_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->width = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_width_get (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplROI_width_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_width_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - result = (int) ((arg1)->width); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_height_set (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplROI_height_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_height_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->height = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplROI_height_get (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplROI_height_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_height_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - result = (int) ((arg1)->height); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_IplROI (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplROI *result = 0 ; - - if (!SWIG_check_num_args("new_IplROI",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (IplROI *)new IplROI(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplROI, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_IplROI (const octave_value_list& args, int nargout) { - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_IplROI",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplROI, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IplROI" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = (IplROI *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_IplROI_members[] = { -{"coi",0,_wrap_IplROI_coi_get,_wrap_IplROI_coi_set,0,0}, -{"xOffset",0,_wrap_IplROI_xOffset_get,_wrap_IplROI_xOffset_set,0,0}, -{"yOffset",0,_wrap_IplROI_yOffset_get,_wrap_IplROI_yOffset_set,0,0}, -{"width",0,_wrap_IplROI_width_get,_wrap_IplROI_width_set,0,0}, -{"height",0,_wrap_IplROI_height_get,_wrap_IplROI_height_set,0,0}, -{0,0,0,0} -}; -static const char *swig_IplROI_base_names[] = {0}; -static const swig_type_info *swig_IplROI_base[] = {0}; -static swig_octave_class _wrap_class_IplROI = {"IplROI", &SWIGTYPE_p__IplROI,0,_wrap_new_IplROI,0,_wrap_delete_IplROI,swig_IplROI_members,swig_IplROI_base_names,swig_IplROI_base }; - -static octave_value_list _wrap_IplConvKernel_nCols_set (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernel_nCols_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nCols_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_nCols_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nCols = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_nCols_get (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernel_nCols_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nCols_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - result = (int) ((arg1)->nCols); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_nRows_set (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernel_nRows_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nRows_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_nRows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nRows = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_nRows_get (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernel_nRows_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nRows_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - result = (int) ((arg1)->nRows); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_anchorX_set (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernel_anchorX_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorX_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_anchorX_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->anchorX = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_anchorX_get (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernel_anchorX_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorX_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - result = (int) ((arg1)->anchorX); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_anchorY_set (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernel_anchorY_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorY_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_anchorY_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->anchorY = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_anchorY_get (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernel_anchorY_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorY_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - result = (int) ((arg1)->anchorY); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_values_set (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernel_values_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_values_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IplConvKernel_values_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->values = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_values_get (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("IplConvKernel_values_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_values_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - result = (int *) ((arg1)->values); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_nShiftR_set (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernel_nShiftR_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nShiftR_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_nShiftR_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nShiftR = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernel_nShiftR_get (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernel_nShiftR_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nShiftR_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - result = (int) ((arg1)->nShiftR); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_IplConvKernel (const octave_value_list& args, int nargout) { - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_IplConvKernel",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IplConvKernel" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = (IplConvKernel *)(argp1); - { - try { - delete_IplConvKernel(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_IplConvKernel_members[] = { -{"nCols",0,_wrap_IplConvKernel_nCols_get,_wrap_IplConvKernel_nCols_set,0,0}, -{"nRows",0,_wrap_IplConvKernel_nRows_get,_wrap_IplConvKernel_nRows_set,0,0}, -{"anchorX",0,_wrap_IplConvKernel_anchorX_get,_wrap_IplConvKernel_anchorX_set,0,0}, -{"anchorY",0,_wrap_IplConvKernel_anchorY_get,_wrap_IplConvKernel_anchorY_set,0,0}, -{"values",0,_wrap_IplConvKernel_values_get,_wrap_IplConvKernel_values_set,0,0}, -{"nShiftR",0,_wrap_IplConvKernel_nShiftR_get,_wrap_IplConvKernel_nShiftR_set,0,0}, -{0,0,0,0} -}; -static const char *swig_IplConvKernel_base_names[] = {0}; -static const swig_type_info *swig_IplConvKernel_base[] = {0}; -static swig_octave_class _wrap_class_IplConvKernel = {"IplConvKernel", &SWIGTYPE_p__IplConvKernel,0,0,0,_wrap_delete_IplConvKernel,swig_IplConvKernel_members,swig_IplConvKernel_base_names,swig_IplConvKernel_base }; - -static octave_value_list _wrap_IplConvKernelFP_nCols_set (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernelFP_nCols_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nCols_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_nCols_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nCols = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_nCols_get (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernelFP_nCols_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nCols_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - result = (int) ((arg1)->nCols); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_nRows_set (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernelFP_nRows_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nRows_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_nRows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nRows = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_nRows_get (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernelFP_nRows_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nRows_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - result = (int) ((arg1)->nRows); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_anchorX_set (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernelFP_anchorX_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorX_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_anchorX_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->anchorX = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_anchorX_get (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernelFP_anchorX_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorX_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - result = (int) ((arg1)->anchorX); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_anchorY_set (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernelFP_anchorY_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorY_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_anchorY_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->anchorY = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_anchorY_get (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("IplConvKernelFP_anchorY_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorY_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - result = (int) ((arg1)->anchorY); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_values_set (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("IplConvKernelFP_values_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_values_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IplConvKernelFP_values_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->values = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_IplConvKernelFP_values_get (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("IplConvKernelFP_values_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_values_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - result = (float *) ((arg1)->values); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_IplConvKernelFP (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplConvKernelFP *result = 0 ; - - if (!SWIG_check_num_args("new_IplConvKernelFP",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (IplConvKernelFP *)new IplConvKernelFP(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplConvKernelFP, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_IplConvKernelFP (const octave_value_list& args, int nargout) { - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_IplConvKernelFP",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p__IplConvKernelFP, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IplConvKernelFP" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = (IplConvKernelFP *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_IplConvKernelFP_members[] = { -{"nCols",0,_wrap_IplConvKernelFP_nCols_get,_wrap_IplConvKernelFP_nCols_set,0,0}, -{"nRows",0,_wrap_IplConvKernelFP_nRows_get,_wrap_IplConvKernelFP_nRows_set,0,0}, -{"anchorX",0,_wrap_IplConvKernelFP_anchorX_get,_wrap_IplConvKernelFP_anchorX_set,0,0}, -{"anchorY",0,_wrap_IplConvKernelFP_anchorY_get,_wrap_IplConvKernelFP_anchorY_set,0,0}, -{"values",0,_wrap_IplConvKernelFP_values_get,_wrap_IplConvKernelFP_values_set,0,0}, -{0,0,0,0} -}; -static const char *swig_IplConvKernelFP_base_names[] = {0}; -static const swig_type_info *swig_IplConvKernelFP_base[] = {0}; -static swig_octave_class _wrap_class_IplConvKernelFP = {"IplConvKernelFP", &SWIGTYPE_p__IplConvKernelFP,0,_wrap_new_IplConvKernelFP,0,_wrap_delete_IplConvKernelFP,swig_IplConvKernelFP_members,swig_IplConvKernelFP_base_names,swig_IplConvKernelFP_base }; - -static octave_value_list _wrap_CvMat_type_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_type_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_type_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_type_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int) ((arg1)->type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_step_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_step_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_step_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->step = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_step_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_step_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_step_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int) ((arg1)->step); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_refcount_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_refcount_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_refcount_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_refcount_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->refcount = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_refcount_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvMat_refcount_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_refcount_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int *) ((arg1)->refcount); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_hdr_refcount_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_hdr_refcount_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_hdr_refcount_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_hdr_refcount_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->hdr_refcount = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_hdr_refcount_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_hdr_refcount_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_hdr_refcount_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (int) ((arg1)->hdr_refcount); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat_data *result = 0 ; - - if (!SWIG_check_num_args("CvMat_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - result = (CvMat_data *)& ((arg1)->data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMat (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMat",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMat" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - delete_CvMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_depth_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_depth_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_depth_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_depth_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_depth_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_depth_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_depth_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_depth_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_nChannels_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_nChannels_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_nChannels_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_nChannels_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_nChannels_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_nChannels_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_nChannels_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_nChannels_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_nChannels_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_dataOrder_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_dataOrder_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_dataOrder_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_dataOrder_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_dataOrder_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_dataOrder_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_dataOrder_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_dataOrder_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_dataOrder_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_origin_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_origin_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_origin_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_origin_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_origin_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_origin_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_origin_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_origin_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_origin_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_width_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_width_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_width_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_width_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_width_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_width_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_width_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_width_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_height_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_height_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_height_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_height_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_height_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_height_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_height_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_height_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_imageSize_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_imageSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_imageSize_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_imageSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_imageSize_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_imageSize_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_imageSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_imageSize_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_imageSize_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_widthStep_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_widthStep_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_widthStep_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_widthStep_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_widthStep_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_widthStep_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_widthStep_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_widthStep_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_widthStep_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_rows_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_rows_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_rows_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_rows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_rows_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_rows_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_rows_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_rows_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_rows_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_cols_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_cols_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_cols_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_cols_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - CvMat_cols_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_cols_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMat_cols_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_cols_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (int)CvMat_cols_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___add____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___add__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___add__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sa___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___mul____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___mul__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___mul__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sm___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___sub____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___sub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___sub__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Ss___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___div____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___div__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___div__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sd___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___xor____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___xor__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___xor__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sx___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___add____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___add__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___add__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat_operator_Sa___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___add__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___add____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___add____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___xor____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___xor__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___xor__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat_operator_Sx___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___xor__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___xor____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___xor____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___sub____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___sub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___sub__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat_operator_Ss___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___sub__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___sub____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___sub____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___ge____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___ge__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___ge__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sg__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___ge____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___ge__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___ge__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___ge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Sg__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___ge__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___ge____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___ge____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___eq____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___eq__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Se__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___eq____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___eq__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___eq__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Se__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___eq__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___eq____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___eq____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___le____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___le__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___le__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sl__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___le____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___le__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___le__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___le__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Sl__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___le__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___le____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___le____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___ne____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___ne__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_SN__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___ne____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___ne__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___ne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_SN__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___ne__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___ne____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___ne____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___lt____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___lt__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___lt__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sl___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___lt____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___lt__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___lt__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___lt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Sl___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___lt__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___lt____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___lt____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___gt____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___gt__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___gt__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sg___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___gt____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___gt__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___gt__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___gt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Sg___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___gt__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___gt____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___gt____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___mul____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___mul__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___mul__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___mul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Sm___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___mul__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___mul____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___mul____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___div____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___div__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___div__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___div__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat_operator_Sd___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___div__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___div____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___div____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___radd____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___radd__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___radd__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat___radd____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rsub____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rsub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rsub__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat___rsub____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rdiv____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rdiv__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rdiv__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat___rdiv____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rmul____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rmul__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rmul__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - result = (CvMat *)CvMat___rmul____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___radd____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___radd__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___radd__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat___radd____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___radd____SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___radd__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___radd__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___radd__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat___radd____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___radd__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___radd____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___radd____SWIG_1(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___radd____SWIG_2(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___rsub____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rsub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rsub__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat___rsub____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rsub____SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rsub__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rsub__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rsub__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat___rsub____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rsub__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___rsub____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___rsub____SWIG_1(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rsub____SWIG_2(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___rmul____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rmul__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rmul__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rmul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rmul____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rmul__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___rmul____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rmul____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___rdiv____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rdiv__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rdiv__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rdiv__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rdiv____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rdiv__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[1]) || OctTuple_Check(argv[1])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[1], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___rdiv____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rdiv____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___ror____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___ror__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___ror__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat___ror____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___ror____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___ror__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___ror__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___ror__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat___ror____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___ror__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___ror____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___ror____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___rand____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rand__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rand__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat___rand____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rand____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rand__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rand__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rand__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat___rand____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rand__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___rand____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rand____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___rxor____SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rxor__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rxor__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - arg2 = OctObject_to_CvScalar( args(1) ); - } - { - try { - result = (CvMat *)CvMat___rxor____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rxor____SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rxor__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rxor__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rxor__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat___rxor____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rxor__ (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___rxor____SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rxor____SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___req__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___req__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___req__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___req__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___req__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rgt__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rgt__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rgt__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rgt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rgt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rge__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rge__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rge__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rge__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rlt__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rlt__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rlt__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rlt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rlt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rle__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rle__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rle__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rle__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rle__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___rne__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvMat___rne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___rne__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvArr *)CvMat___rne__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___pow__ (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMat___pow__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___pow__" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___pow__" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = (CvMat *)CvMat___pow__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___str (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvMat___str",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___str" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (char *)CvMat___str(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___paren_asgn__SWIG_0 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - double arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___paren_asgn" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMat___paren_asgn" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - CvMat___paren_asgn__SWIG_0(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___paren_asgn__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - CvPoint arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___paren_asgn" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - { - arg3 = OctObject_to_CvPoint(args(2)); - } - { - try { - CvMat___paren_asgn__SWIG_1(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___paren_asgn__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - CvPoint2D32f arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___paren_asgn" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - { - arg3 = OctObject_to_CvPoint2D32f(args(2)); - } - { - try { - CvMat___paren_asgn__SWIG_2(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___paren_asgn__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - CvScalar arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___paren_asgn" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - { - arg3 = OctObject_to_CvScalar( args(2) ); - } - { - try { - CvMat___paren_asgn__SWIG_3(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___paren_asgn__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg3 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___paren_asgn" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - try { - CvMat___paren_asgn__SWIG_4(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat___paren_asgn (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvPoint, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___paren_asgn__SWIG_1(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvPoint2D32f, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___paren_asgn__SWIG_2(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvScalar, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___paren_asgn__SWIG_3(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - { - void *ptr; - if(OctList_Check(argv[2]) || OctTuple_Check(argv[2])) { - _v = 1; - } - else if (SWIG_ConvertPtr(argv[2], &ptr, 0, 0) == -1) { - _v = 0; - } - else{ - _v = 1; - } - } - if (_v) { - return _wrap_CvMat___paren_asgn__SWIG_4(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___paren_asgn__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMat___paren (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("CvMat___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat___paren" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - { - try { - result = CvMat___paren(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_imageData_set (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - octave_value arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_imageData_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_imageData_set" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - arg2 = args(1); - { - try { - CvMat_imageData_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_imageData_get (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("CvMat_imageData_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_imageData_get" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = CvMat_imageData_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMat_members[] = { -{"type",0,_wrap_CvMat_type_get,_wrap_CvMat_type_set,0,0}, -{"step",0,_wrap_CvMat_step_get,_wrap_CvMat_step_set,0,0}, -{"refcount",0,_wrap_CvMat_refcount_get,_wrap_CvMat_refcount_set,0,0}, -{"hdr_refcount",0,_wrap_CvMat_hdr_refcount_get,_wrap_CvMat_hdr_refcount_set,0,0}, -{"data",0,_wrap_CvMat_data_get,octave_set_immutable,0,0}, -{"depth",0,_wrap_CvMat_depth_get,_wrap_CvMat_depth_set,0,0}, -{"nChannels",0,_wrap_CvMat_nChannels_get,_wrap_CvMat_nChannels_set,0,0}, -{"dataOrder",0,_wrap_CvMat_dataOrder_get,_wrap_CvMat_dataOrder_set,0,0}, -{"origin",0,_wrap_CvMat_origin_get,_wrap_CvMat_origin_set,0,0}, -{"width",0,_wrap_CvMat_width_get,_wrap_CvMat_width_set,0,0}, -{"height",0,_wrap_CvMat_height_get,_wrap_CvMat_height_set,0,0}, -{"imageSize",0,_wrap_CvMat_imageSize_get,_wrap_CvMat_imageSize_set,0,0}, -{"widthStep",0,_wrap_CvMat_widthStep_get,_wrap_CvMat_widthStep_set,0,0}, -{"rows",0,_wrap_CvMat_rows_get,_wrap_CvMat_rows_set,0,0}, -{"cols",0,_wrap_CvMat_cols_get,_wrap_CvMat_cols_set,0,0}, -{"__add__",_wrap_CvMat___add__,0,0,0,0}, -{"__xor__",_wrap_CvMat___xor__,0,0,0,0}, -{"__sub__",_wrap_CvMat___sub__,0,0,0,0}, -{"__ge__",_wrap_CvMat___ge__,0,0,0,0}, -{"__eq__",_wrap_CvMat___eq__,0,0,0,0}, -{"__le__",_wrap_CvMat___le__,0,0,0,0}, -{"__ne__",_wrap_CvMat___ne__,0,0,0,0}, -{"__lt__",_wrap_CvMat___lt__,0,0,0,0}, -{"__gt__",_wrap_CvMat___gt__,0,0,0,0}, -{"__mul__",_wrap_CvMat___mul__,0,0,0,0}, -{"__div__",_wrap_CvMat___div__,0,0,0,0}, -{"__radd__",_wrap_CvMat___radd__,0,0,0,0}, -{"__rsub__",_wrap_CvMat___rsub__,0,0,0,0}, -{"__rmul__",_wrap_CvMat___rmul__,0,0,0,0}, -{"__rdiv__",_wrap_CvMat___rdiv__,0,0,0,0}, -{"__ror__",_wrap_CvMat___ror__,0,0,0,0}, -{"__rand__",_wrap_CvMat___rand__,0,0,0,0}, -{"__rxor__",_wrap_CvMat___rxor__,0,0,0,0}, -{"__req__",_wrap_CvMat___req__,0,0,0,0}, -{"__rgt__",_wrap_CvMat___rgt__,0,0,0,0}, -{"__rge__",_wrap_CvMat___rge__,0,0,0,0}, -{"__rlt__",_wrap_CvMat___rlt__,0,0,0,0}, -{"__rle__",_wrap_CvMat___rle__,0,0,0,0}, -{"__rne__",_wrap_CvMat___rne__,0,0,0,0}, -{"__pow__",_wrap_CvMat___pow__,0,0,0,0}, -{"__str",_wrap_CvMat___str,0,0,0,0}, -{"__paren_asgn",_wrap_CvMat___paren_asgn,0,0,0,0}, -{"__paren",_wrap_CvMat___paren,0,0,0,0}, -{"imageData",0,_wrap_CvMat_imageData_get,_wrap_CvMat_imageData_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMat_base_names[] = {0}; -static const swig_type_info *swig_CvMat_base[] = {0}; -static swig_octave_class _wrap_class_CvMat = {"CvMat", &SWIGTYPE_p_CvMat,0,0,0,_wrap_delete_CvMat,swig_CvMat_members,swig_CvMat_base_names,swig_CvMat_base }; - -static octave_value_list _wrap_CvMat_data_ptr_set (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - uchar *arg2 = (uchar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_data_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_ptr_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_ptr_set" "', argument " "2"" of type '" "uchar *""'"); - } - arg2 = (uchar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_ptr_get (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvMat_data_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_ptr_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - result = (uchar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_s_set (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - short *arg2 = (short *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_data_s_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_s_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_short, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_s_set" "', argument " "2"" of type '" "short *""'"); - } - arg2 = (short *)(argp2); - if (arg1) (arg1)->s = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_s_get (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - short *result = 0 ; - - if (!SWIG_check_num_args("CvMat_data_s_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_s_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - result = (short *) ((arg1)->s); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_short, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_i_set (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_data_i_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_i_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_i_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->i = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_i_get (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvMat_data_i_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_i_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - result = (int *) ((arg1)->i); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_fl_set (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_data_fl_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_fl_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_fl_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->fl = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_fl_get (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvMat_data_fl_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_fl_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - result = (float *) ((arg1)->fl); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_db_set (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMat_data_db_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_db_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_db_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->db = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMat_data_db_get (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvMat_data_db_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_db_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - result = (double *) ((arg1)->db); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMat_data (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat_data *result = 0 ; - - if (!SWIG_check_num_args("new_CvMat_data",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMat_data *)new CvMat_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat_data, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMat_data (const octave_value_list& args, int nargout) { - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMat_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMat_data" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = (CvMat_data *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMat_data_members[] = { -{"ptr",0,_wrap_CvMat_data_ptr_get,_wrap_CvMat_data_ptr_set,0,0}, -{"s",0,_wrap_CvMat_data_s_get,_wrap_CvMat_data_s_set,0,0}, -{"i",0,_wrap_CvMat_data_i_get,_wrap_CvMat_data_i_set,0,0}, -{"fl",0,_wrap_CvMat_data_fl_get,_wrap_CvMat_data_fl_set,0,0}, -{"db",0,_wrap_CvMat_data_db_get,_wrap_CvMat_data_db_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMat_data_base_names[] = {0}; -static const swig_type_info *swig_CvMat_data_base[] = {0}; -static swig_octave_class _wrap_class_CvMat_data = {"CvMat_data", &SWIGTYPE_p_CvMat_data,0,_wrap_new_CvMat_data,0,_wrap_delete_CvMat_data,swig_CvMat_data_members,swig_CvMat_data_base_names,swig_CvMat_data_base }; - -static octave_value_list _wrap_cvMat__SWIG_0 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat result; - - if (!SWIG_check_num_args("cvMat",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvMat" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMat" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMat" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3),SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvMat" "', argument " "4"" of type '" "void *""'"); - } - { - try { - result = cvMat(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvMat((const CvMat&)(result))), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvMat__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat result; - - if (!SWIG_check_num_args("cvMat",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvMat" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMat" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMat" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = cvMat(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvMat((const CvMat&)(result))), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvMat (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvMat__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[3], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvMat__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvmGet (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvmGet",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvmGet" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvmGet" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvmGet" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (double)cvmGet((CvMat const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvmSet (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - int arg3 ; - double arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvmSet",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvmSet" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvmSet" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvmSet" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvmSet" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - { - try { - cvmSet(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvIplDepth (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvIplDepth",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvIplDepth" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - try { - result = (int)cvIplDepth(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_type_set (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_type_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_type_get (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatND_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_type_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - result = (int) ((arg1)->type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_dims_set (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_dims_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dims_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->dims = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_dims_get (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatND_dims_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dims_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - result = (int) ((arg1)->dims); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_refcount_set (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_refcount_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_refcount_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_refcount_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->refcount = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_refcount_get (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_refcount_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_refcount_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - result = (int *) ((arg1)->refcount); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_hdr_refcount_set (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_hdr_refcount_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_hdr_refcount_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_hdr_refcount_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->hdr_refcount = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_hdr_refcount_get (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatND_hdr_refcount_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_hdr_refcount_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - result = (int) ((arg1)->hdr_refcount); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_dim_get (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatND_dim *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_dim_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - result = (CvMatND_dim *)(CvMatND_dim *) ((arg1)->dim); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_get (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatND_data *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - result = (CvMatND_data *)& ((arg1)->data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMatND (const octave_value_list& args, int nargout) { - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMatND",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatND" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = (CvMatND *)(argp1); - { - try { - delete_CvMatND(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMatND_members[] = { -{"type",0,_wrap_CvMatND_type_get,_wrap_CvMatND_type_set,0,0}, -{"dims",0,_wrap_CvMatND_dims_get,_wrap_CvMatND_dims_set,0,0}, -{"refcount",0,_wrap_CvMatND_refcount_get,_wrap_CvMatND_refcount_set,0,0}, -{"hdr_refcount",0,_wrap_CvMatND_hdr_refcount_get,_wrap_CvMatND_hdr_refcount_set,0,0}, -{"dim",0,_wrap_CvMatND_dim_get,octave_set_immutable,0,0}, -{"data",0,_wrap_CvMatND_data_get,octave_set_immutable,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMatND_base_names[] = {0}; -static const swig_type_info *swig_CvMatND_base[] = {0}; -static swig_octave_class _wrap_class_CvMatND = {"CvMatND", &SWIGTYPE_p_CvMatND,0,0,0,_wrap_delete_CvMatND,swig_CvMatND_members,swig_CvMatND_base_names,swig_CvMatND_base }; - -static octave_value_list _wrap_CvMatND_dim_size_set (const octave_value_list& args, int nargout) { - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_dim_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_size_set" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = (CvMatND_dim *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_dim_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_dim_size_get (const octave_value_list& args, int nargout) { - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatND_dim_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_size_get" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = (CvMatND_dim *)(argp1); - result = (int) ((arg1)->size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_dim_step_set (const octave_value_list& args, int nargout) { - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_dim_step_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_step_set" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = (CvMatND_dim *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_dim_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->step = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_dim_step_get (const octave_value_list& args, int nargout) { - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatND_dim_step_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_step_get" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = (CvMatND_dim *)(argp1); - result = (int) ((arg1)->step); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatND_dim (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatND_dim *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatND_dim",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMatND_dim *)new CvMatND_dim(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_dim, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMatND_dim (const octave_value_list& args, int nargout) { - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMatND_dim",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_dim, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatND_dim" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = (CvMatND_dim *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMatND_dim_members[] = { -{"size",0,_wrap_CvMatND_dim_size_get,_wrap_CvMatND_dim_size_set,0,0}, -{"step",0,_wrap_CvMatND_dim_step_get,_wrap_CvMatND_dim_step_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMatND_dim_base_names[] = {0}; -static const swig_type_info *swig_CvMatND_dim_base[] = {0}; -static swig_octave_class _wrap_class_CvMatND_dim = {"CvMatND_dim", &SWIGTYPE_p_CvMatND_dim,0,_wrap_new_CvMatND_dim,0,_wrap_delete_CvMatND_dim,swig_CvMatND_dim_members,swig_CvMatND_dim_base_names,swig_CvMatND_dim_base }; - -static octave_value_list _wrap_CvMatND_data_ptr_set (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - uchar *arg2 = (uchar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_data_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_ptr_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_ptr_set" "', argument " "2"" of type '" "uchar *""'"); - } - arg2 = (uchar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_ptr_get (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_data_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_ptr_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - result = (uchar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_fl_set (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_data_fl_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_fl_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_fl_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->fl = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_fl_get (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_data_fl_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_fl_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - result = (float *) ((arg1)->fl); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_db_set (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_data_db_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_db_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_db_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->db = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_db_get (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_data_db_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_db_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - result = (double *) ((arg1)->db); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_i_set (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_data_i_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_i_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_i_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->i = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_i_get (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_data_i_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_i_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - result = (int *) ((arg1)->i); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_s_set (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - short *arg2 = (short *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatND_data_s_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_s_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_short, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_s_set" "', argument " "2"" of type '" "short *""'"); - } - arg2 = (short *)(argp2); - if (arg1) (arg1)->s = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatND_data_s_get (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - short *result = 0 ; - - if (!SWIG_check_num_args("CvMatND_data_s_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_s_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - result = (short *) ((arg1)->s); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_short, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatND_data (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatND_data *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatND_data",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMatND_data *)new CvMatND_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_data, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMatND_data (const octave_value_list& args, int nargout) { - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMatND_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatND_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatND_data" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = (CvMatND_data *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMatND_data_members[] = { -{"ptr",0,_wrap_CvMatND_data_ptr_get,_wrap_CvMatND_data_ptr_set,0,0}, -{"fl",0,_wrap_CvMatND_data_fl_get,_wrap_CvMatND_data_fl_set,0,0}, -{"db",0,_wrap_CvMatND_data_db_get,_wrap_CvMatND_data_db_set,0,0}, -{"i",0,_wrap_CvMatND_data_i_get,_wrap_CvMatND_data_i_set,0,0}, -{"s",0,_wrap_CvMatND_data_s_get,_wrap_CvMatND_data_s_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMatND_data_base_names[] = {0}; -static const swig_type_info *swig_CvMatND_data_base[] = {0}; -static swig_octave_class _wrap_class_CvMatND_data = {"CvMatND_data", &SWIGTYPE_p_CvMatND_data,0,_wrap_new_CvMatND_data,0,_wrap_delete_CvMatND_data,swig_CvMatND_data_members,swig_CvMatND_data_base_names,swig_CvMatND_data_base }; - -static octave_value_list _wrap_CvSparseMat_type_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_type_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_type_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMat_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_type_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int) ((arg1)->type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_dims_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_dims_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_dims_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->dims = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_dims_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMat_dims_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_dims_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int) ((arg1)->dims); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_refcount_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_refcount_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_refcount_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMat_refcount_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->refcount = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_refcount_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvSparseMat_refcount_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_refcount_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int *) ((arg1)->refcount); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_hdr_refcount_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_hdr_refcount_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hdr_refcount_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_hdr_refcount_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->hdr_refcount = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_hdr_refcount_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMat_hdr_refcount_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hdr_refcount_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int) ((arg1)->hdr_refcount); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_heap_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_heap_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_heap_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->heap = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_heap_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("CvSparseMat_heap_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_heap_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (CvSet *) ((arg1)->heap); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_hashtable_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void **arg2 = (void **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - void *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_hashtable_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashtable_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer2 = (void *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->hashtable = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_hashtable_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void **result = 0 ; - - if (!SWIG_check_num_args("CvSparseMat_hashtable_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashtable_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (void **) ((arg1)->hashtable); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_hashsize_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_hashsize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashsize_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_hashsize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->hashsize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_hashsize_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMat_hashsize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashsize_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int) ((arg1)->hashsize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_valoffset_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_valoffset_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_valoffset_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_valoffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->valoffset = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_valoffset_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMat_valoffset_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_valoffset_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int) ((arg1)->valoffset); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_idxoffset_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_idxoffset_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_idxoffset_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_idxoffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->idxoffset = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_idxoffset_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMat_idxoffset_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_idxoffset_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int) ((arg1)->idxoffset); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_size_set (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMat_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_size_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMat_size_set" "', argument " "2"" of type '" "int [32]""'"); - } - arg2 = (int *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) arg1->size[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""size""' of type '""int [32]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMat_size_get (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvSparseMat_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_size_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - result = (int *)(int *) ((arg1)->size); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSparseMat (const octave_value_list& args, int nargout) { - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSparseMat",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSparseMat" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = (CvSparseMat *)(argp1); - { - try { - delete_CvSparseMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSparseMat_members[] = { -{"type",0,_wrap_CvSparseMat_type_get,_wrap_CvSparseMat_type_set,0,0}, -{"dims",0,_wrap_CvSparseMat_dims_get,_wrap_CvSparseMat_dims_set,0,0}, -{"refcount",0,_wrap_CvSparseMat_refcount_get,_wrap_CvSparseMat_refcount_set,0,0}, -{"hdr_refcount",0,_wrap_CvSparseMat_hdr_refcount_get,_wrap_CvSparseMat_hdr_refcount_set,0,0}, -{"heap",0,_wrap_CvSparseMat_heap_get,_wrap_CvSparseMat_heap_set,0,0}, -{"hashtable",0,_wrap_CvSparseMat_hashtable_get,_wrap_CvSparseMat_hashtable_set,0,0}, -{"hashsize",0,_wrap_CvSparseMat_hashsize_get,_wrap_CvSparseMat_hashsize_set,0,0}, -{"valoffset",0,_wrap_CvSparseMat_valoffset_get,_wrap_CvSparseMat_valoffset_set,0,0}, -{"idxoffset",0,_wrap_CvSparseMat_idxoffset_get,_wrap_CvSparseMat_idxoffset_set,0,0}, -{"size",0,_wrap_CvSparseMat_size_get,_wrap_CvSparseMat_size_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSparseMat_base_names[] = {0}; -static const swig_type_info *swig_CvSparseMat_base[] = {0}; -static swig_octave_class _wrap_class_CvSparseMat = {"CvSparseMat", &SWIGTYPE_p_CvSparseMat,0,0,0,_wrap_delete_CvSparseMat,swig_CvSparseMat_members,swig_CvSparseMat_base_names,swig_CvSparseMat_base }; - -static octave_value_list _wrap_CvSparseNode_hashval_set (const octave_value_list& args, int nargout) { - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - unsigned int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - unsigned int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseNode_hashval_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_hashval_set" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = (CvSparseNode *)(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseNode_hashval_set" "', argument " "2"" of type '" "unsigned int""'"); - } - arg2 = (unsigned int)(val2); - if (arg1) (arg1)->hashval = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseNode_hashval_get (const octave_value_list& args, int nargout) { - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - unsigned int result; - - if (!SWIG_check_num_args("CvSparseNode_hashval_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_hashval_get" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = (CvSparseNode *)(argp1); - result = (unsigned int) ((arg1)->hashval); - _outv = SWIG_From_unsigned_SS_int((unsigned int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseNode_next_set (const octave_value_list& args, int nargout) { - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseNode_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_next_set" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = (CvSparseNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSparseNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseNode_next_set" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = (CvSparseNode *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseNode_next_get (const octave_value_list& args, int nargout) { - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSparseNode *result = 0 ; - - if (!SWIG_check_num_args("CvSparseNode_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_next_get" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = (CvSparseNode *)(argp1); - result = (CvSparseNode *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSparseNode (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSparseNode *result = 0 ; - - if (!SWIG_check_num_args("new_CvSparseNode",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSparseNode *)new CvSparseNode(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSparseNode (const octave_value_list& args, int nargout) { - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSparseNode",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSparseNode" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = (CvSparseNode *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSparseNode_members[] = { -{"hashval",0,_wrap_CvSparseNode_hashval_get,_wrap_CvSparseNode_hashval_set,0,0}, -{"next",0,_wrap_CvSparseNode_next_get,_wrap_CvSparseNode_next_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSparseNode_base_names[] = {0}; -static const swig_type_info *swig_CvSparseNode_base[] = {0}; -static swig_octave_class _wrap_class_CvSparseNode = {"CvSparseNode", &SWIGTYPE_p_CvSparseNode,0,_wrap_new_CvSparseNode,0,_wrap_delete_CvSparseNode,swig_CvSparseNode_members,swig_CvSparseNode_base_names,swig_CvSparseNode_base }; - -static octave_value_list _wrap_CvSparseMatIterator_mat_set (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - CvSparseMat *arg2 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMatIterator_mat_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_mat_set" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSparseMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMatIterator_mat_set" "', argument " "2"" of type '" "CvSparseMat *""'"); - } - arg2 = (CvSparseMat *)(argp2); - if (arg1) (arg1)->mat = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMatIterator_mat_get (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSparseMat *result = 0 ; - - if (!SWIG_check_num_args("CvSparseMatIterator_mat_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_mat_get" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - result = (CvSparseMat *) ((arg1)->mat); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMatIterator_node_set (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMatIterator_node_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_node_set" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSparseNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMatIterator_node_set" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = (CvSparseNode *)(argp2); - if (arg1) (arg1)->node = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMatIterator_node_get (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSparseNode *result = 0 ; - - if (!SWIG_check_num_args("CvSparseMatIterator_node_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_node_get" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - result = (CvSparseNode *) ((arg1)->node); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMatIterator_curidx_set (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSparseMatIterator_curidx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_curidx_set" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMatIterator_curidx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->curidx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSparseMatIterator_curidx_get (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSparseMatIterator_curidx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_curidx_get" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - result = (int) ((arg1)->curidx); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSparseMatIterator (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSparseMatIterator *result = 0 ; - - if (!SWIG_check_num_args("new_CvSparseMatIterator",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSparseMatIterator *)new CvSparseMatIterator(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseMatIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSparseMatIterator (const octave_value_list& args, int nargout) { - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSparseMatIterator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSparseMatIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSparseMatIterator" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = (CvSparseMatIterator *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSparseMatIterator_members[] = { -{"mat",0,_wrap_CvSparseMatIterator_mat_get,_wrap_CvSparseMatIterator_mat_set,0,0}, -{"node",0,_wrap_CvSparseMatIterator_node_get,_wrap_CvSparseMatIterator_node_set,0,0}, -{"curidx",0,_wrap_CvSparseMatIterator_curidx_get,_wrap_CvSparseMatIterator_curidx_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSparseMatIterator_base_names[] = {0}; -static const swig_type_info *swig_CvSparseMatIterator_base[] = {0}; -static swig_octave_class _wrap_class_CvSparseMatIterator = {"CvSparseMatIterator", &SWIGTYPE_p_CvSparseMatIterator,0,_wrap_new_CvSparseMatIterator,0,_wrap_delete_CvSparseMatIterator,swig_CvSparseMatIterator_members,swig_CvSparseMatIterator_base_names,swig_CvSparseMatIterator_base }; - -static octave_value_list _wrap_CvHistogram_type_set (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHistogram_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_type_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHistogram_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_type_get (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHistogram_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_type_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (int) ((arg1)->type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_bins_set (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHistogram_bins_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_bins_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - if (arg1) (arg1)->bins = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_bins_get (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("CvHistogram_bins_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_bins_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (CvArr *) ((arg1)->bins); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_thresh_set (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - float (*arg2)[2] ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHistogram_thresh_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_a_2__float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHistogram_thresh_set" "', argument " "2"" of type '" "float [32][2]""'"); - } - arg2 = (float (*)[2])(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)2; ++jj) arg1->thresh[ii][jj] = arg2[ii][jj]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""thresh""' of type '""float [32][2]""'"); - } - } - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""thresh""' of type '""float [32][2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_thresh_get (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float (*result)[2] = 0 ; - - if (!SWIG_check_num_args("CvHistogram_thresh_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (float (*)[2])(float (*)[2]) ((arg1)->thresh); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_2__float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_thresh2_set (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHistogram_thresh2_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh2_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->thresh2 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_thresh2_get (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float **result = 0 ; - - if (!SWIG_check_num_args("CvHistogram_thresh2_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh2_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (float **) ((arg1)->thresh2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_mat_set (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - CvMatND *arg2 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHistogram_mat_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_mat_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHistogram_mat_set" "', argument " "2"" of type '" "CvMatND *""'"); - } - arg2 = (CvMatND *)(argp2); - if (arg1) (arg1)->mat = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHistogram_mat_get (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatND *result = 0 ; - - if (!SWIG_check_num_args("CvHistogram_mat_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_mat_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - result = (CvMatND *)& ((arg1)->mat); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHistogram (const octave_value_list& args, int nargout) { - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHistogram",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHistogram, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHistogram" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = (CvHistogram *)(argp1); - { - try { - delete_CvHistogram(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHistogram_members[] = { -{"type",0,_wrap_CvHistogram_type_get,_wrap_CvHistogram_type_set,0,0}, -{"bins",0,_wrap_CvHistogram_bins_get,_wrap_CvHistogram_bins_set,0,0}, -{"thresh",0,_wrap_CvHistogram_thresh_get,_wrap_CvHistogram_thresh_set,0,0}, -{"thresh2",0,_wrap_CvHistogram_thresh2_get,_wrap_CvHistogram_thresh2_set,0,0}, -{"mat",0,_wrap_CvHistogram_mat_get,_wrap_CvHistogram_mat_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHistogram_base_names[] = {0}; -static const swig_type_info *swig_CvHistogram_base[] = {0}; -static swig_octave_class _wrap_class_CvHistogram = {"CvHistogram", &SWIGTYPE_p_CvHistogram,0,0,0,_wrap_delete_CvHistogram,swig_CvHistogram_members,swig_CvHistogram_base_names,swig_CvHistogram_base }; - -static octave_value_list _wrap_CvRect_x_set (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRect_x_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_x_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_x_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->x = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_x_get (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvRect_x_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_x_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - result = (int) ((arg1)->x); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_y_set (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRect_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_y_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_y_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_y_get (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvRect_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_y_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - result = (int) ((arg1)->y); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_width_set (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRect_width_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_width_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->width = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_width_get (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvRect_width_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_width_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - result = (int) ((arg1)->width); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_height_set (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRect_height_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_height_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->height = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRect_height_get (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvRect_height_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_height_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - result = (int) ((arg1)->height); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvRect (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("new_CvRect",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvRect *)new CvRect(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvRect (const octave_value_list& args, int nargout) { - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvRect",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRect, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRect" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = (CvRect *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvRect_members[] = { -{"x",0,_wrap_CvRect_x_get,_wrap_CvRect_x_set,0,0}, -{"y",0,_wrap_CvRect_y_get,_wrap_CvRect_y_set,0,0}, -{"width",0,_wrap_CvRect_width_get,_wrap_CvRect_width_set,0,0}, -{"height",0,_wrap_CvRect_height_get,_wrap_CvRect_height_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvRect_base_names[] = {0}; -static const swig_type_info *swig_CvRect_base[] = {0}; -static swig_octave_class _wrap_class_CvRect = {"CvRect", &SWIGTYPE_p_CvRect,0,_wrap_new_CvRect,0,_wrap_delete_CvRect,swig_CvRect_members,swig_CvRect_base_names,swig_CvRect_base }; - -static octave_value_list _wrap_cvRect (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect result; - - if (!SWIG_check_num_args("cvRect",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRect" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRect" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRect" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvRect" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = cvRect(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvRect((const CvRect&)(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRectToROI (const octave_value_list& args, int nargout) { - CvRect arg1 ; - int arg2 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplROI result; - - if (!SWIG_check_num_args("cvRectToROI",args.length(),2,2,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvRect, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRectToROI" "', argument " "1"" of type '" "CvRect""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvRectToROI" "', argument " "1"" of type '" "CvRect""'"); - } else { - arg1 = *((CvRect *)(argp1)); - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRectToROI" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = cvRectToROI(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new IplROI((const IplROI&)(result))), SWIGTYPE_p__IplROI, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvROIToRect (const octave_value_list& args, int nargout) { - IplROI arg1 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect result; - - if (!SWIG_check_num_args("cvROIToRect",args.length(),1,1,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p__IplROI, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvROIToRect" "', argument " "1"" of type '" "IplROI""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvROIToRect" "', argument " "1"" of type '" "IplROI""'"); - } else { - arg1 = *((IplROI *)(argp1)); - } - } - { - try { - result = cvROIToRect(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvRect((const CvRect&)(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTermCriteria_type_set (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTermCriteria_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_type_set" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTermCriteria_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTermCriteria_type_get (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTermCriteria_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_type_get" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - result = (int) ((arg1)->type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTermCriteria_max_iter_set (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTermCriteria_max_iter_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_max_iter_set" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTermCriteria_max_iter_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->max_iter = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTermCriteria_max_iter_get (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTermCriteria_max_iter_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_max_iter_get" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - result = (int) ((arg1)->max_iter); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTermCriteria_epsilon_set (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTermCriteria_epsilon_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_epsilon_set" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTermCriteria_epsilon_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->epsilon = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTermCriteria_epsilon_get (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvTermCriteria_epsilon_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_epsilon_get" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - result = (double) ((arg1)->epsilon); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTermCriteria (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTermCriteria *result = 0 ; - - if (!SWIG_check_num_args("new_CvTermCriteria",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTermCriteria *)new CvTermCriteria(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTermCriteria (const octave_value_list& args, int nargout) { - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTermCriteria",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTermCriteria" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = (CvTermCriteria *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTermCriteria_members[] = { -{"type",0,_wrap_CvTermCriteria_type_get,_wrap_CvTermCriteria_type_set,0,0}, -{"max_iter",0,_wrap_CvTermCriteria_max_iter_get,_wrap_CvTermCriteria_max_iter_set,0,0}, -{"epsilon",0,_wrap_CvTermCriteria_epsilon_get,_wrap_CvTermCriteria_epsilon_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTermCriteria_base_names[] = {0}; -static const swig_type_info *swig_CvTermCriteria_base[] = {0}; -static swig_octave_class _wrap_class_CvTermCriteria = {"CvTermCriteria", &SWIGTYPE_p_CvTermCriteria,0,_wrap_new_CvTermCriteria,0,_wrap_delete_CvTermCriteria,swig_CvTermCriteria_members,swig_CvTermCriteria_base_names,swig_CvTermCriteria_base }; - -static octave_value_list _wrap_cvTermCriteria (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - double arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTermCriteria result; - - if (!SWIG_check_num_args("cvTermCriteria",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvTermCriteria" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvTermCriteria" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvTermCriteria" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = cvTermCriteria(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvTermCriteria((const CvTermCriteria&)(result))), SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint_x_set (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint_x_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_x_set" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint_x_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->x = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint_x_get (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvPoint_x_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_x_get" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - result = (int) ((arg1)->x); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint_y_set (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_y_set" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint_y_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint_y_get (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvPoint_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_y_get" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - result = (int) ((arg1)->y); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint___str__ (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvPoint___str__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint___str__" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - { - try { - result = (char *)CvPoint___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint___repr__ (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvPoint___repr__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint___repr__" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - { - try { - result = (char *)CvPoint___repr__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPoint (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("new_CvPoint",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPoint *)new CvPoint(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPoint (const octave_value_list& args, int nargout) { - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPoint",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = (CvPoint *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPoint_members[] = { -{"x",0,_wrap_CvPoint_x_get,_wrap_CvPoint_x_set,0,0}, -{"y",0,_wrap_CvPoint_y_get,_wrap_CvPoint_y_set,0,0}, -{"__str__",_wrap_CvPoint___str__,0,0,0,0}, -{"__repr__",_wrap_CvPoint___repr__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPoint_base_names[] = {0}; -static const swig_type_info *swig_CvPoint_base[] = {0}; -static swig_octave_class _wrap_class_CvPoint = {"CvPoint", &SWIGTYPE_p_CvPoint,0,_wrap_new_CvPoint,0,_wrap_delete_CvPoint,swig_CvPoint_members,swig_CvPoint_base_names,swig_CvPoint_base }; - -static octave_value_list _wrap_cvPoint (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint result; - - if (!SWIG_check_num_args("cvPoint",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = cvPoint(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint((const CvPoint&)(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D32f_x_set (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint2D32f_x_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_x_set" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D32f_x_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->x = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D32f_x_get (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvPoint2D32f_x_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_x_get" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - result = (float) ((arg1)->x); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D32f_y_set (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint2D32f_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_y_set" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D32f_y_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D32f_y_get (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvPoint2D32f_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_y_get" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - result = (float) ((arg1)->y); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D32f___str__ (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvPoint2D32f___str__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f___str__" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - { - try { - result = (char *)CvPoint2D32f___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D32f___repr__ (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvPoint2D32f___repr__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f___repr__" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - { - try { - result = (char *)CvPoint2D32f___repr__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPoint2D32f (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("new_CvPoint2D32f",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPoint2D32f *)new CvPoint2D32f(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPoint2D32f (const octave_value_list& args, int nargout) { - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPoint2D32f",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint2D32f" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = (CvPoint2D32f *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPoint2D32f_members[] = { -{"x",0,_wrap_CvPoint2D32f_x_get,_wrap_CvPoint2D32f_x_set,0,0}, -{"y",0,_wrap_CvPoint2D32f_y_get,_wrap_CvPoint2D32f_y_set,0,0}, -{"__str__",_wrap_CvPoint2D32f___str__,0,0,0,0}, -{"__repr__",_wrap_CvPoint2D32f___repr__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPoint2D32f_base_names[] = {0}; -static const swig_type_info *swig_CvPoint2D32f_base[] = {0}; -static swig_octave_class _wrap_class_CvPoint2D32f = {"CvPoint2D32f", &SWIGTYPE_p_CvPoint2D32f,0,_wrap_new_CvPoint2D32f,0,_wrap_delete_CvPoint2D32f,swig_CvPoint2D32f_members,swig_CvPoint2D32f_base_names,swig_CvPoint2D32f_base }; - -static octave_value_list _wrap_cvPoint2D32f (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f result; - - if (!SWIG_check_num_args("cvPoint2D32f",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint2D32f" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint2D32f" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = cvPoint2D32f(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint2D32f((const CvPoint2D32f&)(result))), SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvPointTo32f (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f result; - - if (!SWIG_check_num_args("cvPointTo32f",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - { - try { - result = cvPointTo32f(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint2D32f((const CvPoint2D32f&)(result))), SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvPointFrom32f (const octave_value_list& args, int nargout) { - CvPoint2D32f arg1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint result; - - if (!SWIG_check_num_args("cvPointFrom32f",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint2D32f(args(0)); - } - { - try { - result = cvPointFrom32f(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint((const CvPoint&)(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D32f_x_set (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint3D32f_x_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_x_set" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D32f_x_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->x = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D32f_x_get (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvPoint3D32f_x_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_x_get" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - result = (float) ((arg1)->x); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D32f_y_set (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint3D32f_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_y_set" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D32f_y_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D32f_y_get (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvPoint3D32f_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_y_get" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - result = (float) ((arg1)->y); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D32f_z_set (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint3D32f_z_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_z_set" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D32f_z_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->z = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D32f_z_get (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvPoint3D32f_z_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_z_get" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - result = (float) ((arg1)->z); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPoint3D32f (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint3D32f *result = 0 ; - - if (!SWIG_check_num_args("new_CvPoint3D32f",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPoint3D32f *)new CvPoint3D32f(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint3D32f, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPoint3D32f (const octave_value_list& args, int nargout) { - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPoint3D32f",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint3D32f" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = (CvPoint3D32f *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPoint3D32f_members[] = { -{"x",0,_wrap_CvPoint3D32f_x_get,_wrap_CvPoint3D32f_x_set,0,0}, -{"y",0,_wrap_CvPoint3D32f_y_get,_wrap_CvPoint3D32f_y_set,0,0}, -{"z",0,_wrap_CvPoint3D32f_z_get,_wrap_CvPoint3D32f_z_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPoint3D32f_base_names[] = {0}; -static const swig_type_info *swig_CvPoint3D32f_base[] = {0}; -static swig_octave_class _wrap_class_CvPoint3D32f = {"CvPoint3D32f", &SWIGTYPE_p_CvPoint3D32f,0,_wrap_new_CvPoint3D32f,0,_wrap_delete_CvPoint3D32f,swig_CvPoint3D32f_members,swig_CvPoint3D32f_base_names,swig_CvPoint3D32f_base }; - -static octave_value_list _wrap_cvPoint3D32f (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint3D32f result; - - if (!SWIG_check_num_args("cvPoint3D32f",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint3D32f" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint3D32f" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPoint3D32f" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = cvPoint3D32f(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint3D32f((const CvPoint3D32f&)(result))), SWIGTYPE_p_CvPoint3D32f, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D64f_x_set (const octave_value_list& args, int nargout) { - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint2D64f_x_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_x_set" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = (CvPoint2D64f *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D64f_x_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->x = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D64f_x_get (const octave_value_list& args, int nargout) { - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvPoint2D64f_x_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_x_get" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = (CvPoint2D64f *)(argp1); - result = (double) ((arg1)->x); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D64f_y_set (const octave_value_list& args, int nargout) { - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint2D64f_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_y_set" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = (CvPoint2D64f *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D64f_y_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint2D64f_y_get (const octave_value_list& args, int nargout) { - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvPoint2D64f_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_y_get" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = (CvPoint2D64f *)(argp1); - result = (double) ((arg1)->y); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPoint2D64f (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D64f *result = 0 ; - - if (!SWIG_check_num_args("new_CvPoint2D64f",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPoint2D64f *)new CvPoint2D64f(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D64f, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPoint2D64f (const octave_value_list& args, int nargout) { - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPoint2D64f",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint2D64f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint2D64f" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = (CvPoint2D64f *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPoint2D64f_members[] = { -{"x",0,_wrap_CvPoint2D64f_x_get,_wrap_CvPoint2D64f_x_set,0,0}, -{"y",0,_wrap_CvPoint2D64f_y_get,_wrap_CvPoint2D64f_y_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPoint2D64f_base_names[] = {0}; -static const swig_type_info *swig_CvPoint2D64f_base[] = {0}; -static swig_octave_class _wrap_class_CvPoint2D64f = {"CvPoint2D64f", &SWIGTYPE_p_CvPoint2D64f,0,_wrap_new_CvPoint2D64f,0,_wrap_delete_CvPoint2D64f,swig_CvPoint2D64f_members,swig_CvPoint2D64f_base_names,swig_CvPoint2D64f_base }; - -static octave_value_list _wrap_cvPoint2D64f (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D64f result; - - if (!SWIG_check_num_args("cvPoint2D64f",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint2D64f" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint2D64f" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = cvPoint2D64f(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint2D64f((const CvPoint2D64f&)(result))), SWIGTYPE_p_CvPoint2D64f, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D64f_x_set (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint3D64f_x_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_x_set" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D64f_x_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->x = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D64f_x_get (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvPoint3D64f_x_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_x_get" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - result = (double) ((arg1)->x); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D64f_y_set (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint3D64f_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_y_set" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D64f_y_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D64f_y_get (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvPoint3D64f_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_y_get" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - result = (double) ((arg1)->y); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D64f_z_set (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPoint3D64f_z_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_z_set" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D64f_z_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->z = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPoint3D64f_z_get (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvPoint3D64f_z_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_z_get" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - result = (double) ((arg1)->z); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPoint3D64f (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint3D64f *result = 0 ; - - if (!SWIG_check_num_args("new_CvPoint3D64f",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPoint3D64f *)new CvPoint3D64f(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint3D64f, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPoint3D64f (const octave_value_list& args, int nargout) { - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPoint3D64f",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPoint3D64f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint3D64f" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = (CvPoint3D64f *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPoint3D64f_members[] = { -{"x",0,_wrap_CvPoint3D64f_x_get,_wrap_CvPoint3D64f_x_set,0,0}, -{"y",0,_wrap_CvPoint3D64f_y_get,_wrap_CvPoint3D64f_y_set,0,0}, -{"z",0,_wrap_CvPoint3D64f_z_get,_wrap_CvPoint3D64f_z_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPoint3D64f_base_names[] = {0}; -static const swig_type_info *swig_CvPoint3D64f_base[] = {0}; -static swig_octave_class _wrap_class_CvPoint3D64f = {"CvPoint3D64f", &SWIGTYPE_p_CvPoint3D64f,0,_wrap_new_CvPoint3D64f,0,_wrap_delete_CvPoint3D64f,swig_CvPoint3D64f_members,swig_CvPoint3D64f_base_names,swig_CvPoint3D64f_base }; - -static octave_value_list _wrap_cvPoint3D64f (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint3D64f result; - - if (!SWIG_check_num_args("cvPoint3D64f",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint3D64f" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint3D64f" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPoint3D64f" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = cvPoint3D64f(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvPoint3D64f((const CvPoint3D64f&)(result))), SWIGTYPE_p_CvPoint3D64f, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize_width_set (const octave_value_list& args, int nargout) { - CvSize *arg1 = (CvSize *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSize_width_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_width_set" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = (CvSize *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->width = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize_width_get (const octave_value_list& args, int nargout) { - CvSize *arg1 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSize_width_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_width_get" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = (CvSize *)(argp1); - result = (int) ((arg1)->width); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize_height_set (const octave_value_list& args, int nargout) { - CvSize *arg1 = (CvSize *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSize_height_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_height_set" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = (CvSize *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->height = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize_height_get (const octave_value_list& args, int nargout) { - CvSize *arg1 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSize_height_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_height_get" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = (CvSize *)(argp1); - result = (int) ((arg1)->height); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSize (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize *result = 0 ; - - if (!SWIG_check_num_args("new_CvSize",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSize *)new CvSize(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSize (const octave_value_list& args, int nargout) { - CvSize *arg1 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSize",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSize" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = (CvSize *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSize_members[] = { -{"width",0,_wrap_CvSize_width_get,_wrap_CvSize_width_set,0,0}, -{"height",0,_wrap_CvSize_height_get,_wrap_CvSize_height_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSize_base_names[] = {0}; -static const swig_type_info *swig_CvSize_base[] = {0}; -static swig_octave_class _wrap_class_CvSize = {"CvSize", &SWIGTYPE_p_CvSize,0,_wrap_new_CvSize,0,_wrap_delete_CvSize,swig_CvSize_members,swig_CvSize_base_names,swig_CvSize_base }; - -static octave_value_list _wrap_cvSize (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize result; - - if (!SWIG_check_num_args("cvSize",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSize" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSize" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = cvSize(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSize((const CvSize&)(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize2D32f_width_set (const octave_value_list& args, int nargout) { - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSize2D32f_width_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_width_set" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = (CvSize2D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize2D32f_width_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->width = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize2D32f_width_get (const octave_value_list& args, int nargout) { - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvSize2D32f_width_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_width_get" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = (CvSize2D32f *)(argp1); - result = (float) ((arg1)->width); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize2D32f_height_set (const octave_value_list& args, int nargout) { - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSize2D32f_height_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_height_set" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = (CvSize2D32f *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize2D32f_height_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->height = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSize2D32f_height_get (const octave_value_list& args, int nargout) { - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvSize2D32f_height_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_height_get" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = (CvSize2D32f *)(argp1); - result = (float) ((arg1)->height); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSize2D32f (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize2D32f *result = 0 ; - - if (!SWIG_check_num_args("new_CvSize2D32f",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSize2D32f *)new CvSize2D32f(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize2D32f, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSize2D32f (const octave_value_list& args, int nargout) { - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSize2D32f",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSize2D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSize2D32f" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = (CvSize2D32f *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSize2D32f_members[] = { -{"width",0,_wrap_CvSize2D32f_width_get,_wrap_CvSize2D32f_width_set,0,0}, -{"height",0,_wrap_CvSize2D32f_height_get,_wrap_CvSize2D32f_height_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSize2D32f_base_names[] = {0}; -static const swig_type_info *swig_CvSize2D32f_base[] = {0}; -static swig_octave_class _wrap_class_CvSize2D32f = {"CvSize2D32f", &SWIGTYPE_p_CvSize2D32f,0,_wrap_new_CvSize2D32f,0,_wrap_delete_CvSize2D32f,swig_CvSize2D32f_members,swig_CvSize2D32f_base_names,swig_CvSize2D32f_base }; - -static octave_value_list _wrap_cvSize2D32f (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize2D32f result; - - if (!SWIG_check_num_args("cvSize2D32f",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSize2D32f" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSize2D32f" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = cvSize2D32f(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSize2D32f((const CvSize2D32f&)(result))), SWIGTYPE_p_CvSize2D32f, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBox2D_center_set (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBox2D_center_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_center_set" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBox2D_center_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = (CvPoint2D32f *)(argp2); - if (arg1) (arg1)->center = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBox2D_center_get (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvBox2D_center_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_center_get" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - result = (CvPoint2D32f *)& ((arg1)->center); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBox2D_size_set (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - CvSize2D32f *arg2 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBox2D_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_size_set" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBox2D_size_set" "', argument " "2"" of type '" "CvSize2D32f *""'"); - } - arg2 = (CvSize2D32f *)(argp2); - if (arg1) (arg1)->size = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBox2D_size_get (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvBox2D_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_size_get" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - result = (CvSize2D32f *)& ((arg1)->size); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBox2D_angle_set (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBox2D_angle_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_angle_set" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBox2D_angle_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->angle = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBox2D_angle_get (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBox2D_angle_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_angle_get" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - result = (float) ((arg1)->angle); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBox2D (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBox2D *result = 0 ; - - if (!SWIG_check_num_args("new_CvBox2D",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvBox2D *)new CvBox2D(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBox2D, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvBox2D (const octave_value_list& args, int nargout) { - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvBox2D",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBox2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBox2D" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = (CvBox2D *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvBox2D_members[] = { -{"center",0,_wrap_CvBox2D_center_get,_wrap_CvBox2D_center_set,0,0}, -{"size",0,_wrap_CvBox2D_size_get,_wrap_CvBox2D_size_set,0,0}, -{"angle",0,_wrap_CvBox2D_angle_get,_wrap_CvBox2D_angle_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvBox2D_base_names[] = {0}; -static const swig_type_info *swig_CvBox2D_base[] = {0}; -static swig_octave_class _wrap_class_CvBox2D = {"CvBox2D", &SWIGTYPE_p_CvBox2D,0,_wrap_new_CvBox2D,0,_wrap_delete_CvBox2D,swig_CvBox2D_members,swig_CvBox2D_base_names,swig_CvBox2D_base }; - -static octave_value_list _wrap_CvLineIterator_ptr_set (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - uchar *arg2 = (uchar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvLineIterator_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_ptr_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvLineIterator_ptr_set" "', argument " "2"" of type '" "uchar *""'"); - } - arg2 = (uchar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_ptr_get (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvLineIterator_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_ptr_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - result = (uchar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_err_set (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvLineIterator_err_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_err_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_err_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->err = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_err_get (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvLineIterator_err_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_err_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - result = (int) ((arg1)->err); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_plus_delta_set (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvLineIterator_plus_delta_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_delta_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_plus_delta_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->plus_delta = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_plus_delta_get (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvLineIterator_plus_delta_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_delta_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - result = (int) ((arg1)->plus_delta); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_minus_delta_set (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvLineIterator_minus_delta_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_delta_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_minus_delta_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->minus_delta = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_minus_delta_get (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvLineIterator_minus_delta_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_delta_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - result = (int) ((arg1)->minus_delta); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_plus_step_set (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvLineIterator_plus_step_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_step_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_plus_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->plus_step = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_plus_step_get (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvLineIterator_plus_step_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_step_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - result = (int) ((arg1)->plus_step); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_minus_step_set (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvLineIterator_minus_step_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_step_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_minus_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->minus_step = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvLineIterator_minus_step_get (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvLineIterator_minus_step_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_step_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - result = (int) ((arg1)->minus_step); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvLineIterator (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvLineIterator *result = 0 ; - - if (!SWIG_check_num_args("new_CvLineIterator",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvLineIterator *)new CvLineIterator(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvLineIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvLineIterator (const octave_value_list& args, int nargout) { - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvLineIterator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvLineIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvLineIterator" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = (CvLineIterator *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvLineIterator_members[] = { -{"ptr",0,_wrap_CvLineIterator_ptr_get,_wrap_CvLineIterator_ptr_set,0,0}, -{"err",0,_wrap_CvLineIterator_err_get,_wrap_CvLineIterator_err_set,0,0}, -{"plus_delta",0,_wrap_CvLineIterator_plus_delta_get,_wrap_CvLineIterator_plus_delta_set,0,0}, -{"minus_delta",0,_wrap_CvLineIterator_minus_delta_get,_wrap_CvLineIterator_minus_delta_set,0,0}, -{"plus_step",0,_wrap_CvLineIterator_plus_step_get,_wrap_CvLineIterator_plus_step_set,0,0}, -{"minus_step",0,_wrap_CvLineIterator_minus_step_get,_wrap_CvLineIterator_minus_step_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvLineIterator_base_names[] = {0}; -static const swig_type_info *swig_CvLineIterator_base[] = {0}; -static swig_octave_class _wrap_class_CvLineIterator = {"CvLineIterator", &SWIGTYPE_p_CvLineIterator,0,_wrap_new_CvLineIterator,0,_wrap_delete_CvLineIterator,swig_CvLineIterator_members,swig_CvLineIterator_base_names,swig_CvLineIterator_base }; - -static octave_value_list _wrap_CvSlice_start_index_set (const octave_value_list& args, int nargout) { - CvSlice *arg1 = (CvSlice *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSlice_start_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_start_index_set" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = (CvSlice *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSlice_start_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->start_index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSlice_start_index_get (const octave_value_list& args, int nargout) { - CvSlice *arg1 = (CvSlice *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSlice_start_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_start_index_get" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = (CvSlice *)(argp1); - result = (int) ((arg1)->start_index); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSlice_end_index_set (const octave_value_list& args, int nargout) { - CvSlice *arg1 = (CvSlice *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSlice_end_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_end_index_set" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = (CvSlice *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSlice_end_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->end_index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSlice_end_index_get (const octave_value_list& args, int nargout) { - CvSlice *arg1 = (CvSlice *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSlice_end_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_end_index_get" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = (CvSlice *)(argp1); - result = (int) ((arg1)->end_index); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSlice (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSlice *result = 0 ; - - if (!SWIG_check_num_args("new_CvSlice",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSlice *)new CvSlice(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSlice, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSlice (const octave_value_list& args, int nargout) { - CvSlice *arg1 = (CvSlice *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSlice",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSlice, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSlice" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = (CvSlice *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSlice_members[] = { -{"start_index",0,_wrap_CvSlice_start_index_get,_wrap_CvSlice_start_index_set,0,0}, -{"end_index",0,_wrap_CvSlice_end_index_get,_wrap_CvSlice_end_index_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSlice_base_names[] = {0}; -static const swig_type_info *swig_CvSlice_base[] = {0}; -static swig_octave_class _wrap_class_CvSlice = {"CvSlice", &SWIGTYPE_p_CvSlice,0,_wrap_new_CvSlice,0,_wrap_delete_CvSlice,swig_CvSlice_members,swig_CvSlice_base_names,swig_CvSlice_base }; - -static octave_value_list _wrap_cvSlice (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSlice result; - - if (!SWIG_check_num_args("cvSlice",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSlice" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSlice" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = cvSlice(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSlice((const CvSlice&)(result))), SWIGTYPE_p_CvSlice, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvScalar_val_set (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - double *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvScalar_val_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar_val_set" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvScalar_val_set" "', argument " "2"" of type '" "double [4]""'"); - } - arg2 = (double *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""double [4]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvScalar_val_get (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvScalar_val_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar_val_get" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - result = (double *)(double *) ((arg1)->val); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvScalar___str__ (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvScalar___str__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___str__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - { - try { - result = (char *)CvScalar___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvScalar___repr__ (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvScalar___repr__",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___repr__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - { - try { - result = (char *)CvScalar___repr__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvScalar___getitem__ (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvScalar___getitem__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___getitem__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvScalar___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (double)CvScalar___getitem__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvScalar___setitem__ (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - int arg2 ; - double arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvScalar___setitem__",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___setitem__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvScalar___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvScalar___setitem__" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - CvScalar___setitem__(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvScalar (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar *result = 0 ; - - if (!SWIG_check_num_args("new_CvScalar",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvScalar *)new CvScalar(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvScalar, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvScalar (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvScalar",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvScalar" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = (CvScalar *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvScalar_members[] = { -{"val",0,_wrap_CvScalar_val_get,_wrap_CvScalar_val_set,0,0}, -{"__str__",_wrap_CvScalar___str__,0,0,0,0}, -{"__repr__",_wrap_CvScalar___repr__,0,0,0,0}, -{"__getitem__",_wrap_CvScalar___getitem__,0,0,0,0}, -{"__setitem__",_wrap_CvScalar___setitem__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvScalar_base_names[] = {0}; -static const swig_type_info *swig_CvScalar_base[] = {0}; -static swig_octave_class _wrap_class_CvScalar = {"CvScalar", &SWIGTYPE_p_CvScalar,0,_wrap_new_CvScalar,0,_wrap_delete_CvScalar,swig_CvScalar_members,swig_CvScalar_base_names,swig_CvScalar_base }; - -static octave_value_list _wrap_cvScalar__SWIG_0 (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double arg3 ; - double arg4 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("cvScalar",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvScalar" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvScalar" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvScalar" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - { - try { - result = cvScalar(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvScalar__SWIG_1 (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("cvScalar",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvScalar" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvScalar" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = cvScalar(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvScalar__SWIG_2 (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("cvScalar",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvScalar" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - result = cvScalar(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvScalar__SWIG_3 (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("cvScalar",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = cvScalar(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvScalar (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_3(args, nargout); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_2(args, nargout); - } - } - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvRealScalar (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("cvRealScalar",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRealScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = cvRealScalar(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvScalarAll (const octave_value_list& args, int nargout) { - double arg1 ; - double val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar result; - - if (!SWIG_check_num_args("cvScalarAll",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalarAll" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - { - try { - result = cvScalarAll(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvScalar((const CvScalar&)(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemBlock_prev_set (const octave_value_list& args, int nargout) { - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemBlock_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_prev_set" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = (CvMemBlock *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemBlock_prev_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = (CvMemBlock *)(argp2); - if (arg1) (arg1)->prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemBlock_prev_get (const octave_value_list& args, int nargout) { - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemBlock *result = 0 ; - - if (!SWIG_check_num_args("CvMemBlock_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_prev_get" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = (CvMemBlock *)(argp1); - result = (CvMemBlock *) ((arg1)->prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemBlock_next_set (const octave_value_list& args, int nargout) { - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemBlock_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_next_set" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = (CvMemBlock *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemBlock_next_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = (CvMemBlock *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemBlock_next_get (const octave_value_list& args, int nargout) { - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemBlock *result = 0 ; - - if (!SWIG_check_num_args("CvMemBlock_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_next_get" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = (CvMemBlock *)(argp1); - result = (CvMemBlock *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMemBlock (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemBlock *result = 0 ; - - if (!SWIG_check_num_args("new_CvMemBlock",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMemBlock *)new CvMemBlock(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMemBlock (const octave_value_list& args, int nargout) { - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMemBlock",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMemBlock" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = (CvMemBlock *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMemBlock_members[] = { -{"prev",0,_wrap_CvMemBlock_prev_get,_wrap_CvMemBlock_prev_set,0,0}, -{"next",0,_wrap_CvMemBlock_next_get,_wrap_CvMemBlock_next_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMemBlock_base_names[] = {0}; -static const swig_type_info *swig_CvMemBlock_base[] = {0}; -static swig_octave_class _wrap_class_CvMemBlock = {"CvMemBlock", &SWIGTYPE_p_CvMemBlock,0,_wrap_new_CvMemBlock,0,_wrap_delete_CvMemBlock,swig_CvMemBlock_members,swig_CvMemBlock_base_names,swig_CvMemBlock_base }; - -static octave_value_list _wrap_CvMemStorage_signature_set (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStorage_signature_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_signature_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStorage_signature_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->signature = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_signature_get (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMemStorage_signature_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_signature_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (int) ((arg1)->signature); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_bottom_set (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStorage_bottom_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_bottom_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStorage_bottom_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = (CvMemBlock *)(argp2); - if (arg1) (arg1)->bottom = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_bottom_get (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemBlock *result = 0 ; - - if (!SWIG_check_num_args("CvMemStorage_bottom_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_bottom_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (CvMemBlock *) ((arg1)->bottom); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_top_set (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStorage_top_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_top_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStorage_top_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = (CvMemBlock *)(argp2); - if (arg1) (arg1)->top = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_top_get (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemBlock *result = 0 ; - - if (!SWIG_check_num_args("CvMemStorage_top_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_top_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (CvMemBlock *) ((arg1)->top); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_parent_set (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStorage_parent_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_parent_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStorage_parent_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->parent = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_parent_get (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvMemStorage_parent_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_parent_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (CvMemStorage *) ((arg1)->parent); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_block_size_set (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStorage_block_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_block_size_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStorage_block_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->block_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_block_size_get (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMemStorage_block_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_block_size_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (int) ((arg1)->block_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_free_space_set (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStorage_free_space_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_free_space_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStorage_free_space_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->free_space = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStorage_free_space_get (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMemStorage_free_space_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_free_space_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - result = (int) ((arg1)->free_space); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMemStorage (const octave_value_list& args, int nargout) { - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMemStorage",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMemStorage" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = (CvMemStorage *)(argp1); - { - try { - delete_CvMemStorage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMemStorage_members[] = { -{"signature",0,_wrap_CvMemStorage_signature_get,_wrap_CvMemStorage_signature_set,0,0}, -{"bottom",0,_wrap_CvMemStorage_bottom_get,_wrap_CvMemStorage_bottom_set,0,0}, -{"top",0,_wrap_CvMemStorage_top_get,_wrap_CvMemStorage_top_set,0,0}, -{"parent",0,_wrap_CvMemStorage_parent_get,_wrap_CvMemStorage_parent_set,0,0}, -{"block_size",0,_wrap_CvMemStorage_block_size_get,_wrap_CvMemStorage_block_size_set,0,0}, -{"free_space",0,_wrap_CvMemStorage_free_space_get,_wrap_CvMemStorage_free_space_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMemStorage_base_names[] = {0}; -static const swig_type_info *swig_CvMemStorage_base[] = {0}; -static swig_octave_class _wrap_class_CvMemStorage = {"CvMemStorage", &SWIGTYPE_p_CvMemStorage,0,0,0,_wrap_delete_CvMemStorage,swig_CvMemStorage_members,swig_CvMemStorage_base_names,swig_CvMemStorage_base }; - -static octave_value_list _wrap_CvMemStoragePos_top_set (const octave_value_list& args, int nargout) { - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStoragePos_top_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_top_set" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = (CvMemStoragePos *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStoragePos_top_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = (CvMemBlock *)(argp2); - if (arg1) (arg1)->top = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStoragePos_top_get (const octave_value_list& args, int nargout) { - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemBlock *result = 0 ; - - if (!SWIG_check_num_args("CvMemStoragePos_top_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_top_get" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = (CvMemStoragePos *)(argp1); - result = (CvMemBlock *) ((arg1)->top); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStoragePos_free_space_set (const octave_value_list& args, int nargout) { - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMemStoragePos_free_space_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_free_space_set" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = (CvMemStoragePos *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStoragePos_free_space_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->free_space = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMemStoragePos_free_space_get (const octave_value_list& args, int nargout) { - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMemStoragePos_free_space_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_free_space_get" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = (CvMemStoragePos *)(argp1); - result = (int) ((arg1)->free_space); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMemStoragePos (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStoragePos *result = 0 ; - - if (!SWIG_check_num_args("new_CvMemStoragePos",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMemStoragePos *)new CvMemStoragePos(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStoragePos, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMemStoragePos (const octave_value_list& args, int nargout) { - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMemStoragePos",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMemStoragePos, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMemStoragePos" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = (CvMemStoragePos *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMemStoragePos_members[] = { -{"top",0,_wrap_CvMemStoragePos_top_get,_wrap_CvMemStoragePos_top_set,0,0}, -{"free_space",0,_wrap_CvMemStoragePos_free_space_get,_wrap_CvMemStoragePos_free_space_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMemStoragePos_base_names[] = {0}; -static const swig_type_info *swig_CvMemStoragePos_base[] = {0}; -static swig_octave_class _wrap_class_CvMemStoragePos = {"CvMemStoragePos", &SWIGTYPE_p_CvMemStoragePos,0,_wrap_new_CvMemStoragePos,0,_wrap_delete_CvMemStoragePos,swig_CvMemStoragePos_members,swig_CvMemStoragePos_base_names,swig_CvMemStoragePos_base }; - -static octave_value_list _wrap_CvSeqBlock_prev_set (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqBlock_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_prev_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqBlock_prev_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_prev_get (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSeqBlock_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_prev_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - result = (CvSeqBlock *) ((arg1)->prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_next_set (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqBlock_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_next_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqBlock_next_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_next_get (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSeqBlock_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_next_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - result = (CvSeqBlock *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_start_index_set (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqBlock_start_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_start_index_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqBlock_start_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->start_index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_start_index_get (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeqBlock_start_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_start_index_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - result = (int) ((arg1)->start_index); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_count_set (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqBlock_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_count_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqBlock_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_count_get (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeqBlock_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_count_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_data_set (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqBlock_data_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_data_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqBlock_data_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->data = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqBlock_data_get (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqBlock_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_data_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - result = (schar *) ((arg1)->data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeqBlock (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeqBlock",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSeqBlock *)new CvSeqBlock(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeqBlock (const octave_value_list& args, int nargout) { - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeqBlock",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeqBlock" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = (CvSeqBlock *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeqBlock_members[] = { -{"prev",0,_wrap_CvSeqBlock_prev_get,_wrap_CvSeqBlock_prev_set,0,0}, -{"next",0,_wrap_CvSeqBlock_next_get,_wrap_CvSeqBlock_next_set,0,0}, -{"start_index",0,_wrap_CvSeqBlock_start_index_get,_wrap_CvSeqBlock_start_index_set,0,0}, -{"count",0,_wrap_CvSeqBlock_count_get,_wrap_CvSeqBlock_count_set,0,0}, -{"data",0,_wrap_CvSeqBlock_data_get,_wrap_CvSeqBlock_data_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeqBlock_base_names[] = {0}; -static const swig_type_info *swig_CvSeqBlock_base[] = {0}; -static swig_octave_class _wrap_class_CvSeqBlock = {"CvSeqBlock", &SWIGTYPE_p_CvSeqBlock,0,_wrap_new_CvSeqBlock,0,_wrap_delete_CvSeqBlock,swig_CvSeqBlock_members,swig_CvSeqBlock_base_names,swig_CvSeqBlock_base }; - -static octave_value_list _wrap_CvSeq_flags_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_flags_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeq_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_header_size_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_header_size_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeq_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_h_prev_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_h_prev_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_h_next_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_h_next_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_v_prev_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_v_prev_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_v_next_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_v_next_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_total_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_total_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeq_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_elem_size_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_elem_size_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeq_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_block_max_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_block_max_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_ptr_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_ptr_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_delta_elems_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_delta_elems_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeq_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_storage_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_storage_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_free_blocks_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_free_blocks_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_first_set (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_first_get (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSeq *)new CvSeq(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_members[] = { -{"flags",0,_wrap_CvSeq_flags_get,_wrap_CvSeq_flags_set,0,0}, -{"header_size",0,_wrap_CvSeq_header_size_get,_wrap_CvSeq_header_size_set,0,0}, -{"h_prev",0,_wrap_CvSeq_h_prev_get,_wrap_CvSeq_h_prev_set,0,0}, -{"h_next",0,_wrap_CvSeq_h_next_get,_wrap_CvSeq_h_next_set,0,0}, -{"v_prev",0,_wrap_CvSeq_v_prev_get,_wrap_CvSeq_v_prev_set,0,0}, -{"v_next",0,_wrap_CvSeq_v_next_get,_wrap_CvSeq_v_next_set,0,0}, -{"total",0,_wrap_CvSeq_total_get,_wrap_CvSeq_total_set,0,0}, -{"elem_size",0,_wrap_CvSeq_elem_size_get,_wrap_CvSeq_elem_size_set,0,0}, -{"block_max",0,_wrap_CvSeq_block_max_get,_wrap_CvSeq_block_max_set,0,0}, -{"ptr",0,_wrap_CvSeq_ptr_get,_wrap_CvSeq_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvSeq_delta_elems_get,_wrap_CvSeq_delta_elems_set,0,0}, -{"storage",0,_wrap_CvSeq_storage_get,_wrap_CvSeq_storage_set,0,0}, -{"free_blocks",0,_wrap_CvSeq_free_blocks_get,_wrap_CvSeq_free_blocks_set,0,0}, -{"first",0,_wrap_CvSeq_first_get,_wrap_CvSeq_first_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_base_names[] = {0}; -static const swig_type_info *swig_CvSeq_base[] = {0}; -static swig_octave_class _wrap_class_CvSeq = {"CvSeq", &SWIGTYPE_p_CvSeq,0,_wrap_new_CvSeq,0,_wrap_delete_CvSeq,swig_CvSeq_members,swig_CvSeq_base_names,swig_CvSeq_base }; - -static octave_value_list _wrap_CvSetElem_flags_set (const octave_value_list& args, int nargout) { - CvSetElem *arg1 = (CvSetElem *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSetElem_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_flags_set" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = (CvSetElem *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSetElem_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSetElem_flags_get (const octave_value_list& args, int nargout) { - CvSetElem *arg1 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSetElem_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_flags_get" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = (CvSetElem *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSetElem_next_free_set (const octave_value_list& args, int nargout) { - CvSetElem *arg1 = (CvSetElem *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSetElem_next_free_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_next_free_set" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = (CvSetElem *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSetElem_next_free_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = (CvSetElem *)(argp2); - if (arg1) (arg1)->next_free = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSetElem_next_free_get (const octave_value_list& args, int nargout) { - CvSetElem *arg1 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSetElem *result = 0 ; - - if (!SWIG_check_num_args("CvSetElem_next_free_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_next_free_get" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = (CvSetElem *)(argp1); - result = (CvSetElem *) ((arg1)->next_free); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSetElem (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSetElem *result = 0 ; - - if (!SWIG_check_num_args("new_CvSetElem",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSetElem *)new CvSetElem(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSetElem (const octave_value_list& args, int nargout) { - CvSetElem *arg1 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSetElem",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSetElem" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = (CvSetElem *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSetElem_members[] = { -{"flags",0,_wrap_CvSetElem_flags_get,_wrap_CvSetElem_flags_set,0,0}, -{"next_free",0,_wrap_CvSetElem_next_free_get,_wrap_CvSetElem_next_free_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSetElem_base_names[] = {0}; -static const swig_type_info *swig_CvSetElem_base[] = {0}; -static swig_octave_class _wrap_class_CvSetElem = {"CvSetElem", &SWIGTYPE_p_CvSetElem,0,_wrap_new_CvSetElem,0,_wrap_delete_CvSetElem,swig_CvSetElem_members,swig_CvSetElem_base_names,swig_CvSetElem_base }; - -static octave_value_list _wrap_CvSet_flags_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_flags_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSet_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_header_size_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_header_size_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSet_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_h_prev_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_h_prev_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSet_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_h_next_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_h_next_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSet_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_v_prev_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_v_prev_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSet_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_v_next_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_v_next_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSet_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_total_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_total_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSet_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_elem_size_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_elem_size_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSet_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_block_max_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_block_max_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSet_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_ptr_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_ptr_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSet_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_delta_elems_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_delta_elems_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSet_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_storage_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_storage_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvSet_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_free_blocks_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_free_blocks_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSet_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_first_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_first_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSet_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_free_elems_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_free_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_free_elems_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = (CvSetElem *)(argp2); - if (arg1) (arg1)->free_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_free_elems_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSetElem *result = 0 ; - - if (!SWIG_check_num_args("CvSet_free_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSetElem *) ((arg1)->free_elems); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_active_count_set (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSet_active_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_active_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->active_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSet_active_count_get (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSet_active_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->active_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSet (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("new_CvSet",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSet *)new CvSet(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSet (const octave_value_list& args, int nargout) { - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSet",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg1 = (CvSet *)ptr1; - } - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSet_members[] = { -{"flags",0,_wrap_CvSet_flags_get,_wrap_CvSet_flags_set,0,0}, -{"header_size",0,_wrap_CvSet_header_size_get,_wrap_CvSet_header_size_set,0,0}, -{"h_prev",0,_wrap_CvSet_h_prev_get,_wrap_CvSet_h_prev_set,0,0}, -{"h_next",0,_wrap_CvSet_h_next_get,_wrap_CvSet_h_next_set,0,0}, -{"v_prev",0,_wrap_CvSet_v_prev_get,_wrap_CvSet_v_prev_set,0,0}, -{"v_next",0,_wrap_CvSet_v_next_get,_wrap_CvSet_v_next_set,0,0}, -{"total",0,_wrap_CvSet_total_get,_wrap_CvSet_total_set,0,0}, -{"elem_size",0,_wrap_CvSet_elem_size_get,_wrap_CvSet_elem_size_set,0,0}, -{"block_max",0,_wrap_CvSet_block_max_get,_wrap_CvSet_block_max_set,0,0}, -{"ptr",0,_wrap_CvSet_ptr_get,_wrap_CvSet_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvSet_delta_elems_get,_wrap_CvSet_delta_elems_set,0,0}, -{"storage",0,_wrap_CvSet_storage_get,_wrap_CvSet_storage_set,0,0}, -{"free_blocks",0,_wrap_CvSet_free_blocks_get,_wrap_CvSet_free_blocks_set,0,0}, -{"first",0,_wrap_CvSet_first_get,_wrap_CvSet_first_set,0,0}, -{"free_elems",0,_wrap_CvSet_free_elems_get,_wrap_CvSet_free_elems_set,0,0}, -{"active_count",0,_wrap_CvSet_active_count_get,_wrap_CvSet_active_count_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSet_base_names[] = {0}; -static const swig_type_info *swig_CvSet_base[] = {0}; -static swig_octave_class _wrap_class_CvSet = {"CvSet", &SWIGTYPE_p_CvSet,0,_wrap_new_CvSet,0,_wrap_delete_CvSet,swig_CvSet_members,swig_CvSet_base_names,swig_CvSet_base }; - -static octave_value_list _wrap_CvGraphEdge_flags_set (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphEdge_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_flags_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphEdge_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_flags_get (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraphEdge_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_flags_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_weight_set (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphEdge_weight_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_weight_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphEdge_weight_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->weight = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_weight_get (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvGraphEdge_weight_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_weight_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - result = (float) ((arg1)->weight); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_next_set (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - CvGraphEdge **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphEdge_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_next_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphEdge_next_set" "', argument " "2"" of type '" "CvGraphEdge *[2]""'"); - } - arg2 = (CvGraphEdge **)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->next[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""next""' of type '""CvGraphEdge *[2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_next_get (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphEdge **result = 0 ; - - if (!SWIG_check_num_args("CvGraphEdge_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_next_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - result = (CvGraphEdge **)(CvGraphEdge **) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvGraphEdge, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_vtx_set (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - CvGraphVtx **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphEdge_vtx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_vtx_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphEdge_vtx_set" "', argument " "2"" of type '" "CvGraphVtx *[2]""'"); - } - arg2 = (CvGraphVtx **)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->vtx[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""vtx""' of type '""CvGraphVtx *[2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphEdge_vtx_get (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphVtx **result = 0 ; - - if (!SWIG_check_num_args("CvGraphEdge_vtx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_vtx_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - result = (CvGraphVtx **)(CvGraphVtx **) ((arg1)->vtx); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvGraphVtx, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvGraphEdge (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphEdge *result = 0 ; - - if (!SWIG_check_num_args("new_CvGraphEdge",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvGraphEdge *)new CvGraphEdge(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvGraphEdge (const octave_value_list& args, int nargout) { - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvGraphEdge",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphEdge" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = (CvGraphEdge *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvGraphEdge_members[] = { -{"flags",0,_wrap_CvGraphEdge_flags_get,_wrap_CvGraphEdge_flags_set,0,0}, -{"weight",0,_wrap_CvGraphEdge_weight_get,_wrap_CvGraphEdge_weight_set,0,0}, -{"next",0,_wrap_CvGraphEdge_next_get,_wrap_CvGraphEdge_next_set,0,0}, -{"vtx",0,_wrap_CvGraphEdge_vtx_get,_wrap_CvGraphEdge_vtx_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvGraphEdge_base_names[] = {0}; -static const swig_type_info *swig_CvGraphEdge_base[] = {0}; -static swig_octave_class _wrap_class_CvGraphEdge = {"CvGraphEdge", &SWIGTYPE_p_CvGraphEdge,0,_wrap_new_CvGraphEdge,0,_wrap_delete_CvGraphEdge,swig_CvGraphEdge_members,swig_CvGraphEdge_base_names,swig_CvGraphEdge_base }; - -static octave_value_list _wrap_CvGraphVtx_flags_set (const octave_value_list& args, int nargout) { - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphVtx_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_flags_set" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = (CvGraphVtx *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphVtx_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx_flags_get (const octave_value_list& args, int nargout) { - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraphVtx_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_flags_get" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = (CvGraphVtx *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx_first_set (const octave_value_list& args, int nargout) { - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphVtx_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_first_set" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = (CvGraphVtx *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphVtx_first_set" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = (CvGraphEdge *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx_first_get (const octave_value_list& args, int nargout) { - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphEdge *result = 0 ; - - if (!SWIG_check_num_args("CvGraphVtx_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_first_get" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = (CvGraphVtx *)(argp1); - result = (CvGraphEdge *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvGraphVtx (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphVtx *result = 0 ; - - if (!SWIG_check_num_args("new_CvGraphVtx",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvGraphVtx *)new CvGraphVtx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvGraphVtx (const octave_value_list& args, int nargout) { - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvGraphVtx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphVtx" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = (CvGraphVtx *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvGraphVtx_members[] = { -{"flags",0,_wrap_CvGraphVtx_flags_get,_wrap_CvGraphVtx_flags_set,0,0}, -{"first",0,_wrap_CvGraphVtx_first_get,_wrap_CvGraphVtx_first_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvGraphVtx_base_names[] = {0}; -static const swig_type_info *swig_CvGraphVtx_base[] = {0}; -static swig_octave_class _wrap_class_CvGraphVtx = {"CvGraphVtx", &SWIGTYPE_p_CvGraphVtx,0,_wrap_new_CvGraphVtx,0,_wrap_delete_CvGraphVtx,swig_CvGraphVtx_members,swig_CvGraphVtx_base_names,swig_CvGraphVtx_base }; - -static octave_value_list _wrap_CvGraphVtx2D_flags_set (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphVtx2D_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_flags_set" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphVtx2D_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx2D_flags_get (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraphVtx2D_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_flags_get" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx2D_first_set (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphVtx2D_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_first_set" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphVtx2D_first_set" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = (CvGraphEdge *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx2D_first_get (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphEdge *result = 0 ; - - if (!SWIG_check_num_args("CvGraphVtx2D_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_first_get" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - result = (CvGraphEdge *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx2D_ptr_set (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphVtx2D_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_ptr_set" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphVtx2D_ptr_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = (CvPoint2D32f *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphVtx2D_ptr_get (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvGraphVtx2D_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_ptr_get" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - result = (CvPoint2D32f *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvGraphVtx2D (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphVtx2D *result = 0 ; - - if (!SWIG_check_num_args("new_CvGraphVtx2D",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvGraphVtx2D *)new CvGraphVtx2D(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx2D, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvGraphVtx2D (const octave_value_list& args, int nargout) { - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvGraphVtx2D",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphVtx2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphVtx2D" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = (CvGraphVtx2D *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvGraphVtx2D_members[] = { -{"flags",0,_wrap_CvGraphVtx2D_flags_get,_wrap_CvGraphVtx2D_flags_set,0,0}, -{"first",0,_wrap_CvGraphVtx2D_first_get,_wrap_CvGraphVtx2D_first_set,0,0}, -{"ptr",0,_wrap_CvGraphVtx2D_ptr_get,_wrap_CvGraphVtx2D_ptr_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvGraphVtx2D_base_names[] = {0}; -static const swig_type_info *swig_CvGraphVtx2D_base[] = {0}; -static swig_octave_class _wrap_class_CvGraphVtx2D = {"CvGraphVtx2D", &SWIGTYPE_p_CvGraphVtx2D,0,_wrap_new_CvGraphVtx2D,0,_wrap_delete_CvGraphVtx2D,swig_CvGraphVtx2D_members,swig_CvGraphVtx2D_base_names,swig_CvGraphVtx2D_base }; - -static octave_value_list _wrap_CvGraph_flags_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_flags_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraph_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_header_size_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_header_size_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraph_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_h_prev_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_h_prev_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_h_next_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_h_next_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_v_prev_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_v_prev_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_v_next_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_v_next_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_total_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_total_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraph_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_elem_size_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_elem_size_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraph_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_block_max_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_block_max_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_ptr_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_ptr_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_delta_elems_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_delta_elems_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraph_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_storage_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_storage_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_free_blocks_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_free_blocks_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_first_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_first_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_free_elems_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_free_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_free_elems_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = (CvSetElem *)(argp2); - if (arg1) (arg1)->free_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_free_elems_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSetElem *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_free_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSetElem *) ((arg1)->free_elems); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_active_count_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_active_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_active_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->active_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_active_count_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraph_active_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->active_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_edges_set (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *ptr1 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraph_edges_set",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->edges = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraph_edges_get (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("CvGraph_edges_get",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSet *) ((arg1)->edges); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvGraph (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraph *result = 0 ; - - if (!SWIG_check_num_args("new_CvGraph",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvGraph *)new CvGraph(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraph, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvGraph (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvGraph",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvGraph_members[] = { -{"flags",0,_wrap_CvGraph_flags_get,_wrap_CvGraph_flags_set,0,0}, -{"header_size",0,_wrap_CvGraph_header_size_get,_wrap_CvGraph_header_size_set,0,0}, -{"h_prev",0,_wrap_CvGraph_h_prev_get,_wrap_CvGraph_h_prev_set,0,0}, -{"h_next",0,_wrap_CvGraph_h_next_get,_wrap_CvGraph_h_next_set,0,0}, -{"v_prev",0,_wrap_CvGraph_v_prev_get,_wrap_CvGraph_v_prev_set,0,0}, -{"v_next",0,_wrap_CvGraph_v_next_get,_wrap_CvGraph_v_next_set,0,0}, -{"total",0,_wrap_CvGraph_total_get,_wrap_CvGraph_total_set,0,0}, -{"elem_size",0,_wrap_CvGraph_elem_size_get,_wrap_CvGraph_elem_size_set,0,0}, -{"block_max",0,_wrap_CvGraph_block_max_get,_wrap_CvGraph_block_max_set,0,0}, -{"ptr",0,_wrap_CvGraph_ptr_get,_wrap_CvGraph_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvGraph_delta_elems_get,_wrap_CvGraph_delta_elems_set,0,0}, -{"storage",0,_wrap_CvGraph_storage_get,_wrap_CvGraph_storage_set,0,0}, -{"free_blocks",0,_wrap_CvGraph_free_blocks_get,_wrap_CvGraph_free_blocks_set,0,0}, -{"first",0,_wrap_CvGraph_first_get,_wrap_CvGraph_first_set,0,0}, -{"free_elems",0,_wrap_CvGraph_free_elems_get,_wrap_CvGraph_free_elems_set,0,0}, -{"active_count",0,_wrap_CvGraph_active_count_get,_wrap_CvGraph_active_count_set,0,0}, -{"edges",0,_wrap_CvGraph_edges_get,_wrap_CvGraph_edges_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvGraph_base_names[] = {0}; -static const swig_type_info *swig_CvGraph_base[] = {0}; -static swig_octave_class _wrap_class_CvGraph = {"CvGraph", &SWIGTYPE_p_CvGraph,0,_wrap_new_CvGraph,0,_wrap_delete_CvGraph,swig_CvGraph_members,swig_CvGraph_base_names,swig_CvGraph_base }; - -static octave_value_list _wrap_CvChain_flags_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_flags_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_flags_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChain_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_flags_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_header_size_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_header_size_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_header_size_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChain_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_header_size_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_h_prev_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_prev_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_h_prev_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvChain_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_prev_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_h_next_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_next_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_h_next_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvChain_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_next_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_v_prev_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_prev_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_v_prev_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvChain_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_prev_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_v_next_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_next_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_v_next_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvChain_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_next_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_total_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_total_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_total_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChain_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_total_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_elem_size_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_elem_size_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_elem_size_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChain_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_elem_size_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_block_max_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_block_max_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_block_max_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvChain_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_block_max_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_ptr_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_ptr_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_ptr_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvChain_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_ptr_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_delta_elems_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_delta_elems_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_delta_elems_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChain_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_delta_elems_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_storage_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_storage_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_storage_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvChain_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_storage_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_free_blocks_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_free_blocks_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_free_blocks_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvChain_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_free_blocks_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_first_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_first_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_first_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvChain_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_first_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_origin_set (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChain_origin_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_origin_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_origin_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->origin = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChain_origin_get (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvChain_origin_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_origin_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - result = (CvPoint *)& ((arg1)->origin); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvChain (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvChain *result = 0 ; - - if (!SWIG_check_num_args("new_CvChain",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvChain *)new CvChain(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvChain, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvChain (const octave_value_list& args, int nargout) { - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvChain",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChain, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvChain" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = (CvChain *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvChain_members[] = { -{"flags",0,_wrap_CvChain_flags_get,_wrap_CvChain_flags_set,0,0}, -{"header_size",0,_wrap_CvChain_header_size_get,_wrap_CvChain_header_size_set,0,0}, -{"h_prev",0,_wrap_CvChain_h_prev_get,_wrap_CvChain_h_prev_set,0,0}, -{"h_next",0,_wrap_CvChain_h_next_get,_wrap_CvChain_h_next_set,0,0}, -{"v_prev",0,_wrap_CvChain_v_prev_get,_wrap_CvChain_v_prev_set,0,0}, -{"v_next",0,_wrap_CvChain_v_next_get,_wrap_CvChain_v_next_set,0,0}, -{"total",0,_wrap_CvChain_total_get,_wrap_CvChain_total_set,0,0}, -{"elem_size",0,_wrap_CvChain_elem_size_get,_wrap_CvChain_elem_size_set,0,0}, -{"block_max",0,_wrap_CvChain_block_max_get,_wrap_CvChain_block_max_set,0,0}, -{"ptr",0,_wrap_CvChain_ptr_get,_wrap_CvChain_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvChain_delta_elems_get,_wrap_CvChain_delta_elems_set,0,0}, -{"storage",0,_wrap_CvChain_storage_get,_wrap_CvChain_storage_set,0,0}, -{"free_blocks",0,_wrap_CvChain_free_blocks_get,_wrap_CvChain_free_blocks_set,0,0}, -{"first",0,_wrap_CvChain_first_get,_wrap_CvChain_first_set,0,0}, -{"origin",0,_wrap_CvChain_origin_get,_wrap_CvChain_origin_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvChain_base_names[] = {0}; -static const swig_type_info *swig_CvChain_base[] = {0}; -static swig_octave_class _wrap_class_CvChain = {"CvChain", &SWIGTYPE_p_CvChain,0,_wrap_new_CvChain,0,_wrap_delete_CvChain,swig_CvChain_members,swig_CvChain_base_names,swig_CvChain_base }; - -static octave_value_list _wrap_CvContour_flags_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_flags_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_flags_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContour_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_flags_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_header_size_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_header_size_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_header_size_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContour_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_header_size_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_h_prev_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_prev_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_h_prev_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContour_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_prev_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_h_next_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_next_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_h_next_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContour_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_next_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_v_prev_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_prev_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_v_prev_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContour_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_prev_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_v_next_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_next_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_v_next_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContour_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_next_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_total_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_total_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_total_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContour_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_total_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_elem_size_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_elem_size_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_elem_size_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContour_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_elem_size_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_block_max_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_block_max_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_block_max_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvContour_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_block_max_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_ptr_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_ptr_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_ptr_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvContour_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_ptr_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_delta_elems_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_delta_elems_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_delta_elems_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContour_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_delta_elems_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_storage_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_storage_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_storage_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvContour_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_storage_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_free_blocks_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_free_blocks_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_free_blocks_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvContour_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_free_blocks_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_first_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_first_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_first_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvContour_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_first_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_rect_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_rect_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_rect_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_rect_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = (CvRect *)(argp2); - if (arg1) (arg1)->rect = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_rect_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvContour_rect_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_rect_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (CvRect *)& ((arg1)->rect); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_color_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_color_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_color_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_color_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->color = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_color_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContour_color_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_color_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int) ((arg1)->color); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_reserved_set (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - int *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContour_reserved_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_reserved_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_reserved_set" "', argument " "2"" of type '" "int [3]""'"); - } - arg2 = (int *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)3; ++ii) arg1->reserved[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""reserved""' of type '""int [3]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContour_reserved_get (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvContour_reserved_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_reserved_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - result = (int *)(int *) ((arg1)->reserved); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvContour (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvContour *result = 0 ; - - if (!SWIG_check_num_args("new_CvContour",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvContour *)new CvContour(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvContour, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvContour (const octave_value_list& args, int nargout) { - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvContour",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContour, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvContour" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = (CvContour *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvContour_members[] = { -{"flags",0,_wrap_CvContour_flags_get,_wrap_CvContour_flags_set,0,0}, -{"header_size",0,_wrap_CvContour_header_size_get,_wrap_CvContour_header_size_set,0,0}, -{"h_prev",0,_wrap_CvContour_h_prev_get,_wrap_CvContour_h_prev_set,0,0}, -{"h_next",0,_wrap_CvContour_h_next_get,_wrap_CvContour_h_next_set,0,0}, -{"v_prev",0,_wrap_CvContour_v_prev_get,_wrap_CvContour_v_prev_set,0,0}, -{"v_next",0,_wrap_CvContour_v_next_get,_wrap_CvContour_v_next_set,0,0}, -{"total",0,_wrap_CvContour_total_get,_wrap_CvContour_total_set,0,0}, -{"elem_size",0,_wrap_CvContour_elem_size_get,_wrap_CvContour_elem_size_set,0,0}, -{"block_max",0,_wrap_CvContour_block_max_get,_wrap_CvContour_block_max_set,0,0}, -{"ptr",0,_wrap_CvContour_ptr_get,_wrap_CvContour_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvContour_delta_elems_get,_wrap_CvContour_delta_elems_set,0,0}, -{"storage",0,_wrap_CvContour_storage_get,_wrap_CvContour_storage_set,0,0}, -{"free_blocks",0,_wrap_CvContour_free_blocks_get,_wrap_CvContour_free_blocks_set,0,0}, -{"first",0,_wrap_CvContour_first_get,_wrap_CvContour_first_set,0,0}, -{"rect",0,_wrap_CvContour_rect_get,_wrap_CvContour_rect_set,0,0}, -{"color",0,_wrap_CvContour_color_get,_wrap_CvContour_color_set,0,0}, -{"reserved",0,_wrap_CvContour_reserved_get,_wrap_CvContour_reserved_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvContour_base_names[] = {0}; -static const swig_type_info *swig_CvContour_base[] = {0}; -static swig_octave_class _wrap_class_CvContour = {"CvContour", &SWIGTYPE_p_CvContour,0,_wrap_new_CvContour,0,_wrap_delete_CvContour,swig_CvContour_members,swig_CvContour_base_names,swig_CvContour_base }; - -static octave_value_list _wrap_CvSeqWriter_header_size_set (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqWriter_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_header_size_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqWriter_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_header_size_get (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeqWriter_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_header_size_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_seq_set (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqWriter_seq_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_seq_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_seq_get (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSeqWriter_seq_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_seq_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - result = (CvSeq *) ((arg1)->seq); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_block_set (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqWriter_block_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_block_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->block = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_block_get (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSeqWriter_block_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - result = (CvSeqBlock *) ((arg1)->block); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_ptr_set (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqWriter_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_ptr_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_ptr_get (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqWriter_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_ptr_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_block_min_set (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqWriter_block_min_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_min_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_block_min_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_min = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_block_min_get (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqWriter_block_min_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_min_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - result = (schar *) ((arg1)->block_min); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_block_max_set (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqWriter_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_max_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqWriter_block_max_get (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqWriter_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_max_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeqWriter (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqWriter *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeqWriter",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSeqWriter *)new CvSeqWriter(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqWriter, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeqWriter (const octave_value_list& args, int nargout) { - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeqWriter",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqWriter, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeqWriter" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = (CvSeqWriter *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeqWriter_members[] = { -{"header_size",0,_wrap_CvSeqWriter_header_size_get,_wrap_CvSeqWriter_header_size_set,0,0}, -{"seq",0,_wrap_CvSeqWriter_seq_get,_wrap_CvSeqWriter_seq_set,0,0}, -{"block",0,_wrap_CvSeqWriter_block_get,_wrap_CvSeqWriter_block_set,0,0}, -{"ptr",0,_wrap_CvSeqWriter_ptr_get,_wrap_CvSeqWriter_ptr_set,0,0}, -{"block_min",0,_wrap_CvSeqWriter_block_min_get,_wrap_CvSeqWriter_block_min_set,0,0}, -{"block_max",0,_wrap_CvSeqWriter_block_max_get,_wrap_CvSeqWriter_block_max_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeqWriter_base_names[] = {0}; -static const swig_type_info *swig_CvSeqWriter_base[] = {0}; -static swig_octave_class _wrap_class_CvSeqWriter = {"CvSeqWriter", &SWIGTYPE_p_CvSeqWriter,0,_wrap_new_CvSeqWriter,0,_wrap_delete_CvSeqWriter,swig_CvSeqWriter_members,swig_CvSeqWriter_base_names,swig_CvSeqWriter_base }; - -static octave_value_list _wrap_CvSeqReader_header_size_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_header_size_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqReader_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_header_size_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeqReader_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_header_size_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_seq_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_seq_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_seq_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_seq_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSeqReader_seq_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_seq_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (CvSeq *) ((arg1)->seq); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_block_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_block_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_block_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->block = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_block_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSeqReader_block_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (CvSeqBlock *) ((arg1)->block); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_ptr_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_ptr_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_ptr_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqReader_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_ptr_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_block_min_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_block_min_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_min_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_block_min_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_min = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_block_min_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqReader_block_min_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_min_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (schar *) ((arg1)->block_min); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_block_max_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_max_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_block_max_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqReader_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_max_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_delta_index_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_delta_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_delta_index_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqReader_delta_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_delta_index_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSeqReader_delta_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_delta_index_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (int) ((arg1)->delta_index); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_prev_elem_set (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeqReader_prev_elem_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_prev_elem_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_prev_elem_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->prev_elem = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeqReader_prev_elem_get (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSeqReader_prev_elem_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_prev_elem_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - result = (schar *) ((arg1)->prev_elem); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeqReader (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqReader *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeqReader",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSeqReader *)new CvSeqReader(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqReader, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeqReader (const octave_value_list& args, int nargout) { - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeqReader",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSeqReader, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeqReader" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = (CvSeqReader *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeqReader_members[] = { -{"header_size",0,_wrap_CvSeqReader_header_size_get,_wrap_CvSeqReader_header_size_set,0,0}, -{"seq",0,_wrap_CvSeqReader_seq_get,_wrap_CvSeqReader_seq_set,0,0}, -{"block",0,_wrap_CvSeqReader_block_get,_wrap_CvSeqReader_block_set,0,0}, -{"ptr",0,_wrap_CvSeqReader_ptr_get,_wrap_CvSeqReader_ptr_set,0,0}, -{"block_min",0,_wrap_CvSeqReader_block_min_get,_wrap_CvSeqReader_block_min_set,0,0}, -{"block_max",0,_wrap_CvSeqReader_block_max_get,_wrap_CvSeqReader_block_max_set,0,0}, -{"delta_index",0,_wrap_CvSeqReader_delta_index_get,_wrap_CvSeqReader_delta_index_set,0,0}, -{"prev_elem",0,_wrap_CvSeqReader_prev_elem_get,_wrap_CvSeqReader_prev_elem_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeqReader_base_names[] = {0}; -static const swig_type_info *swig_CvSeqReader_base[] = {0}; -static swig_octave_class _wrap_class_CvSeqReader = {"CvSeqReader", &SWIGTYPE_p_CvSeqReader,0,_wrap_new_CvSeqReader,0,_wrap_delete_CvSeqReader,swig_CvSeqReader_members,swig_CvSeqReader_base_names,swig_CvSeqReader_base }; - -static octave_value_list _wrap_CvAttrList_attr_set (const octave_value_list& args, int nargout) { - CvAttrList *arg1 = (CvAttrList *) 0 ; - char **arg2 = (char **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - char *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvAttrList_attr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_attr_set" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = (CvAttrList *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer2 = (char *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->attr = (char const **)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvAttrList_attr_get (const octave_value_list& args, int nargout) { - CvAttrList *arg1 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char **result = 0 ; - - if (!SWIG_check_num_args("CvAttrList_attr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_attr_get" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = (CvAttrList *)(argp1); - result = (char **) ((arg1)->attr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvAttrList_next_set (const octave_value_list& args, int nargout) { - CvAttrList *arg1 = (CvAttrList *) 0 ; - CvAttrList *arg2 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvAttrList_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_next_set" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = (CvAttrList *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvAttrList, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvAttrList_next_set" "', argument " "2"" of type '" "CvAttrList *""'"); - } - arg2 = (CvAttrList *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvAttrList_next_get (const octave_value_list& args, int nargout) { - CvAttrList *arg1 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvAttrList *result = 0 ; - - if (!SWIG_check_num_args("CvAttrList_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_next_get" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = (CvAttrList *)(argp1); - result = (CvAttrList *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvAttrList (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvAttrList *result = 0 ; - - if (!SWIG_check_num_args("new_CvAttrList",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvAttrList *)new CvAttrList(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvAttrList, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvAttrList (const octave_value_list& args, int nargout) { - CvAttrList *arg1 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvAttrList",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAttrList, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvAttrList" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = (CvAttrList *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvAttrList_members[] = { -{"attr",0,_wrap_CvAttrList_attr_get,_wrap_CvAttrList_attr_set,0,0}, -{"next",0,_wrap_CvAttrList_next_get,_wrap_CvAttrList_next_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvAttrList_base_names[] = {0}; -static const swig_type_info *swig_CvAttrList_base[] = {0}; -static swig_octave_class _wrap_class_CvAttrList = {"CvAttrList", &SWIGTYPE_p_CvAttrList,0,_wrap_new_CvAttrList,0,_wrap_delete_CvAttrList,swig_CvAttrList_members,swig_CvAttrList_base_names,swig_CvAttrList_base }; - -static octave_value_list _wrap_cvAttrList__SWIG_0 (const octave_value_list& args, int nargout) { - char **arg1 = (char **) 0 ; - CvAttrList *arg2 = (CvAttrList *) 0 ; - void *vptr1 ; - char *buffer1 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvAttrList result; - - if (!SWIG_check_num_args("cvAttrList",args.length(),2,2,0)) { - SWIG_fail; - } - { - if ((SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer1 = (char *) vptr1; - arg1=&buffer1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvAttrList" "', argument " "2"" of type '" "CvAttrList *""'"); - } - arg2 = (CvAttrList *)(argp2); - { - try { - result = cvAttrList((char const **)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvAttrList((const CvAttrList&)(result))), SWIGTYPE_p_CvAttrList, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvAttrList__SWIG_1 (const octave_value_list& args, int nargout) { - char **arg1 = (char **) 0 ; - void *vptr1 ; - char *buffer1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvAttrList result; - - if (!SWIG_check_num_args("cvAttrList",args.length(),1,1,0)) { - SWIG_fail; - } - { - if ((SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer1 = (char *) vptr1; - arg1=&buffer1; - } - { - try { - result = cvAttrList((char const **)arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvAttrList((const CvAttrList&)(result))), SWIGTYPE_p_CvAttrList, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvAttrList__SWIG_2 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvAttrList result; - - if (!SWIG_check_num_args("cvAttrList",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = cvAttrList(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvAttrList((const CvAttrList&)(result))), SWIGTYPE_p_CvAttrList, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvAttrList (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 0) { - return _wrap_cvAttrList__SWIG_2(args, nargout); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_p_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvAttrList__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_p_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvAttrList, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvAttrList__SWIG_0(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvString_len_set (const octave_value_list& args, int nargout) { - CvString *arg1 = (CvString *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvString_len_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_len_set" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = (CvString *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvString_len_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->len = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvString_len_get (const octave_value_list& args, int nargout) { - CvString *arg1 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvString_len_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_len_get" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = (CvString *)(argp1); - result = (int) ((arg1)->len); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvString_ptr_set (const octave_value_list& args, int nargout) { - CvString *arg1 = (CvString *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvString_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_ptr_set" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = (CvString *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvString_ptr_set" "', argument " "2"" of type '" "char *""'"); - } - arg2 = (char *)(buf2); - if (arg1->ptr) delete[] arg1->ptr; - if (arg2) { - size_t size = strlen((const char *)(arg2)) + 1; - arg1->ptr = (char *)(char*)(memcpy((new char[size]), (const char *)(arg2), sizeof(char)*(size))); - } else { - arg1->ptr = 0; - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvString_ptr_get (const octave_value_list& args, int nargout) { - CvString *arg1 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvString_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_ptr_get" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = (CvString *)(argp1); - result = (char *) ((arg1)->ptr); - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvString (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvString *result = 0 ; - - if (!SWIG_check_num_args("new_CvString",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvString *)new CvString(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvString, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvString (const octave_value_list& args, int nargout) { - CvString *arg1 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvString",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvString, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvString" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = (CvString *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvString_members[] = { -{"len",0,_wrap_CvString_len_get,_wrap_CvString_len_set,0,0}, -{"ptr",0,_wrap_CvString_ptr_get,_wrap_CvString_ptr_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvString_base_names[] = {0}; -static const swig_type_info *swig_CvString_base[] = {0}; -static swig_octave_class _wrap_class_CvString = {"CvString", &SWIGTYPE_p_CvString,0,_wrap_new_CvString,0,_wrap_delete_CvString,swig_CvString_members,swig_CvString_base_names,swig_CvString_base }; - -static octave_value_list _wrap_CvStringHashNode_hashval_set (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - unsigned int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - unsigned int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStringHashNode_hashval_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_hashval_set" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStringHashNode_hashval_set" "', argument " "2"" of type '" "unsigned int""'"); - } - arg2 = (unsigned int)(val2); - if (arg1) (arg1)->hashval = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStringHashNode_hashval_get (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - unsigned int result; - - if (!SWIG_check_num_args("CvStringHashNode_hashval_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_hashval_get" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - result = (unsigned int) ((arg1)->hashval); - _outv = SWIG_From_unsigned_SS_int((unsigned int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStringHashNode_str_set (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - CvString *arg2 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStringHashNode_str_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_str_set" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStringHashNode_str_set" "', argument " "2"" of type '" "CvString *""'"); - } - arg2 = (CvString *)(argp2); - if (arg1) (arg1)->str = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStringHashNode_str_get (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvString *result = 0 ; - - if (!SWIG_check_num_args("CvStringHashNode_str_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_str_get" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - result = (CvString *)& ((arg1)->str); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvString, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStringHashNode_next_set (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - CvStringHashNode *arg2 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStringHashNode_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_next_set" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvStringHashNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStringHashNode_next_set" "', argument " "2"" of type '" "CvStringHashNode *""'"); - } - arg2 = (CvStringHashNode *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStringHashNode_next_get (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStringHashNode *result = 0 ; - - if (!SWIG_check_num_args("CvStringHashNode_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_next_get" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - result = (CvStringHashNode *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvStringHashNode (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStringHashNode *result = 0 ; - - if (!SWIG_check_num_args("new_CvStringHashNode",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvStringHashNode *)new CvStringHashNode(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStringHashNode, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvStringHashNode (const octave_value_list& args, int nargout) { - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvStringHashNode",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStringHashNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStringHashNode" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = (CvStringHashNode *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvStringHashNode_members[] = { -{"hashval",0,_wrap_CvStringHashNode_hashval_get,_wrap_CvStringHashNode_hashval_set,0,0}, -{"str",0,_wrap_CvStringHashNode_str_get,_wrap_CvStringHashNode_str_set,0,0}, -{"next",0,_wrap_CvStringHashNode_next_get,_wrap_CvStringHashNode_next_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvStringHashNode_base_names[] = {0}; -static const swig_type_info *swig_CvStringHashNode_base[] = {0}; -static swig_octave_class _wrap_class_CvStringHashNode = {"CvStringHashNode", &SWIGTYPE_p_CvStringHashNode,0,_wrap_new_CvStringHashNode,0,_wrap_delete_CvStringHashNode,swig_CvStringHashNode_members,swig_CvStringHashNode_base_names,swig_CvStringHashNode_base }; - -static octave_value_list _wrap_CvFileNode_tag_set (const octave_value_list& args, int nargout) { - CvFileNode *arg1 = (CvFileNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_tag_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_tag_set" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = (CvFileNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFileNode_tag_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->tag = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_tag_get (const octave_value_list& args, int nargout) { - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvFileNode_tag_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_tag_get" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = (CvFileNode *)(argp1); - result = (int) ((arg1)->tag); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_info_set (const octave_value_list& args, int nargout) { - CvFileNode *arg1 = (CvFileNode *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_info_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_info_set" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = (CvFileNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFileNode_info_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = (CvTypeInfo *)(argp2); - if (arg1) (arg1)->info = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_info_get (const octave_value_list& args, int nargout) { - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypeInfo *result = 0 ; - - if (!SWIG_check_num_args("CvFileNode_info_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_info_get" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = (CvFileNode *)(argp1); - result = (CvTypeInfo *) ((arg1)->info); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_get (const octave_value_list& args, int nargout) { - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvFileNode_data *result = 0 ; - - if (!SWIG_check_num_args("CvFileNode_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_get" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = (CvFileNode *)(argp1); - result = (CvFileNode_data *)& ((arg1)->data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvFileNode (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvFileNode *result = 0 ; - - if (!SWIG_check_num_args("new_CvFileNode",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvFileNode *)new CvFileNode(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvFileNode (const octave_value_list& args, int nargout) { - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvFileNode",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvFileNode" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = (CvFileNode *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvFileNode_members[] = { -{"tag",0,_wrap_CvFileNode_tag_get,_wrap_CvFileNode_tag_set,0,0}, -{"info",0,_wrap_CvFileNode_info_get,_wrap_CvFileNode_info_set,0,0}, -{"data",0,_wrap_CvFileNode_data_get,octave_set_immutable,0,0}, -{0,0,0,0} -}; -static const char *swig_CvFileNode_base_names[] = {0}; -static const swig_type_info *swig_CvFileNode_base[] = {0}; -static swig_octave_class _wrap_class_CvFileNode = {"CvFileNode", &SWIGTYPE_p_CvFileNode,0,_wrap_new_CvFileNode,0,_wrap_delete_CvFileNode,swig_CvFileNode_members,swig_CvFileNode_base_names,swig_CvFileNode_base }; - -static octave_value_list _wrap_CvFileNode_data_f_set (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_data_f_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_f_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFileNode_data_f_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->f = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_f_get (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvFileNode_data_f_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_f_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - result = (double) ((arg1)->f); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_i_set (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_data_i_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_i_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFileNode_data_i_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->i = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_i_get (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvFileNode_data_i_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_i_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - result = (int) ((arg1)->i); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_str_set (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - CvString *arg2 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_data_str_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_str_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFileNode_data_str_set" "', argument " "2"" of type '" "CvString *""'"); - } - arg2 = (CvString *)(argp2); - if (arg1) (arg1)->str = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_str_get (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvString *result = 0 ; - - if (!SWIG_check_num_args("CvFileNode_data_str_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_str_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - result = (CvString *)& ((arg1)->str); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvString, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_seq_set (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_data_seq_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_seq_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_seq_get (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvFileNode_data_seq_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_seq_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - result = (CvSeq *) ((arg1)->seq); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_map_set (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - CvFileNodeHash *arg2 = (CvFileNodeHash *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFileNode_data_map_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_map_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGenericHash, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFileNode_data_map_set" "', argument " "2"" of type '" "CvFileNodeHash *""'"); - } - arg2 = (CvFileNodeHash *)(argp2); - if (arg1) (arg1)->map = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFileNode_data_map_get (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvFileNodeHash *result = 0 ; - - if (!SWIG_check_num_args("CvFileNode_data_map_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_map_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - result = (CvFileNodeHash *) ((arg1)->map); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGenericHash, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvFileNode_data (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvFileNode_data *result = 0 ; - - if (!SWIG_check_num_args("new_CvFileNode_data",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvFileNode_data *)new CvFileNode_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode_data, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvFileNode_data (const octave_value_list& args, int nargout) { - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvFileNode_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileNode_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvFileNode_data" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = (CvFileNode_data *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvFileNode_data_members[] = { -{"f",0,_wrap_CvFileNode_data_f_get,_wrap_CvFileNode_data_f_set,0,0}, -{"i",0,_wrap_CvFileNode_data_i_get,_wrap_CvFileNode_data_i_set,0,0}, -{"str",0,_wrap_CvFileNode_data_str_get,_wrap_CvFileNode_data_str_set,0,0}, -{"seq",0,_wrap_CvFileNode_data_seq_get,_wrap_CvFileNode_data_seq_set,0,0}, -{"map",0,_wrap_CvFileNode_data_map_get,_wrap_CvFileNode_data_map_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvFileNode_data_base_names[] = {0}; -static const swig_type_info *swig_CvFileNode_data_base[] = {0}; -static swig_octave_class _wrap_class_CvFileNode_data = {"CvFileNode_data", &SWIGTYPE_p_CvFileNode_data,0,_wrap_new_CvFileNode_data,0,_wrap_delete_CvFileNode_data,swig_CvFileNode_data_members,swig_CvFileNode_data_base_names,swig_CvFileNode_data_base }; - -static octave_value_list _wrap_CvTypeInfo_flags_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_flags_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTypeInfo_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_flags_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTypeInfo_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_flags_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_header_size_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_header_size_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTypeInfo_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_header_size_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTypeInfo_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_header_size_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_prev_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_prev_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTypeInfo_prev_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = (CvTypeInfo *)(argp2); - if (arg1) (arg1)->prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_prev_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypeInfo *result = 0 ; - - if (!SWIG_check_num_args("CvTypeInfo_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_prev_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvTypeInfo *) ((arg1)->prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_next_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_next_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTypeInfo_next_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = (CvTypeInfo *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_next_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypeInfo *result = 0 ; - - if (!SWIG_check_num_args("CvTypeInfo_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_next_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvTypeInfo *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_type_name_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_type_name_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_type_name_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTypeInfo_type_name_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - if (arg2) { - size_t size = strlen((const char *)((const char *)(arg2))) + 1; - arg1->type_name = (char const *)(char*)(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->type_name = 0; - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_type_name_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvTypeInfo_type_name_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_type_name_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (char *) ((arg1)->type_name); - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_is_instance_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_is_instance_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_is_instance_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_is_instance_set" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - if (arg1) (arg1)->is_instance = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_is_instance_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvIsInstanceFunc result; - - if (!SWIG_check_num_args("CvTypeInfo_is_instance_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_is_instance_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvIsInstanceFunc) ((arg1)->is_instance); - _outv = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__void__int); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_release_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvReleaseFunc arg2 = (CvReleaseFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_release_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_release_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_release_set" "', argument " "2"" of type '" "CvReleaseFunc""'"); - } - } - if (arg1) (arg1)->release = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_release_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvReleaseFunc result; - - if (!SWIG_check_num_args("CvTypeInfo_release_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_release_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvReleaseFunc) ((arg1)->release); - _outv = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void__void); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_read_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvReadFunc arg2 = (CvReadFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_read_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_read_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_read_set" "', argument " "2"" of type '" "CvReadFunc""'"); - } - } - if (arg1) (arg1)->read = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_read_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvReadFunc result; - - if (!SWIG_check_num_args("CvTypeInfo_read_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_read_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvReadFunc) ((arg1)->read); - _outv = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_write_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvWriteFunc arg2 = (CvWriteFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_write_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_write_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_write_set" "', argument " "2"" of type '" "CvWriteFunc""'"); - } - } - if (arg1) (arg1)->write = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_write_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvWriteFunc result; - - if (!SWIG_check_num_args("CvTypeInfo_write_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_write_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvWriteFunc) ((arg1)->write); - _outv = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_clone_set (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvCloneFunc arg2 = (CvCloneFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTypeInfo_clone_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_clone_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_clone_set" "', argument " "2"" of type '" "CvCloneFunc""'"); - } - } - if (arg1) (arg1)->clone = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTypeInfo_clone_get (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvCloneFunc result; - - if (!SWIG_check_num_args("CvTypeInfo_clone_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_clone_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - result = (CvCloneFunc) ((arg1)->clone); - _outv = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__void__p_void); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTypeInfo (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypeInfo *result = 0 ; - - if (!SWIG_check_num_args("new_CvTypeInfo",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypeInfo *)new CvTypeInfo(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTypeInfo (const octave_value_list& args, int nargout) { - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTypeInfo",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTypeInfo" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = (CvTypeInfo *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTypeInfo_members[] = { -{"flags",0,_wrap_CvTypeInfo_flags_get,_wrap_CvTypeInfo_flags_set,0,0}, -{"header_size",0,_wrap_CvTypeInfo_header_size_get,_wrap_CvTypeInfo_header_size_set,0,0}, -{"prev",0,_wrap_CvTypeInfo_prev_get,_wrap_CvTypeInfo_prev_set,0,0}, -{"next",0,_wrap_CvTypeInfo_next_get,_wrap_CvTypeInfo_next_set,0,0}, -{"type_name",0,_wrap_CvTypeInfo_type_name_get,_wrap_CvTypeInfo_type_name_set,0,0}, -{"is_instance",0,_wrap_CvTypeInfo_is_instance_get,_wrap_CvTypeInfo_is_instance_set,0,0}, -{"release",0,_wrap_CvTypeInfo_release_get,_wrap_CvTypeInfo_release_set,0,0}, -{"read",0,_wrap_CvTypeInfo_read_get,_wrap_CvTypeInfo_read_set,0,0}, -{"write",0,_wrap_CvTypeInfo_write_get,_wrap_CvTypeInfo_write_set,0,0}, -{"clone",0,_wrap_CvTypeInfo_clone_get,_wrap_CvTypeInfo_clone_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTypeInfo_base_names[] = {0}; -static const swig_type_info *swig_CvTypeInfo_base[] = {0}; -static swig_octave_class _wrap_class_CvTypeInfo = {"CvTypeInfo", &SWIGTYPE_p_CvTypeInfo,0,_wrap_new_CvTypeInfo,0,_wrap_delete_CvTypeInfo,swig_CvTypeInfo_members,swig_CvTypeInfo_base_names,swig_CvTypeInfo_base }; - -static octave_value_list _wrap_CvPluginFuncInfo_func_addr_set (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void **arg2 = (void **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - void *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPluginFuncInfo_func_addr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_addr_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer2 = (void *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->func_addr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_func_addr_get (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void **result = 0 ; - - if (!SWIG_check_num_args("CvPluginFuncInfo_func_addr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_addr_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - result = (void **) ((arg1)->func_addr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_default_func_addr_set (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *arg2 = (void *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPluginFuncInfo_default_func_addr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_default_func_addr_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPluginFuncInfo_default_func_addr_set" "', argument " "2"" of type '" "void *""'"); - } - if (arg1) (arg1)->default_func_addr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_default_func_addr_get (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("CvPluginFuncInfo_default_func_addr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_default_func_addr_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - result = (void *) ((arg1)->default_func_addr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_func_names_set (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPluginFuncInfo_func_names_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_names_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPluginFuncInfo_func_names_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - if (arg2) { - size_t size = strlen((const char *)((const char *)(arg2))) + 1; - arg1->func_names = (char const *)(char*)(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->func_names = 0; - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_func_names_get (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvPluginFuncInfo_func_names_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_names_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - result = (char *) ((arg1)->func_names); - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_search_modules_set (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPluginFuncInfo_search_modules_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_search_modules_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPluginFuncInfo_search_modules_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->search_modules = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_search_modules_get (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvPluginFuncInfo_search_modules_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_search_modules_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - result = (int) ((arg1)->search_modules); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_loaded_from_set (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPluginFuncInfo_loaded_from_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_loaded_from_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPluginFuncInfo_loaded_from_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->loaded_from = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPluginFuncInfo_loaded_from_get (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvPluginFuncInfo_loaded_from_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_loaded_from_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - result = (int) ((arg1)->loaded_from); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPluginFuncInfo (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPluginFuncInfo *result = 0 ; - - if (!SWIG_check_num_args("new_CvPluginFuncInfo",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPluginFuncInfo *)new CvPluginFuncInfo(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPluginFuncInfo, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPluginFuncInfo (const octave_value_list& args, int nargout) { - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPluginFuncInfo",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPluginFuncInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPluginFuncInfo" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = (CvPluginFuncInfo *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPluginFuncInfo_members[] = { -{"func_addr",0,_wrap_CvPluginFuncInfo_func_addr_get,_wrap_CvPluginFuncInfo_func_addr_set,0,0}, -{"default_func_addr",0,_wrap_CvPluginFuncInfo_default_func_addr_get,_wrap_CvPluginFuncInfo_default_func_addr_set,0,0}, -{"func_names",0,_wrap_CvPluginFuncInfo_func_names_get,_wrap_CvPluginFuncInfo_func_names_set,0,0}, -{"search_modules",0,_wrap_CvPluginFuncInfo_search_modules_get,_wrap_CvPluginFuncInfo_search_modules_set,0,0}, -{"loaded_from",0,_wrap_CvPluginFuncInfo_loaded_from_get,_wrap_CvPluginFuncInfo_loaded_from_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPluginFuncInfo_base_names[] = {0}; -static const swig_type_info *swig_CvPluginFuncInfo_base[] = {0}; -static swig_octave_class _wrap_class_CvPluginFuncInfo = {"CvPluginFuncInfo", &SWIGTYPE_p_CvPluginFuncInfo,0,_wrap_new_CvPluginFuncInfo,0,_wrap_delete_CvPluginFuncInfo,swig_CvPluginFuncInfo_members,swig_CvPluginFuncInfo_base_names,swig_CvPluginFuncInfo_base }; - -static octave_value_list _wrap_CvModuleInfo_next_set (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - CvModuleInfo *arg2 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvModuleInfo_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_next_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_next_set" "', argument " "2"" of type '" "CvModuleInfo *""'"); - } - arg2 = (CvModuleInfo *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_next_get (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvModuleInfo *result = 0 ; - - if (!SWIG_check_num_args("CvModuleInfo_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_next_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - result = (CvModuleInfo *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_name_set (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvModuleInfo_name_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_name_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_name_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - if (arg2) { - size_t size = strlen((const char *)((const char *)(arg2))) + 1; - arg1->name = (char const *)(char*)(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->name = 0; - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_name_get (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvModuleInfo_name_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_name_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - result = (char *) ((arg1)->name); - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_version_set (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvModuleInfo_version_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_version_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_version_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - if (arg2) { - size_t size = strlen((const char *)((const char *)(arg2))) + 1; - arg1->version = (char const *)(char*)(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->version = 0; - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_version_get (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char *result = 0 ; - - if (!SWIG_check_num_args("CvModuleInfo_version_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_version_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - result = (char *) ((arg1)->version); - _outv = SWIG_FromCharPtr((const char *)result); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_func_tab_set (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - CvPluginFuncInfo *arg2 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvModuleInfo_func_tab_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_func_tab_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPluginFuncInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_func_tab_set" "', argument " "2"" of type '" "CvPluginFuncInfo *""'"); - } - arg2 = (CvPluginFuncInfo *)(argp2); - if (arg1) (arg1)->func_tab = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModuleInfo_func_tab_get (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPluginFuncInfo *result = 0 ; - - if (!SWIG_check_num_args("CvModuleInfo_func_tab_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_func_tab_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - result = (CvPluginFuncInfo *) ((arg1)->func_tab); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvModuleInfo (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvModuleInfo *result = 0 ; - - if (!SWIG_check_num_args("new_CvModuleInfo",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvModuleInfo *)new CvModuleInfo(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModuleInfo, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvModuleInfo (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvModuleInfo",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvModuleInfo" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvModuleInfo_members[] = { -{"next",0,_wrap_CvModuleInfo_next_get,_wrap_CvModuleInfo_next_set,0,0}, -{"name",0,_wrap_CvModuleInfo_name_get,_wrap_CvModuleInfo_name_set,0,0}, -{"version",0,_wrap_CvModuleInfo_version_get,_wrap_CvModuleInfo_version_set,0,0}, -{"func_tab",0,_wrap_CvModuleInfo_func_tab_get,_wrap_CvModuleInfo_func_tab_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvModuleInfo_base_names[] = {0}; -static const swig_type_info *swig_CvModuleInfo_base[] = {0}; -static swig_octave_class _wrap_class_CvModuleInfo = {"CvModuleInfo", &SWIGTYPE_p_CvModuleInfo,0,_wrap_new_CvModuleInfo,0,_wrap_delete_CvModuleInfo,swig_CvModuleInfo_members,swig_CvModuleInfo_base_names,swig_CvModuleInfo_base }; - -static octave_value_list _wrap_cvAlloc (const octave_value_list& args, int nargout) { - size_t arg1 ; - size_t val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("cvAlloc",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvAlloc" "', argument " "1"" of type '" "size_t""'"); - } - arg1 = (size_t)(val1); - { - try { - result = (void *)cvAlloc(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvFree_ (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - int res1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvFree_",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFree_" "', argument " "1"" of type '" "void *""'"); - } - { - try { - cvFree_(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvReleaseImageHeader (const octave_value_list& args, int nargout) { - IplImage **arg1 = (IplImage **) 0 ; - void *vptr1 ; - IplImage *buffer1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvReleaseImageHeader",args.length(),1,1,0)) { - SWIG_fail; - } - { - if ((SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p__IplImage, 1)) == -1){ - SWIG_fail; - } - buffer1 = (IplImage *) vptr1; - arg1=&buffer1; - } - { - try { - cvReleaseImageHeader(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvReleaseImage (const octave_value_list& args, int nargout) { - IplImage **arg1 = (IplImage **) 0 ; - void *vptr1 ; - IplImage *buffer1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvReleaseImage",args.length(),1,1,0)) { - SWIG_fail; - } - { - if ((SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p__IplImage, 1)) == -1){ - SWIG_fail; - } - buffer1 = (IplImage *) vptr1; - arg1=&buffer1; - } - { - try { - cvReleaseImage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvResetImageROI (const octave_value_list& args, int nargout) { - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvResetImageROI",args.length(),1,1,0)) { - SWIG_fail; - } - { - void * vptr; - int res = SWIG_ConvertPtr(args(0), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - cvResetImageROI(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvCreateMatHeader (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvCreateMatHeader",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateMatHeader" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateMatHeader" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateMatHeader" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMat *)cvCreateMatHeader(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvInitMatHeader (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *arg5 = (void *) NULL ; - int arg6 = (int) 0x7fffffff ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int res5 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvInitMatHeader",args.length(),6,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInitMatHeader" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvInitMatHeader" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInitMatHeader" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvInitMatHeader" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - if (4hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetRows (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 ; - int arg5 = (int) 1 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvGetRows",args.length(),4,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode3 = SWIG_AsVal_int(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetRows" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(2), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetRows" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - if (3hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetRow (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvGetRow",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode3 = SWIG_AsVal_int(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetRow" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMat *)cvGetRow((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetCols (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvGetCols",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode3 = SWIG_AsVal_int(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetCols" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(2), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetCols" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (CvMat *)cvGetCols((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetCol (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvGetCol",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode3 = SWIG_AsVal_int(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetCol" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMat *)cvGetCol((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetDiag (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 = (int) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvGetDiag",args.length(),2,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - if (1hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvScalarToRawData (const octave_value_list& args, int nargout) { - CvScalar *arg1 = (CvScalar *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvScalarToRawData",args.length(),4,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvScalarToRawData" "', argument " "1"" of type '" "CvScalar const *""'"); - } - arg1 = (CvScalar *)(argp1); - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvScalarToRawData" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvScalarToRawData" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - if (3count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_count_get (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvNArrayIterator_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_count_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_dims_set (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNArrayIterator_dims_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_dims_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvNArrayIterator_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->dims = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_dims_get (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvNArrayIterator_dims_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_dims_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - result = (int) ((arg1)->dims); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_size_set (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - CvSize *arg2 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNArrayIterator_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_size_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_size_set" "', argument " "2"" of type '" "CvSize *""'"); - } - arg2 = (CvSize *)(argp2); - if (arg1) (arg1)->size = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_size_get (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize *result = 0 ; - - if (!SWIG_check_num_args("CvNArrayIterator_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_size_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - result = (CvSize *)& ((arg1)->size); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_ptr_set (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - uchar **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNArrayIterator_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_ptr_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_ptr_set" "', argument " "2"" of type '" "uchar *[10]""'"); - } - arg2 = (uchar **)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)10; ++ii) arg1->ptr[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""ptr""' of type '""uchar *[10]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_ptr_get (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar **result = 0 ; - - if (!SWIG_check_num_args("CvNArrayIterator_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_ptr_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - result = (uchar **)(uchar **) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_stack_set (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - int *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNArrayIterator_stack_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_stack_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_stack_set" "', argument " "2"" of type '" "int [32]""'"); - } - arg2 = (int *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) arg1->stack[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""stack""' of type '""int [32]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_stack_get (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvNArrayIterator_stack_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_stack_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - result = (int *)(int *) ((arg1)->stack); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_hdr_set (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - CvMatND **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNArrayIterator_hdr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_hdr_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_hdr_set" "', argument " "2"" of type '" "CvMatND *[10]""'"); - } - arg2 = (CvMatND **)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)10; ++ii) arg1->hdr[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""hdr""' of type '""CvMatND *[10]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNArrayIterator_hdr_get (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatND **result = 0 ; - - if (!SWIG_check_num_args("CvNArrayIterator_hdr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_hdr_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - result = (CvMatND **)(CvMatND **) ((arg1)->hdr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvMatND, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvNArrayIterator (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvNArrayIterator *result = 0 ; - - if (!SWIG_check_num_args("new_CvNArrayIterator",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvNArrayIterator *)new CvNArrayIterator(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNArrayIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvNArrayIterator (const octave_value_list& args, int nargout) { - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvNArrayIterator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNArrayIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvNArrayIterator" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = (CvNArrayIterator *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvNArrayIterator_members[] = { -{"count",0,_wrap_CvNArrayIterator_count_get,_wrap_CvNArrayIterator_count_set,0,0}, -{"dims",0,_wrap_CvNArrayIterator_dims_get,_wrap_CvNArrayIterator_dims_set,0,0}, -{"size",0,_wrap_CvNArrayIterator_size_get,_wrap_CvNArrayIterator_size_set,0,0}, -{"ptr",0,_wrap_CvNArrayIterator_ptr_get,_wrap_CvNArrayIterator_ptr_set,0,0}, -{"stack",0,_wrap_CvNArrayIterator_stack_get,_wrap_CvNArrayIterator_stack_set,0,0}, -{"hdr",0,_wrap_CvNArrayIterator_hdr_get,_wrap_CvNArrayIterator_hdr_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvNArrayIterator_base_names[] = {0}; -static const swig_type_info *swig_CvNArrayIterator_base[] = {0}; -static swig_octave_class _wrap_class_CvNArrayIterator = {"CvNArrayIterator", &SWIGTYPE_p_CvNArrayIterator,0,_wrap_new_CvNArrayIterator,0,_wrap_delete_CvNArrayIterator,swig_CvNArrayIterator_members,swig_CvNArrayIterator_base_names,swig_CvNArrayIterator_base }; - -static octave_value_list _wrap_cvInitNArrayIterator (const octave_value_list& args, int nargout) { - int arg1 ; - CvArr **arg2 = (CvArr **) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvMatND *arg4 = (CvMatND *) 0 ; - CvNArrayIterator *arg5 = (CvNArrayIterator *) 0 ; - int arg6 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - void *vptr2 ; - CvArr *buffer2 ; - bool freearg3 = false ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvInitNArrayIterator",args.length(),6,5,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvInitNArrayIterator" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvArr *) vptr2; - arg2=&buffer2; - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvInitNArrayIterator" "', argument " "4"" of type '" "CvMatND *""'"); - } - arg4 = (CvMatND *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvInitNArrayIterator" "', argument " "5"" of type '" "CvNArrayIterator *""'"); - } - arg5 = (CvNArrayIterator *)(argp5); - if (5hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvReshapeMatND (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 ; - int arg5 ; - int *arg6 = (int *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvArr *result = 0 ; - - if (!SWIG_check_num_args("cvReshapeMatND",args.length(),6,6,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvReshapeMatND" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReshapeMatND" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvReshapeMatND" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvReshapeMatND" "', argument " "6"" of type '" "int *""'"); - } - arg6 = (int *)(argp6); - { - try { - result = (CvArr *)cvReshapeMatND((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvReshape (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!SWIG_check_num_args("cvReshape",args.length(),3,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode3 = SWIG_AsVal_int(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvReshape" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - if (2hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvRepeat (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvRepeat",args.length(),2,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - try { - cvRepeat((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCreateData (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCreateData",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - try { - cvCreateData(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvReleaseData (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvReleaseData",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - try { - cvReleaseData(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvSetData (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - bool freearg1 = false ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvSetData",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSetData" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetData" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - cvSetData(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGetRawData (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - uchar **arg2 = (uchar **) 0 ; - int *arg3 = (int *) NULL ; - CvSize *arg4 = (CvSize *) NULL ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvGetRawData",args.length(),4,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetRawData" "', argument " "2"" of type '" "uchar **""'"); - } - arg2 = (uchar **)(argp2); - if (2ptr(); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRandArr" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - arg4 = OctObject_to_CvScalar( args(3) ); - } - { - arg5 = OctObject_to_CvScalar( args(4) ); - } - { - try { - cvRandArr(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvRandShuffle (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvRNG *arg2 = (CvRNG *) 0 ; - double arg3 = (double) 1. ; - bool freearg1 = false ; - void *vptr2 ; - CvRNG_Wrapper *wrapper2 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvRandShuffle",args.length(),3,2,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - if(SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Octave object to C value"); - SWIG_fail; - } - wrapper2 = (CvRNG_Wrapper *) vptr2; - arg2 = wrapper2->ptr(); - } - if (2vtx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_vtx_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphVtx *result = 0 ; - - if (!SWIG_check_num_args("CvGraphScanner_vtx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_vtx_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (CvGraphVtx *) ((arg1)->vtx); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_dst_set (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphScanner_dst_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_dst_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphVtx, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphScanner_dst_set" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = (CvGraphVtx *)(argp2); - if (arg1) (arg1)->dst = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_dst_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphVtx *result = 0 ; - - if (!SWIG_check_num_args("CvGraphScanner_dst_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_dst_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (CvGraphVtx *) ((arg1)->dst); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_edge_set (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphScanner_edge_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_edge_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphScanner_edge_set" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = (CvGraphEdge *)(argp2); - if (arg1) (arg1)->edge = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_edge_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphEdge *result = 0 ; - - if (!SWIG_check_num_args("CvGraphScanner_edge_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_edge_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (CvGraphEdge *) ((arg1)->edge); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_graph_set (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraph *arg2 = (CvGraph *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphScanner_graph_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_graph_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg2 = (CvGraph *)ptr2; - } - if (arg1) (arg1)->graph = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_graph_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraph *result = 0 ; - - if (!SWIG_check_num_args("CvGraphScanner_graph_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_graph_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (CvGraph *) ((arg1)->graph); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraph, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_stack_set (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphScanner_stack_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_stack_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->stack = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_stack_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvGraphScanner_stack_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_stack_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (CvSeq *) ((arg1)->stack); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_index_set (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphScanner_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_index_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphScanner_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_index_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraphScanner_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_index_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (int) ((arg1)->index); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_mask_set (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvGraphScanner_mask_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_mask_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphScanner_mask_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->mask = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvGraphScanner_mask_get (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvGraphScanner_mask_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_mask_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - result = (int) ((arg1)->mask); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvGraphScanner (const octave_value_list& args, int nargout) { - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvGraphScanner",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvGraphScanner, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphScanner" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = (CvGraphScanner *)(argp1); - { - try { - delete_CvGraphScanner(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvGraphScanner_members[] = { -{"vtx",0,_wrap_CvGraphScanner_vtx_get,_wrap_CvGraphScanner_vtx_set,0,0}, -{"dst",0,_wrap_CvGraphScanner_dst_get,_wrap_CvGraphScanner_dst_set,0,0}, -{"edge",0,_wrap_CvGraphScanner_edge_get,_wrap_CvGraphScanner_edge_set,0,0}, -{"graph",0,_wrap_CvGraphScanner_graph_get,_wrap_CvGraphScanner_graph_set,0,0}, -{"stack",0,_wrap_CvGraphScanner_stack_get,_wrap_CvGraphScanner_stack_set,0,0}, -{"index",0,_wrap_CvGraphScanner_index_get,_wrap_CvGraphScanner_index_set,0,0}, -{"mask",0,_wrap_CvGraphScanner_mask_get,_wrap_CvGraphScanner_mask_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvGraphScanner_base_names[] = {0}; -static const swig_type_info *swig_CvGraphScanner_base[] = {0}; -static swig_octave_class _wrap_class_CvGraphScanner = {"CvGraphScanner", &SWIGTYPE_p_CvGraphScanner,0,0,0,_wrap_delete_CvGraphScanner,swig_CvGraphScanner_members,swig_CvGraphScanner_base_names,swig_CvGraphScanner_base }; - -static octave_value_list _wrap_cvCreateGraphScanner (const octave_value_list& args, int nargout) { - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) NULL ; - int arg3 = (int) -1 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvGraphScanner *result = 0 ; - - if (!SWIG_check_num_args("cvCreateGraphScanner",args.length(),3,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - arg1 = (CvGraph *)ptr1; - } - if (1font_face = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_font_face_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvFont_font_face_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_font_face_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (int) ((arg1)->font_face); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_ascii_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_ascii_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_ascii_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFont_ascii_set" "', argument " "2"" of type '" "int const *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->ascii = (int const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_ascii_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvFont_ascii_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_ascii_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (int *) ((arg1)->ascii); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_greek_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_greek_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_greek_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFont_greek_set" "', argument " "2"" of type '" "int const *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->greek = (int const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_greek_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvFont_greek_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_greek_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (int *) ((arg1)->greek); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_cyrillic_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_cyrillic_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_cyrillic_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFont_cyrillic_set" "', argument " "2"" of type '" "int const *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->cyrillic = (int const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_cyrillic_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvFont_cyrillic_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_cyrillic_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (int *) ((arg1)->cyrillic); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_hscale_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_hscale_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_hscale_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_hscale_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->hscale = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_hscale_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvFont_hscale_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_hscale_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (float) ((arg1)->hscale); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_vscale_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_vscale_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_vscale_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_vscale_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->vscale = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_vscale_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvFont_vscale_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_vscale_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (float) ((arg1)->vscale); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_shear_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_shear_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_shear_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_shear_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->shear = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_shear_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvFont_shear_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_shear_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (float) ((arg1)->shear); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_thickness_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_thickness_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_thickness_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_thickness_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->thickness = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_thickness_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvFont_thickness_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_thickness_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (int) ((arg1)->thickness); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_dx_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_dx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_dx_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_dx_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->dx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_dx_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvFont_dx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_dx_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (float) ((arg1)->dx); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_line_type_set (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvFont_line_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_line_type_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_line_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->line_type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvFont_line_type_get (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvFont_line_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_line_type_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - result = (int) ((arg1)->line_type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvFont (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvFont *result = 0 ; - - if (!SWIG_check_num_args("new_CvFont",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvFont *)new CvFont(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFont, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvFont (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvFont",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFont, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvFont" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = (CvFont *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvFont_members[] = { -{"font_face",0,_wrap_CvFont_font_face_get,_wrap_CvFont_font_face_set,0,0}, -{"ascii",0,_wrap_CvFont_ascii_get,_wrap_CvFont_ascii_set,0,0}, -{"greek",0,_wrap_CvFont_greek_get,_wrap_CvFont_greek_set,0,0}, -{"cyrillic",0,_wrap_CvFont_cyrillic_get,_wrap_CvFont_cyrillic_set,0,0}, -{"hscale",0,_wrap_CvFont_hscale_get,_wrap_CvFont_hscale_set,0,0}, -{"vscale",0,_wrap_CvFont_vscale_get,_wrap_CvFont_vscale_set,0,0}, -{"shear",0,_wrap_CvFont_shear_get,_wrap_CvFont_shear_set,0,0}, -{"thickness",0,_wrap_CvFont_thickness_get,_wrap_CvFont_thickness_set,0,0}, -{"dx",0,_wrap_CvFont_dx_get,_wrap_CvFont_dx_set,0,0}, -{"line_type",0,_wrap_CvFont_line_type_get,_wrap_CvFont_line_type_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvFont_base_names[] = {0}; -static const swig_type_info *swig_CvFont_base[] = {0}; -static swig_octave_class _wrap_class_CvFont = {"CvFont", &SWIGTYPE_p_CvFont,0,_wrap_new_CvFont,0,_wrap_delete_CvFont,swig_CvFont_members,swig_CvFont_base_names,swig_CvFont_base }; - -static octave_value_list _wrap_cvInitFont (const octave_value_list& args, int nargout) { - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - double arg3 ; - double arg4 ; - double arg5 = (double) 0 ; - int arg6 = (int) 1 ; - int arg7 = (int) 8 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvInitFont",args.length(),6,3,0)) { - SWIG_fail; - } - { - arg1 = (CvFont *)malloc (sizeof (CvFont)); - arg2 = (int)OctInt_AsLong (args(0)); - if (SWIG_arg_fail(1)) SWIG_fail; - } - ecode3 = SWIG_AsVal_double(args(1), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInitFont" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_double(args(2), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvInitFont" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - if (3node = (void const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTreeNodeIterator_node_get (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("CvTreeNodeIterator_node_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_node_get" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - result = (void *) ((arg1)->node); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTreeNodeIterator_level_set (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTreeNodeIterator_level_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_level_set" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTreeNodeIterator_level_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->level = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTreeNodeIterator_level_get (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTreeNodeIterator_level_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_level_get" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - result = (int) ((arg1)->level); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTreeNodeIterator_max_level_set (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTreeNodeIterator_max_level_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_max_level_set" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTreeNodeIterator_max_level_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->max_level = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTreeNodeIterator_max_level_get (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTreeNodeIterator_max_level_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_max_level_get" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - result = (int) ((arg1)->max_level); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTreeNodeIterator (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTreeNodeIterator *result = 0 ; - - if (!SWIG_check_num_args("new_CvTreeNodeIterator",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTreeNodeIterator *)new CvTreeNodeIterator(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTreeNodeIterator, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTreeNodeIterator (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTreeNodeIterator",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTreeNodeIterator" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTreeNodeIterator_members[] = { -{"node",0,_wrap_CvTreeNodeIterator_node_get,_wrap_CvTreeNodeIterator_node_set,0,0}, -{"level",0,_wrap_CvTreeNodeIterator_level_get,_wrap_CvTreeNodeIterator_level_set,0,0}, -{"max_level",0,_wrap_CvTreeNodeIterator_max_level_get,_wrap_CvTreeNodeIterator_max_level_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTreeNodeIterator_base_names[] = {0}; -static const swig_type_info *swig_CvTreeNodeIterator_base[] = {0}; -static swig_octave_class _wrap_class_CvTreeNodeIterator = {"CvTreeNodeIterator", &SWIGTYPE_p_CvTreeNodeIterator,0,_wrap_new_CvTreeNodeIterator,0,_wrap_delete_CvTreeNodeIterator,swig_CvTreeNodeIterator_members,swig_CvTreeNodeIterator_base_names,swig_CvTreeNodeIterator_base }; - -static octave_value_list _wrap_cvInitTreeNodeIterator (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvInitTreeNodeIterator",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInitTreeNodeIterator" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvInitTreeNodeIterator" "', argument " "2"" of type '" "void const *""'"); - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInitTreeNodeIterator" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - cvInitTreeNodeIterator(arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvNextTreeNode (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("cvNextTreeNode",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNextTreeNode" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - { - try { - result = (void *)cvNextTreeNode(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvPrevTreeNode (const octave_value_list& args, int nargout) { - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - void *result = 0 ; - - if (!SWIG_check_num_args("cvPrevTreeNode",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvPrevTreeNode" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = (CvTreeNodeIterator *)(argp1); - { - try { - result = (void *)cvPrevTreeNode(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvInsertNodeIntoTree (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - void *arg2 = (void *) 0 ; - void *arg3 = (void *) 0 ; - int res1 ; - int res2 ; - int res3 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvInsertNodeIntoTree",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInsertNodeIntoTree" "', argument " "1"" of type '" "void *""'"); - } - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvInsertNodeIntoTree" "', argument " "2"" of type '" "void *""'"); - } - res3 = SWIG_ConvertPtr(args(2),SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvInsertNodeIntoTree" "', argument " "3"" of type '" "void *""'"); - } - { - try { - cvInsertNodeIntoTree(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRemoveNodeFromTree (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - void *arg2 = (void *) 0 ; - int res1 ; - int res2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvRemoveNodeFromTree",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRemoveNodeFromTree" "', argument " "1"" of type '" "void *""'"); - } - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRemoveNodeFromTree" "', argument " "2"" of type '" "void *""'"); - } - { - try { - cvRemoveNodeFromTree(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvTreeToNodeSeq (const octave_value_list& args, int nargout) { - void *arg1 = (void *) 0 ; - int arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("cvTreeToNodeSeq",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0),SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvTreeToNodeSeq" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvTreeToNodeSeq" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvTreeToNodeSeq" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = (CvMemStorage *)(argp3); - { - try { - result = (CvSeq *)cvTreeToNodeSeq((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvKMeans2 (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvTermCriteria arg4 ; - int arg5 = (int) 1 ; - CvRNG *arg6 = (CvRNG *) 0 ; - int arg7 = (int) 0 ; - CvArr *arg8 = (CvArr *) 0 ; - double *arg9 = (double *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - void *argp4 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *vptr6 ; - CvRNG_Wrapper *wrapper6 ; - int val7 ; - int ecode7 = 0 ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvKMeans2",args.length(),9,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvKMeans2" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvKMeans2" "', argument " "4"" of type '" "CvTermCriteria""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvKMeans2" "', argument " "4"" of type '" "CvTermCriteria""'"); - } else { - arg4 = *((CvTermCriteria *)(argp4)); - } - } - if (4ptr(); - } - } - if (6clone(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvImage((const CvImage&)(result))), SWIGTYPE_p_CvImage, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_create (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - CvSize arg2 ; - int arg3 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_create",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_create" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_create" "', argument " "2"" of type '" "CvSize""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvImage_create" "', argument " "2"" of type '" "CvSize""'"); - } else { - arg2 = *((CvSize *)(argp2)); - } - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvImage_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvImage_create" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - (arg1)->create(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_release (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_release",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_release" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - (arg1)->release(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_clear (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_clear" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_attach__SWIG_0 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - bool val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_attach",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_attach" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(args(1), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - ecode3 = SWIG_AsVal_bool(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvImage_attach" "', argument " "3"" of type '" "bool""'"); - } - arg3 = (bool)(val3); - { - try { - (arg1)->attach(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_attach__SWIG_1 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_attach",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_attach" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(args(1), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - { - try { - (arg1)->attach(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_attach (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_attach__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_attach__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvImage_detach (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_detach",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_detach" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - (arg1)->detach(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_load__SWIG_0 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvImage_load",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_load" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvImage_load" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_load__SWIG_1 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvImage_load",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_load" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_load__SWIG_2 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvImage_load",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_load" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - result = (bool)(arg1)->load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_load (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_load__SWIG_2(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_load__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_load__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvImage_read__SWIG_0 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvImage_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_read" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - res4 = SWIG_AsCharPtrAndSize(args(3), &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvImage_read" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = (char *)(buf4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_read__SWIG_1 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvImage_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_read" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvImage_read" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_read (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_read__SWIG_1(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_read__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvImage_save__SWIG_0 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int *arg4 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_save",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_save" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvImage_save" "', argument " "4"" of type '" "int const *""'"); - } - arg4 = (int *)(argp4); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3,(int const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_save__SWIG_1 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_save",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_save" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_save (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_save__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_int, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_save__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvImage_write (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_write" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - (arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_show (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_show",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_show" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_show" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - (arg1)->show((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_is_valid (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvImage_is_valid",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_is_valid" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (bool)(arg1)->is_valid(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_width (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_width",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_width" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->width(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_height (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_height",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_height" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->height(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_size (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize result; - - if (!SWIG_check_num_args("CvImage_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_size" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = ((CvImage const *)arg1)->size(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSize((const CvSize&)(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_roi_size (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize result; - - if (!SWIG_check_num_args("CvImage_roi_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi_size" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = ((CvImage const *)arg1)->roi_size(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSize((const CvSize&)(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_roi (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect result; - - if (!SWIG_check_num_args("CvImage_roi",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = ((CvImage const *)arg1)->roi(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvRect((const CvRect&)(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_coi (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_coi",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_coi" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->coi(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_set_roi (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - CvRect arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_set_roi",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_set_roi" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRect, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_set_roi" "', argument " "2"" of type '" "CvRect""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvImage_set_roi" "', argument " "2"" of type '" "CvRect""'"); - } else { - arg2 = *((CvRect *)(argp2)); - } - } - { - try { - (arg1)->set_roi(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_reset_roi (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_reset_roi",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_reset_roi" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - (arg1)->reset_roi(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_set_coi (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvImage_set_coi",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_set_coi" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvImage_set_coi" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - (arg1)->set_coi(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_depth (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_depth",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_depth" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->depth(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_channels (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_channels",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_channels" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->channels(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_pix_size (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_pix_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_pix_size" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->pix_size(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_data__SWIG_0 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvImage_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_data" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (uchar *)(arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_data__SWIG_1 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvImage_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_data" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (uchar *)((CvImage const *)arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_data (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[1]={ - octave_value_ref(args,0) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_data__SWIG_0(args, nargout); - } - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_data__SWIG_1(args, nargout); - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvImage_step (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_step",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_step" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->step(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_origin (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvImage_origin",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_origin" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (int)((CvImage const *)arg1)->origin(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_roi_row__SWIG_0 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvImage_roi_row",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi_row" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvImage_roi_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (uchar *)(arg1)->roi_row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_roi_row__SWIG_1 (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvImage_roi_row",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi_row" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = (CvImage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvImage_roi_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (uchar *)((CvImage const *)arg1)->roi_row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvImage_roi_row (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_roi_row__SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_roi_row__SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvImage_asIplImage (const octave_value_list& args, int nargout) { - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("CvImage_asIplImage",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_asIplImage" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = (CvImage *)(argp1); - { - try { - result = (IplImage *)(arg1)->operator IplImage*(); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvImage_members[] = { -{"clone",_wrap_CvImage_clone,0,0,0,0}, -{"create",_wrap_CvImage_create,0,0,0,0}, -{"release",_wrap_CvImage_release,0,0,0,0}, -{"clear",_wrap_CvImage_clear,0,0,0,0}, -{"attach",_wrap_CvImage_attach,0,0,0,0}, -{"detach",_wrap_CvImage_detach,0,0,0,0}, -{"load",_wrap_CvImage_load,0,0,0,0}, -{"read",_wrap_CvImage_read,0,0,0,0}, -{"save",_wrap_CvImage_save,0,0,0,0}, -{"write",_wrap_CvImage_write,0,0,0,0}, -{"show",_wrap_CvImage_show,0,0,0,0}, -{"is_valid",_wrap_CvImage_is_valid,0,0,0,0}, -{"width",_wrap_CvImage_width,0,0,0,0}, -{"height",_wrap_CvImage_height,0,0,0,0}, -{"size",_wrap_CvImage_size,0,0,0,0}, -{"roi_size",_wrap_CvImage_roi_size,0,0,0,0}, -{"roi",_wrap_CvImage_roi,0,0,0,0}, -{"coi",_wrap_CvImage_coi,0,0,0,0}, -{"set_roi",_wrap_CvImage_set_roi,0,0,0,0}, -{"reset_roi",_wrap_CvImage_reset_roi,0,0,0,0}, -{"set_coi",_wrap_CvImage_set_coi,0,0,0,0}, -{"depth",_wrap_CvImage_depth,0,0,0,0}, -{"channels",_wrap_CvImage_channels,0,0,0,0}, -{"pix_size",_wrap_CvImage_pix_size,0,0,0,0}, -{"data",_wrap_CvImage_data,0,0,0,0}, -{"step",_wrap_CvImage_step,0,0,0,0}, -{"origin",_wrap_CvImage_origin,0,0,0,0}, -{"roi_row",_wrap_CvImage_roi_row,0,0,0,0}, -{"asIplImage",_wrap_CvImage_asIplImage,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvImage_base_names[] = {0}; -static const swig_type_info *swig_CvImage_base[] = {0}; -static swig_octave_class _wrap_class_CvImage = {"CvImage", &SWIGTYPE_p_CvImage,0,_wrap_new_CvImage,0,_wrap_delete_CvImage,swig_CvImage_members,swig_CvImage_base_names,swig_CvImage_base }; - -static octave_value_list _wrap_new_CvMatrix__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMatrix *)new CvMatrix(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_2 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *arg5 = (void *) 0 ; - int arg6 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - int res5 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),6,6,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4),SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "void *""'"); - } - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "new_CvMatrix" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_3 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *arg5 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - int res5 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),5,5,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4),SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "void *""'"); - } - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_4 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_5 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - bool arg5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),5,5,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = (CvMemStorage *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_6 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = (CvMemStorage *)(argp4); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_7 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int arg5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),5,5,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3),SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "void *""'"); - } - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_8 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3),SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "void *""'"); - } - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_9 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (CvMatrix *)new CvMatrix(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_10 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = 0 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvMatrix, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvMatrix const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvMatrix const &""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (CvMatrix *)new CvMatrix((CvMatrix const &)*arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_11 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMatrix *)new CvMatrix((char const *)arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_12 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - result = (CvMatrix *)new CvMatrix((char const *)arg1,(char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_13 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - try { - result = (CvMatrix *)new CvMatrix((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_14 (const octave_value_list& args, int nargout) { - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = (CvFileStorage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,(char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix__SWIG_15 (const octave_value_list& args, int nargout) { - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = (CvFileStorage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 0) { - return _wrap_new_CvMatrix__SWIG_0(args, nargout); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_9(args, nargout); - } - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_10(args, nargout); - } - } - if (argc == 1) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_13(args, nargout); - } - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_12(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_15(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_14(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_1(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_11(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_6(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_4(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[3], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_8(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_5(args, nargout); - } - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[4], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_3(args, nargout); - } - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[3], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_7(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[4], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_2(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvMatrix (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMatrix",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatrix" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_clone (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix result; - - if (!SWIG_check_num_args("CvMatrix_clone",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_clone" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (arg1)->clone(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvMatrix((const CvMatrix&)(result))), SWIGTYPE_p_CvMatrix, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_set (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_set",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_set" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_bool(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMatrix_set" "', argument " "3"" of type '" "bool""'"); - } - arg3 = (bool)(val3); - { - try { - (arg1)->set(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_create (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_create",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_create" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatrix_create" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMatrix_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvMatrix_create" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - (arg1)->create(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_addref (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_addref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_addref" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - ((CvMatrix const *)arg1)->addref(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_release (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_release",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_release" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - (arg1)->release(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_clear (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_clear" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_load__SWIG_0 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvMatrix_load",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_load" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvMatrix_load" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_load__SWIG_1 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvMatrix_load",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_load" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_load__SWIG_2 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvMatrix_load",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_load" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - result = (bool)(arg1)->load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_load (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_load__SWIG_2(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_load__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_load__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMatrix_read__SWIG_0 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvMatrix_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_read" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - res4 = SWIG_AsCharPtrAndSize(args(3), &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvMatrix_read" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = (char *)(buf4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_read__SWIG_1 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvMatrix_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_read" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvMatrix_read" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_read (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_read__SWIG_1(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_read__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMatrix_save__SWIG_0 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int *arg4 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_save",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_save" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvMatrix_save" "', argument " "4"" of type '" "int const *""'"); - } - arg4 = (int *)(argp4); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3,(int const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_save__SWIG_1 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_save",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_save" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_save (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_save__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_int, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_save__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMatrix_write (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_write" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - (arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_show (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_show",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_show" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_show" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - (arg1)->show((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_is_valid (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvMatrix_is_valid",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_is_valid" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (bool)(arg1)->is_valid(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_rows (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_rows",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_rows" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->rows(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_cols (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_cols",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_cols" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->cols(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_size (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize result; - - if (!SWIG_check_num_args("CvMatrix_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_size" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = ((CvMatrix const *)arg1)->size(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSize((const CvSize&)(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_type (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_type",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_type" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->type(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_depth (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_depth",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_depth" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->depth(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_channels (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_channels",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_channels" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->channels(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_pix_size (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_pix_size",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_pix_size" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->pix_size(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_data__SWIG_0 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvMatrix_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_data" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (uchar *)(arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_data__SWIG_1 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvMatrix_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_data" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (uchar *)((CvMatrix const *)arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_data (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[1]={ - octave_value_ref(args,0) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_data__SWIG_0(args, nargout); - } - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_data__SWIG_1(args, nargout); - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMatrix_step (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMatrix_step",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_step" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->step(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_set_data__SWIG_0 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_set_data",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_set_data" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_set_data" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMatrix_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - (arg1)->set_data(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_set_data__SWIG_1 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *arg2 = (void *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix_set_data",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_set_data" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - res2 = SWIG_ConvertPtr(args(1),SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_set_data" "', argument " "2"" of type '" "void *""'"); - } - { - try { - (arg1)->set_data(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_set_data (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[1], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_set_data__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[1], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_set_data__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMatrix_row__SWIG_0 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvMatrix_row",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_row" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatrix_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (uchar *)(arg1)->row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_row__SWIG_1 (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar *result = 0 ; - - if (!SWIG_check_num_args("CvMatrix_row",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_row" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = (CvMatrix *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatrix_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (uchar *)((CvMatrix const *)arg1)->row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix_row (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_row__SWIG_0(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_row__SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvMatrix_asCvMat (const octave_value_list& args, int nargout) { - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMatrix_asCvMat",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_asCvMat" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = (CvMatrix *)(argp1); - { - try { - result = (CvMat *)(arg1)->operator CvMat*(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMatrix_members[] = { -{"clone",_wrap_CvMatrix_clone,0,0,0,0}, -{"set",_wrap_CvMatrix_set,0,0,0,0}, -{"create",_wrap_CvMatrix_create,0,0,0,0}, -{"addref",_wrap_CvMatrix_addref,0,0,0,0}, -{"release",_wrap_CvMatrix_release,0,0,0,0}, -{"clear",_wrap_CvMatrix_clear,0,0,0,0}, -{"load",_wrap_CvMatrix_load,0,0,0,0}, -{"read",_wrap_CvMatrix_read,0,0,0,0}, -{"save",_wrap_CvMatrix_save,0,0,0,0}, -{"write",_wrap_CvMatrix_write,0,0,0,0}, -{"show",_wrap_CvMatrix_show,0,0,0,0}, -{"is_valid",_wrap_CvMatrix_is_valid,0,0,0,0}, -{"rows",_wrap_CvMatrix_rows,0,0,0,0}, -{"cols",_wrap_CvMatrix_cols,0,0,0,0}, -{"size",_wrap_CvMatrix_size,0,0,0,0}, -{"type",_wrap_CvMatrix_type,0,0,0,0}, -{"depth",_wrap_CvMatrix_depth,0,0,0,0}, -{"channels",_wrap_CvMatrix_channels,0,0,0,0}, -{"pix_size",_wrap_CvMatrix_pix_size,0,0,0,0}, -{"data",_wrap_CvMatrix_data,0,0,0,0}, -{"step",_wrap_CvMatrix_step,0,0,0,0}, -{"set_data",_wrap_CvMatrix_set_data,0,0,0,0}, -{"row",_wrap_CvMatrix_row,0,0,0,0}, -{"asCvMat",_wrap_CvMatrix_asCvMat,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMatrix_base_names[] = {0}; -static const swig_type_info *swig_CvMatrix_base[] = {0}; -static swig_octave_class _wrap_class_CvMatrix = {"CvMatrix", &SWIGTYPE_p_CvMatrix,0,_wrap_new_CvMatrix,0,_wrap_delete_CvMatrix,swig_CvMatrix_members,swig_CvMatrix_base_names,swig_CvMatrix_base }; - -static octave_value_list _wrap_new_CvModule (const octave_value_list& args, int nargout) { - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvModule *result = 0 ; - - if (!SWIG_check_num_args("new_CvModule",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvModule" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = (CvModuleInfo *)(argp1); - { - try { - result = (CvModule *)new CvModule(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModule, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvModule (const octave_value_list& args, int nargout) { - CvModule *arg1 = (CvModule *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvModule",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModule, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvModule" "', argument " "1"" of type '" "CvModule *""'"); - } - arg1 = (CvModule *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModule_info_set (const octave_value_list& args, int nargout) { - CvModule *arg1 = (CvModule *) 0 ; - CvModuleInfo *arg2 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvModule_info_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModule, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModule_info_set" "', argument " "1"" of type '" "CvModule *""'"); - } - arg1 = (CvModule *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModule_info_set" "', argument " "2"" of type '" "CvModuleInfo *""'"); - } - arg2 = (CvModuleInfo *)(argp2); - if (arg1) (arg1)->info = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModule_info_get (const octave_value_list& args, int nargout) { - CvModule *arg1 = (CvModule *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvModuleInfo *result = 0 ; - - if (!SWIG_check_num_args("CvModule_info_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvModule, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModule_info_get" "', argument " "1"" of type '" "CvModule *""'"); - } - arg1 = (CvModule *)(argp1); - result = (CvModuleInfo *) ((arg1)->info); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvModule_first_set(const octave_value_list& args,int nargout) { - if (!SWIG_check_num_args("CvModule_first_set",args.length(),1,1,0)) return octave_value_list(); - - { - void *argp = 0; - int res = SWIG_ConvertPtr(args(0), &argp, SWIGTYPE_p_CvModuleInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvModule::first""' of type '""CvModuleInfo *""'"); - } - CvModule::first = (CvModuleInfo *)(argp); - } -fail: - return octave_value_list(); -} - - -static octave_value_list _wrap_CvModule_first_get(const octave_value_list& args,int nargout) { - octave_value obj; - - obj = SWIG_NewPointerObj(SWIG_as_voidptr(CvModule::first), SWIGTYPE_p_CvModuleInfo, 0 ); - return obj; -} - - -static octave_value_list _wrap_CvModule_last_set(const octave_value_list& args,int nargout) { - if (!SWIG_check_num_args("CvModule_last_set",args.length(),1,1,0)) return octave_value_list(); - - { - void *argp = 0; - int res = SWIG_ConvertPtr(args(0), &argp, SWIGTYPE_p_CvModuleInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvModule::last""' of type '""CvModuleInfo *""'"); - } - CvModule::last = (CvModuleInfo *)(argp); - } -fail: - return octave_value_list(); -} - - -static octave_value_list _wrap_CvModule_last_get(const octave_value_list& args,int nargout) { - octave_value obj; - - obj = SWIG_NewPointerObj(SWIG_as_voidptr(CvModule::last), SWIGTYPE_p_CvModuleInfo, 0 ); - return obj; -} - - -static swig_octave_member swig_CvModule_members[] = { -{"info",0,_wrap_CvModule_info_get,_wrap_CvModule_info_set,0,0}, -{"first",0,_wrap_CvModule_first_get,_wrap_CvModule_first_set,1,0}, -{"last",0,_wrap_CvModule_last_get,_wrap_CvModule_last_set,1,0}, -{0,0,0,0} -}; -static const char *swig_CvModule_base_names[] = {0}; -static const swig_type_info *swig_CvModule_base[] = {0}; -static swig_octave_class _wrap_class_CvModule = {"CvModule", &SWIGTYPE_p_CvModule,0,_wrap_new_CvModule,0,_wrap_delete_CvModule,swig_CvModule_members,swig_CvModule_base_names,swig_CvModule_base }; - -static octave_value_list _wrap_new_CvType__SWIG_0 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - CvReadFunc arg4 = (CvReadFunc) 0 ; - CvWriteFunc arg5 = (CvWriteFunc) 0 ; - CvCloneFunc arg6 = (CvCloneFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvType *result = 0 ; - - if (!SWIG_check_num_args("new_CvType",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(2), (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(3), (void**)(&arg4), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "4"" of type '" "CvReadFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(4), (void**)(&arg5), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "5"" of type '" "CvWriteFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(5), (void**)(&arg6), SWIGTYPE_p_f_p_q_const__void__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "6"" of type '" "CvCloneFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvType__SWIG_1 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - CvReadFunc arg4 = (CvReadFunc) 0 ; - CvWriteFunc arg5 = (CvWriteFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvType *result = 0 ; - - if (!SWIG_check_num_args("new_CvType",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(2), (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(3), (void**)(&arg4), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "4"" of type '" "CvReadFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(4), (void**)(&arg5), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "5"" of type '" "CvWriteFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvType__SWIG_2 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - CvReadFunc arg4 = (CvReadFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvType *result = 0 ; - - if (!SWIG_check_num_args("new_CvType",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(2), (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(3), (void**)(&arg4), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "4"" of type '" "CvReadFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvType__SWIG_3 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvType *result = 0 ; - - if (!SWIG_check_num_args("new_CvType",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(args(2), (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvType__SWIG_4 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvType *result = 0 ; - - if (!SWIG_check_num_args("new_CvType",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - int res = SWIG_ConvertFunctionPtr(args(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvType (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_4(args, nargout); - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_3(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[3], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[3], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[4], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_1(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[3], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[4], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[5], &ptr, SWIGTYPE_p_f_p_q_const__void__p_void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_0(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvType (const octave_value_list& args, int nargout) { - CvType *arg1 = (CvType *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvType",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvType, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvType" "', argument " "1"" of type '" "CvType *""'"); - } - arg1 = (CvType *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvType_info_set (const octave_value_list& args, int nargout) { - CvType *arg1 = (CvType *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvType_info_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvType, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvType_info_set" "', argument " "1"" of type '" "CvType *""'"); - } - arg1 = (CvType *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvType_info_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = (CvTypeInfo *)(argp2); - if (arg1) (arg1)->info = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvType_info_get (const octave_value_list& args, int nargout) { - CvType *arg1 = (CvType *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypeInfo *result = 0 ; - - if (!SWIG_check_num_args("CvType_info_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvType, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvType_info_get" "', argument " "1"" of type '" "CvType *""'"); - } - arg1 = (CvType *)(argp1); - result = (CvTypeInfo *) ((arg1)->info); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvType_first_set(const octave_value_list& args,int nargout) { - if (!SWIG_check_num_args("CvType_first_set",args.length(),1,1,0)) return octave_value_list(); - - { - void *argp = 0; - int res = SWIG_ConvertPtr(args(0), &argp, SWIGTYPE_p_CvTypeInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvType::first""' of type '""CvTypeInfo *""'"); - } - CvType::first = (CvTypeInfo *)(argp); - } -fail: - return octave_value_list(); -} - - -static octave_value_list _wrap_CvType_first_get(const octave_value_list& args,int nargout) { - octave_value obj; - - obj = SWIG_NewPointerObj(SWIG_as_voidptr(CvType::first), SWIGTYPE_p_CvTypeInfo, 0 ); - return obj; -} - - -static octave_value_list _wrap_CvType_last_set(const octave_value_list& args,int nargout) { - if (!SWIG_check_num_args("CvType_last_set",args.length(),1,1,0)) return octave_value_list(); - - { - void *argp = 0; - int res = SWIG_ConvertPtr(args(0), &argp, SWIGTYPE_p_CvTypeInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvType::last""' of type '""CvTypeInfo *""'"); - } - CvType::last = (CvTypeInfo *)(argp); - } -fail: - return octave_value_list(); -} - - -static octave_value_list _wrap_CvType_last_get(const octave_value_list& args,int nargout) { - octave_value obj; - - obj = SWIG_NewPointerObj(SWIG_as_voidptr(CvType::last), SWIGTYPE_p_CvTypeInfo, 0 ); - return obj; -} - - -static swig_octave_member swig_CvType_members[] = { -{"info",0,_wrap_CvType_info_get,_wrap_CvType_info_set,0,0}, -{"first",0,_wrap_CvType_first_get,_wrap_CvType_first_set,1,0}, -{"last",0,_wrap_CvType_last_get,_wrap_CvType_last_set,1,0}, -{0,0,0,0} -}; -static const char *swig_CvType_base_names[] = {0}; -static const swig_type_info *swig_CvType_base[] = {0}; -static swig_octave_class _wrap_class_CvType = {"CvType", &SWIGTYPE_p_CvType,0,_wrap_new_CvType,0,_wrap_delete_CvType,swig_CvType_members,swig_CvType_base_names,swig_CvType_base }; - -static octave_value_list _wrap_CvMoments_m00_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m00_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m00_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m00_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m00 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m00_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m00_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m00_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m00); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m10_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m10_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m10_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m10_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m10 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m10_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m10_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m10_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m10); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m01_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m01_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m01_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m01_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m01 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m01_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m01_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m01_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m01); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m20_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m20_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m20_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m20_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m20 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m20_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m20_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m20_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m20); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m11_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m11_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m11_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m11_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m11 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m11_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m11_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m11_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m11); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m02_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m02_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m02_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m02_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m02 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m02_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m02_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m02_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m02); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m30_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m30_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m30_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m30_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m30 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m30_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m30_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m30_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m30); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m21_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m21_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m21_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m21_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m21 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m21_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m21_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m21_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m21); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m12_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m12_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m12_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m12_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m12 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m12_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m12_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m12_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m12); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m03_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_m03_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m03_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m03_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->m03 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_m03_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_m03_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m03_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->m03); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu20_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu20_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu20_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu20_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu20 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu20_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu20_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu20_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu20); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu11_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu11_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu11_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu11_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu11 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu11_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu11_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu11_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu11); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu02_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu02_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu02_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu02_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu02 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu02_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu02_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu02_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu02); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu30_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu30_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu30_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu30_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu30 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu30_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu30_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu30_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu30); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu21_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu21_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu21_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu21_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu21 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu21_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu21_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu21_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu21); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu12_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu12_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu12_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu12_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu12 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu12_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu12_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu12_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu12); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu03_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_mu03_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu03_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu03_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->mu03 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_mu03_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_mu03_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu03_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->mu03); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_inv_sqrt_m00_set (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMoments_inv_sqrt_m00_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_inv_sqrt_m00_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_inv_sqrt_m00_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->inv_sqrt_m00 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMoments_inv_sqrt_m00_get (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMoments_inv_sqrt_m00_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_inv_sqrt_m00_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - result = (double) ((arg1)->inv_sqrt_m00); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMoments (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMoments *result = 0 ; - - if (!SWIG_check_num_args("new_CvMoments",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMoments *)new CvMoments(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMoments, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMoments (const octave_value_list& args, int nargout) { - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMoments",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMoments, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMoments" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = (CvMoments *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMoments_members[] = { -{"m00",0,_wrap_CvMoments_m00_get,_wrap_CvMoments_m00_set,0,0}, -{"m10",0,_wrap_CvMoments_m10_get,_wrap_CvMoments_m10_set,0,0}, -{"m01",0,_wrap_CvMoments_m01_get,_wrap_CvMoments_m01_set,0,0}, -{"m20",0,_wrap_CvMoments_m20_get,_wrap_CvMoments_m20_set,0,0}, -{"m11",0,_wrap_CvMoments_m11_get,_wrap_CvMoments_m11_set,0,0}, -{"m02",0,_wrap_CvMoments_m02_get,_wrap_CvMoments_m02_set,0,0}, -{"m30",0,_wrap_CvMoments_m30_get,_wrap_CvMoments_m30_set,0,0}, -{"m21",0,_wrap_CvMoments_m21_get,_wrap_CvMoments_m21_set,0,0}, -{"m12",0,_wrap_CvMoments_m12_get,_wrap_CvMoments_m12_set,0,0}, -{"m03",0,_wrap_CvMoments_m03_get,_wrap_CvMoments_m03_set,0,0}, -{"mu20",0,_wrap_CvMoments_mu20_get,_wrap_CvMoments_mu20_set,0,0}, -{"mu11",0,_wrap_CvMoments_mu11_get,_wrap_CvMoments_mu11_set,0,0}, -{"mu02",0,_wrap_CvMoments_mu02_get,_wrap_CvMoments_mu02_set,0,0}, -{"mu30",0,_wrap_CvMoments_mu30_get,_wrap_CvMoments_mu30_set,0,0}, -{"mu21",0,_wrap_CvMoments_mu21_get,_wrap_CvMoments_mu21_set,0,0}, -{"mu12",0,_wrap_CvMoments_mu12_get,_wrap_CvMoments_mu12_set,0,0}, -{"mu03",0,_wrap_CvMoments_mu03_get,_wrap_CvMoments_mu03_set,0,0}, -{"inv_sqrt_m00",0,_wrap_CvMoments_inv_sqrt_m00_get,_wrap_CvMoments_inv_sqrt_m00_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMoments_base_names[] = {0}; -static const swig_type_info *swig_CvMoments_base[] = {0}; -static swig_octave_class _wrap_class_CvMoments = {"CvMoments", &SWIGTYPE_p_CvMoments,0,_wrap_new_CvMoments,0,_wrap_delete_CvMoments,swig_CvMoments_members,swig_CvMoments_base_names,swig_CvMoments_base }; - -static octave_value_list _wrap_CvHuMoments_hu1_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu1_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu1_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu1_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu1 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu1_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu1_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu1_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu1); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu2_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu2_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu2_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu2_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu2 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu2_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu2_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu2_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu2); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu3_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu3_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu3_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu3_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu3 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu3_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu3_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu3_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu3); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu4_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu4_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu4_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu4_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu4 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu4_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu4_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu4_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu4); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu5_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu5_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu5_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu5_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu5 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu5_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu5_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu5_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu5); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu6_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu6_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu6_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu6_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu6 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu6_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu6_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu6_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu6); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu7_set (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHuMoments_hu7_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu7_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu7_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hu7 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHuMoments_hu7_get (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHuMoments_hu7_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu7_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - result = (double) ((arg1)->hu7); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvHuMoments (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHuMoments *result = 0 ; - - if (!SWIG_check_num_args("new_CvHuMoments",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvHuMoments *)new CvHuMoments(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHuMoments, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHuMoments (const octave_value_list& args, int nargout) { - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHuMoments",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHuMoments, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHuMoments" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = (CvHuMoments *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHuMoments_members[] = { -{"hu1",0,_wrap_CvHuMoments_hu1_get,_wrap_CvHuMoments_hu1_set,0,0}, -{"hu2",0,_wrap_CvHuMoments_hu2_get,_wrap_CvHuMoments_hu2_set,0,0}, -{"hu3",0,_wrap_CvHuMoments_hu3_get,_wrap_CvHuMoments_hu3_set,0,0}, -{"hu4",0,_wrap_CvHuMoments_hu4_get,_wrap_CvHuMoments_hu4_set,0,0}, -{"hu5",0,_wrap_CvHuMoments_hu5_get,_wrap_CvHuMoments_hu5_set,0,0}, -{"hu6",0,_wrap_CvHuMoments_hu6_get,_wrap_CvHuMoments_hu6_set,0,0}, -{"hu7",0,_wrap_CvHuMoments_hu7_get,_wrap_CvHuMoments_hu7_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHuMoments_base_names[] = {0}; -static const swig_type_info *swig_CvHuMoments_base[] = {0}; -static swig_octave_class _wrap_class_CvHuMoments = {"CvHuMoments", &SWIGTYPE_p_CvHuMoments,0,_wrap_new_CvHuMoments,0,_wrap_delete_CvHuMoments,swig_CvHuMoments_members,swig_CvHuMoments_base_names,swig_CvHuMoments_base }; - -static octave_value_list _wrap_CvConnectedComp_area_set (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConnectedComp_area_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_area_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConnectedComp_area_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->area = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_area_get (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvConnectedComp_area_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_area_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - result = (double) ((arg1)->area); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_value_set (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - CvScalar *arg2 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConnectedComp_value_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_value_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConnectedComp_value_set" "', argument " "2"" of type '" "CvScalar *""'"); - } - arg2 = (CvScalar *)(argp2); - if (arg1) (arg1)->value = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_value_get (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvScalar *result = 0 ; - - if (!SWIG_check_num_args("CvConnectedComp_value_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_value_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - result = (CvScalar *)& ((arg1)->value); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvScalar, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_rect_set (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConnectedComp_rect_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_rect_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConnectedComp_rect_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = (CvRect *)(argp2); - if (arg1) (arg1)->rect = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_rect_get (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvConnectedComp_rect_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_rect_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - result = (CvRect *)& ((arg1)->rect); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_contour_set (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConnectedComp_contour_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_contour_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->contour = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConnectedComp_contour_get (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvConnectedComp_contour_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_contour_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - result = (CvSeq *) ((arg1)->contour); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvConnectedComp (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvConnectedComp *result = 0 ; - - if (!SWIG_check_num_args("new_CvConnectedComp",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvConnectedComp *)new CvConnectedComp(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvConnectedComp (const octave_value_list& args, int nargout) { - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvConnectedComp",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConnectedComp, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvConnectedComp" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = (CvConnectedComp *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvConnectedComp_members[] = { -{"area",0,_wrap_CvConnectedComp_area_get,_wrap_CvConnectedComp_area_set,0,0}, -{"value",0,_wrap_CvConnectedComp_value_get,_wrap_CvConnectedComp_value_set,0,0}, -{"rect",0,_wrap_CvConnectedComp_rect_get,_wrap_CvConnectedComp_rect_set,0,0}, -{"contour",0,_wrap_CvConnectedComp_contour_get,_wrap_CvConnectedComp_contour_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvConnectedComp_base_names[] = {0}; -static const swig_type_info *swig_CvConnectedComp_base[] = {0}; -static swig_octave_class _wrap_class_CvConnectedComp = {"CvConnectedComp", &SWIGTYPE_p_CvConnectedComp,0,_wrap_new_CvConnectedComp,0,_wrap_delete_CvConnectedComp,swig_CvConnectedComp_members,swig_CvConnectedComp_base_names,swig_CvConnectedComp_base }; - -static octave_value_list _wrap_CvChainPtReader_header_size_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_header_size_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChainPtReader_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_header_size_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChainPtReader_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_header_size_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_seq_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_seq_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_seq_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_seq_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_seq_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_seq_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (CvSeq *) ((arg1)->seq); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_block_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_block_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_block_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->block = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_block_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_block_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (CvSeqBlock *) ((arg1)->block); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_ptr_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_ptr_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_ptr_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_ptr_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_block_min_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_block_min_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_min_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_block_min_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_min = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_block_min_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_block_min_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_min_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (schar *) ((arg1)->block_min); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_block_max_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_max_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_block_max_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_max_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_delta_index_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_delta_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_delta_index_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChainPtReader_delta_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_delta_index_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvChainPtReader_delta_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_delta_index_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (int) ((arg1)->delta_index); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_prev_elem_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_prev_elem_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_prev_elem_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_prev_elem_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->prev_elem = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_prev_elem_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_prev_elem_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_prev_elem_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (schar *) ((arg1)->prev_elem); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_code_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - char arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - char val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_code_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_code_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - ecode2 = SWIG_AsVal_char(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChainPtReader_code_set" "', argument " "2"" of type '" "char""'"); - } - arg2 = (char)(val2); - if (arg1) (arg1)->code = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_code_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char result; - - if (!SWIG_check_num_args("CvChainPtReader_code_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_code_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (char) ((arg1)->code); - _outv = SWIG_From_char((char)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_pt_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_pt_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_pt_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_pt_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->pt = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_pt_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_pt_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_pt_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (CvPoint *)& ((arg1)->pt); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_deltas_set (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar (*arg2)[2] ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvChainPtReader_deltas_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_deltas_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_a_2__signed_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_deltas_set" "', argument " "2"" of type '" "schar [8][2]""'"); - } - arg2 = (schar (*)[2])(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)8; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)2; ++jj) arg1->deltas[ii][jj] = arg2[ii][jj]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""deltas""' of type '""schar [8][2]""'"); - } - } - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""deltas""' of type '""schar [8][2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvChainPtReader_deltas_get (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar (*result)[2] = 0 ; - - if (!SWIG_check_num_args("CvChainPtReader_deltas_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_deltas_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - result = (schar (*)[2])(schar (*)[2]) ((arg1)->deltas); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_2__signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvChainPtReader (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvChainPtReader *result = 0 ; - - if (!SWIG_check_num_args("new_CvChainPtReader",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvChainPtReader *)new CvChainPtReader(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvChainPtReader, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvChainPtReader (const octave_value_list& args, int nargout) { - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvChainPtReader",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvChainPtReader, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvChainPtReader" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = (CvChainPtReader *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvChainPtReader_members[] = { -{"header_size",0,_wrap_CvChainPtReader_header_size_get,_wrap_CvChainPtReader_header_size_set,0,0}, -{"seq",0,_wrap_CvChainPtReader_seq_get,_wrap_CvChainPtReader_seq_set,0,0}, -{"block",0,_wrap_CvChainPtReader_block_get,_wrap_CvChainPtReader_block_set,0,0}, -{"ptr",0,_wrap_CvChainPtReader_ptr_get,_wrap_CvChainPtReader_ptr_set,0,0}, -{"block_min",0,_wrap_CvChainPtReader_block_min_get,_wrap_CvChainPtReader_block_min_set,0,0}, -{"block_max",0,_wrap_CvChainPtReader_block_max_get,_wrap_CvChainPtReader_block_max_set,0,0}, -{"delta_index",0,_wrap_CvChainPtReader_delta_index_get,_wrap_CvChainPtReader_delta_index_set,0,0}, -{"prev_elem",0,_wrap_CvChainPtReader_prev_elem_get,_wrap_CvChainPtReader_prev_elem_set,0,0}, -{"code",0,_wrap_CvChainPtReader_code_get,_wrap_CvChainPtReader_code_set,0,0}, -{"pt",0,_wrap_CvChainPtReader_pt_get,_wrap_CvChainPtReader_pt_set,0,0}, -{"deltas",0,_wrap_CvChainPtReader_deltas_get,_wrap_CvChainPtReader_deltas_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvChainPtReader_base_names[] = {0}; -static const swig_type_info *swig_CvChainPtReader_base[] = {0}; -static swig_octave_class _wrap_class_CvChainPtReader = {"CvChainPtReader", &SWIGTYPE_p_CvChainPtReader,0,_wrap_new_CvChainPtReader,0,_wrap_delete_CvChainPtReader,swig_CvChainPtReader_members,swig_CvChainPtReader_base_names,swig_CvChainPtReader_base }; - -static octave_value_list _wrap_CvContourTree_flags_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_flags_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_flags_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContourTree_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_flags_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_header_size_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_header_size_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_header_size_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContourTree_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_header_size_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_h_prev_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_prev_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_h_prev_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_prev_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_h_next_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_next_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_h_next_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_next_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_v_prev_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_prev_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_v_prev_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_prev_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_v_next_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_next_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_v_next_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_next_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_total_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_total_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_total_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContourTree_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_total_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_elem_size_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_elem_size_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_elem_size_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContourTree_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_elem_size_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_block_max_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_block_max_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_block_max_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_block_max_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_ptr_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_ptr_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_ptr_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_ptr_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_delta_elems_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_delta_elems_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_delta_elems_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvContourTree_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_delta_elems_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_storage_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_storage_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_storage_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_storage_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_free_blocks_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_free_blocks_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_free_blocks_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_free_blocks_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_first_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_first_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_first_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_first_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_p1_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_p1_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p1_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_p1_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->p1 = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_p1_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_p1_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p1_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvPoint *)& ((arg1)->p1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_p2_set (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvContourTree_p2_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p2_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_p2_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->p2 = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvContourTree_p2_get (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvContourTree_p2_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p2_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - result = (CvPoint *)& ((arg1)->p2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvContourTree (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvContourTree *result = 0 ; - - if (!SWIG_check_num_args("new_CvContourTree",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvContourTree *)new CvContourTree(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvContourTree, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvContourTree (const octave_value_list& args, int nargout) { - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvContourTree",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvContourTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvContourTree" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = (CvContourTree *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvContourTree_members[] = { -{"flags",0,_wrap_CvContourTree_flags_get,_wrap_CvContourTree_flags_set,0,0}, -{"header_size",0,_wrap_CvContourTree_header_size_get,_wrap_CvContourTree_header_size_set,0,0}, -{"h_prev",0,_wrap_CvContourTree_h_prev_get,_wrap_CvContourTree_h_prev_set,0,0}, -{"h_next",0,_wrap_CvContourTree_h_next_get,_wrap_CvContourTree_h_next_set,0,0}, -{"v_prev",0,_wrap_CvContourTree_v_prev_get,_wrap_CvContourTree_v_prev_set,0,0}, -{"v_next",0,_wrap_CvContourTree_v_next_get,_wrap_CvContourTree_v_next_set,0,0}, -{"total",0,_wrap_CvContourTree_total_get,_wrap_CvContourTree_total_set,0,0}, -{"elem_size",0,_wrap_CvContourTree_elem_size_get,_wrap_CvContourTree_elem_size_set,0,0}, -{"block_max",0,_wrap_CvContourTree_block_max_get,_wrap_CvContourTree_block_max_set,0,0}, -{"ptr",0,_wrap_CvContourTree_ptr_get,_wrap_CvContourTree_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvContourTree_delta_elems_get,_wrap_CvContourTree_delta_elems_set,0,0}, -{"storage",0,_wrap_CvContourTree_storage_get,_wrap_CvContourTree_storage_set,0,0}, -{"free_blocks",0,_wrap_CvContourTree_free_blocks_get,_wrap_CvContourTree_free_blocks_set,0,0}, -{"first",0,_wrap_CvContourTree_first_get,_wrap_CvContourTree_first_set,0,0}, -{"p1",0,_wrap_CvContourTree_p1_get,_wrap_CvContourTree_p1_set,0,0}, -{"p2",0,_wrap_CvContourTree_p2_get,_wrap_CvContourTree_p2_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvContourTree_base_names[] = {0}; -static const swig_type_info *swig_CvContourTree_base[] = {0}; -static swig_octave_class _wrap_class_CvContourTree = {"CvContourTree", &SWIGTYPE_p_CvContourTree,0,_wrap_new_CvContourTree,0,_wrap_delete_CvContourTree,swig_CvContourTree_members,swig_CvContourTree_base_names,swig_CvContourTree_base }; - -static octave_value_list _wrap_CvConvexityDefect_start_set (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConvexityDefect_start_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_start_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConvexityDefect_start_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->start = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_start_get (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvConvexityDefect_start_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_start_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - result = (CvPoint *) ((arg1)->start); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_end_set (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConvexityDefect_end_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_end_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConvexityDefect_end_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->end = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_end_get (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvConvexityDefect_end_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_end_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - result = (CvPoint *) ((arg1)->end); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_depth_point_set (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConvexityDefect_depth_point_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_point_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConvexityDefect_depth_point_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - if (arg1) (arg1)->depth_point = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_depth_point_get (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvConvexityDefect_depth_point_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_point_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - result = (CvPoint *) ((arg1)->depth_point); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_depth_set (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConvexityDefect_depth_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConvexityDefect_depth_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->depth = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConvexityDefect_depth_get (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvConvexityDefect_depth_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - result = (float) ((arg1)->depth); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvConvexityDefect (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvConvexityDefect *result = 0 ; - - if (!SWIG_check_num_args("new_CvConvexityDefect",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvConvexityDefect *)new CvConvexityDefect(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConvexityDefect, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvConvexityDefect (const octave_value_list& args, int nargout) { - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvConvexityDefect",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConvexityDefect, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvConvexityDefect" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = (CvConvexityDefect *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvConvexityDefect_members[] = { -{"start",0,_wrap_CvConvexityDefect_start_get,_wrap_CvConvexityDefect_start_set,0,0}, -{"end",0,_wrap_CvConvexityDefect_end_get,_wrap_CvConvexityDefect_end_set,0,0}, -{"depth_point",0,_wrap_CvConvexityDefect_depth_point_get,_wrap_CvConvexityDefect_depth_point_set,0,0}, -{"depth",0,_wrap_CvConvexityDefect_depth_get,_wrap_CvConvexityDefect_depth_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvConvexityDefect_base_names[] = {0}; -static const swig_type_info *swig_CvConvexityDefect_base[] = {0}; -static swig_octave_class _wrap_class_CvConvexityDefect = {"CvConvexityDefect", &SWIGTYPE_p_CvConvexityDefect,0,_wrap_new_CvConvexityDefect,0,_wrap_delete_CvConvexityDefect,swig_CvConvexityDefect_members,swig_CvConvexityDefect_base_names,swig_CvConvexityDefect_base }; - -static octave_value_list _wrap_CvQuadEdge2D_flags_set (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvQuadEdge2D_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_flags_set" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvQuadEdge2D_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvQuadEdge2D_flags_get (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvQuadEdge2D_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_flags_get" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvQuadEdge2D_pt_set (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - CvSubdiv2DPoint **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvQuadEdge2D_pt_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_pt_set" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvQuadEdge2D_pt_set" "', argument " "2"" of type '" "CvSubdiv2DPoint *[4]""'"); - } - arg2 = (CvSubdiv2DPoint **)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) arg1->pt[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""pt""' of type '""CvSubdiv2DPoint *[4]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvQuadEdge2D_pt_get (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DPoint **result = 0 ; - - if (!SWIG_check_num_args("CvQuadEdge2D_pt_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_pt_get" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - result = (CvSubdiv2DPoint **)(CvSubdiv2DPoint **) ((arg1)->pt); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSubdiv2DPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvQuadEdge2D_next_set (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - CvSubdiv2DEdge *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvQuadEdge2D_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_next_set" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_size_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvQuadEdge2D_next_set" "', argument " "2"" of type '" "CvSubdiv2DEdge [4]""'"); - } - arg2 = (CvSubdiv2DEdge *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) arg1->next[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""next""' of type '""CvSubdiv2DEdge [4]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvQuadEdge2D_next_get (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvQuadEdge2D_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_next_get" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - result = (CvSubdiv2DEdge *)(CvSubdiv2DEdge *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvQuadEdge2D (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvQuadEdge2D *result = 0 ; - - if (!SWIG_check_num_args("new_CvQuadEdge2D",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvQuadEdge2D *)new CvQuadEdge2D(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvQuadEdge2D (const octave_value_list& args, int nargout) { - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvQuadEdge2D",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvQuadEdge2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvQuadEdge2D" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = (CvQuadEdge2D *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvQuadEdge2D_members[] = { -{"flags",0,_wrap_CvQuadEdge2D_flags_get,_wrap_CvQuadEdge2D_flags_set,0,0}, -{"pt",0,_wrap_CvQuadEdge2D_pt_get,_wrap_CvQuadEdge2D_pt_set,0,0}, -{"next",0,_wrap_CvQuadEdge2D_next_get,_wrap_CvQuadEdge2D_next_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvQuadEdge2D_base_names[] = {0}; -static const swig_type_info *swig_CvQuadEdge2D_base[] = {0}; -static swig_octave_class _wrap_class_CvQuadEdge2D = {"CvQuadEdge2D", &SWIGTYPE_p_CvQuadEdge2D,0,_wrap_new_CvQuadEdge2D,0,_wrap_delete_CvQuadEdge2D,swig_CvQuadEdge2D_members,swig_CvQuadEdge2D_base_names,swig_CvQuadEdge2D_base }; - -static octave_value_list _wrap_CvSubdiv2DPoint_flags_set (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2DPoint_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_flags_set" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2DPoint_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DPoint_flags_get (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2DPoint_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_flags_get" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DPoint_first_set (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - CvSubdiv2DEdge arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvSubdiv2DEdge_Wrapper *wrapper2 ; - CvQuadEdge2D *qedge2 ; - void *vptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2DPoint_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_first_set" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper2 = (CvSubdiv2DEdge_Wrapper *) vptr2; - arg2 = wrapper2->ref(); - } - else if( SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge2 = (CvQuadEdge2D *) vptr2; - arg2 = (CvSubdiv2DEdge)qedge2; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DPoint_first_get (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge result; - - if (!SWIG_check_num_args("CvSubdiv2DPoint_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_first_get" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - result = ((arg1)->first); - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DPoint_pt_set (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2DPoint_pt_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_pt_set" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DPoint_pt_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = (CvPoint2D32f *)(argp2); - if (arg1) (arg1)->pt = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DPoint_pt_get (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DPoint_pt_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_pt_get" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - result = (CvPoint2D32f *)& ((arg1)->pt); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSubdiv2DPoint (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DPoint *result = 0 ; - - if (!SWIG_check_num_args("new_CvSubdiv2DPoint",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSubdiv2DPoint *)new CvSubdiv2DPoint(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSubdiv2DPoint (const octave_value_list& args, int nargout) { - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSubdiv2DPoint",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DPoint" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = (CvSubdiv2DPoint *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSubdiv2DPoint_members[] = { -{"flags",0,_wrap_CvSubdiv2DPoint_flags_get,_wrap_CvSubdiv2DPoint_flags_set,0,0}, -{"first",0,_wrap_CvSubdiv2DPoint_first_get,_wrap_CvSubdiv2DPoint_first_set,0,0}, -{"pt",0,_wrap_CvSubdiv2DPoint_pt_get,_wrap_CvSubdiv2DPoint_pt_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSubdiv2DPoint_base_names[] = {0}; -static const swig_type_info *swig_CvSubdiv2DPoint_base[] = {0}; -static swig_octave_class _wrap_class_CvSubdiv2DPoint = {"CvSubdiv2DPoint", &SWIGTYPE_p_CvSubdiv2DPoint,0,_wrap_new_CvSubdiv2DPoint,0,_wrap_delete_CvSubdiv2DPoint,swig_CvSubdiv2DPoint_members,swig_CvSubdiv2DPoint_base_names,swig_CvSubdiv2DPoint_base }; - -static octave_value_list _wrap_CvSubdiv2D_flags_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_flags_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_flags_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_flags_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_header_size_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_header_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_header_size_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->header_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_header_size_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_header_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_header_size_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->header_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_h_prev_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_h_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_prev_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_h_prev_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_h_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_prev_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSeq *) ((arg1)->h_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_h_next_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_h_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_next_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_h_next_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_h_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_next_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSeq *) ((arg1)->h_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_v_prev_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_v_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_prev_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_v_prev_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_v_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_prev_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSeq *) ((arg1)->v_prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_v_next_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_v_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_next_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_v_next_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_v_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_next_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSeq *) ((arg1)->v_next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_total_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_total_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_total_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->total = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_total_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_total_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_total_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->total); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_elem_size_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_elem_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_elem_size_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->elem_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_elem_size_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_elem_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_elem_size_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->elem_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_block_max_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_block_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_block_max_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->block_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_block_max_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_block_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_block_max_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (schar *) ((arg1)->block_max); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_ptr_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_ptr_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_ptr_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_ptr_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (schar *) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_delta_elems_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_delta_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_delta_elems_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->delta_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_delta_elems_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_delta_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_delta_elems_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->delta_elems); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_storage_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_storage_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_storage_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_storage_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_free_blocks_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_free_blocks_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_blocks_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->free_blocks = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_free_blocks_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_free_blocks_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_blocks_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_first_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_first_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_first_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = (CvSeqBlock *)(argp2); - if (arg1) (arg1)->first = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_first_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeqBlock *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_first_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_first_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSeqBlock *) ((arg1)->first); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_free_elems_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_free_elems_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_elems_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_free_elems_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = (CvSetElem *)(argp2); - if (arg1) (arg1)->free_elems = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_free_elems_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSetElem *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_free_elems_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_elems_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvSetElem *) ((arg1)->free_elems); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_active_count_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_active_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_active_count_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_active_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->active_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_active_count_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_active_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_active_count_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->active_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_quad_edges_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_quad_edges_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_quad_edges_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_quad_edges_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->quad_edges = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_quad_edges_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_quad_edges_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_quad_edges_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->quad_edges); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_is_geometry_valid_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_is_geometry_valid_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_is_geometry_valid_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_is_geometry_valid_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->is_geometry_valid = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_is_geometry_valid_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSubdiv2D_is_geometry_valid_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_is_geometry_valid_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (int) ((arg1)->is_geometry_valid); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_recent_edge_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSubdiv2DEdge arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvSubdiv2DEdge_Wrapper *wrapper2 ; - CvQuadEdge2D *qedge2 ; - void *vptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_recent_edge_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_recent_edge_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper2 = (CvSubdiv2DEdge_Wrapper *) vptr2; - arg2 = wrapper2->ref(); - } - else if( SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge2 = (CvQuadEdge2D *) vptr2; - arg2 = (CvSubdiv2DEdge)qedge2; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - if (arg1) (arg1)->recent_edge = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_recent_edge_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge result; - - if (!SWIG_check_num_args("CvSubdiv2D_recent_edge_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_recent_edge_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = ((arg1)->recent_edge); - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_topleft_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_topleft_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_topleft_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_topleft_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = (CvPoint2D32f *)(argp2); - if (arg1) (arg1)->topleft = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_topleft_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_topleft_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_topleft_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvPoint2D32f *)& ((arg1)->topleft); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_bottomright_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_bottomright_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_bottomright_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_bottomright_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = (CvPoint2D32f *)(argp2); - if (arg1) (arg1)->bottomright = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_bottomright_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_bottomright_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_bottomright_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - result = (CvPoint2D32f *)& ((arg1)->bottomright); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_edges_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvTypedSeq< CvQuadEdge2D > *arg2 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_edges_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_edges_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_edges_set" "', argument " "2"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg2 = (CvTypedSeq< CvQuadEdge2D > *)(argp2); - { - try { - CvSubdiv2D_typed_edges_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_edges_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_edges_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_edges_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)CvSubdiv2D_typed_edges_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_typed_edges_get (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2D_typed_edges_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_typed_edges_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)CvSubdiv2D_typed_edges_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2D_typed_edges_set (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvTypedSeq< CvQuadEdge2D > *arg2 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSubdiv2D_typed_edges_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_typed_edges_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_typed_edges_set" "', argument " "2"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg2 = (CvTypedSeq< CvQuadEdge2D > *)(argp2); - { - try { - CvSubdiv2D_typed_edges_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSubdiv2D (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2D *result = 0 ; - - if (!SWIG_check_num_args("new_CvSubdiv2D",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSubdiv2D *)new CvSubdiv2D(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2D, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSubdiv2D (const octave_value_list& args, int nargout) { - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSubdiv2D",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2D" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = (CvSubdiv2D *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSubdiv2D_members[] = { -{"flags",0,_wrap_CvSubdiv2D_flags_get,_wrap_CvSubdiv2D_flags_set,0,0}, -{"header_size",0,_wrap_CvSubdiv2D_header_size_get,_wrap_CvSubdiv2D_header_size_set,0,0}, -{"h_prev",0,_wrap_CvSubdiv2D_h_prev_get,_wrap_CvSubdiv2D_h_prev_set,0,0}, -{"h_next",0,_wrap_CvSubdiv2D_h_next_get,_wrap_CvSubdiv2D_h_next_set,0,0}, -{"v_prev",0,_wrap_CvSubdiv2D_v_prev_get,_wrap_CvSubdiv2D_v_prev_set,0,0}, -{"v_next",0,_wrap_CvSubdiv2D_v_next_get,_wrap_CvSubdiv2D_v_next_set,0,0}, -{"total",0,_wrap_CvSubdiv2D_total_get,_wrap_CvSubdiv2D_total_set,0,0}, -{"elem_size",0,_wrap_CvSubdiv2D_elem_size_get,_wrap_CvSubdiv2D_elem_size_set,0,0}, -{"block_max",0,_wrap_CvSubdiv2D_block_max_get,_wrap_CvSubdiv2D_block_max_set,0,0}, -{"ptr",0,_wrap_CvSubdiv2D_ptr_get,_wrap_CvSubdiv2D_ptr_set,0,0}, -{"delta_elems",0,_wrap_CvSubdiv2D_delta_elems_get,_wrap_CvSubdiv2D_delta_elems_set,0,0}, -{"storage",0,_wrap_CvSubdiv2D_storage_get,_wrap_CvSubdiv2D_storage_set,0,0}, -{"free_blocks",0,_wrap_CvSubdiv2D_free_blocks_get,_wrap_CvSubdiv2D_free_blocks_set,0,0}, -{"first",0,_wrap_CvSubdiv2D_first_get,_wrap_CvSubdiv2D_first_set,0,0}, -{"free_elems",0,_wrap_CvSubdiv2D_free_elems_get,_wrap_CvSubdiv2D_free_elems_set,0,0}, -{"active_count",0,_wrap_CvSubdiv2D_active_count_get,_wrap_CvSubdiv2D_active_count_set,0,0}, -{"quad_edges",0,_wrap_CvSubdiv2D_quad_edges_get,_wrap_CvSubdiv2D_quad_edges_set,0,0}, -{"is_geometry_valid",0,_wrap_CvSubdiv2D_is_geometry_valid_get,_wrap_CvSubdiv2D_is_geometry_valid_set,0,0}, -{"recent_edge",0,_wrap_CvSubdiv2D_recent_edge_get,_wrap_CvSubdiv2D_recent_edge_set,0,0}, -{"topleft",0,_wrap_CvSubdiv2D_topleft_get,_wrap_CvSubdiv2D_topleft_set,0,0}, -{"bottomright",0,_wrap_CvSubdiv2D_bottomright_get,_wrap_CvSubdiv2D_bottomright_set,0,0}, -{"edges",0,_wrap_CvSubdiv2D_edges_get,_wrap_CvSubdiv2D_edges_set,0,0}, -{"typed_edges_get",_wrap_CvSubdiv2D_typed_edges_get,0,0,0,0}, -{"typed_edges_set",_wrap_CvSubdiv2D_typed_edges_set,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSubdiv2D_base_names[] = {0}; -static const swig_type_info *swig_CvSubdiv2D_base[] = {0}; -static swig_octave_class _wrap_class_CvSubdiv2D = {"CvSubdiv2D", &SWIGTYPE_p_CvSubdiv2D,0,_wrap_new_CvSubdiv2D,0,_wrap_delete_CvSubdiv2D,swig_CvSubdiv2D_members,swig_CvSubdiv2D_base_names,swig_CvSubdiv2D_base }; - -static octave_value_list _wrap_CvMatrix3_m_set (const octave_value_list& args, int nargout) { - CvMatrix3 *arg1 = (CvMatrix3 *) 0 ; - float (*arg2)[3] ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMatrix3_m_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix3, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix3_m_set" "', argument " "1"" of type '" "CvMatrix3 *""'"); - } - arg1 = (CvMatrix3 *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_a_3__float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix3_m_set" "', argument " "2"" of type '" "float [3][3]""'"); - } - arg2 = (float (*)[3])(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)3; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)3; ++jj) arg1->m[ii][jj] = arg2[ii][jj]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""m""' of type '""float [3][3]""'"); - } - } - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""m""' of type '""float [3][3]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMatrix3_m_get (const octave_value_list& args, int nargout) { - CvMatrix3 *arg1 = (CvMatrix3 *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float (*result)[3] = 0 ; - - if (!SWIG_check_num_args("CvMatrix3_m_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix3, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix3_m_get" "', argument " "1"" of type '" "CvMatrix3 *""'"); - } - arg1 = (CvMatrix3 *)(argp1); - result = (float (*)[3])(float (*)[3]) ((arg1)->m); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_3__float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMatrix3 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMatrix3 *result = 0 ; - - if (!SWIG_check_num_args("new_CvMatrix3",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMatrix3 *)new CvMatrix3(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix3, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMatrix3 (const octave_value_list& args, int nargout) { - CvMatrix3 *arg1 = (CvMatrix3 *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMatrix3",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMatrix3, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatrix3" "', argument " "1"" of type '" "CvMatrix3 *""'"); - } - arg1 = (CvMatrix3 *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMatrix3_members[] = { -{"m",0,_wrap_CvMatrix3_m_get,_wrap_CvMatrix3_m_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMatrix3_base_names[] = {0}; -static const swig_type_info *swig_CvMatrix3_base[] = {0}; -static swig_octave_class _wrap_class_CvMatrix3 = {"CvMatrix3", &SWIGTYPE_p_CvMatrix3,0,_wrap_new_CvMatrix3,0,_wrap_delete_CvMatrix3,swig_CvMatrix3_members,swig_CvMatrix3_base_names,swig_CvMatrix3_base }; - -static octave_value_list _wrap_CvConDensation_MP_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_MP_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_MP_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConDensation_MP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->MP = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_MP_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvConDensation_MP_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_MP_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (int) ((arg1)->MP); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_DP_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_DP_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DP_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConDensation_DP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->DP = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_DP_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvConDensation_DP_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DP_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (int) ((arg1)->DP); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_DynamMatr_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_DynamMatr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DynamMatr_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_DynamMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->DynamMatr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_DynamMatr_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_DynamMatr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DynamMatr_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float *) ((arg1)->DynamMatr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_State_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_State_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_State_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_State_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->State = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_State_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_State_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_State_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float *) ((arg1)->State); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_SamplesNum_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_SamplesNum_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_SamplesNum_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConDensation_SamplesNum_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->SamplesNum = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_SamplesNum_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvConDensation_SamplesNum_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_SamplesNum_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (int) ((arg1)->SamplesNum); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flSamples_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_flSamples_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flSamples_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->flSamples = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flSamples_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float **result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_flSamples_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flSamples_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float **) ((arg1)->flSamples); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flNewSamples_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_flNewSamples_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flNewSamples_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->flNewSamples = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flNewSamples_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float **result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_flNewSamples_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flNewSamples_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float **) ((arg1)->flNewSamples); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flConfidence_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_flConfidence_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flConfidence_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_flConfidence_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->flConfidence = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flConfidence_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_flConfidence_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flConfidence_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float *) ((arg1)->flConfidence); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flCumulative_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_flCumulative_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flCumulative_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_flCumulative_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->flCumulative = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_flCumulative_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_flCumulative_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flCumulative_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float *) ((arg1)->flCumulative); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_Temp_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_Temp_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_Temp_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_Temp_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->Temp = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_Temp_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_Temp_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_Temp_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float *) ((arg1)->Temp); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_RandomSample_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_RandomSample_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandomSample_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_RandomSample_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->RandomSample = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_RandomSample_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_RandomSample_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandomSample_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (float *) ((arg1)->RandomSample); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_RandS_set (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - CvRandState *arg2 = (CvRandState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvConDensation_RandS_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandS_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvRandState, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_RandS_set" "', argument " "2"" of type '" "CvRandState *""'"); - } - arg2 = (CvRandState *)(argp2); - if (arg1) (arg1)->RandS = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvConDensation_RandS_get (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRandState *result = 0 ; - - if (!SWIG_check_num_args("CvConDensation_RandS_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandS_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - result = (CvRandState *) ((arg1)->RandS); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRandState, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvConDensation (const octave_value_list& args, int nargout) { - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvConDensation",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvConDensation, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvConDensation" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = (CvConDensation *)(argp1); - { - try { - delete_CvConDensation(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvConDensation_members[] = { -{"MP",0,_wrap_CvConDensation_MP_get,_wrap_CvConDensation_MP_set,0,0}, -{"DP",0,_wrap_CvConDensation_DP_get,_wrap_CvConDensation_DP_set,0,0}, -{"DynamMatr",0,_wrap_CvConDensation_DynamMatr_get,_wrap_CvConDensation_DynamMatr_set,0,0}, -{"State",0,_wrap_CvConDensation_State_get,_wrap_CvConDensation_State_set,0,0}, -{"SamplesNum",0,_wrap_CvConDensation_SamplesNum_get,_wrap_CvConDensation_SamplesNum_set,0,0}, -{"flSamples",0,_wrap_CvConDensation_flSamples_get,_wrap_CvConDensation_flSamples_set,0,0}, -{"flNewSamples",0,_wrap_CvConDensation_flNewSamples_get,_wrap_CvConDensation_flNewSamples_set,0,0}, -{"flConfidence",0,_wrap_CvConDensation_flConfidence_get,_wrap_CvConDensation_flConfidence_set,0,0}, -{"flCumulative",0,_wrap_CvConDensation_flCumulative_get,_wrap_CvConDensation_flCumulative_set,0,0}, -{"Temp",0,_wrap_CvConDensation_Temp_get,_wrap_CvConDensation_Temp_set,0,0}, -{"RandomSample",0,_wrap_CvConDensation_RandomSample_get,_wrap_CvConDensation_RandomSample_set,0,0}, -{"RandS",0,_wrap_CvConDensation_RandS_get,_wrap_CvConDensation_RandS_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvConDensation_base_names[] = {0}; -static const swig_type_info *swig_CvConDensation_base[] = {0}; -static swig_octave_class _wrap_class_CvConDensation = {"CvConDensation", &SWIGTYPE_p_CvConDensation,0,0,0,_wrap_delete_CvConDensation,swig_CvConDensation_members,swig_CvConDensation_base_names,swig_CvConDensation_base }; - -static octave_value_list _wrap_CvKalman_MP_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_MP_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MP_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvKalman_MP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->MP = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_MP_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvKalman_MP_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MP_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (int) ((arg1)->MP); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_DP_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_DP_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DP_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvKalman_DP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->DP = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_DP_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvKalman_DP_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DP_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (int) ((arg1)->DP); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_CP_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_CP_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_CP_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvKalman_CP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->CP = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_CP_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvKalman_CP_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_CP_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (int) ((arg1)->CP); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PosterState_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_PosterState_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterState_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PosterState_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->PosterState = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PosterState_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_PosterState_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterState_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->PosterState); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PriorState_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_PriorState_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorState_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PriorState_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->PriorState = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PriorState_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_PriorState_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorState_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->PriorState); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_DynamMatr_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_DynamMatr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DynamMatr_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_DynamMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->DynamMatr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_DynamMatr_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_DynamMatr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DynamMatr_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->DynamMatr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_MeasurementMatr_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_MeasurementMatr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MeasurementMatr_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_MeasurementMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->MeasurementMatr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_MeasurementMatr_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_MeasurementMatr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MeasurementMatr_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->MeasurementMatr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_MNCovariance_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_MNCovariance_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MNCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_MNCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->MNCovariance = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_MNCovariance_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_MNCovariance_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MNCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->MNCovariance); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PNCovariance_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_PNCovariance_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PNCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PNCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->PNCovariance = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PNCovariance_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_PNCovariance_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PNCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->PNCovariance); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_KalmGainMatr_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_KalmGainMatr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_KalmGainMatr_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_KalmGainMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->KalmGainMatr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_KalmGainMatr_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_KalmGainMatr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_KalmGainMatr_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->KalmGainMatr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PriorErrorCovariance_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_PriorErrorCovariance_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorErrorCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PriorErrorCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->PriorErrorCovariance = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PriorErrorCovariance_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_PriorErrorCovariance_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorErrorCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->PriorErrorCovariance); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PosterErrorCovariance_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_PosterErrorCovariance_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterErrorCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PosterErrorCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->PosterErrorCovariance = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_PosterErrorCovariance_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_PosterErrorCovariance_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterErrorCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->PosterErrorCovariance); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_Temp1_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_Temp1_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp1_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_Temp1_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->Temp1 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_Temp1_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_Temp1_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp1_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->Temp1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_Temp2_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_Temp2_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp2_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_Temp2_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->Temp2 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_Temp2_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_Temp2_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp2_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (float *) ((arg1)->Temp2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_state_pre_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_state_pre_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_pre_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_state_pre_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->state_pre = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_state_pre_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_state_pre_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_pre_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->state_pre); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_state_post_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_state_post_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_post_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_state_post_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->state_post = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_state_post_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_state_post_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_post_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->state_post); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_transition_matrix_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_transition_matrix_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_transition_matrix_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_transition_matrix_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->transition_matrix = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_transition_matrix_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_transition_matrix_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_transition_matrix_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->transition_matrix); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_control_matrix_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_control_matrix_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_control_matrix_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_control_matrix_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->control_matrix = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_control_matrix_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_control_matrix_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_control_matrix_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->control_matrix); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_measurement_matrix_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_measurement_matrix_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_matrix_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_measurement_matrix_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->measurement_matrix = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_measurement_matrix_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_measurement_matrix_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_matrix_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->measurement_matrix); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_process_noise_cov_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_process_noise_cov_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_process_noise_cov_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_process_noise_cov_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->process_noise_cov = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_process_noise_cov_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_process_noise_cov_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_process_noise_cov_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->process_noise_cov); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_measurement_noise_cov_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_measurement_noise_cov_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_noise_cov_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_measurement_noise_cov_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->measurement_noise_cov = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_measurement_noise_cov_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_measurement_noise_cov_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_noise_cov_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->measurement_noise_cov); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_error_cov_pre_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_error_cov_pre_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_pre_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_error_cov_pre_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->error_cov_pre = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_error_cov_pre_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_error_cov_pre_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_pre_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->error_cov_pre); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_gain_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_gain_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_gain_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_gain_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->gain = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_gain_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_gain_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_gain_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->gain); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_error_cov_post_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_error_cov_post_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_post_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_error_cov_post_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->error_cov_post = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_error_cov_post_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_error_cov_post_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_post_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->error_cov_post); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp1_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_temp1_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp1_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_temp1_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->temp1 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp1_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_temp1_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp1_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->temp1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp2_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_temp2_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp2_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_temp2_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->temp2 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp2_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_temp2_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp2_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->temp2); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp3_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_temp3_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp3_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_temp3_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->temp3 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp3_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_temp3_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp3_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->temp3); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp4_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_temp4_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp4_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_temp4_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->temp4 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp4_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_temp4_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp4_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->temp4); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp5_set (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKalman_temp5_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp5_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_temp5_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->temp5 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKalman_temp5_get (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvKalman_temp5_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp5_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - result = (CvMat *) ((arg1)->temp5); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvKalman (const octave_value_list& args, int nargout) { - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvKalman",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKalman, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvKalman" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = (CvKalman *)(argp1); - { - try { - delete_CvKalman(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvKalman_members[] = { -{"MP",0,_wrap_CvKalman_MP_get,_wrap_CvKalman_MP_set,0,0}, -{"DP",0,_wrap_CvKalman_DP_get,_wrap_CvKalman_DP_set,0,0}, -{"CP",0,_wrap_CvKalman_CP_get,_wrap_CvKalman_CP_set,0,0}, -{"PosterState",0,_wrap_CvKalman_PosterState_get,_wrap_CvKalman_PosterState_set,0,0}, -{"PriorState",0,_wrap_CvKalman_PriorState_get,_wrap_CvKalman_PriorState_set,0,0}, -{"DynamMatr",0,_wrap_CvKalman_DynamMatr_get,_wrap_CvKalman_DynamMatr_set,0,0}, -{"MeasurementMatr",0,_wrap_CvKalman_MeasurementMatr_get,_wrap_CvKalman_MeasurementMatr_set,0,0}, -{"MNCovariance",0,_wrap_CvKalman_MNCovariance_get,_wrap_CvKalman_MNCovariance_set,0,0}, -{"PNCovariance",0,_wrap_CvKalman_PNCovariance_get,_wrap_CvKalman_PNCovariance_set,0,0}, -{"KalmGainMatr",0,_wrap_CvKalman_KalmGainMatr_get,_wrap_CvKalman_KalmGainMatr_set,0,0}, -{"PriorErrorCovariance",0,_wrap_CvKalman_PriorErrorCovariance_get,_wrap_CvKalman_PriorErrorCovariance_set,0,0}, -{"PosterErrorCovariance",0,_wrap_CvKalman_PosterErrorCovariance_get,_wrap_CvKalman_PosterErrorCovariance_set,0,0}, -{"Temp1",0,_wrap_CvKalman_Temp1_get,_wrap_CvKalman_Temp1_set,0,0}, -{"Temp2",0,_wrap_CvKalman_Temp2_get,_wrap_CvKalman_Temp2_set,0,0}, -{"state_pre",0,_wrap_CvKalman_state_pre_get,_wrap_CvKalman_state_pre_set,0,0}, -{"state_post",0,_wrap_CvKalman_state_post_get,_wrap_CvKalman_state_post_set,0,0}, -{"transition_matrix",0,_wrap_CvKalman_transition_matrix_get,_wrap_CvKalman_transition_matrix_set,0,0}, -{"control_matrix",0,_wrap_CvKalman_control_matrix_get,_wrap_CvKalman_control_matrix_set,0,0}, -{"measurement_matrix",0,_wrap_CvKalman_measurement_matrix_get,_wrap_CvKalman_measurement_matrix_set,0,0}, -{"process_noise_cov",0,_wrap_CvKalman_process_noise_cov_get,_wrap_CvKalman_process_noise_cov_set,0,0}, -{"measurement_noise_cov",0,_wrap_CvKalman_measurement_noise_cov_get,_wrap_CvKalman_measurement_noise_cov_set,0,0}, -{"error_cov_pre",0,_wrap_CvKalman_error_cov_pre_get,_wrap_CvKalman_error_cov_pre_set,0,0}, -{"gain",0,_wrap_CvKalman_gain_get,_wrap_CvKalman_gain_set,0,0}, -{"error_cov_post",0,_wrap_CvKalman_error_cov_post_get,_wrap_CvKalman_error_cov_post_set,0,0}, -{"temp1",0,_wrap_CvKalman_temp1_get,_wrap_CvKalman_temp1_set,0,0}, -{"temp2",0,_wrap_CvKalman_temp2_get,_wrap_CvKalman_temp2_set,0,0}, -{"temp3",0,_wrap_CvKalman_temp3_get,_wrap_CvKalman_temp3_set,0,0}, -{"temp4",0,_wrap_CvKalman_temp4_get,_wrap_CvKalman_temp4_set,0,0}, -{"temp5",0,_wrap_CvKalman_temp5_get,_wrap_CvKalman_temp5_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvKalman_base_names[] = {0}; -static const swig_type_info *swig_CvKalman_base[] = {0}; -static swig_octave_class _wrap_class_CvKalman = {"CvKalman", &SWIGTYPE_p_CvKalman,0,0,0,_wrap_delete_CvKalman,swig_CvKalman_members,swig_CvKalman_base_names,swig_CvKalman_base }; - -static octave_value_list _wrap_CvHaarFeature_tilted_set (const octave_value_list& args, int nargout) { - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarFeature_tilted_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_tilted_set" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = (CvHaarFeature *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarFeature_tilted_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->tilted = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarFeature_tilted_get (const octave_value_list& args, int nargout) { - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarFeature_tilted_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_tilted_get" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = (CvHaarFeature *)(argp1); - result = (int) ((arg1)->tilted); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarFeature_rect_get (const octave_value_list& args, int nargout) { - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarFeature_rect *result = 0 ; - - if (!SWIG_check_num_args("CvHaarFeature_rect_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_get" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = (CvHaarFeature *)(argp1); - result = (CvHaarFeature_rect *)(CvHaarFeature_rect *) ((arg1)->rect); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvHaarFeature (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarFeature *result = 0 ; - - if (!SWIG_check_num_args("new_CvHaarFeature",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvHaarFeature *)new CvHaarFeature(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHaarFeature (const octave_value_list& args, int nargout) { - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHaarFeature",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarFeature" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = (CvHaarFeature *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHaarFeature_members[] = { -{"tilted",0,_wrap_CvHaarFeature_tilted_get,_wrap_CvHaarFeature_tilted_set,0,0}, -{"rect",0,_wrap_CvHaarFeature_rect_get,octave_set_immutable,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHaarFeature_base_names[] = {0}; -static const swig_type_info *swig_CvHaarFeature_base[] = {0}; -static swig_octave_class _wrap_class_CvHaarFeature = {"CvHaarFeature", &SWIGTYPE_p_CvHaarFeature,0,_wrap_new_CvHaarFeature,0,_wrap_delete_CvHaarFeature,swig_CvHaarFeature_members,swig_CvHaarFeature_base_names,swig_CvHaarFeature_base }; - -static octave_value_list _wrap_CvHaarFeature_rect_r_set (const octave_value_list& args, int nargout) { - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarFeature_rect_r_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_r_set" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = (CvHaarFeature_rect *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarFeature_rect_r_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = (CvRect *)(argp2); - if (arg1) (arg1)->r = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarFeature_rect_r_get (const octave_value_list& args, int nargout) { - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvHaarFeature_rect_r_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_r_get" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = (CvHaarFeature_rect *)(argp1); - result = (CvRect *)& ((arg1)->r); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarFeature_rect_weight_set (const octave_value_list& args, int nargout) { - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarFeature_rect_weight_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_weight_set" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = (CvHaarFeature_rect *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarFeature_rect_weight_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->weight = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarFeature_rect_weight_get (const octave_value_list& args, int nargout) { - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvHaarFeature_rect_weight_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_weight_get" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = (CvHaarFeature_rect *)(argp1); - result = (float) ((arg1)->weight); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvHaarFeature_rect (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarFeature_rect *result = 0 ; - - if (!SWIG_check_num_args("new_CvHaarFeature_rect",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvHaarFeature_rect *)new CvHaarFeature_rect(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature_rect, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHaarFeature_rect (const octave_value_list& args, int nargout) { - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHaarFeature_rect",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarFeature_rect, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarFeature_rect" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = (CvHaarFeature_rect *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHaarFeature_rect_members[] = { -{"r",0,_wrap_CvHaarFeature_rect_r_get,_wrap_CvHaarFeature_rect_r_set,0,0}, -{"weight",0,_wrap_CvHaarFeature_rect_weight_get,_wrap_CvHaarFeature_rect_weight_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHaarFeature_rect_base_names[] = {0}; -static const swig_type_info *swig_CvHaarFeature_rect_base[] = {0}; -static swig_octave_class _wrap_class_CvHaarFeature_rect = {"CvHaarFeature_rect", &SWIGTYPE_p_CvHaarFeature_rect,0,_wrap_new_CvHaarFeature_rect,0,_wrap_delete_CvHaarFeature_rect,swig_CvHaarFeature_rect_members,swig_CvHaarFeature_rect_base_names,swig_CvHaarFeature_rect_base }; - -static octave_value_list _wrap_CvHaarClassifier_count_set (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifier_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_count_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifier_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_count_get (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarClassifier_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_count_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_haar_feature_set (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - CvHaarFeature *arg2 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifier_haar_feature_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_haar_feature_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarFeature, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_haar_feature_set" "', argument " "2"" of type '" "CvHaarFeature *""'"); - } - arg2 = (CvHaarFeature *)(argp2); - if (arg1) (arg1)->haar_feature = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_haar_feature_get (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarFeature *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifier_haar_feature_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_haar_feature_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - result = (CvHaarFeature *) ((arg1)->haar_feature); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_threshold_set (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifier_threshold_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_threshold_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_threshold_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->threshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_threshold_get (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifier_threshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_threshold_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - result = (float *) ((arg1)->threshold); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_left_set (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifier_left_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_left_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_left_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->left = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_left_get (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifier_left_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_left_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - result = (int *) ((arg1)->left); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_right_set (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifier_right_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_right_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_right_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->right = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_right_get (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifier_right_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_right_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - result = (int *) ((arg1)->right); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_alpha_set (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifier_alpha_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_alpha_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_alpha_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->alpha = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifier_alpha_get (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifier_alpha_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_alpha_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - result = (float *) ((arg1)->alpha); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvHaarClassifier (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarClassifier *result = 0 ; - - if (!SWIG_check_num_args("new_CvHaarClassifier",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvHaarClassifier *)new CvHaarClassifier(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarClassifier, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHaarClassifier (const octave_value_list& args, int nargout) { - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHaarClassifier",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarClassifier" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = (CvHaarClassifier *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHaarClassifier_members[] = { -{"count",0,_wrap_CvHaarClassifier_count_get,_wrap_CvHaarClassifier_count_set,0,0}, -{"haar_feature",0,_wrap_CvHaarClassifier_haar_feature_get,_wrap_CvHaarClassifier_haar_feature_set,0,0}, -{"threshold",0,_wrap_CvHaarClassifier_threshold_get,_wrap_CvHaarClassifier_threshold_set,0,0}, -{"left",0,_wrap_CvHaarClassifier_left_get,_wrap_CvHaarClassifier_left_set,0,0}, -{"right",0,_wrap_CvHaarClassifier_right_get,_wrap_CvHaarClassifier_right_set,0,0}, -{"alpha",0,_wrap_CvHaarClassifier_alpha_get,_wrap_CvHaarClassifier_alpha_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHaarClassifier_base_names[] = {0}; -static const swig_type_info *swig_CvHaarClassifier_base[] = {0}; -static swig_octave_class _wrap_class_CvHaarClassifier = {"CvHaarClassifier", &SWIGTYPE_p_CvHaarClassifier,0,_wrap_new_CvHaarClassifier,0,_wrap_delete_CvHaarClassifier,swig_CvHaarClassifier_members,swig_CvHaarClassifier_base_names,swig_CvHaarClassifier_base }; - -static octave_value_list _wrap_CvHaarStageClassifier_count_set (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarStageClassifier_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_count_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_count_get (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarStageClassifier_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_count_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_threshold_set (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarStageClassifier_threshold_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_threshold_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_threshold_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->threshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_threshold_get (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvHaarStageClassifier_threshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_threshold_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - result = (float) ((arg1)->threshold); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_classifier_set (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - CvHaarClassifier *arg2 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarStageClassifier_classifier_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_classifier_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarStageClassifier_classifier_set" "', argument " "2"" of type '" "CvHaarClassifier *""'"); - } - arg2 = (CvHaarClassifier *)(argp2); - if (arg1) (arg1)->classifier = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_classifier_get (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarClassifier *result = 0 ; - - if (!SWIG_check_num_args("CvHaarStageClassifier_classifier_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_classifier_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - result = (CvHaarClassifier *) ((arg1)->classifier); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_next_set (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarStageClassifier_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_next_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_next_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_next_get (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarStageClassifier_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_next_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - result = (int) ((arg1)->next); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_child_set (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarStageClassifier_child_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_child_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_child_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->child = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_child_get (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarStageClassifier_child_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_child_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - result = (int) ((arg1)->child); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_parent_set (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarStageClassifier_parent_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_parent_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_parent_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->parent = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarStageClassifier_parent_get (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarStageClassifier_parent_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_parent_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - result = (int) ((arg1)->parent); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvHaarStageClassifier (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarStageClassifier *result = 0 ; - - if (!SWIG_check_num_args("new_CvHaarStageClassifier",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvHaarStageClassifier *)new CvHaarStageClassifier(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarStageClassifier, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHaarStageClassifier (const octave_value_list& args, int nargout) { - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHaarStageClassifier",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarStageClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarStageClassifier" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = (CvHaarStageClassifier *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHaarStageClassifier_members[] = { -{"count",0,_wrap_CvHaarStageClassifier_count_get,_wrap_CvHaarStageClassifier_count_set,0,0}, -{"threshold",0,_wrap_CvHaarStageClassifier_threshold_get,_wrap_CvHaarStageClassifier_threshold_set,0,0}, -{"classifier",0,_wrap_CvHaarStageClassifier_classifier_get,_wrap_CvHaarStageClassifier_classifier_set,0,0}, -{"next",0,_wrap_CvHaarStageClassifier_next_get,_wrap_CvHaarStageClassifier_next_set,0,0}, -{"child",0,_wrap_CvHaarStageClassifier_child_get,_wrap_CvHaarStageClassifier_child_set,0,0}, -{"parent",0,_wrap_CvHaarStageClassifier_parent_get,_wrap_CvHaarStageClassifier_parent_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHaarStageClassifier_base_names[] = {0}; -static const swig_type_info *swig_CvHaarStageClassifier_base[] = {0}; -static swig_octave_class _wrap_class_CvHaarStageClassifier = {"CvHaarStageClassifier", &SWIGTYPE_p_CvHaarStageClassifier,0,_wrap_new_CvHaarStageClassifier,0,_wrap_delete_CvHaarStageClassifier,swig_CvHaarStageClassifier_members,swig_CvHaarStageClassifier_base_names,swig_CvHaarStageClassifier_base }; - -static octave_value_list _wrap_CvHaarClassifierCascade_flags_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_flags_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_flags_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifierCascade_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->flags = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_flags_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_flags_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_flags_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (int) ((arg1)->flags); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_count_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_count_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifierCascade_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_count_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_count_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_orig_window_size_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvSize *arg2 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_orig_window_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_orig_window_size_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_orig_window_size_set" "', argument " "2"" of type '" "CvSize *""'"); - } - arg2 = (CvSize *)(argp2); - if (arg1) (arg1)->orig_window_size = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_orig_window_size_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_orig_window_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_orig_window_size_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (CvSize *)& ((arg1)->orig_window_size); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_real_window_size_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvSize *arg2 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_real_window_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_real_window_size_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_real_window_size_set" "', argument " "2"" of type '" "CvSize *""'"); - } - arg2 = (CvSize *)(argp2); - if (arg1) (arg1)->real_window_size = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_real_window_size_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSize *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_real_window_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_real_window_size_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (CvSize *)& ((arg1)->real_window_size); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_scale_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_scale_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_scale_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifierCascade_scale_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->scale = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_scale_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_scale_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_scale_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (double) ((arg1)->scale); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_stage_classifier_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvHaarStageClassifier *arg2 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_stage_classifier_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_stage_classifier_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHaarStageClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_stage_classifier_set" "', argument " "2"" of type '" "CvHaarStageClassifier *""'"); - } - arg2 = (CvHaarStageClassifier *)(argp2); - if (arg1) (arg1)->stage_classifier = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_stage_classifier_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHaarStageClassifier *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_stage_classifier_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_stage_classifier_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (CvHaarStageClassifier *) ((arg1)->stage_classifier); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_hid_cascade_set (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvHidHaarClassifierCascade *arg2 = (CvHidHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_hid_cascade_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_hid_cascade_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvHidHaarClassifierCascade, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_hid_cascade_set" "', argument " "2"" of type '" "CvHidHaarClassifierCascade *""'"); - } - arg2 = (CvHidHaarClassifierCascade *)(argp2); - if (arg1) (arg1)->hid_cascade = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvHaarClassifierCascade_hid_cascade_get (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvHidHaarClassifierCascade *result = 0 ; - - if (!SWIG_check_num_args("CvHaarClassifierCascade_hid_cascade_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_hid_cascade_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - result = (CvHidHaarClassifierCascade *) ((arg1)->hid_cascade); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHidHaarClassifierCascade, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvHaarClassifierCascade (const octave_value_list& args, int nargout) { - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvHaarClassifierCascade",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvHaarClassifierCascade, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarClassifierCascade" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = (CvHaarClassifierCascade *)(argp1); - { - try { - delete_CvHaarClassifierCascade(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvHaarClassifierCascade_members[] = { -{"flags",0,_wrap_CvHaarClassifierCascade_flags_get,_wrap_CvHaarClassifierCascade_flags_set,0,0}, -{"count",0,_wrap_CvHaarClassifierCascade_count_get,_wrap_CvHaarClassifierCascade_count_set,0,0}, -{"orig_window_size",0,_wrap_CvHaarClassifierCascade_orig_window_size_get,_wrap_CvHaarClassifierCascade_orig_window_size_set,0,0}, -{"real_window_size",0,_wrap_CvHaarClassifierCascade_real_window_size_get,_wrap_CvHaarClassifierCascade_real_window_size_set,0,0}, -{"scale",0,_wrap_CvHaarClassifierCascade_scale_get,_wrap_CvHaarClassifierCascade_scale_set,0,0}, -{"stage_classifier",0,_wrap_CvHaarClassifierCascade_stage_classifier_get,_wrap_CvHaarClassifierCascade_stage_classifier_set,0,0}, -{"hid_cascade",0,_wrap_CvHaarClassifierCascade_hid_cascade_get,_wrap_CvHaarClassifierCascade_hid_cascade_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvHaarClassifierCascade_base_names[] = {0}; -static const swig_type_info *swig_CvHaarClassifierCascade_base[] = {0}; -static swig_octave_class _wrap_class_CvHaarClassifierCascade = {"CvHaarClassifierCascade", &SWIGTYPE_p_CvHaarClassifierCascade,0,0,0,_wrap_delete_CvHaarClassifierCascade,swig_CvHaarClassifierCascade_members,swig_CvHaarClassifierCascade_base_names,swig_CvHaarClassifierCascade_base }; - -static octave_value_list _wrap_CvAvgComp_rect_set (const octave_value_list& args, int nargout) { - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvAvgComp_rect_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_rect_set" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = (CvAvgComp *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvAvgComp_rect_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = (CvRect *)(argp2); - if (arg1) (arg1)->rect = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvAvgComp_rect_get (const octave_value_list& args, int nargout) { - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvAvgComp_rect_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_rect_get" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = (CvAvgComp *)(argp1); - result = (CvRect *)& ((arg1)->rect); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvAvgComp_neighbors_set (const octave_value_list& args, int nargout) { - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvAvgComp_neighbors_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_neighbors_set" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = (CvAvgComp *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvAvgComp_neighbors_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->neighbors = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvAvgComp_neighbors_get (const octave_value_list& args, int nargout) { - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvAvgComp_neighbors_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_neighbors_get" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = (CvAvgComp *)(argp1); - result = (int) ((arg1)->neighbors); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvAvgComp (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvAvgComp *result = 0 ; - - if (!SWIG_check_num_args("new_CvAvgComp",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvAvgComp *)new CvAvgComp(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvAvgComp, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvAvgComp (const octave_value_list& args, int nargout) { - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvAvgComp",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvAvgComp, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvAvgComp" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = (CvAvgComp *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvAvgComp_members[] = { -{"rect",0,_wrap_CvAvgComp_rect_get,_wrap_CvAvgComp_rect_set,0,0}, -{"neighbors",0,_wrap_CvAvgComp_neighbors_get,_wrap_CvAvgComp_neighbors_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvAvgComp_base_names[] = {0}; -static const swig_type_info *swig_CvAvgComp_base[] = {0}; -static swig_octave_class _wrap_class_CvAvgComp = {"CvAvgComp", &SWIGTYPE_p_CvAvgComp,0,_wrap_new_CvAvgComp,0,_wrap_delete_CvAvgComp,swig_CvAvgComp_members,swig_CvAvgComp_base_names,swig_CvAvgComp_base }; - -static octave_value_list _wrap_cvCopyMakeBorder (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvPoint arg3 ; - int arg4 ; - CvScalar arg5 = (CvScalar) cvScalarAll(0) ; - bool freearg1 = false ; - bool freearg2 = false ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCopyMakeBorder",args.length(),5,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvPoint(args(2)); - } - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCopyMakeBorder" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - if (4x; - arg5 [i].y = p->y; - } - } - { - // as input, we only need the size of the wanted features - - // memorize the size of the wanted features - tmpCount6 = (int)OctInt_AsLong (args(5)); - - // create the array for the C call - arg6 = (CvPoint2D32f *) malloc(tmpCount6 * sizeof (CvPoint2D32f)); - - // the size of the array for the C call - arg7 = tmpCount6; - } - { - res8 = SWIG_ConvertPtr(args(6), &argp8, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "8"" of type '" "CvSize""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "8"" of type '" "CvSize""'"); - } else { - arg8 = *((CvSize *)(argp8)); - } - } - ecode9 = SWIG_AsVal_int(args(7), &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "9"" of type '" "int""'"); - } - arg9 = (int)(val9); - { - // as input, we still need the size of the status array - - // memorize the size of the status array - tmpCountStatus10 = (int)OctInt_AsLong (args(8)); - - // create the status array for the C call - arg10 = (char *)malloc (tmpCountStatus10 * sizeof (char)); - } - res11 = SWIG_ConvertPtr(args(9), &argp11,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "11"" of type '" "float *""'"); - } - arg11 = (float *)(argp11); - { - res12 = SWIG_ConvertPtr(args(10), &argp12, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "12"" of type '" "CvTermCriteria""'"); - } - if (!argp12) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "12"" of type '" "CvTermCriteria""'"); - } else { - arg12 = *((CvTermCriteria *)(argp12)); - } - } - ecode13 = SWIG_AsVal_int(args(11), &val13); - if (!SWIG_IsOK(ecode13)) { - SWIG_exception_fail(SWIG_ArgError(ecode13), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "13"" of type '" "int""'"); - } - arg13 = (int)(val13); - { - try { - cvCalcOpticalFlowPyrLK((void const *)arg1,(void const *)arg2,arg3,arg4,(CvPoint2D32f const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (tmpCount6); - - // extract all the points values of the result, and add it to the - // final resulting list - for (i = 0; i < tmpCount6; i++) { - OctList_SetItem (to_add, i, - SWIG_NewPointerObj (&(arg6 [i]), - SWIGTYPE_p_CvPoint2D32f, 0)); - } - - _outp = SWIG_AppendResult(_outp, &to_add, 1); - } - { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (tmpCountStatus10); - - // extract all the integer values of the result, and add it to the - // final resulting list - for (i = 0; i < tmpCountStatus10; i++) { - OctList_SetItem (to_add, i, OctBool_FromLong (arg10 [i])); - } - - _outp = SWIG_AppendResult(_outp, &to_add, 1); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCalcAffineFlowPyrLK (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvPoint2D32f *arg5 = (CvPoint2D32f *) 0 ; - CvPoint2D32f *arg6 = (CvPoint2D32f *) 0 ; - float *arg7 = (float *) 0 ; - int arg8 ; - CvSize arg9 ; - int arg10 ; - char *arg11 = (char *) 0 ; - float *arg12 = (float *) 0 ; - CvTermCriteria arg13 ; - int arg14 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - int val8 ; - int ecode8 = 0 ; - void *argp9 ; - int res9 = 0 ; - int val10 ; - int ecode10 = 0 ; - int tmpCountStatus11 ; - void *argp12 = 0 ; - int res12 = 0 ; - void *argp13 ; - int res13 = 0 ; - int val14 ; - int ecode14 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCalcAffineFlowPyrLK",args.length(),14,14,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - arg4 = OctObject_to_CvArr(args(3), &freearg4); - } - { - int i; - int size; - - // get the size of the input array - size = OctList_Size (args(4)); - - // allocate the needed memory - arg5 = (CvPoint2D32f *)malloc (size * sizeof (CvPoint2D32f)); - - // extract all the points values from the list - for (i = 0; i < size; i++) { - octave_value item = OctList_GetItem (args(4), i); - - void * vptr; - SWIG_Octave_ConvertPtr (item, &vptr, - SWIGTYPE_p_CvPoint2D32f, - SWIG_POINTER_EXCEPTION); - CvPoint2D32f *p = (CvPoint2D32f *)vptr; - arg5 [i].x = p->x; - arg5 [i].y = p->y; - } - } - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "6"" of type '" "CvPoint2D32f *""'"); - } - arg6 = (CvPoint2D32f *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "7"" of type '" "float *""'"); - } - arg7 = (float *)(argp7); - ecode8 = SWIG_AsVal_int(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "8"" of type '" "int""'"); - } - arg8 = (int)(val8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "9"" of type '" "CvSize""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCalcAffineFlowPyrLK" "', argument " "9"" of type '" "CvSize""'"); - } else { - arg9 = *((CvSize *)(argp9)); - } - } - ecode10 = SWIG_AsVal_int(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "10"" of type '" "int""'"); - } - arg10 = (int)(val10); - { - // as input, we still need the size of the status array - - // memorize the size of the status array - tmpCountStatus11 = (int)OctInt_AsLong (args(10)); - - // create the status array for the C call - arg11 = (char *)malloc (tmpCountStatus11 * sizeof (char)); - } - res12 = SWIG_ConvertPtr(args(11), &argp12,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "12"" of type '" "float *""'"); - } - arg12 = (float *)(argp12); - { - res13 = SWIG_ConvertPtr(args(12), &argp13, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res13)) { - SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "13"" of type '" "CvTermCriteria""'"); - } - if (!argp13) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCalcAffineFlowPyrLK" "', argument " "13"" of type '" "CvTermCriteria""'"); - } else { - arg13 = *((CvTermCriteria *)(argp13)); - } - } - ecode14 = SWIG_AsVal_int(args(13), &val14); - if (!SWIG_IsOK(ecode14)) { - SWIG_exception_fail(SWIG_ArgError(ecode14), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "14"" of type '" "int""'"); - } - arg14 = (int)(val14); - { - try { - cvCalcAffineFlowPyrLK((void const *)arg1,(void const *)arg2,arg3,arg4,(CvPoint2D32f const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (tmpCountStatus11); - - // extract all the integer values of the result, and add it to the - // final resulting list - for (i = 0; i < tmpCountStatus11; i++) { - OctList_SetItem (to_add, i, OctBool_FromLong (arg11 [i])); - } - - _outp = SWIG_AppendResult(_outp, &to_add, 1); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvEstimateRigidTransform (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvEstimateRigidTransform",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvEstimateRigidTransform" "', argument " "3"" of type '" "CvMat *""'"); - } - arg3 = (CvMat *)(argp3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvEstimateRigidTransform" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (int)cvEstimateRigidTransform((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvUpdateMotionHistory (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - double arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvUpdateMotionHistory",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvUpdateMotionHistory" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvUpdateMotionHistory" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - { - try { - cvUpdateMotionHistory((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCalcMotionGradient (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 ; - double arg5 ; - int arg6 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCalcMotionGradient",args.length(),6,5,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCalcMotionGradient" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_double(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcMotionGradient" "', argument " "5"" of type '" "double""'"); - } - arg5 = (double)(val5); - if (5ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - { - try { - result = cvSubdiv2DNextEdge(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSubdiv2DRotateEdge (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge arg1 ; - int arg2 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge result; - - if (!SWIG_check_num_args("cvSubdiv2DRotateEdge",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSubdiv2DRotateEdge" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = cvSubdiv2DRotateEdge(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSubdiv2DSymEdge (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge result; - - if (!SWIG_check_num_args("cvSubdiv2DSymEdge",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - { - try { - result = cvSubdiv2DSymEdge(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSubdiv2DGetEdge (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge arg1 ; - CvNextEdgeType arg2 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge result; - - if (!SWIG_check_num_args("cvSubdiv2DGetEdge",args.length(),2,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSubdiv2DGetEdge" "', argument " "2"" of type '" "CvNextEdgeType""'"); - } - arg2 = (CvNextEdgeType)(val2); - { - try { - result = cvSubdiv2DGetEdge(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSubdiv2DEdgeOrg (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DPoint *result = 0 ; - - if (!SWIG_check_num_args("cvSubdiv2DEdgeOrg",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - { - try { - result = (CvSubdiv2DPoint *)cvSubdiv2DEdgeOrg(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvSubdiv2DEdgeDst (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DPoint *result = 0 ; - - if (!SWIG_check_num_args("cvSubdiv2DEdgeDst",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(args(0), &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } - } - { - try { - result = (CvSubdiv2DPoint *)cvSubdiv2DEdgeDst(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvTriangleArea (const octave_value_list& args, int nargout) { - CvPoint2D32f arg1 ; - CvPoint2D32f arg2 ; - CvPoint2D32f arg3 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("cvTriangleArea",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint2D32f(args(0)); - } - { - arg2 = OctObject_to_CvPoint2D32f(args(1)); - } - { - arg3 = OctObject_to_CvPoint2D32f(args(2)); - } - { - try { - result = (double)cvTriangleArea(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvFindDominantPoints (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - int arg3 = (int) 1 ; - double arg4 = (double) 0 ; - double arg5 = (double) 0 ; - double arg6 = (double) 0 ; - double arg7 = (double) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("cvFindDominantPoints",args.length(),7,2,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvFindDominantPoints" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (2x; - arg2 [i].y = p->y; - } - } - { - res4 = SWIG_ConvertPtr(args(2), &argp4, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvFindCornerSubPix" "', argument " "4"" of type '" "CvSize""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvFindCornerSubPix" "', argument " "4"" of type '" "CvSize""'"); - } else { - arg4 = *((CvSize *)(argp4)); - } - } - { - res5 = SWIG_ConvertPtr(args(3), &argp5, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvFindCornerSubPix" "', argument " "5"" of type '" "CvSize""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvFindCornerSubPix" "', argument " "5"" of type '" "CvSize""'"); - } else { - arg5 = *((CvSize *)(argp5)); - } - } - { - res6 = SWIG_ConvertPtr(args(4), &argp6, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvFindCornerSubPix" "', argument " "6"" of type '" "CvTermCriteria""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvFindCornerSubPix" "', argument " "6"" of type '" "CvTermCriteria""'"); - } else { - arg6 = *((CvTermCriteria *)(argp6)); - } - } - { - try { - cvFindCornerSubPix((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (cornersCount2); - - // extract all the corner values of the result, and add it to the - // final resulting list - for (i = 0; i < cornersCount2; i++) { - OctList_SetItem (to_add, i, - SWIG_NewPointerObj (&(corners2 [i]), - SWIGTYPE_p_CvPoint2D32f, 0)); - } - - _outp = SWIG_AppendResult( _outp, &to_add, 1); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvGoodFeaturesToTrack (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvPoint2D32f *arg4 = (CvPoint2D32f *) 0 ; - int *arg5 = (int *) 0 ; - double arg6 ; - double arg7 ; - CvArr *arg8 = (CvArr *) NULL ; - int arg9 = (int) 3 ; - int arg10 = (int) 0 ; - double arg11 = (double) 0.04 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int tmpCount4 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - bool freearg8 = false ; - int val9 ; - int ecode9 = 0 ; - int val10 ; - int ecode10 = 0 ; - double val11 ; - int ecode11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvGoodFeaturesToTrack",args.length(),10,6,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - // as input, we still need the size of the corners array - - // memorize the size of the status corners - tmpCount4 = (int)OctInt_AsLong (args(3)); - - // create the corners array for the C call - arg4 = (CvPoint2D32f *)malloc (tmpCount4 * sizeof (CvPoint2D32f)); - - // the size of the array for the C call - arg5 = &tmpCount4; - } - ecode6 = SWIG_AsVal_double(args(4), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvGoodFeaturesToTrack" "', argument " "6"" of type '" "double""'"); - } - arg6 = (double)(val6); - ecode7 = SWIG_AsVal_double(args(5), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvGoodFeaturesToTrack" "', argument " "7"" of type '" "double""'"); - } - arg7 = (double)(val7); - if (6pt = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_pt_get (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSURFPoint_pt_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_pt_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - result = (CvPoint2D32f *)& ((arg1)->pt); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_laplacian_set (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFPoint_laplacian_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_laplacian_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_laplacian_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->laplacian = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_laplacian_get (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSURFPoint_laplacian_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_laplacian_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - result = (int) ((arg1)->laplacian); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_size_set (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFPoint_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_size_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_size_get (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSURFPoint_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_size_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - result = (int) ((arg1)->size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_dir_set (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFPoint_dir_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_dir_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_dir_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->dir = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_dir_get (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvSURFPoint_dir_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_dir_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - result = (float) ((arg1)->dir); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_hessian_set (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFPoint_hessian_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_hessian_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_hessian_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->hessian = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFPoint_hessian_get (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvSURFPoint_hessian_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_hessian_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - result = (float) ((arg1)->hessian); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSURFPoint (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSURFPoint *result = 0 ; - - if (!SWIG_check_num_args("new_CvSURFPoint",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSURFPoint *)new CvSURFPoint(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSURFPoint, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSURFPoint (const octave_value_list& args, int nargout) { - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSURFPoint",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSURFPoint" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = (CvSURFPoint *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSURFPoint_members[] = { -{"pt",0,_wrap_CvSURFPoint_pt_get,_wrap_CvSURFPoint_pt_set,0,0}, -{"laplacian",0,_wrap_CvSURFPoint_laplacian_get,_wrap_CvSURFPoint_laplacian_set,0,0}, -{"size",0,_wrap_CvSURFPoint_size_get,_wrap_CvSURFPoint_size_set,0,0}, -{"dir",0,_wrap_CvSURFPoint_dir_get,_wrap_CvSURFPoint_dir_set,0,0}, -{"hessian",0,_wrap_CvSURFPoint_hessian_get,_wrap_CvSURFPoint_hessian_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSURFPoint_base_names[] = {0}; -static const swig_type_info *swig_CvSURFPoint_base[] = {0}; -static swig_octave_class _wrap_class_CvSURFPoint = {"CvSURFPoint", &SWIGTYPE_p_CvSURFPoint,0,_wrap_new_CvSURFPoint,0,_wrap_delete_CvSURFPoint,swig_CvSURFPoint_members,swig_CvSURFPoint_base_names,swig_CvSURFPoint_base }; - -static octave_value_list _wrap_cvSURFPoint (const octave_value_list& args, int nargout) { - CvPoint2D32f arg1 ; - int arg2 ; - int arg3 ; - float arg4 = (float) 0 ; - float arg5 = (float) 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - float val4 ; - int ecode4 = 0 ; - float val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSURFPoint result; - - if (!SWIG_check_num_args("cvSURFPoint",args.length(),5,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint2D32f(args(0)); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSURFPoint" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSURFPoint" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - if (3extended = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_extended_get (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSURFParams_extended_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_extended_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - result = (int) ((arg1)->extended); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_hessianThreshold_set (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFParams_hessianThreshold_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_hessianThreshold_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_hessianThreshold_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->hessianThreshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_hessianThreshold_get (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSURFParams_hessianThreshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_hessianThreshold_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - result = (double) ((arg1)->hessianThreshold); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_nOctaves_set (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFParams_nOctaves_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaves_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_nOctaves_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nOctaves = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_nOctaves_get (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSURFParams_nOctaves_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaves_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - result = (int) ((arg1)->nOctaves); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_nOctaveLayers_set (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSURFParams_nOctaveLayers_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaveLayers_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_nOctaveLayers_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nOctaveLayers = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSURFParams_nOctaveLayers_get (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSURFParams_nOctaveLayers_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaveLayers_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - result = (int) ((arg1)->nOctaveLayers); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSURFParams (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSURFParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvSURFParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSURFParams *)new CvSURFParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSURFParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSURFParams (const octave_value_list& args, int nargout) { - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSURFParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSURFParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSURFParams" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = (CvSURFParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSURFParams_members[] = { -{"extended",0,_wrap_CvSURFParams_extended_get,_wrap_CvSURFParams_extended_set,0,0}, -{"hessianThreshold",0,_wrap_CvSURFParams_hessianThreshold_get,_wrap_CvSURFParams_hessianThreshold_set,0,0}, -{"nOctaves",0,_wrap_CvSURFParams_nOctaves_get,_wrap_CvSURFParams_nOctaves_set,0,0}, -{"nOctaveLayers",0,_wrap_CvSURFParams_nOctaveLayers_get,_wrap_CvSURFParams_nOctaveLayers_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSURFParams_base_names[] = {0}; -static const swig_type_info *swig_CvSURFParams_base[] = {0}; -static swig_octave_class _wrap_class_CvSURFParams = {"CvSURFParams", &SWIGTYPE_p_CvSURFParams,0,_wrap_new_CvSURFParams,0,_wrap_delete_CvSURFParams,swig_CvSURFParams_members,swig_CvSURFParams_base_names,swig_CvSURFParams_base }; - -static octave_value_list _wrap_cvSURFParams (const octave_value_list& args, int nargout) { - double arg1 ; - int arg2 = (int) 0 ; - double val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSURFParams result; - - if (!SWIG_check_num_args("cvSURFParams",args.length(),2,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSURFParams" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - if (1delta = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_delta_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMSERParams_delta_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_delta_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (int) ((arg1)->delta); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_maxArea_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_maxArea_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxArea_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_maxArea_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->maxArea = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_maxArea_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMSERParams_maxArea_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxArea_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (int) ((arg1)->maxArea); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_minArea_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_minArea_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minArea_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_minArea_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->minArea = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_minArea_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMSERParams_minArea_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minArea_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (int) ((arg1)->minArea); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_maxVariation_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_maxVariation_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxVariation_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_maxVariation_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->maxVariation = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_maxVariation_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvMSERParams_maxVariation_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxVariation_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (float) ((arg1)->maxVariation); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_minDiversity_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_minDiversity_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minDiversity_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_minDiversity_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->minDiversity = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_minDiversity_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvMSERParams_minDiversity_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minDiversity_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (float) ((arg1)->minDiversity); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_maxEvolution_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_maxEvolution_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxEvolution_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_maxEvolution_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->maxEvolution = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_maxEvolution_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMSERParams_maxEvolution_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxEvolution_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (int) ((arg1)->maxEvolution); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_areaThreshold_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_areaThreshold_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_areaThreshold_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_areaThreshold_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->areaThreshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_areaThreshold_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMSERParams_areaThreshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_areaThreshold_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (double) ((arg1)->areaThreshold); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_minMargin_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_minMargin_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minMargin_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_minMargin_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->minMargin = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_minMargin_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvMSERParams_minMargin_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minMargin_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (double) ((arg1)->minMargin); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_edgeBlurSize_set (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMSERParams_edgeBlurSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_edgeBlurSize_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_edgeBlurSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->edgeBlurSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMSERParams_edgeBlurSize_get (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMSERParams_edgeBlurSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_edgeBlurSize_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - result = (int) ((arg1)->edgeBlurSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvMSERParams (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMSERParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvMSERParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMSERParams *)new CvMSERParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMSERParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMSERParams (const octave_value_list& args, int nargout) { - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMSERParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMSERParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMSERParams" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = (CvMSERParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMSERParams_members[] = { -{"delta",0,_wrap_CvMSERParams_delta_get,_wrap_CvMSERParams_delta_set,0,0}, -{"maxArea",0,_wrap_CvMSERParams_maxArea_get,_wrap_CvMSERParams_maxArea_set,0,0}, -{"minArea",0,_wrap_CvMSERParams_minArea_get,_wrap_CvMSERParams_minArea_set,0,0}, -{"maxVariation",0,_wrap_CvMSERParams_maxVariation_get,_wrap_CvMSERParams_maxVariation_set,0,0}, -{"minDiversity",0,_wrap_CvMSERParams_minDiversity_get,_wrap_CvMSERParams_minDiversity_set,0,0}, -{"maxEvolution",0,_wrap_CvMSERParams_maxEvolution_get,_wrap_CvMSERParams_maxEvolution_set,0,0}, -{"areaThreshold",0,_wrap_CvMSERParams_areaThreshold_get,_wrap_CvMSERParams_areaThreshold_set,0,0}, -{"minMargin",0,_wrap_CvMSERParams_minMargin_get,_wrap_CvMSERParams_minMargin_set,0,0}, -{"edgeBlurSize",0,_wrap_CvMSERParams_edgeBlurSize_get,_wrap_CvMSERParams_edgeBlurSize_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMSERParams_base_names[] = {0}; -static const swig_type_info *swig_CvMSERParams_base[] = {0}; -static swig_octave_class _wrap_class_CvMSERParams = {"CvMSERParams", &SWIGTYPE_p_CvMSERParams,0,_wrap_new_CvMSERParams,0,_wrap_delete_CvMSERParams,swig_CvMSERParams_members,swig_CvMSERParams_base_names,swig_CvMSERParams_base }; - -static octave_value_list _wrap_cvMSERParams (const octave_value_list& args, int nargout) { - int arg1 = (int) 5 ; - int arg2 = (int) 60 ; - int arg3 = (int) 14400 ; - float arg4 = (float) .25 ; - float arg5 = (float) .2 ; - int arg6 = (int) 200 ; - double arg7 = (double) 1.01 ; - double arg8 = (double) .003 ; - int arg9 = (int) 5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - float val4 ; - int ecode4 = 0 ; - float val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMSERParams result; - - if (!SWIG_check_num_args("cvMSERParams",args.length(),9,0,0)) { - SWIG_fail; - } - if (0pt = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarKeypoint_pt_get (const octave_value_list& args, int nargout) { - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvStarKeypoint_pt_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_pt_get" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = (CvStarKeypoint *)(argp1); - result = (CvPoint *)& ((arg1)->pt); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarKeypoint_size_set (const octave_value_list& args, int nargout) { - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarKeypoint_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_size_set" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = (CvStarKeypoint *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarKeypoint_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarKeypoint_size_get (const octave_value_list& args, int nargout) { - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStarKeypoint_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_size_get" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = (CvStarKeypoint *)(argp1); - result = (int) ((arg1)->size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarKeypoint_response_set (const octave_value_list& args, int nargout) { - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarKeypoint_response_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_response_set" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = (CvStarKeypoint *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarKeypoint_response_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->response = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarKeypoint_response_get (const octave_value_list& args, int nargout) { - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvStarKeypoint_response_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_response_get" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = (CvStarKeypoint *)(argp1); - result = (float) ((arg1)->response); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvStarKeypoint (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStarKeypoint *result = 0 ; - - if (!SWIG_check_num_args("new_CvStarKeypoint",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvStarKeypoint *)new CvStarKeypoint(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStarKeypoint, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvStarKeypoint (const octave_value_list& args, int nargout) { - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvStarKeypoint",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarKeypoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStarKeypoint" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = (CvStarKeypoint *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvStarKeypoint_members[] = { -{"pt",0,_wrap_CvStarKeypoint_pt_get,_wrap_CvStarKeypoint_pt_set,0,0}, -{"size",0,_wrap_CvStarKeypoint_size_get,_wrap_CvStarKeypoint_size_set,0,0}, -{"response",0,_wrap_CvStarKeypoint_response_get,_wrap_CvStarKeypoint_response_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvStarKeypoint_base_names[] = {0}; -static const swig_type_info *swig_CvStarKeypoint_base[] = {0}; -static swig_octave_class _wrap_class_CvStarKeypoint = {"CvStarKeypoint", &SWIGTYPE_p_CvStarKeypoint,0,_wrap_new_CvStarKeypoint,0,_wrap_delete_CvStarKeypoint,swig_CvStarKeypoint_members,swig_CvStarKeypoint_base_names,swig_CvStarKeypoint_base }; - -static octave_value_list _wrap_cvStarKeypoint (const octave_value_list& args, int nargout) { - CvPoint arg1 ; - int arg2 ; - float arg3 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStarKeypoint result; - - if (!SWIG_check_num_args("cvStarKeypoint",args.length(),3,3,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvPoint(args(0)); - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvStarKeypoint" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStarKeypoint" "', argument " "3"" of type '" "float""'"); - } - arg3 = (float)(val3); - { - try { - result = cvStarKeypoint(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvStarKeypoint((const CvStarKeypoint&)(result))), SWIGTYPE_p_CvStarKeypoint, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_maxSize_set (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarDetectorParams_maxSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_maxSize_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_maxSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->maxSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_maxSize_get (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStarDetectorParams_maxSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_maxSize_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - result = (int) ((arg1)->maxSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_responseThreshold_set (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarDetectorParams_responseThreshold_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_responseThreshold_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_responseThreshold_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->responseThreshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_responseThreshold_get (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStarDetectorParams_responseThreshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_responseThreshold_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - result = (int) ((arg1)->responseThreshold); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_lineThresholdProjected_set (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarDetectorParams_lineThresholdProjected_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdProjected_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_lineThresholdProjected_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->lineThresholdProjected = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_lineThresholdProjected_get (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStarDetectorParams_lineThresholdProjected_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdProjected_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - result = (int) ((arg1)->lineThresholdProjected); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_lineThresholdBinarized_set (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarDetectorParams_lineThresholdBinarized_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdBinarized_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_lineThresholdBinarized_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->lineThresholdBinarized = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_lineThresholdBinarized_get (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStarDetectorParams_lineThresholdBinarized_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdBinarized_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - result = (int) ((arg1)->lineThresholdBinarized); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_suppressNonmaxSize_set (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStarDetectorParams_suppressNonmaxSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_suppressNonmaxSize_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_suppressNonmaxSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->suppressNonmaxSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStarDetectorParams_suppressNonmaxSize_get (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStarDetectorParams_suppressNonmaxSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_suppressNonmaxSize_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - result = (int) ((arg1)->suppressNonmaxSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvStarDetectorParams (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStarDetectorParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvStarDetectorParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvStarDetectorParams *)new CvStarDetectorParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStarDetectorParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvStarDetectorParams (const octave_value_list& args, int nargout) { - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvStarDetectorParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStarDetectorParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStarDetectorParams" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = (CvStarDetectorParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvStarDetectorParams_members[] = { -{"maxSize",0,_wrap_CvStarDetectorParams_maxSize_get,_wrap_CvStarDetectorParams_maxSize_set,0,0}, -{"responseThreshold",0,_wrap_CvStarDetectorParams_responseThreshold_get,_wrap_CvStarDetectorParams_responseThreshold_set,0,0}, -{"lineThresholdProjected",0,_wrap_CvStarDetectorParams_lineThresholdProjected_get,_wrap_CvStarDetectorParams_lineThresholdProjected_set,0,0}, -{"lineThresholdBinarized",0,_wrap_CvStarDetectorParams_lineThresholdBinarized_get,_wrap_CvStarDetectorParams_lineThresholdBinarized_set,0,0}, -{"suppressNonmaxSize",0,_wrap_CvStarDetectorParams_suppressNonmaxSize_get,_wrap_CvStarDetectorParams_suppressNonmaxSize_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvStarDetectorParams_base_names[] = {0}; -static const swig_type_info *swig_CvStarDetectorParams_base[] = {0}; -static swig_octave_class _wrap_class_CvStarDetectorParams = {"CvStarDetectorParams", &SWIGTYPE_p_CvStarDetectorParams,0,_wrap_new_CvStarDetectorParams,0,_wrap_delete_CvStarDetectorParams,swig_CvStarDetectorParams_members,swig_CvStarDetectorParams_base_names,swig_CvStarDetectorParams_base }; - -static octave_value_list _wrap_cvStarDetectorParams (const octave_value_list& args, int nargout) { - int arg1 = (int) 45 ; - int arg2 = (int) 30 ; - int arg3 = (int) 10 ; - int arg4 = (int) 8 ; - int arg5 = (int) 5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStarDetectorParams result; - - if (!SWIG_check_num_args("cvStarDetectorParams",args.length(),5,0,0)) { - SWIG_fail; - } - if (0width*pattern_size2->height; - - tmp_corners2 = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)*tmp_ncorners2); - arg2 = *pattern_size2; - arg3 = tmp_corners2; - arg4 = &tmp_ncorners2; - } - if (2x = tmp_corners2[i].x; - pt->y = tmp_corners2[i].y; - - OctList_SetItem (to_add, i, - SWIG_NewPointerObj( pt, SWIGTYPE_p_CvPoint2D32f, 0)); - } - - _outp = SWIG_AppendResult( _outp, &to_add, 1); - free(tmp_corners2); - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvDrawChessboardCorners (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvSize arg2 ; - CvPoint2D32f *arg3 = (CvPoint2D32f *) 0 ; - int arg4 ; - int arg5 ; - bool freearg1 = false ; - void *argp2 ; - int res2 = 0 ; - int cornersCount3 ; - CvPoint2D32f *corners3 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvDrawChessboardCorners",args.length(),4,4,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvDrawChessboardCorners" "', argument " "2"" of type '" "CvSize""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvDrawChessboardCorners" "', argument " "2"" of type '" "CvSize""'"); - } else { - arg2 = *((CvSize *)(argp2)); - } - } - { - int i; - - if(!OctList_Check(args(2))){ - error("Expected a list"); - SWIG_fail; - } - - // get the size of the input array - cornersCount3 = OctList_Size (args(2)); - arg4 = cornersCount3; - - // allocate the needed memory - corners3 = (CvPoint2D32f *)malloc (arg4 * sizeof (CvPoint2D32f)); - arg3 = corners3; - - // the size of the array for the C call - - // extract all the points values from the list - for (i = 0; i < arg4; i++) { - octave_value item = OctList_GetItem (args(2), i); - - void *vptr; - SWIG_Octave_ConvertPtr (item, &vptr, - SWIGTYPE_p_CvPoint2D32f, - SWIG_POINTER_EXCEPTION); - CvPoint2D32f *p = (CvPoint2D32f *) vptr;; - arg3 [i].x = p->x; - arg3 [i].y = p->y; - } - } - ecode5 = SWIG_AsVal_int(args(3), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvDrawChessboardCorners" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - { - try { - cvDrawChessboardCorners(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (cornersCount3); - - // extract all the corner values of the result, and add it to the - // final resulting list - for (i = 0; i < cornersCount3; i++) { - OctList_SetItem (to_add, i, - SWIG_NewPointerObj (&(corners3 [i]), - SWIGTYPE_p_CvPoint2D32f, 0)); - } - - _outp = SWIG_AppendResult( _outp, &to_add, 1); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_cvCalibrateCamera2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvSize arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) NULL ; - CvMat *arg8 = (CvMat *) NULL ; - int arg9 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - int val9 ; - int ecode9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvCalibrateCamera2",args.length(),9,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalibrateCamera2" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCalibrateCamera2" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalibrateCamera2" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvSize, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCalibrateCamera2" "', argument " "4"" of type '" "CvSize""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCalibrateCamera2" "', argument " "4"" of type '" "CvSize""'"); - } else { - arg4 = *((CvSize *)(argp4)); - } - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvCalibrateCamera2" "', argument " "5"" of type '" "CvMat *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvCalibrateCamera2" "', argument " "6"" of type '" "CvMat *""'"); - } - arg6 = (CvMat *)(argp6); - if (6preFilterType = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilterType_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_preFilterType_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterType_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->preFilterType); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilterSize_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_preFilterSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterSize_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_preFilterSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->preFilterSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilterSize_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_preFilterSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterSize_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->preFilterSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilterCap_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_preFilterCap_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterCap_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_preFilterCap_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->preFilterCap = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilterCap_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_preFilterCap_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterCap_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->preFilterCap); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_SADWindowSize_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_SADWindowSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_SADWindowSize_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_SADWindowSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->SADWindowSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_SADWindowSize_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_SADWindowSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_SADWindowSize_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->SADWindowSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_minDisparity_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_minDisparity_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_minDisparity_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_minDisparity_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->minDisparity = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_minDisparity_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_minDisparity_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_minDisparity_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->minDisparity); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_numberOfDisparities_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_numberOfDisparities_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_numberOfDisparities_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_numberOfDisparities_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->numberOfDisparities = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_numberOfDisparities_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_numberOfDisparities_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_numberOfDisparities_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->numberOfDisparities); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_textureThreshold_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_textureThreshold_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_textureThreshold_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_textureThreshold_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->textureThreshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_textureThreshold_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_textureThreshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_textureThreshold_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->textureThreshold); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_uniquenessRatio_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_uniquenessRatio_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_uniquenessRatio_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_uniquenessRatio_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->uniquenessRatio = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_uniquenessRatio_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_uniquenessRatio_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_uniquenessRatio_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->uniquenessRatio); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_speckleWindowSize_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_speckleWindowSize_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleWindowSize_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_speckleWindowSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->speckleWindowSize = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_speckleWindowSize_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_speckleWindowSize_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleWindowSize_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->speckleWindowSize); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_speckleRange_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_speckleRange_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleRange_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_speckleRange_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->speckleRange = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_speckleRange_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_speckleRange_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleRange_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->speckleRange); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_trySmallerWindows_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_trySmallerWindows_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_trySmallerWindows_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_trySmallerWindows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->trySmallerWindows = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_trySmallerWindows_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoBMState_trySmallerWindows_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_trySmallerWindows_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (int) ((arg1)->trySmallerWindows); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilteredImg0_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_preFilteredImg0_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg0_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoBMState_preFilteredImg0_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->preFilteredImg0 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilteredImg0_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoBMState_preFilteredImg0_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg0_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (CvMat *) ((arg1)->preFilteredImg0); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilteredImg1_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_preFilteredImg1_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg1_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoBMState_preFilteredImg1_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->preFilteredImg1 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_preFilteredImg1_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoBMState_preFilteredImg1_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg1_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (CvMat *) ((arg1)->preFilteredImg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_slidingSumBuf_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_slidingSumBuf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_slidingSumBuf_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoBMState_slidingSumBuf_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->slidingSumBuf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_slidingSumBuf_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoBMState_slidingSumBuf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_slidingSumBuf_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (CvMat *) ((arg1)->slidingSumBuf); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_dbmin_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_dbmin_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmin_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoBMState_dbmin_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->dbmin = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_dbmin_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoBMState_dbmin_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmin_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (CvMat *) ((arg1)->dbmin); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_dbmax_set (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoBMState_dbmax_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmax_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoBMState_dbmax_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->dbmax = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoBMState_dbmax_get (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoBMState_dbmax_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmax_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - result = (CvMat *) ((arg1)->dbmax); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvStereoBMState (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStereoBMState *result = 0 ; - - if (!SWIG_check_num_args("new_CvStereoBMState",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvStereoBMState *)new CvStereoBMState(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoBMState, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvStereoBMState (const octave_value_list& args, int nargout) { - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvStereoBMState",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoBMState, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStereoBMState" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = (CvStereoBMState *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvStereoBMState_members[] = { -{"preFilterType",0,_wrap_CvStereoBMState_preFilterType_get,_wrap_CvStereoBMState_preFilterType_set,0,0}, -{"preFilterSize",0,_wrap_CvStereoBMState_preFilterSize_get,_wrap_CvStereoBMState_preFilterSize_set,0,0}, -{"preFilterCap",0,_wrap_CvStereoBMState_preFilterCap_get,_wrap_CvStereoBMState_preFilterCap_set,0,0}, -{"SADWindowSize",0,_wrap_CvStereoBMState_SADWindowSize_get,_wrap_CvStereoBMState_SADWindowSize_set,0,0}, -{"minDisparity",0,_wrap_CvStereoBMState_minDisparity_get,_wrap_CvStereoBMState_minDisparity_set,0,0}, -{"numberOfDisparities",0,_wrap_CvStereoBMState_numberOfDisparities_get,_wrap_CvStereoBMState_numberOfDisparities_set,0,0}, -{"textureThreshold",0,_wrap_CvStereoBMState_textureThreshold_get,_wrap_CvStereoBMState_textureThreshold_set,0,0}, -{"uniquenessRatio",0,_wrap_CvStereoBMState_uniquenessRatio_get,_wrap_CvStereoBMState_uniquenessRatio_set,0,0}, -{"speckleWindowSize",0,_wrap_CvStereoBMState_speckleWindowSize_get,_wrap_CvStereoBMState_speckleWindowSize_set,0,0}, -{"speckleRange",0,_wrap_CvStereoBMState_speckleRange_get,_wrap_CvStereoBMState_speckleRange_set,0,0}, -{"trySmallerWindows",0,_wrap_CvStereoBMState_trySmallerWindows_get,_wrap_CvStereoBMState_trySmallerWindows_set,0,0}, -{"preFilteredImg0",0,_wrap_CvStereoBMState_preFilteredImg0_get,_wrap_CvStereoBMState_preFilteredImg0_set,0,0}, -{"preFilteredImg1",0,_wrap_CvStereoBMState_preFilteredImg1_get,_wrap_CvStereoBMState_preFilteredImg1_set,0,0}, -{"slidingSumBuf",0,_wrap_CvStereoBMState_slidingSumBuf_get,_wrap_CvStereoBMState_slidingSumBuf_set,0,0}, -{"dbmin",0,_wrap_CvStereoBMState_dbmin_get,_wrap_CvStereoBMState_dbmin_set,0,0}, -{"dbmax",0,_wrap_CvStereoBMState_dbmax_get,_wrap_CvStereoBMState_dbmax_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvStereoBMState_base_names[] = {0}; -static const swig_type_info *swig_CvStereoBMState_base[] = {0}; -static swig_octave_class _wrap_class_CvStereoBMState = {"CvStereoBMState", &SWIGTYPE_p_CvStereoBMState,0,_wrap_new_CvStereoBMState,0,_wrap_delete_CvStereoBMState,swig_CvStereoBMState_members,swig_CvStereoBMState_base_names,swig_CvStereoBMState_base }; - -static octave_value_list _wrap_cvCreateStereoBMState (const octave_value_list& args, int nargout) { - int arg1 = (int) 0 ; - int arg2 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStereoBMState *result = 0 ; - - if (!SWIG_check_num_args("cvCreateStereoBMState",args.length(),2,0,0)) { - SWIG_fail; - } - if (0Ithreshold = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_Ithreshold_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoGCState_Ithreshold_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_Ithreshold_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (int) ((arg1)->Ithreshold); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_interactionRadius_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_interactionRadius_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_interactionRadius_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_interactionRadius_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->interactionRadius = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_interactionRadius_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoGCState_interactionRadius_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_interactionRadius_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (int) ((arg1)->interactionRadius); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_K_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_K_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_K_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_K_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->K = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_K_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvStereoGCState_K_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_K_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (float) ((arg1)->K); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_lambda_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_lambda_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_lambda_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->lambda = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_lambda_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvStereoGCState_lambda_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (float) ((arg1)->lambda); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_lambda1_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_lambda1_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda1_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_lambda1_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->lambda1 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_lambda1_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvStereoGCState_lambda1_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda1_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (float) ((arg1)->lambda1); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_lambda2_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_lambda2_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda2_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_lambda2_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->lambda2 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_lambda2_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvStereoGCState_lambda2_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda2_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (float) ((arg1)->lambda2); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_occlusionCost_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_occlusionCost_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_occlusionCost_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_occlusionCost_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->occlusionCost = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_occlusionCost_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoGCState_occlusionCost_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_occlusionCost_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (int) ((arg1)->occlusionCost); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_minDisparity_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_minDisparity_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_minDisparity_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_minDisparity_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->minDisparity = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_minDisparity_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoGCState_minDisparity_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_minDisparity_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (int) ((arg1)->minDisparity); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_numberOfDisparities_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_numberOfDisparities_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_numberOfDisparities_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_numberOfDisparities_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->numberOfDisparities = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_numberOfDisparities_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoGCState_numberOfDisparities_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_numberOfDisparities_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (int) ((arg1)->numberOfDisparities); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_maxIters_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_maxIters_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_maxIters_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_maxIters_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->maxIters = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_maxIters_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvStereoGCState_maxIters_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_maxIters_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (int) ((arg1)->maxIters); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_left_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_left_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_left_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_left_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->left = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_left_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_left_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_left_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->left); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_right_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_right_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_right_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_right_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->right = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_right_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_right_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_right_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->right); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_dispLeft_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_dispLeft_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispLeft_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_dispLeft_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->dispLeft = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_dispLeft_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_dispLeft_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispLeft_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->dispLeft); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_dispRight_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_dispRight_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispRight_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_dispRight_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->dispRight = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_dispRight_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_dispRight_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispRight_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->dispRight); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_ptrLeft_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_ptrLeft_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrLeft_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_ptrLeft_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->ptrLeft = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_ptrLeft_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_ptrLeft_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrLeft_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->ptrLeft); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_ptrRight_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_ptrRight_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrRight_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_ptrRight_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->ptrRight = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_ptrRight_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_ptrRight_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrRight_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->ptrRight); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_vtxBuf_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_vtxBuf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_vtxBuf_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_vtxBuf_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->vtxBuf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_vtxBuf_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_vtxBuf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_vtxBuf_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->vtxBuf); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_edgeBuf_set (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStereoGCState_edgeBuf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_edgeBuf_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStereoGCState_edgeBuf_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->edgeBuf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStereoGCState_edgeBuf_get (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvStereoGCState_edgeBuf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_edgeBuf_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - result = (CvMat *) ((arg1)->edgeBuf); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvStereoGCState (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStereoGCState *result = 0 ; - - if (!SWIG_check_num_args("new_CvStereoGCState",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvStereoGCState *)new CvStereoGCState(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoGCState, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvStereoGCState (const octave_value_list& args, int nargout) { - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvStereoGCState",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStereoGCState, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStereoGCState" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = (CvStereoGCState *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvStereoGCState_members[] = { -{"Ithreshold",0,_wrap_CvStereoGCState_Ithreshold_get,_wrap_CvStereoGCState_Ithreshold_set,0,0}, -{"interactionRadius",0,_wrap_CvStereoGCState_interactionRadius_get,_wrap_CvStereoGCState_interactionRadius_set,0,0}, -{"K",0,_wrap_CvStereoGCState_K_get,_wrap_CvStereoGCState_K_set,0,0}, -{"lambda",0,_wrap_CvStereoGCState_lambda_get,_wrap_CvStereoGCState_lambda_set,0,0}, -{"lambda1",0,_wrap_CvStereoGCState_lambda1_get,_wrap_CvStereoGCState_lambda1_set,0,0}, -{"lambda2",0,_wrap_CvStereoGCState_lambda2_get,_wrap_CvStereoGCState_lambda2_set,0,0}, -{"occlusionCost",0,_wrap_CvStereoGCState_occlusionCost_get,_wrap_CvStereoGCState_occlusionCost_set,0,0}, -{"minDisparity",0,_wrap_CvStereoGCState_minDisparity_get,_wrap_CvStereoGCState_minDisparity_set,0,0}, -{"numberOfDisparities",0,_wrap_CvStereoGCState_numberOfDisparities_get,_wrap_CvStereoGCState_numberOfDisparities_set,0,0}, -{"maxIters",0,_wrap_CvStereoGCState_maxIters_get,_wrap_CvStereoGCState_maxIters_set,0,0}, -{"left",0,_wrap_CvStereoGCState_left_get,_wrap_CvStereoGCState_left_set,0,0}, -{"right",0,_wrap_CvStereoGCState_right_get,_wrap_CvStereoGCState_right_set,0,0}, -{"dispLeft",0,_wrap_CvStereoGCState_dispLeft_get,_wrap_CvStereoGCState_dispLeft_set,0,0}, -{"dispRight",0,_wrap_CvStereoGCState_dispRight_get,_wrap_CvStereoGCState_dispRight_set,0,0}, -{"ptrLeft",0,_wrap_CvStereoGCState_ptrLeft_get,_wrap_CvStereoGCState_ptrLeft_set,0,0}, -{"ptrRight",0,_wrap_CvStereoGCState_ptrRight_get,_wrap_CvStereoGCState_ptrRight_set,0,0}, -{"vtxBuf",0,_wrap_CvStereoGCState_vtxBuf_get,_wrap_CvStereoGCState_vtxBuf_set,0,0}, -{"edgeBuf",0,_wrap_CvStereoGCState_edgeBuf_get,_wrap_CvStereoGCState_edgeBuf_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvStereoGCState_base_names[] = {0}; -static const swig_type_info *swig_CvStereoGCState_base[] = {0}; -static swig_octave_class _wrap_class_CvStereoGCState = {"CvStereoGCState", &SWIGTYPE_p_CvStereoGCState,0,_wrap_new_CvStereoGCState,0,_wrap_delete_CvStereoGCState,swig_CvStereoGCState_members,swig_CvStereoGCState_base_names,swig_CvStereoGCState_base }; - -static octave_value_list _wrap_cvCreateStereoGCState (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStereoGCState *result = 0 ; - - if (!SWIG_check_num_args("cvCreateStereoGCState",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateStereoGCState" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateStereoGCState" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvStereoGCState *)cvCreateStereoGCState(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvReleaseStereoGCState (const octave_value_list& args, int nargout) { - CvStereoGCState **arg1 = (CvStereoGCState **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvReleaseStereoGCState",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleaseStereoGCState" "', argument " "1"" of type '" "CvStereoGCState **""'"); - } - arg1 = (CvStereoGCState **)(argp1); - { - try { - cvReleaseStereoGCState(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvFindStereoCorrespondenceGC (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvStereoGCState *arg5 = (CvStereoGCState *) 0 ; - int arg6 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvFindStereoCorrespondenceGC",args.length(),6,5,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - arg2 = OctObject_to_CvArr(args(1), &freearg2); - } - { - arg3 = OctObject_to_CvArr(args(2), &freearg3); - } - { - arg4 = OctObject_to_CvArr(args(3), &freearg4); - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvFindStereoCorrespondenceGC" "', argument " "5"" of type '" "CvStereoGCState *""'"); - } - arg5 = (CvStereoGCState *)(argp5); - if (5 *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - CvPoint *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_CvPoint_2_val_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2_val_set" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTuple_CvPoint_2_val_set" "', argument " "2"" of type '" "CvPoint [2]""'"); - } - arg2 = (CvPoint *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""CvPoint [2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_CvPoint_2_val_get (const octave_value_list& args, int nargout) { - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_CvPoint_2_val_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2_val_get" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - result = (CvPoint *)(CvPoint *) ((arg1)->val); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_CvPoint_2___paren (const octave_value_list& args, int nargout) { - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_CvPoint_2___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2___paren" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_CvPoint_2___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvPoint *) &(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_CvPoint_2___paren_asgn (const octave_value_list& args, int nargout) { - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - int arg2 ; - CvPoint *arg3 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_CvPoint_2___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2___paren_asgn" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_CvPoint_2___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_CvPoint_2___paren_asgn" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = (CvPoint *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_CvPoint_2___brace (const octave_value_list& args, int nargout) { - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_CvPoint_2___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2___brace" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_CvPoint_2___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvPoint *) &(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_CvPoint_2___brace_asgn (const octave_value_list& args, int nargout) { - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - int arg2 ; - CvPoint *arg3 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_CvPoint_2___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2___brace_asgn" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_CvPoint_2___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_CvPoint_2___brace_asgn" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = (CvPoint *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTuple_CvPoint_2 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!SWIG_check_num_args("new_CvTuple_CvPoint_2",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTuple< CvPoint,2 > *)new CvTuple< CvPoint,2 >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTuple_CvPoint_2 (const octave_value_list& args, int nargout) { - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTuple_CvPoint_2",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTuple_CvPoint_2" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = (CvTuple< CvPoint,2 > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTuple_CvPoint_2_members[] = { -{"val",0,_wrap_CvTuple_CvPoint_2_val_get,_wrap_CvTuple_CvPoint_2_val_set,0,0}, -{"__paren",_wrap_CvTuple_CvPoint_2___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvTuple_CvPoint_2___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvTuple_CvPoint_2___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvTuple_CvPoint_2___brace_asgn,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTuple_CvPoint_2_base_names[] = {0}; -static const swig_type_info *swig_CvTuple_CvPoint_2_base[] = {0}; -static swig_octave_class _wrap_class_CvTuple_CvPoint_2 = {"CvTuple_CvPoint_2", &SWIGTYPE_p_CvTupleT_CvPoint_2_t,0,_wrap_new_CvTuple_CvPoint_2,0,_wrap_delete_CvTuple_CvPoint_2,swig_CvTuple_CvPoint_2_members,swig_CvTuple_CvPoint_2_base_names,swig_CvTuple_CvPoint_2_base }; - -static octave_value_list _wrap_CvTuple_float_2_val_set (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - float *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_float_2_val_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2_val_set" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTuple_float_2_val_set" "', argument " "2"" of type '" "float [2]""'"); - } - arg2 = (float *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""float [2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_2_val_get (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_float_2_val_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2_val_get" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - result = (float *)(float *) ((arg1)->val); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_2___paren (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_float_2___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2___paren" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_2___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (float *) &(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(*result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_2___paren_asgn (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_float_2___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2___paren_asgn" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_2___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_float_2___paren_asgn" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_2___brace (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_float_2___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2___brace" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_2___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (float *) &(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(*result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_2___brace_asgn (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_float_2___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2___brace_asgn" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_2___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_float_2___brace_asgn" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTuple_float_2 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,2 > *result = 0 ; - - if (!SWIG_check_num_args("new_CvTuple_float_2",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTuple< float,2 > *)new CvTuple< float,2 >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTuple_float_2 (const octave_value_list& args, int nargout) { - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTuple_float_2",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_2_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTuple_float_2" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = (CvTuple< float,2 > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTuple_float_2_members[] = { -{"val",0,_wrap_CvTuple_float_2_val_get,_wrap_CvTuple_float_2_val_set,0,0}, -{"__paren",_wrap_CvTuple_float_2___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvTuple_float_2___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvTuple_float_2___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvTuple_float_2___brace_asgn,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTuple_float_2_base_names[] = {0}; -static const swig_type_info *swig_CvTuple_float_2_base[] = {0}; -static swig_octave_class _wrap_class_CvTuple_float_2 = {"CvTuple_float_2", &SWIGTYPE_p_CvTupleT_float_2_t,0,_wrap_new_CvTuple_float_2,0,_wrap_delete_CvTuple_float_2,swig_CvTuple_float_2_members,swig_CvTuple_float_2_base_names,swig_CvTuple_float_2_base }; - -static octave_value_list _wrap_CvTuple_float_3_val_set (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - float *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_float_3_val_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3_val_set" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTuple_float_3_val_set" "', argument " "2"" of type '" "float [2]""'"); - } - arg2 = (float *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""float [2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_3_val_get (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_float_3_val_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3_val_get" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - result = (float *)(float *) ((arg1)->val); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_3___paren (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_float_3___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3___paren" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_3___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (float *) &(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(*result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_3___paren_asgn (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_float_3___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3___paren_asgn" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_3___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_float_3___paren_asgn" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_3___brace (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTuple_float_3___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3___brace" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_3___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (float *) &(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(*result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTuple_float_3___brace_asgn (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTuple_float_3___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3___brace_asgn" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_3___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_float_3___brace_asgn" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTuple_float_3 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,3 > *result = 0 ; - - if (!SWIG_check_num_args("new_CvTuple_float_3",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTuple< float,3 > *)new CvTuple< float,3 >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTuple_float_3 (const octave_value_list& args, int nargout) { - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTuple_float_3",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTupleT_float_3_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTuple_float_3" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = (CvTuple< float,3 > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTuple_float_3_members[] = { -{"val",0,_wrap_CvTuple_float_3_val_get,_wrap_CvTuple_float_3_val_set,0,0}, -{"__paren",_wrap_CvTuple_float_3___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvTuple_float_3___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvTuple_float_3___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvTuple_float_3___brace_asgn,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTuple_float_3_base_names[] = {0}; -static const swig_type_info *swig_CvTuple_float_3_base[] = {0}; -static swig_octave_class _wrap_class_CvTuple_float_3 = {"CvTuple_float_3", &SWIGTYPE_p_CvTupleT_float_3_t,0,_wrap_new_CvTuple_float_3,0,_wrap_delete_CvTuple_float_3,swig_CvTuple_float_3_members,swig_CvTuple_float_3_base_names,swig_CvTuple_float_3_base }; - -static octave_value_list _wrap_CvSeq_CvPoint_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvPoint > *)CvTypedSeq< CvPoint >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint___paren" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvPoint *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - int arg2 ; - CvPoint *arg3 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint___paren_asgn" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = (CvPoint *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint___brace" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvPoint *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - int arg2 ; - CvPoint *arg3 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint___brace_asgn" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = (CvPoint *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_append" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvPoint_append" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = (CvPoint *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_pop" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - { - try { - result = (CvPoint *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvPoint (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvPoint",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvPoint > *)new CvTypedSeq< CvPoint >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvPoint (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvPoint",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvPoint" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = (CvTypedSeq< CvPoint > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvPoint_members[] = { -{"cast",_wrap_CvSeq_CvPoint_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvPoint___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvPoint___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvPoint___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvPoint___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvPoint_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvPoint_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvPoint_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvPoint_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvPoint = {"CvSeq_CvPoint", &SWIGTYPE_p_CvTypedSeqT_CvPoint_t,0,_wrap_new_CvSeq_CvPoint,0,_wrap_delete_CvSeq_CvPoint,swig_CvSeq_CvPoint_members,swig_CvSeq_CvPoint_base_names,swig_CvSeq_CvPoint_base }; - -static octave_value_list _wrap_CvSeq_CvPoint2D32f_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvPoint2D32f > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvPoint2D32f > *)CvTypedSeq< CvPoint2D32f >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint2D32f___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f___paren" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint2D32f___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvPoint2D32f *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint2D32f___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - int arg2 ; - CvPoint2D32f *arg3 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint2D32f___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint2D32f___paren_asgn" "', argument " "3"" of type '" "CvPoint2D32f *""'"); - } - arg3 = (CvPoint2D32f *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint2D32f___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f___brace" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint2D32f___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvPoint2D32f *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint2D32f___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - int arg2 ; - CvPoint2D32f *arg3 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint2D32f___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint2D32f___brace_asgn" "', argument " "3"" of type '" "CvPoint2D32f *""'"); - } - arg3 = (CvPoint2D32f *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint2D32f_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f_append" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvPoint2D32f_append" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = (CvPoint2D32f *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint2D32f_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPoint2D32f *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint2D32f_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f_pop" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - { - try { - result = (CvPoint2D32f *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvPoint2D32f (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvPoint2D32f > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvPoint2D32f",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvPoint2D32f > *)new CvTypedSeq< CvPoint2D32f >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvPoint2D32f (const octave_value_list& args, int nargout) { - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvPoint2D32f",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvPoint2D32f" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = (CvTypedSeq< CvPoint2D32f > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvPoint2D32f_members[] = { -{"cast",_wrap_CvSeq_CvPoint2D32f_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvPoint2D32f___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvPoint2D32f___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvPoint2D32f___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvPoint2D32f___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvPoint2D32f_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvPoint2D32f_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvPoint2D32f_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvPoint2D32f_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvPoint2D32f = {"CvSeq_CvPoint2D32f", &SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t,0,_wrap_new_CvSeq_CvPoint2D32f,0,_wrap_delete_CvSeq_CvPoint2D32f,swig_CvSeq_CvPoint2D32f_members,swig_CvSeq_CvPoint2D32f_base_names,swig_CvSeq_CvPoint2D32f_base }; - -static octave_value_list _wrap_CvSeq_CvRect_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvRect_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvRect > *)CvTypedSeq< CvRect >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvRect___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvRect___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect___paren" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvRect___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvRect *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvRect___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - int arg2 ; - CvRect *arg3 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvRect___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvRect___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvRect___paren_asgn" "', argument " "3"" of type '" "CvRect *""'"); - } - arg3 = (CvRect *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvRect___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvRect___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect___brace" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvRect___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvRect *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvRect___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - int arg2 ; - CvRect *arg3 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvRect___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvRect___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvRect___brace_asgn" "', argument " "3"" of type '" "CvRect *""'"); - } - arg3 = (CvRect *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvRect_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvRect_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect_append" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvRect_append" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = (CvRect *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvRect_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRect *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvRect_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect_pop" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - { - try { - result = (CvRect *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvRect (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvRect > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvRect",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvRect > *)new CvTypedSeq< CvRect >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvRect (const octave_value_list& args, int nargout) { - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvRect",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvRect" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = (CvTypedSeq< CvRect > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvRect_members[] = { -{"cast",_wrap_CvSeq_CvRect_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvRect___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvRect___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvRect___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvRect___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvRect_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvRect_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvRect_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvRect_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvRect = {"CvSeq_CvRect", &SWIGTYPE_p_CvTypedSeqT_CvRect_t,0,_wrap_new_CvSeq_CvRect,0,_wrap_delete_CvSeq_CvRect,swig_CvSeq_CvRect_members,swig_CvSeq_CvRect_base_names,swig_CvSeq_CvRect_base }; - -static octave_value_list _wrap_CvSeq_CvSeq_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvSeq * > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvSeq_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvSeq * > *)CvTypedSeq< CvSeq * >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvSeq___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq **result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvSeq___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq___paren" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvSeq___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvSeq **)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvSeq___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - int arg2 ; - CvSeq **arg3 = (CvSeq **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - CvSeq *buffer3 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvSeq___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvSeq___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - if ((SWIG_ConvertPtr(args(2), &vptr3, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSeq *) vptr3; - arg3=&buffer3; - } - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvSeq___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq **result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvSeq___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq___brace" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvSeq___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvSeq **)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvSeq___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - int arg2 ; - CvSeq **arg3 = (CvSeq **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - CvSeq *buffer3 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvSeq___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvSeq___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - if ((SWIG_ConvertPtr(args(2), &vptr3, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSeq *) vptr3; - arg3=&buffer3; - } - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvSeq_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - CvSeq **arg2 = (CvSeq **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - CvSeq *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvSeq_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq_append" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvSeq *) vptr2; - arg2=&buffer2; - } - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvSeq_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq **result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvSeq_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq_pop" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - { - try { - result = (CvSeq **)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvSeq (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvSeq * > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvSeq",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvSeq * > *)new CvTypedSeq< CvSeq * >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvSeq (const octave_value_list& args, int nargout) { - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvSeq",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvSeq" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = (CvTypedSeq< CvSeq * > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvSeq_members[] = { -{"cast",_wrap_CvSeq_CvSeq_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvSeq___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvSeq___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvSeq___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvSeq___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvSeq_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvSeq_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvSeq_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvSeq_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvSeq = {"CvSeq_CvSeq", &SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t,0,_wrap_new_CvSeq_CvSeq,0,_wrap_delete_CvSeq_CvSeq,swig_CvSeq_CvSeq_members,swig_CvSeq_CvSeq_base_names,swig_CvSeq_CvSeq_base }; - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)CvTypedSeq< CvQuadEdge2D >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvQuadEdge2D *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D___paren" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvQuadEdge2D___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvQuadEdge2D *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - int arg2 ; - CvQuadEdge2D *arg3 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvQuadEdge2D___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvQuadEdge2D___paren_asgn" "', argument " "3"" of type '" "CvQuadEdge2D *""'"); - } - arg3 = (CvQuadEdge2D *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvQuadEdge2D *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D___brace" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvQuadEdge2D___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvQuadEdge2D *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - int arg2 ; - CvQuadEdge2D *arg3 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvQuadEdge2D___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvQuadEdge2D___brace_asgn" "', argument " "3"" of type '" "CvQuadEdge2D *""'"); - } - arg3 = (CvQuadEdge2D *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - CvQuadEdge2D *arg2 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D_append" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvQuadEdge2D_append" "', argument " "2"" of type '" "CvQuadEdge2D *""'"); - } - arg2 = (CvQuadEdge2D *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvQuadEdge2D_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvQuadEdge2D *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvQuadEdge2D_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D_pop" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - { - try { - result = (CvQuadEdge2D *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvQuadEdge2D (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvQuadEdge2D",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)new CvTypedSeq< CvQuadEdge2D >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvQuadEdge2D (const octave_value_list& args, int nargout) { - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvQuadEdge2D",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvQuadEdge2D" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = (CvTypedSeq< CvQuadEdge2D > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvQuadEdge2D_members[] = { -{"cast",_wrap_CvSeq_CvQuadEdge2D_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvQuadEdge2D___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvQuadEdge2D___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvQuadEdge2D___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvQuadEdge2D___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvQuadEdge2D_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvQuadEdge2D_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvQuadEdge2D_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvQuadEdge2D_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvQuadEdge2D = {"CvSeq_CvQuadEdge2D", &SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t,0,_wrap_new_CvSeq_CvQuadEdge2D,0,_wrap_delete_CvSeq_CvQuadEdge2D,swig_CvSeq_CvQuadEdge2D_members,swig_CvSeq_CvQuadEdge2D_base_names,swig_CvSeq_CvQuadEdge2D_base }; - -static octave_value_list _wrap_CvSeq_CvConnectedComp_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvConnectedComp > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvConnectedComp > *)CvTypedSeq< CvConnectedComp >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvConnectedComp___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvConnectedComp *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp___paren" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvConnectedComp___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvConnectedComp *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvConnectedComp___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - int arg2 ; - CvConnectedComp *arg3 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvConnectedComp___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvConnectedComp___paren_asgn" "', argument " "3"" of type '" "CvConnectedComp *""'"); - } - arg3 = (CvConnectedComp *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvConnectedComp___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvConnectedComp *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp___brace" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvConnectedComp___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvConnectedComp *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvConnectedComp___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - int arg2 ; - CvConnectedComp *arg3 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvConnectedComp___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvConnectedComp___brace_asgn" "', argument " "3"" of type '" "CvConnectedComp *""'"); - } - arg3 = (CvConnectedComp *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvConnectedComp_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - CvConnectedComp *arg2 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp_append" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvConnectedComp_append" "', argument " "2"" of type '" "CvConnectedComp *""'"); - } - arg2 = (CvConnectedComp *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvConnectedComp_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvConnectedComp *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvConnectedComp_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp_pop" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - { - try { - result = (CvConnectedComp *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvConnectedComp (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvConnectedComp > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvConnectedComp",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvConnectedComp > *)new CvTypedSeq< CvConnectedComp >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvConnectedComp (const octave_value_list& args, int nargout) { - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvConnectedComp",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvConnectedComp" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = (CvTypedSeq< CvConnectedComp > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvConnectedComp_members[] = { -{"cast",_wrap_CvSeq_CvConnectedComp_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvConnectedComp___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvConnectedComp___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvConnectedComp___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvConnectedComp___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvConnectedComp_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvConnectedComp_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvConnectedComp_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvConnectedComp_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvConnectedComp = {"CvSeq_CvConnectedComp", &SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t,0,_wrap_new_CvSeq_CvConnectedComp,0,_wrap_delete_CvSeq_CvConnectedComp,swig_CvSeq_CvConnectedComp_members,swig_CvSeq_CvConnectedComp_base_names,swig_CvSeq_CvConnectedComp_base }; - -static octave_value_list _wrap_CvSeq_CvPoint_2_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvTuple< CvPoint,2 > > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvTuple< CvPoint,2 > > *)CvTypedSeq< CvTuple< CvPoint,2 > >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_2___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2___paren" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint_2___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvTuple< CvPoint,2 > *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_2___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - int arg2 ; - CvTuple< CvPoint,2 > *arg3 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint_2___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint_2___paren_asgn" "', argument " "3"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg3 = (CvTuple< CvPoint,2 > *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_2___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2___brace" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint_2___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvTuple< CvPoint,2 > *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_2___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - int arg2 ; - CvTuple< CvPoint,2 > *arg3 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint_2___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint_2___brace_asgn" "', argument " "3"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg3 = (CvTuple< CvPoint,2 > *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_2_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - CvTuple< CvPoint,2 > *arg2 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2_append" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvPoint_2_append" "', argument " "2"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg2 = (CvTuple< CvPoint,2 > *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_CvPoint_2_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_CvPoint_2_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2_pop" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - { - try { - result = (CvTuple< CvPoint,2 > *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_CvPoint_2 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvTuple< CvPoint,2 > > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_CvPoint_2",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvTuple< CvPoint,2 > > *)new CvTypedSeq< CvTuple< CvPoint,2 > >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_CvPoint_2 (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_CvPoint_2",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvPoint_2" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_CvPoint_2_members[] = { -{"cast",_wrap_CvSeq_CvPoint_2_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_CvPoint_2___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_CvPoint_2___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_CvPoint_2___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_CvPoint_2___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_CvPoint_2_append,0,0,0,0}, -{"pop",_wrap_CvSeq_CvPoint_2_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_CvPoint_2_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_CvPoint_2_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_CvPoint_2 = {"CvSeq_CvPoint_2", &SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t,0,_wrap_new_CvSeq_CvPoint_2,0,_wrap_delete_CvSeq_CvPoint_2,swig_CvSeq_CvPoint_2_members,swig_CvSeq_CvPoint_2_base_names,swig_CvSeq_CvPoint_2_base }; - -static octave_value_list _wrap_CvSeq_float_2_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvTuple< float,2 > > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_2_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvTuple< float,2 > > *)CvTypedSeq< CvTuple< float,2 > >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_2___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,2 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_2___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2___paren" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_2___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvTuple< float,2 > *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_2___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - int arg2 ; - CvTuple< float,2 > *arg3 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_float_2___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_2___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_float_2___paren_asgn" "', argument " "3"" of type '" "CvTuple< float,2 > *""'"); - } - arg3 = (CvTuple< float,2 > *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_2___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,2 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_2___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2___brace" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_2___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvTuple< float,2 > *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_2___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - int arg2 ; - CvTuple< float,2 > *arg3 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_float_2___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_2___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_float_2___brace_asgn" "', argument " "3"" of type '" "CvTuple< float,2 > *""'"); - } - arg3 = (CvTuple< float,2 > *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_2_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - CvTuple< float,2 > *arg2 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_float_2_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2_append" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_float_2_append" "', argument " "2"" of type '" "CvTuple< float,2 > *""'"); - } - arg2 = (CvTuple< float,2 > *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_2_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,2 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_2_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2_pop" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - { - try { - result = (CvTuple< float,2 > *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_float_2 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvTuple< float,2 > > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_float_2",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvTuple< float,2 > > *)new CvTypedSeq< CvTuple< float,2 > >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_float_2 (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_float_2",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_float_2" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,2 > > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_float_2_members[] = { -{"cast",_wrap_CvSeq_float_2_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_float_2___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_float_2___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_float_2___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_float_2___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_float_2_append,0,0,0,0}, -{"pop",_wrap_CvSeq_float_2_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_float_2_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_float_2_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_float_2 = {"CvSeq_float_2", &SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t,0,_wrap_new_CvSeq_float_2,0,_wrap_delete_CvSeq_float_2,swig_CvSeq_float_2_members,swig_CvSeq_float_2_base_names,swig_CvSeq_float_2_base }; - -static octave_value_list _wrap_CvSeq_float_3_cast (const octave_value_list& args, int nargout) { - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvTuple< float,3 > > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_3_cast",args.length(),1,1,0)) { - SWIG_fail; - } - { - if( SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(args(0), &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvTuple< float,3 > > *)CvTypedSeq< CvTuple< float,3 > >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_3___paren (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,3 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_3___paren",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3___paren" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_3___paren" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvTuple< float,3 > *)(arg1)->__paren(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_3___paren_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - int arg2 ; - CvTuple< float,3 > *arg3 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_float_3___paren_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3___paren_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_3___paren_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_float_3___paren_asgn" "', argument " "3"" of type '" "CvTuple< float,3 > *""'"); - } - arg3 = (CvTuple< float,3 > *)(argp3); - { - try { - (arg1)->__paren_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_3___brace (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,3 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_3___brace",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3___brace" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_3___brace" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvTuple< float,3 > *)(arg1)->__brace(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_3___brace_asgn (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - int arg2 ; - CvTuple< float,3 > *arg3 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_float_3___brace_asgn",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3___brace_asgn" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_3___brace_asgn" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_float_3___brace_asgn" "', argument " "3"" of type '" "CvTuple< float,3 > *""'"); - } - arg3 = (CvTuple< float,3 > *)(argp3); - { - try { - (arg1)->__brace_asgn(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_3_append (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - CvTuple< float,3 > *arg2 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSeq_float_3_append",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3_append" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_float_3_append" "', argument " "2"" of type '" "CvTuple< float,3 > *""'"); - } - arg2 = (CvTuple< float,3 > *)(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSeq_float_3_pop (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTuple< float,3 > *result = 0 ; - - if (!SWIG_check_num_args("CvSeq_float_3_pop",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3_pop" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - { - try { - result = (CvTuple< float,3 > *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSeq_float_3 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTypedSeq< CvTuple< float,3 > > *result = 0 ; - - if (!SWIG_check_num_args("new_CvSeq_float_3",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTypedSeq< CvTuple< float,3 > > *)new CvTypedSeq< CvTuple< float,3 > >(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSeq_float_3 (const octave_value_list& args, int nargout) { - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSeq_float_3",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_float_3" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = (CvTypedSeq< CvTuple< float,3 > > *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSeq_float_3_members[] = { -{"cast",_wrap_CvSeq_float_3_cast,0,0,1,0}, -{"__paren",_wrap_CvSeq_float_3___paren,0,0,0,0}, -{"__paren_asgn",_wrap_CvSeq_float_3___paren_asgn,0,0,0,0}, -{"__brace",_wrap_CvSeq_float_3___brace,0,0,0,0}, -{"__brace_asgn",_wrap_CvSeq_float_3___brace_asgn,0,0,0,0}, -{"append",_wrap_CvSeq_float_3_append,0,0,0,0}, -{"pop",_wrap_CvSeq_float_3_pop,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSeq_float_3_base_names[] = {"_p_CvSeq",0}; -static const swig_type_info *swig_CvSeq_float_3_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSeq_float_3 = {"CvSeq_float_3", &SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t,0,_wrap_new_CvSeq_float_3,0,_wrap_delete_CvSeq_float_3,swig_CvSeq_float_3_members,swig_CvSeq_float_3_base_names,swig_CvSeq_float_3_base }; - - -static const struct swig_octave_member swig_globals[] = { -{"new_CvRNG_Wrapper",_wrap_new_CvRNG_Wrapper,0,0,2,_wrap_new_CvRNG_Wrapper_texinfo}, -{"CvRNG_Wrapper_ptr",_wrap_CvRNG_Wrapper_ptr,0,0,2,_wrap_CvRNG_Wrapper_ptr_texinfo}, -{"CvRNG_Wrapper_ref",_wrap_CvRNG_Wrapper_ref,0,0,2,_wrap_CvRNG_Wrapper_ref_texinfo}, -{"CvRNG_Wrapper___eq__",_wrap_CvRNG_Wrapper___eq__,0,0,2,_wrap_CvRNG_Wrapper___eq___texinfo}, -{"CvRNG_Wrapper___ne__",_wrap_CvRNG_Wrapper___ne__,0,0,2,_wrap_CvRNG_Wrapper___ne___texinfo}, -{"delete_CvRNG_Wrapper",_wrap_delete_CvRNG_Wrapper,0,0,2,_wrap_delete_CvRNG_Wrapper_texinfo}, -{"new_CvSubdiv2DEdge_Wrapper",_wrap_new_CvSubdiv2DEdge_Wrapper,0,0,2,_wrap_new_CvSubdiv2DEdge_Wrapper_texinfo}, -{"CvSubdiv2DEdge_Wrapper_ptr",_wrap_CvSubdiv2DEdge_Wrapper_ptr,0,0,2,_wrap_CvSubdiv2DEdge_Wrapper_ptr_texinfo}, -{"CvSubdiv2DEdge_Wrapper_ref",_wrap_CvSubdiv2DEdge_Wrapper_ref,0,0,2,_wrap_CvSubdiv2DEdge_Wrapper_ref_texinfo}, -{"CvSubdiv2DEdge_Wrapper___eq__",_wrap_CvSubdiv2DEdge_Wrapper___eq__,0,0,2,_wrap_CvSubdiv2DEdge_Wrapper___eq___texinfo}, -{"CvSubdiv2DEdge_Wrapper___ne__",_wrap_CvSubdiv2DEdge_Wrapper___ne__,0,0,2,_wrap_CvSubdiv2DEdge_Wrapper___ne___texinfo}, -{"delete_CvSubdiv2DEdge_Wrapper",_wrap_delete_CvSubdiv2DEdge_Wrapper,0,0,2,_wrap_delete_CvSubdiv2DEdge_Wrapper_texinfo}, -{"delete_OctSwigIterator",_wrap_delete_OctSwigIterator,0,0,2,_wrap_delete_OctSwigIterator_texinfo}, -{"OctSwigIterator_value",_wrap_OctSwigIterator_value,0,0,2,_wrap_OctSwigIterator_value_texinfo}, -{"OctSwigIterator_incr",_wrap_OctSwigIterator_incr,0,0,2,_wrap_OctSwigIterator_incr_texinfo}, -{"OctSwigIterator_decr",_wrap_OctSwigIterator_decr,0,0,2,_wrap_OctSwigIterator_decr_texinfo}, -{"OctSwigIterator_distance",_wrap_OctSwigIterator_distance,0,0,2,_wrap_OctSwigIterator_distance_texinfo}, -{"OctSwigIterator_equal",_wrap_OctSwigIterator_equal,0,0,2,_wrap_OctSwigIterator_equal_texinfo}, -{"OctSwigIterator_copy",_wrap_OctSwigIterator_copy,0,0,2,_wrap_OctSwigIterator_copy_texinfo}, -{"OctSwigIterator_next",_wrap_OctSwigIterator_next,0,0,2,_wrap_OctSwigIterator_next_texinfo}, -{"OctSwigIterator_previous",_wrap_OctSwigIterator_previous,0,0,2,_wrap_OctSwigIterator_previous_texinfo}, -{"OctSwigIterator_advance",_wrap_OctSwigIterator_advance,0,0,2,_wrap_OctSwigIterator_advance_texinfo}, -{"OctSwigIterator___eq__",_wrap_OctSwigIterator___eq__,0,0,2,_wrap_OctSwigIterator___eq___texinfo}, -{"OctSwigIterator___ne__",_wrap_OctSwigIterator___ne__,0,0,2,_wrap_OctSwigIterator___ne___texinfo}, -{"OctSwigIterator___incr__",_wrap_OctSwigIterator___incr__,0,0,2,_wrap_OctSwigIterator___incr___texinfo}, -{"OctSwigIterator___decr__",_wrap_OctSwigIterator___decr__,0,0,2,_wrap_OctSwigIterator___decr___texinfo}, -{"OctSwigIterator___add__",_wrap_OctSwigIterator___add__,0,0,2,_wrap_OctSwigIterator___add___texinfo}, -{"OctSwigIterator___sub__",_wrap_OctSwigIterator___sub__,0,0,2,_wrap_OctSwigIterator___sub___texinfo}, -{"FloatVector_pop",_wrap_FloatVector_pop,0,0,2,_wrap_FloatVector_pop_texinfo}, -{"FloatVector___paren__",_wrap_FloatVector___paren__,0,0,2,_wrap_FloatVector___paren___texinfo}, -{"FloatVector___paren_asgn__",_wrap_FloatVector___paren_asgn__,0,0,2,_wrap_FloatVector___paren_asgn___texinfo}, -{"FloatVector_append",_wrap_FloatVector_append,0,0,2,_wrap_FloatVector_append_texinfo}, -{"FloatVector_empty",_wrap_FloatVector_empty,0,0,2,_wrap_FloatVector_empty_texinfo}, -{"FloatVector_size",_wrap_FloatVector_size,0,0,2,_wrap_FloatVector_size_texinfo}, -{"FloatVector_clear",_wrap_FloatVector_clear,0,0,2,_wrap_FloatVector_clear_texinfo}, -{"FloatVector_swap",_wrap_FloatVector_swap,0,0,2,_wrap_FloatVector_swap_texinfo}, -{"FloatVector_get_allocator",_wrap_FloatVector_get_allocator,0,0,2,_wrap_FloatVector_get_allocator_texinfo}, -{"FloatVector_begin",_wrap_FloatVector_begin,0,0,2,_wrap_FloatVector_begin_texinfo}, -{"FloatVector_end",_wrap_FloatVector_end,0,0,2,_wrap_FloatVector_end_texinfo}, -{"FloatVector_rbegin",_wrap_FloatVector_rbegin,0,0,2,_wrap_FloatVector_rbegin_texinfo}, -{"FloatVector_rend",_wrap_FloatVector_rend,0,0,2,_wrap_FloatVector_rend_texinfo}, -{"FloatVector_pop_back",_wrap_FloatVector_pop_back,0,0,2,_wrap_FloatVector_pop_back_texinfo}, -{"FloatVector_erase",_wrap_FloatVector_erase,0,0,2,_wrap_FloatVector_erase_texinfo}, -{"new_FloatVector",_wrap_new_FloatVector,0,0,2,_wrap_new_FloatVector_texinfo}, -{"FloatVector_push_back",_wrap_FloatVector_push_back,0,0,2,_wrap_FloatVector_push_back_texinfo}, -{"FloatVector_front",_wrap_FloatVector_front,0,0,2,_wrap_FloatVector_front_texinfo}, -{"FloatVector_back",_wrap_FloatVector_back,0,0,2,_wrap_FloatVector_back_texinfo}, -{"FloatVector_assign",_wrap_FloatVector_assign,0,0,2,_wrap_FloatVector_assign_texinfo}, -{"FloatVector_resize",_wrap_FloatVector_resize,0,0,2,_wrap_FloatVector_resize_texinfo}, -{"FloatVector_insert",_wrap_FloatVector_insert,0,0,2,_wrap_FloatVector_insert_texinfo}, -{"FloatVector_reserve",_wrap_FloatVector_reserve,0,0,2,_wrap_FloatVector_reserve_texinfo}, -{"FloatVector_capacity",_wrap_FloatVector_capacity,0,0,2,_wrap_FloatVector_capacity_texinfo}, -{"delete_FloatVector",_wrap_delete_FloatVector,0,0,2,_wrap_delete_FloatVector_texinfo}, -{"CvPointVector_pop",_wrap_CvPointVector_pop,0,0,2,_wrap_CvPointVector_pop_texinfo}, -{"CvPointVector___paren__",_wrap_CvPointVector___paren__,0,0,2,_wrap_CvPointVector___paren___texinfo}, -{"CvPointVector___paren_asgn__",_wrap_CvPointVector___paren_asgn__,0,0,2,_wrap_CvPointVector___paren_asgn___texinfo}, -{"CvPointVector_append",_wrap_CvPointVector_append,0,0,2,_wrap_CvPointVector_append_texinfo}, -{"CvPointVector_empty",_wrap_CvPointVector_empty,0,0,2,_wrap_CvPointVector_empty_texinfo}, -{"CvPointVector_size",_wrap_CvPointVector_size,0,0,2,_wrap_CvPointVector_size_texinfo}, -{"CvPointVector_clear",_wrap_CvPointVector_clear,0,0,2,_wrap_CvPointVector_clear_texinfo}, -{"CvPointVector_swap",_wrap_CvPointVector_swap,0,0,2,_wrap_CvPointVector_swap_texinfo}, -{"CvPointVector_get_allocator",_wrap_CvPointVector_get_allocator,0,0,2,_wrap_CvPointVector_get_allocator_texinfo}, -{"CvPointVector_begin",_wrap_CvPointVector_begin,0,0,2,_wrap_CvPointVector_begin_texinfo}, -{"CvPointVector_end",_wrap_CvPointVector_end,0,0,2,_wrap_CvPointVector_end_texinfo}, -{"CvPointVector_rbegin",_wrap_CvPointVector_rbegin,0,0,2,_wrap_CvPointVector_rbegin_texinfo}, -{"CvPointVector_rend",_wrap_CvPointVector_rend,0,0,2,_wrap_CvPointVector_rend_texinfo}, -{"CvPointVector_pop_back",_wrap_CvPointVector_pop_back,0,0,2,_wrap_CvPointVector_pop_back_texinfo}, -{"CvPointVector_erase",_wrap_CvPointVector_erase,0,0,2,_wrap_CvPointVector_erase_texinfo}, -{"new_CvPointVector",_wrap_new_CvPointVector,0,0,2,_wrap_new_CvPointVector_texinfo}, -{"CvPointVector_push_back",_wrap_CvPointVector_push_back,0,0,2,_wrap_CvPointVector_push_back_texinfo}, -{"CvPointVector_front",_wrap_CvPointVector_front,0,0,2,_wrap_CvPointVector_front_texinfo}, -{"CvPointVector_back",_wrap_CvPointVector_back,0,0,2,_wrap_CvPointVector_back_texinfo}, -{"CvPointVector_assign",_wrap_CvPointVector_assign,0,0,2,_wrap_CvPointVector_assign_texinfo}, -{"CvPointVector_resize",_wrap_CvPointVector_resize,0,0,2,_wrap_CvPointVector_resize_texinfo}, -{"CvPointVector_insert",_wrap_CvPointVector_insert,0,0,2,_wrap_CvPointVector_insert_texinfo}, -{"CvPointVector_reserve",_wrap_CvPointVector_reserve,0,0,2,_wrap_CvPointVector_reserve_texinfo}, -{"CvPointVector_capacity",_wrap_CvPointVector_capacity,0,0,2,_wrap_CvPointVector_capacity_texinfo}, -{"delete_CvPointVector",_wrap_delete_CvPointVector,0,0,2,_wrap_delete_CvPointVector_texinfo}, -{"cvCvtSeqToArray",_wrap_cvCvtSeqToArray,0,0,2,_wrap_cvCvtSeqToArray_texinfo}, -{"cvArcLength",_wrap_cvArcLength,0,0,2,_wrap_cvArcLength_texinfo}, -{"cvContourPerimeter",_wrap_cvContourPerimeter,0,0,2,_wrap_cvContourPerimeter_texinfo}, -{"cvHaarDetectObjects",_wrap_cvHaarDetectObjects,0,0,2,_wrap_cvHaarDetectObjects_texinfo}, -{"cvSegmentMotion",_wrap_cvSegmentMotion,0,0,2,_wrap_cvSegmentMotion_texinfo}, -{"cvApproxPoly",_wrap_cvApproxPoly,0,0,2,_wrap_cvApproxPoly_texinfo}, -{"cvConvexHull2",_wrap_cvConvexHull2,0,0,2,_wrap_cvConvexHull2_texinfo}, -{"cvSnakeImage",_wrap_cvSnakeImage,0,0,2,_wrap_cvSnakeImage_texinfo}, -{"cvFree",_wrap_cvFree,0,0,2,_wrap_cvFree_texinfo}, -{"CV_READ_CHAIN_POINT",_wrap_CV_READ_CHAIN_POINT,0,0,2,_wrap_CV_READ_CHAIN_POINT_texinfo}, -{"CV_MAT_ELEM_PTR",_wrap_CV_MAT_ELEM_PTR,0,0,2,_wrap_CV_MAT_ELEM_PTR_texinfo}, -{"CV_MAT_ELEM_PTR_FAST",_wrap_CV_MAT_ELEM_PTR_FAST,0,0,2,_wrap_CV_MAT_ELEM_PTR_FAST_texinfo}, -{"CV_NODE_VAL",_wrap_CV_NODE_VAL,0,0,2,_wrap_CV_NODE_VAL_texinfo}, -{"CV_NODE_IDX",_wrap_CV_NODE_IDX,0,0,2,_wrap_CV_NODE_IDX_texinfo}, -{"CV_SUBDIV2D_NEXT_EDGE",_wrap_CV_SUBDIV2D_NEXT_EDGE,0,0,2,_wrap_CV_SUBDIV2D_NEXT_EDGE_texinfo}, -{"CV_SWAP",_wrap_CV_SWAP,0,0,2,_wrap_CV_SWAP_texinfo}, -{"CV_IMIN",_wrap_CV_IMIN,0,0,2,_wrap_CV_IMIN_texinfo}, -{"CV_IMAX",_wrap_CV_IMAX,0,0,2,_wrap_CV_IMAX_texinfo}, -{"CV_IABS",_wrap_CV_IABS,0,0,2,_wrap_CV_IABS_texinfo}, -{"CV_CMP",_wrap_CV_CMP,0,0,2,_wrap_CV_CMP_texinfo}, -{"CV_SIGN",_wrap_CV_SIGN,0,0,2,_wrap_CV_SIGN_texinfo}, -{"cvInvSqrt",_wrap_cvInvSqrt,0,0,2,_wrap_cvInvSqrt_texinfo}, -{"cvSqrt",_wrap_cvSqrt,0,0,2,_wrap_cvSqrt_texinfo}, -{"CV_IS_IMAGE_HDR",_wrap_CV_IS_IMAGE_HDR,0,0,2,_wrap_CV_IS_IMAGE_HDR_texinfo}, -{"CV_IS_IMAGE",_wrap_CV_IS_IMAGE,0,0,2,_wrap_CV_IS_IMAGE_texinfo}, -{"CV_MAT_DEPTH",_wrap_CV_MAT_DEPTH,0,0,2,_wrap_CV_MAT_DEPTH_texinfo}, -{"CV_MAKETYPE",_wrap_CV_MAKETYPE,0,0,2,_wrap_CV_MAKETYPE_texinfo}, -{"CV_8UC",_wrap_CV_8UC,0,0,2,_wrap_CV_8UC_texinfo}, -{"CV_8SC",_wrap_CV_8SC,0,0,2,_wrap_CV_8SC_texinfo}, -{"CV_16UC",_wrap_CV_16UC,0,0,2,_wrap_CV_16UC_texinfo}, -{"CV_16SC",_wrap_CV_16SC,0,0,2,_wrap_CV_16SC_texinfo}, -{"CV_32SC",_wrap_CV_32SC,0,0,2,_wrap_CV_32SC_texinfo}, -{"CV_32FC",_wrap_CV_32FC,0,0,2,_wrap_CV_32FC_texinfo}, -{"CV_64FC",_wrap_CV_64FC,0,0,2,_wrap_CV_64FC_texinfo}, -{"CV_MAT_CN",_wrap_CV_MAT_CN,0,0,2,_wrap_CV_MAT_CN_texinfo}, -{"CV_MAT_TYPE",_wrap_CV_MAT_TYPE,0,0,2,_wrap_CV_MAT_TYPE_texinfo}, -{"CV_IS_MAT_CONT",_wrap_CV_IS_MAT_CONT,0,0,2,_wrap_CV_IS_MAT_CONT_texinfo}, -{"CV_IS_TEMP_MAT",_wrap_CV_IS_TEMP_MAT,0,0,2,_wrap_CV_IS_TEMP_MAT_texinfo}, -{"CV_IS_MAT_HDR",_wrap_CV_IS_MAT_HDR,0,0,2,_wrap_CV_IS_MAT_HDR_texinfo}, -{"CV_IS_MAT",_wrap_CV_IS_MAT,0,0,2,_wrap_CV_IS_MAT_texinfo}, -{"CV_IS_MASK_ARR",_wrap_CV_IS_MASK_ARR,0,0,2,_wrap_CV_IS_MASK_ARR_texinfo}, -{"CV_ARE_TYPES_EQ",_wrap_CV_ARE_TYPES_EQ,0,0,2,_wrap_CV_ARE_TYPES_EQ_texinfo}, -{"CV_ARE_CNS_EQ",_wrap_CV_ARE_CNS_EQ,0,0,2,_wrap_CV_ARE_CNS_EQ_texinfo}, -{"CV_ARE_DEPTHS_EQ",_wrap_CV_ARE_DEPTHS_EQ,0,0,2,_wrap_CV_ARE_DEPTHS_EQ_texinfo}, -{"CV_ARE_SIZES_EQ",_wrap_CV_ARE_SIZES_EQ,0,0,2,_wrap_CV_ARE_SIZES_EQ_texinfo}, -{"CV_IS_MAT_CONST",_wrap_CV_IS_MAT_CONST,0,0,2,_wrap_CV_IS_MAT_CONST_texinfo}, -{"CV_ELEM_SIZE1",_wrap_CV_ELEM_SIZE1,0,0,2,_wrap_CV_ELEM_SIZE1_texinfo}, -{"CV_ELEM_SIZE",_wrap_CV_ELEM_SIZE,0,0,2,_wrap_CV_ELEM_SIZE_texinfo}, -{"CV_IS_MATND_HDR",_wrap_CV_IS_MATND_HDR,0,0,2,_wrap_CV_IS_MATND_HDR_texinfo}, -{"CV_IS_MATND",_wrap_CV_IS_MATND,0,0,2,_wrap_CV_IS_MATND_texinfo}, -{"CV_IS_SPARSE_MAT_HDR",_wrap_CV_IS_SPARSE_MAT_HDR,0,0,2,_wrap_CV_IS_SPARSE_MAT_HDR_texinfo}, -{"CV_IS_SPARSE_MAT",_wrap_CV_IS_SPARSE_MAT,0,0,2,_wrap_CV_IS_SPARSE_MAT_texinfo}, -{"CV_IS_HIST",_wrap_CV_IS_HIST,0,0,2,_wrap_CV_IS_HIST_texinfo}, -{"CV_IS_UNIFORM_HIST",_wrap_CV_IS_UNIFORM_HIST,0,0,2,_wrap_CV_IS_UNIFORM_HIST_texinfo}, -{"CV_IS_SPARSE_HIST",_wrap_CV_IS_SPARSE_HIST,0,0,2,_wrap_CV_IS_SPARSE_HIST_texinfo}, -{"CV_HIST_HAS_RANGES",_wrap_CV_HIST_HAS_RANGES,0,0,2,_wrap_CV_HIST_HAS_RANGES_texinfo}, -{"CV_IS_STORAGE",_wrap_CV_IS_STORAGE,0,0,2,_wrap_CV_IS_STORAGE_texinfo}, -{"CV_IS_SET_ELEM",_wrap_CV_IS_SET_ELEM,0,0,2,_wrap_CV_IS_SET_ELEM_texinfo}, -{"CV_IS_SEQ",_wrap_CV_IS_SEQ,0,0,2,_wrap_CV_IS_SEQ_texinfo}, -{"CV_IS_SET",_wrap_CV_IS_SET,0,0,2,_wrap_CV_IS_SET_texinfo}, -{"CV_SEQ_ELTYPE",_wrap_CV_SEQ_ELTYPE,0,0,2,_wrap_CV_SEQ_ELTYPE_texinfo}, -{"CV_SEQ_KIND",_wrap_CV_SEQ_KIND,0,0,2,_wrap_CV_SEQ_KIND_texinfo}, -{"CV_IS_SEQ_INDEX",_wrap_CV_IS_SEQ_INDEX,0,0,2,_wrap_CV_IS_SEQ_INDEX_texinfo}, -{"CV_IS_SEQ_CURVE",_wrap_CV_IS_SEQ_CURVE,0,0,2,_wrap_CV_IS_SEQ_CURVE_texinfo}, -{"CV_IS_SEQ_CLOSED",_wrap_CV_IS_SEQ_CLOSED,0,0,2,_wrap_CV_IS_SEQ_CLOSED_texinfo}, -{"CV_IS_SEQ_CONVEX",_wrap_CV_IS_SEQ_CONVEX,0,0,2,_wrap_CV_IS_SEQ_CONVEX_texinfo}, -{"CV_IS_SEQ_HOLE",_wrap_CV_IS_SEQ_HOLE,0,0,2,_wrap_CV_IS_SEQ_HOLE_texinfo}, -{"CV_IS_SEQ_SIMPLE",_wrap_CV_IS_SEQ_SIMPLE,0,0,2,_wrap_CV_IS_SEQ_SIMPLE_texinfo}, -{"CV_IS_SEQ_POINT_SET",_wrap_CV_IS_SEQ_POINT_SET,0,0,2,_wrap_CV_IS_SEQ_POINT_SET_texinfo}, -{"CV_IS_SEQ_POINT_SUBSET",_wrap_CV_IS_SEQ_POINT_SUBSET,0,0,2,_wrap_CV_IS_SEQ_POINT_SUBSET_texinfo}, -{"CV_IS_SEQ_POLYLINE",_wrap_CV_IS_SEQ_POLYLINE,0,0,2,_wrap_CV_IS_SEQ_POLYLINE_texinfo}, -{"CV_IS_SEQ_POLYGON",_wrap_CV_IS_SEQ_POLYGON,0,0,2,_wrap_CV_IS_SEQ_POLYGON_texinfo}, -{"CV_IS_SEQ_CHAIN",_wrap_CV_IS_SEQ_CHAIN,0,0,2,_wrap_CV_IS_SEQ_CHAIN_texinfo}, -{"CV_IS_SEQ_CONTOUR",_wrap_CV_IS_SEQ_CONTOUR,0,0,2,_wrap_CV_IS_SEQ_CONTOUR_texinfo}, -{"CV_IS_SEQ_CHAIN_CONTOUR",_wrap_CV_IS_SEQ_CHAIN_CONTOUR,0,0,2,_wrap_CV_IS_SEQ_CHAIN_CONTOUR_texinfo}, -{"CV_IS_SEQ_POLYGON_TREE",_wrap_CV_IS_SEQ_POLYGON_TREE,0,0,2,_wrap_CV_IS_SEQ_POLYGON_TREE_texinfo}, -{"CV_IS_GRAPH",_wrap_CV_IS_GRAPH,0,0,2,_wrap_CV_IS_GRAPH_texinfo}, -{"CV_IS_GRAPH_ORIENTED",_wrap_CV_IS_GRAPH_ORIENTED,0,0,2,_wrap_CV_IS_GRAPH_ORIENTED_texinfo}, -{"CV_IS_SUBDIV2D",_wrap_CV_IS_SUBDIV2D,0,0,2,_wrap_CV_IS_SUBDIV2D_texinfo}, -{"CV_WRITE_SEQ_ELEM_VAR",_wrap_CV_WRITE_SEQ_ELEM_VAR,0,0,2,_wrap_CV_WRITE_SEQ_ELEM_VAR_texinfo}, -{"CV_WRITE_SEQ_ELEM",_wrap_CV_WRITE_SEQ_ELEM,0,0,2,_wrap_CV_WRITE_SEQ_ELEM_texinfo}, -{"CV_NEXT_SEQ_ELEM",_wrap_CV_NEXT_SEQ_ELEM,0,0,2,_wrap_CV_NEXT_SEQ_ELEM_texinfo}, -{"CV_PREV_SEQ_ELEM",_wrap_CV_PREV_SEQ_ELEM,0,0,2,_wrap_CV_PREV_SEQ_ELEM_texinfo}, -{"CV_READ_SEQ_ELEM",_wrap_CV_READ_SEQ_ELEM,0,0,2,_wrap_CV_READ_SEQ_ELEM_texinfo}, -{"CV_REV_READ_SEQ_ELEM",_wrap_CV_REV_READ_SEQ_ELEM,0,0,2,_wrap_CV_REV_READ_SEQ_ELEM_texinfo}, -{"CV_CURRENT_POINT",_wrap_CV_CURRENT_POINT,0,0,2,_wrap_CV_CURRENT_POINT_texinfo}, -{"CV_PREV_POINT",_wrap_CV_PREV_POINT,0,0,2,_wrap_CV_PREV_POINT_texinfo}, -{"CV_READ_EDGE",_wrap_CV_READ_EDGE,0,0,2,_wrap_CV_READ_EDGE_texinfo}, -{"CV_NEXT_GRAPH_EDGE",_wrap_CV_NEXT_GRAPH_EDGE,0,0,2,_wrap_CV_NEXT_GRAPH_EDGE_texinfo}, -{"CV_NODE_TYPE",_wrap_CV_NODE_TYPE,0,0,2,_wrap_CV_NODE_TYPE_texinfo}, -{"CV_NODE_IS_INT",_wrap_CV_NODE_IS_INT,0,0,2,_wrap_CV_NODE_IS_INT_texinfo}, -{"CV_NODE_IS_REAL",_wrap_CV_NODE_IS_REAL,0,0,2,_wrap_CV_NODE_IS_REAL_texinfo}, -{"CV_NODE_IS_STRING",_wrap_CV_NODE_IS_STRING,0,0,2,_wrap_CV_NODE_IS_STRING_texinfo}, -{"CV_NODE_IS_SEQ",_wrap_CV_NODE_IS_SEQ,0,0,2,_wrap_CV_NODE_IS_SEQ_texinfo}, -{"CV_NODE_IS_MAP",_wrap_CV_NODE_IS_MAP,0,0,2,_wrap_CV_NODE_IS_MAP_texinfo}, -{"CV_NODE_IS_COLLECTION",_wrap_CV_NODE_IS_COLLECTION,0,0,2,_wrap_CV_NODE_IS_COLLECTION_texinfo}, -{"CV_NODE_IS_FLOW",_wrap_CV_NODE_IS_FLOW,0,0,2,_wrap_CV_NODE_IS_FLOW_texinfo}, -{"CV_NODE_IS_EMPTY",_wrap_CV_NODE_IS_EMPTY,0,0,2,_wrap_CV_NODE_IS_EMPTY_texinfo}, -{"CV_NODE_IS_USER",_wrap_CV_NODE_IS_USER,0,0,2,_wrap_CV_NODE_IS_USER_texinfo}, -{"CV_NODE_HAS_NAME",_wrap_CV_NODE_HAS_NAME,0,0,2,_wrap_CV_NODE_HAS_NAME_texinfo}, -{"CV_NODE_SEQ_IS_SIMPLE",_wrap_CV_NODE_SEQ_IS_SIMPLE,0,0,2,_wrap_CV_NODE_SEQ_IS_SIMPLE_texinfo}, -{"cvReshapeND",_wrap_cvReshapeND,0,0,2,_wrap_cvReshapeND_texinfo}, -{"cvConvert",_wrap_cvConvert,0,0,2,_wrap_cvConvert_texinfo}, -{"cvAXPY",_wrap_cvAXPY,0,0,2,_wrap_cvAXPY_texinfo}, -{"cvAbs",_wrap_cvAbs,0,0,2,_wrap_cvAbs_texinfo}, -{"cvMatMulAdd",_wrap_cvMatMulAdd,0,0,2,_wrap_cvMatMulAdd_texinfo}, -{"cvMatMul",_wrap_cvMatMul,0,0,2,_wrap_cvMatMul_texinfo}, -{"cvGetGraphVtx",_wrap_cvGetGraphVtx,0,0,2,_wrap_cvGetGraphVtx_texinfo}, -{"cvGraphVtxIdx",_wrap_cvGraphVtxIdx,0,0,2,_wrap_cvGraphVtxIdx_texinfo}, -{"cvGraphEdgeIdx",_wrap_cvGraphEdgeIdx,0,0,2,_wrap_cvGraphEdgeIdx_texinfo}, -{"cvGraphGetVtxCount",_wrap_cvGraphGetVtxCount,0,0,2,_wrap_cvGraphGetVtxCount_texinfo}, -{"cvGraphGetEdgeCount",_wrap_cvGraphGetEdgeCount,0,0,2,_wrap_cvGraphGetEdgeCount_texinfo}, -{"CV_IS_GRAPH_VERTEX_VISITED",_wrap_CV_IS_GRAPH_VERTEX_VISITED,0,0,2,_wrap_CV_IS_GRAPH_VERTEX_VISITED_texinfo}, -{"CV_IS_GRAPH_EDGE_VISITED",_wrap_CV_IS_GRAPH_EDGE_VISITED,0,0,2,_wrap_CV_IS_GRAPH_EDGE_VISITED_texinfo}, -{"CV_RGB",_wrap_CV_RGB,0,0,2,_wrap_CV_RGB_texinfo}, -{"CV_NEXT_LINE_POINT",_wrap_CV_NEXT_LINE_POINT,0,0,2,_wrap_CV_NEXT_LINE_POINT_texinfo}, -{"CV_INIT_3X3_DELTAS",_wrap_CV_INIT_3X3_DELTAS,0,0,2,_wrap_CV_INIT_3X3_DELTAS_texinfo}, -{"CV_IS_HAAR_CLASSIFIER",_wrap_CV_IS_HAAR_CLASSIFIER,0,0,2,_wrap_CV_IS_HAAR_CLASSIFIER_texinfo}, -{"cvCalcBackProject",_wrap_cvCalcBackProject,0,0,2,_wrap_cvCalcBackProject_texinfo}, -{"cvCalcBackProjectPatch",_wrap_cvCalcBackProjectPatch,0,0,2,_wrap_cvCalcBackProjectPatch_texinfo}, -{"cvCreateImage",_wrap_cvCreateImage,0,0,2,_wrap_cvCreateImage_texinfo}, -{"cvCloneImage",_wrap_cvCloneImage,0,0,2,_wrap_cvCloneImage_texinfo}, -{"Cv32suf_i_set",_wrap_Cv32suf_i_set,0,0,2,0}, -{"Cv32suf_i_get",_wrap_Cv32suf_i_get,0,0,2,0}, -{"Cv32suf_u_set",_wrap_Cv32suf_u_set,0,0,2,0}, -{"Cv32suf_u_get",_wrap_Cv32suf_u_get,0,0,2,0}, -{"Cv32suf_f_set",_wrap_Cv32suf_f_set,0,0,2,0}, -{"Cv32suf_f_get",_wrap_Cv32suf_f_get,0,0,2,0}, -{"new_Cv32suf",_wrap_new_Cv32suf,0,0,2,_wrap_new_Cv32suf_texinfo}, -{"delete_Cv32suf",_wrap_delete_Cv32suf,0,0,2,_wrap_delete_Cv32suf_texinfo}, -{"Cv64suf_i_set",_wrap_Cv64suf_i_set,0,0,2,0}, -{"Cv64suf_i_get",_wrap_Cv64suf_i_get,0,0,2,0}, -{"Cv64suf_u_set",_wrap_Cv64suf_u_set,0,0,2,0}, -{"Cv64suf_u_get",_wrap_Cv64suf_u_get,0,0,2,0}, -{"Cv64suf_f_set",_wrap_Cv64suf_f_set,0,0,2,0}, -{"Cv64suf_f_get",_wrap_Cv64suf_f_get,0,0,2,0}, -{"new_Cv64suf",_wrap_new_Cv64suf,0,0,2,_wrap_new_Cv64suf_texinfo}, -{"delete_Cv64suf",_wrap_delete_Cv64suf,0,0,2,_wrap_delete_Cv64suf_texinfo}, -{"cvRound",_wrap_cvRound,0,0,2,_wrap_cvRound_texinfo}, -{"cvFloor",_wrap_cvFloor,0,0,2,_wrap_cvFloor_texinfo}, -{"cvCeil",_wrap_cvCeil,0,0,2,_wrap_cvCeil_texinfo}, -{"cvIsNaN",_wrap_cvIsNaN,0,0,2,_wrap_cvIsNaN_texinfo}, -{"cvIsInf",_wrap_cvIsInf,0,0,2,_wrap_cvIsInf_texinfo}, -{"cvRNG",_wrap_cvRNG,0,0,2,_wrap_cvRNG_texinfo}, -{"cvRandInt",_wrap_cvRandInt,0,0,2,_wrap_cvRandInt_texinfo}, -{"cvRandReal",_wrap_cvRandReal,0,0,2,_wrap_cvRandReal_texinfo}, -{"IplImage_ID_set",_wrap_IplImage_ID_set,0,0,2,0}, -{"IplImage_ID_get",_wrap_IplImage_ID_get,0,0,2,0}, -{"IplImage_nChannels_set",_wrap_IplImage_nChannels_set,0,0,2,0}, -{"IplImage_nChannels_get",_wrap_IplImage_nChannels_get,0,0,2,0}, -{"IplImage_depth_set",_wrap_IplImage_depth_set,0,0,2,0}, -{"IplImage_depth_get",_wrap_IplImage_depth_get,0,0,2,0}, -{"IplImage_dataOrder_set",_wrap_IplImage_dataOrder_set,0,0,2,0}, -{"IplImage_dataOrder_get",_wrap_IplImage_dataOrder_get,0,0,2,0}, -{"IplImage_origin_set",_wrap_IplImage_origin_set,0,0,2,0}, -{"IplImage_origin_get",_wrap_IplImage_origin_get,0,0,2,0}, -{"IplImage_align_set",_wrap_IplImage_align_set,0,0,2,0}, -{"IplImage_align_get",_wrap_IplImage_align_get,0,0,2,0}, -{"IplImage_width_set",_wrap_IplImage_width_set,0,0,2,0}, -{"IplImage_width_get",_wrap_IplImage_width_get,0,0,2,0}, -{"IplImage_height_set",_wrap_IplImage_height_set,0,0,2,0}, -{"IplImage_height_get",_wrap_IplImage_height_get,0,0,2,0}, -{"IplImage_roi_set",_wrap_IplImage_roi_set,0,0,2,0}, -{"IplImage_roi_get",_wrap_IplImage_roi_get,0,0,2,0}, -{"IplImage_imageSize_set",_wrap_IplImage_imageSize_set,0,0,2,0}, -{"IplImage_imageSize_get",_wrap_IplImage_imageSize_get,0,0,2,0}, -{"IplImage_widthStep_set",_wrap_IplImage_widthStep_set,0,0,2,0}, -{"IplImage_widthStep_get",_wrap_IplImage_widthStep_get,0,0,2,0}, -{"delete_IplImage",_wrap_delete_IplImage,0,0,2,_wrap_delete_IplImage_texinfo}, -{"IplImage___add__",_wrap_IplImage___add__,0,0,2,_wrap_IplImage___add___texinfo}, -{"IplImage___xor__",_wrap_IplImage___xor__,0,0,2,_wrap_IplImage___xor___texinfo}, -{"IplImage___sub__",_wrap_IplImage___sub__,0,0,2,_wrap_IplImage___sub___texinfo}, -{"IplImage___ge__",_wrap_IplImage___ge__,0,0,2,_wrap_IplImage___ge___texinfo}, -{"IplImage___eq__",_wrap_IplImage___eq__,0,0,2,_wrap_IplImage___eq___texinfo}, -{"IplImage___le__",_wrap_IplImage___le__,0,0,2,_wrap_IplImage___le___texinfo}, -{"IplImage___ne__",_wrap_IplImage___ne__,0,0,2,_wrap_IplImage___ne___texinfo}, -{"IplImage___lt__",_wrap_IplImage___lt__,0,0,2,_wrap_IplImage___lt___texinfo}, -{"IplImage___gt__",_wrap_IplImage___gt__,0,0,2,_wrap_IplImage___gt___texinfo}, -{"IplImage___mul__",_wrap_IplImage___mul__,0,0,2,_wrap_IplImage___mul___texinfo}, -{"IplImage___div__",_wrap_IplImage___div__,0,0,2,_wrap_IplImage___div___texinfo}, -{"IplImage___radd__",_wrap_IplImage___radd__,0,0,2,_wrap_IplImage___radd___texinfo}, -{"IplImage___rsub__",_wrap_IplImage___rsub__,0,0,2,_wrap_IplImage___rsub___texinfo}, -{"IplImage___rmul__",_wrap_IplImage___rmul__,0,0,2,_wrap_IplImage___rmul___texinfo}, -{"IplImage___rdiv__",_wrap_IplImage___rdiv__,0,0,2,_wrap_IplImage___rdiv___texinfo}, -{"IplImage___ror__",_wrap_IplImage___ror__,0,0,2,_wrap_IplImage___ror___texinfo}, -{"IplImage___rand__",_wrap_IplImage___rand__,0,0,2,_wrap_IplImage___rand___texinfo}, -{"IplImage___rxor__",_wrap_IplImage___rxor__,0,0,2,_wrap_IplImage___rxor___texinfo}, -{"IplImage___req__",_wrap_IplImage___req__,0,0,2,_wrap_IplImage___req___texinfo}, -{"IplImage___rgt__",_wrap_IplImage___rgt__,0,0,2,_wrap_IplImage___rgt___texinfo}, -{"IplImage___rge__",_wrap_IplImage___rge__,0,0,2,_wrap_IplImage___rge___texinfo}, -{"IplImage___rlt__",_wrap_IplImage___rlt__,0,0,2,_wrap_IplImage___rlt___texinfo}, -{"IplImage___rle__",_wrap_IplImage___rle__,0,0,2,_wrap_IplImage___rle___texinfo}, -{"IplImage___rne__",_wrap_IplImage___rne__,0,0,2,_wrap_IplImage___rne___texinfo}, -{"IplImage___pow__",_wrap_IplImage___pow__,0,0,2,_wrap_IplImage___pow___texinfo}, -{"IplImage___str",_wrap_IplImage___str,0,0,2,_wrap_IplImage___str_texinfo}, -{"IplImage___paren_asgn",_wrap_IplImage___paren_asgn,0,0,2,_wrap_IplImage___paren_asgn_texinfo}, -{"IplImage___paren",_wrap_IplImage___paren,0,0,2,_wrap_IplImage___paren_texinfo}, -{"IplROI_coi_set",_wrap_IplROI_coi_set,0,0,2,0}, -{"IplROI_coi_get",_wrap_IplROI_coi_get,0,0,2,0}, -{"IplROI_xOffset_set",_wrap_IplROI_xOffset_set,0,0,2,0}, -{"IplROI_xOffset_get",_wrap_IplROI_xOffset_get,0,0,2,0}, -{"IplROI_yOffset_set",_wrap_IplROI_yOffset_set,0,0,2,0}, -{"IplROI_yOffset_get",_wrap_IplROI_yOffset_get,0,0,2,0}, -{"IplROI_width_set",_wrap_IplROI_width_set,0,0,2,0}, -{"IplROI_width_get",_wrap_IplROI_width_get,0,0,2,0}, -{"IplROI_height_set",_wrap_IplROI_height_set,0,0,2,0}, -{"IplROI_height_get",_wrap_IplROI_height_get,0,0,2,0}, -{"new_IplROI",_wrap_new_IplROI,0,0,2,_wrap_new_IplROI_texinfo}, -{"delete_IplROI",_wrap_delete_IplROI,0,0,2,_wrap_delete_IplROI_texinfo}, -{"IplConvKernel_nCols_set",_wrap_IplConvKernel_nCols_set,0,0,2,0}, -{"IplConvKernel_nCols_get",_wrap_IplConvKernel_nCols_get,0,0,2,0}, -{"IplConvKernel_nRows_set",_wrap_IplConvKernel_nRows_set,0,0,2,0}, -{"IplConvKernel_nRows_get",_wrap_IplConvKernel_nRows_get,0,0,2,0}, -{"IplConvKernel_anchorX_set",_wrap_IplConvKernel_anchorX_set,0,0,2,0}, -{"IplConvKernel_anchorX_get",_wrap_IplConvKernel_anchorX_get,0,0,2,0}, -{"IplConvKernel_anchorY_set",_wrap_IplConvKernel_anchorY_set,0,0,2,0}, -{"IplConvKernel_anchorY_get",_wrap_IplConvKernel_anchorY_get,0,0,2,0}, -{"IplConvKernel_values_set",_wrap_IplConvKernel_values_set,0,0,2,0}, -{"IplConvKernel_values_get",_wrap_IplConvKernel_values_get,0,0,2,0}, -{"IplConvKernel_nShiftR_set",_wrap_IplConvKernel_nShiftR_set,0,0,2,0}, -{"IplConvKernel_nShiftR_get",_wrap_IplConvKernel_nShiftR_get,0,0,2,0}, -{"delete_IplConvKernel",_wrap_delete_IplConvKernel,0,0,2,_wrap_delete_IplConvKernel_texinfo}, -{"IplConvKernelFP_nCols_set",_wrap_IplConvKernelFP_nCols_set,0,0,2,0}, -{"IplConvKernelFP_nCols_get",_wrap_IplConvKernelFP_nCols_get,0,0,2,0}, -{"IplConvKernelFP_nRows_set",_wrap_IplConvKernelFP_nRows_set,0,0,2,0}, -{"IplConvKernelFP_nRows_get",_wrap_IplConvKernelFP_nRows_get,0,0,2,0}, -{"IplConvKernelFP_anchorX_set",_wrap_IplConvKernelFP_anchorX_set,0,0,2,0}, -{"IplConvKernelFP_anchorX_get",_wrap_IplConvKernelFP_anchorX_get,0,0,2,0}, -{"IplConvKernelFP_anchorY_set",_wrap_IplConvKernelFP_anchorY_set,0,0,2,0}, -{"IplConvKernelFP_anchorY_get",_wrap_IplConvKernelFP_anchorY_get,0,0,2,0}, -{"IplConvKernelFP_values_set",_wrap_IplConvKernelFP_values_set,0,0,2,0}, -{"IplConvKernelFP_values_get",_wrap_IplConvKernelFP_values_get,0,0,2,0}, -{"new_IplConvKernelFP",_wrap_new_IplConvKernelFP,0,0,2,_wrap_new_IplConvKernelFP_texinfo}, -{"delete_IplConvKernelFP",_wrap_delete_IplConvKernelFP,0,0,2,_wrap_delete_IplConvKernelFP_texinfo}, -{"CvMat_type_set",_wrap_CvMat_type_set,0,0,2,0}, -{"CvMat_type_get",_wrap_CvMat_type_get,0,0,2,0}, -{"CvMat_step_set",_wrap_CvMat_step_set,0,0,2,0}, -{"CvMat_step_get",_wrap_CvMat_step_get,0,0,2,0}, -{"CvMat_refcount_set",_wrap_CvMat_refcount_set,0,0,2,0}, -{"CvMat_refcount_get",_wrap_CvMat_refcount_get,0,0,2,0}, -{"CvMat_hdr_refcount_set",_wrap_CvMat_hdr_refcount_set,0,0,2,0}, -{"CvMat_hdr_refcount_get",_wrap_CvMat_hdr_refcount_get,0,0,2,0}, -{"CvMat_data_get",_wrap_CvMat_data_get,0,0,2,0}, -{"delete_CvMat",_wrap_delete_CvMat,0,0,2,_wrap_delete_CvMat_texinfo}, -{"CvMat_depth_set",_wrap_CvMat_depth_set,0,0,2,0}, -{"CvMat_depth_get",_wrap_CvMat_depth_get,0,0,2,0}, -{"CvMat_nChannels_set",_wrap_CvMat_nChannels_set,0,0,2,0}, -{"CvMat_nChannels_get",_wrap_CvMat_nChannels_get,0,0,2,0}, -{"CvMat_dataOrder_set",_wrap_CvMat_dataOrder_set,0,0,2,0}, -{"CvMat_dataOrder_get",_wrap_CvMat_dataOrder_get,0,0,2,0}, -{"CvMat_origin_set",_wrap_CvMat_origin_set,0,0,2,0}, -{"CvMat_origin_get",_wrap_CvMat_origin_get,0,0,2,0}, -{"CvMat_width_set",_wrap_CvMat_width_set,0,0,2,0}, -{"CvMat_width_get",_wrap_CvMat_width_get,0,0,2,0}, -{"CvMat_height_set",_wrap_CvMat_height_set,0,0,2,0}, -{"CvMat_height_get",_wrap_CvMat_height_get,0,0,2,0}, -{"CvMat_imageSize_set",_wrap_CvMat_imageSize_set,0,0,2,0}, -{"CvMat_imageSize_get",_wrap_CvMat_imageSize_get,0,0,2,0}, -{"CvMat_widthStep_set",_wrap_CvMat_widthStep_set,0,0,2,0}, -{"CvMat_widthStep_get",_wrap_CvMat_widthStep_get,0,0,2,0}, -{"CvMat_rows_set",_wrap_CvMat_rows_set,0,0,2,0}, -{"CvMat_rows_get",_wrap_CvMat_rows_get,0,0,2,0}, -{"CvMat_cols_set",_wrap_CvMat_cols_set,0,0,2,0}, -{"CvMat_cols_get",_wrap_CvMat_cols_get,0,0,2,0}, -{"CvMat___add__",_wrap_CvMat___add__,0,0,2,_wrap_CvMat___add___texinfo}, -{"CvMat___xor__",_wrap_CvMat___xor__,0,0,2,_wrap_CvMat___xor___texinfo}, -{"CvMat___sub__",_wrap_CvMat___sub__,0,0,2,_wrap_CvMat___sub___texinfo}, -{"CvMat___ge__",_wrap_CvMat___ge__,0,0,2,_wrap_CvMat___ge___texinfo}, -{"CvMat___eq__",_wrap_CvMat___eq__,0,0,2,_wrap_CvMat___eq___texinfo}, -{"CvMat___le__",_wrap_CvMat___le__,0,0,2,_wrap_CvMat___le___texinfo}, -{"CvMat___ne__",_wrap_CvMat___ne__,0,0,2,_wrap_CvMat___ne___texinfo}, -{"CvMat___lt__",_wrap_CvMat___lt__,0,0,2,_wrap_CvMat___lt___texinfo}, -{"CvMat___gt__",_wrap_CvMat___gt__,0,0,2,_wrap_CvMat___gt___texinfo}, -{"CvMat___mul__",_wrap_CvMat___mul__,0,0,2,_wrap_CvMat___mul___texinfo}, -{"CvMat___div__",_wrap_CvMat___div__,0,0,2,_wrap_CvMat___div___texinfo}, -{"CvMat___radd__",_wrap_CvMat___radd__,0,0,2,_wrap_CvMat___radd___texinfo}, -{"CvMat___rsub__",_wrap_CvMat___rsub__,0,0,2,_wrap_CvMat___rsub___texinfo}, -{"CvMat___rmul__",_wrap_CvMat___rmul__,0,0,2,_wrap_CvMat___rmul___texinfo}, -{"CvMat___rdiv__",_wrap_CvMat___rdiv__,0,0,2,_wrap_CvMat___rdiv___texinfo}, -{"CvMat___ror__",_wrap_CvMat___ror__,0,0,2,_wrap_CvMat___ror___texinfo}, -{"CvMat___rand__",_wrap_CvMat___rand__,0,0,2,_wrap_CvMat___rand___texinfo}, -{"CvMat___rxor__",_wrap_CvMat___rxor__,0,0,2,_wrap_CvMat___rxor___texinfo}, -{"CvMat___req__",_wrap_CvMat___req__,0,0,2,_wrap_CvMat___req___texinfo}, -{"CvMat___rgt__",_wrap_CvMat___rgt__,0,0,2,_wrap_CvMat___rgt___texinfo}, -{"CvMat___rge__",_wrap_CvMat___rge__,0,0,2,_wrap_CvMat___rge___texinfo}, -{"CvMat___rlt__",_wrap_CvMat___rlt__,0,0,2,_wrap_CvMat___rlt___texinfo}, -{"CvMat___rle__",_wrap_CvMat___rle__,0,0,2,_wrap_CvMat___rle___texinfo}, -{"CvMat___rne__",_wrap_CvMat___rne__,0,0,2,_wrap_CvMat___rne___texinfo}, -{"CvMat___pow__",_wrap_CvMat___pow__,0,0,2,_wrap_CvMat___pow___texinfo}, -{"CvMat___str",_wrap_CvMat___str,0,0,2,_wrap_CvMat___str_texinfo}, -{"CvMat___paren_asgn",_wrap_CvMat___paren_asgn,0,0,2,_wrap_CvMat___paren_asgn_texinfo}, -{"CvMat___paren",_wrap_CvMat___paren,0,0,2,_wrap_CvMat___paren_texinfo}, -{"CvMat_imageData_set",_wrap_CvMat_imageData_set,0,0,2,0}, -{"CvMat_imageData_get",_wrap_CvMat_imageData_get,0,0,2,0}, -{"CvMat_data_ptr_set",_wrap_CvMat_data_ptr_set,0,0,2,0}, -{"CvMat_data_ptr_get",_wrap_CvMat_data_ptr_get,0,0,2,0}, -{"CvMat_data_s_set",_wrap_CvMat_data_s_set,0,0,2,0}, -{"CvMat_data_s_get",_wrap_CvMat_data_s_get,0,0,2,0}, -{"CvMat_data_i_set",_wrap_CvMat_data_i_set,0,0,2,0}, -{"CvMat_data_i_get",_wrap_CvMat_data_i_get,0,0,2,0}, -{"CvMat_data_fl_set",_wrap_CvMat_data_fl_set,0,0,2,0}, -{"CvMat_data_fl_get",_wrap_CvMat_data_fl_get,0,0,2,0}, -{"CvMat_data_db_set",_wrap_CvMat_data_db_set,0,0,2,0}, -{"CvMat_data_db_get",_wrap_CvMat_data_db_get,0,0,2,0}, -{"new_CvMat_data",_wrap_new_CvMat_data,0,0,2,_wrap_new_CvMat_data_texinfo}, -{"delete_CvMat_data",_wrap_delete_CvMat_data,0,0,2,_wrap_delete_CvMat_data_texinfo}, -{"cvMat",_wrap_cvMat,0,0,2,_wrap_cvMat_texinfo}, -{"cvmGet",_wrap_cvmGet,0,0,2,_wrap_cvmGet_texinfo}, -{"cvmSet",_wrap_cvmSet,0,0,2,_wrap_cvmSet_texinfo}, -{"cvIplDepth",_wrap_cvIplDepth,0,0,2,_wrap_cvIplDepth_texinfo}, -{"CvMatND_type_set",_wrap_CvMatND_type_set,0,0,2,0}, -{"CvMatND_type_get",_wrap_CvMatND_type_get,0,0,2,0}, -{"CvMatND_dims_set",_wrap_CvMatND_dims_set,0,0,2,0}, -{"CvMatND_dims_get",_wrap_CvMatND_dims_get,0,0,2,0}, -{"CvMatND_refcount_set",_wrap_CvMatND_refcount_set,0,0,2,0}, -{"CvMatND_refcount_get",_wrap_CvMatND_refcount_get,0,0,2,0}, -{"CvMatND_hdr_refcount_set",_wrap_CvMatND_hdr_refcount_set,0,0,2,0}, -{"CvMatND_hdr_refcount_get",_wrap_CvMatND_hdr_refcount_get,0,0,2,0}, -{"CvMatND_dim_get",_wrap_CvMatND_dim_get,0,0,2,0}, -{"CvMatND_data_get",_wrap_CvMatND_data_get,0,0,2,0}, -{"delete_CvMatND",_wrap_delete_CvMatND,0,0,2,_wrap_delete_CvMatND_texinfo}, -{"CvMatND_dim_size_set",_wrap_CvMatND_dim_size_set,0,0,2,0}, -{"CvMatND_dim_size_get",_wrap_CvMatND_dim_size_get,0,0,2,0}, -{"CvMatND_dim_step_set",_wrap_CvMatND_dim_step_set,0,0,2,0}, -{"CvMatND_dim_step_get",_wrap_CvMatND_dim_step_get,0,0,2,0}, -{"new_CvMatND_dim",_wrap_new_CvMatND_dim,0,0,2,_wrap_new_CvMatND_dim_texinfo}, -{"delete_CvMatND_dim",_wrap_delete_CvMatND_dim,0,0,2,_wrap_delete_CvMatND_dim_texinfo}, -{"CvMatND_data_ptr_set",_wrap_CvMatND_data_ptr_set,0,0,2,0}, -{"CvMatND_data_ptr_get",_wrap_CvMatND_data_ptr_get,0,0,2,0}, -{"CvMatND_data_fl_set",_wrap_CvMatND_data_fl_set,0,0,2,0}, -{"CvMatND_data_fl_get",_wrap_CvMatND_data_fl_get,0,0,2,0}, -{"CvMatND_data_db_set",_wrap_CvMatND_data_db_set,0,0,2,0}, -{"CvMatND_data_db_get",_wrap_CvMatND_data_db_get,0,0,2,0}, -{"CvMatND_data_i_set",_wrap_CvMatND_data_i_set,0,0,2,0}, -{"CvMatND_data_i_get",_wrap_CvMatND_data_i_get,0,0,2,0}, -{"CvMatND_data_s_set",_wrap_CvMatND_data_s_set,0,0,2,0}, -{"CvMatND_data_s_get",_wrap_CvMatND_data_s_get,0,0,2,0}, -{"new_CvMatND_data",_wrap_new_CvMatND_data,0,0,2,_wrap_new_CvMatND_data_texinfo}, -{"delete_CvMatND_data",_wrap_delete_CvMatND_data,0,0,2,_wrap_delete_CvMatND_data_texinfo}, -{"CvSparseMat_type_set",_wrap_CvSparseMat_type_set,0,0,2,0}, -{"CvSparseMat_type_get",_wrap_CvSparseMat_type_get,0,0,2,0}, -{"CvSparseMat_dims_set",_wrap_CvSparseMat_dims_set,0,0,2,0}, -{"CvSparseMat_dims_get",_wrap_CvSparseMat_dims_get,0,0,2,0}, -{"CvSparseMat_refcount_set",_wrap_CvSparseMat_refcount_set,0,0,2,0}, -{"CvSparseMat_refcount_get",_wrap_CvSparseMat_refcount_get,0,0,2,0}, -{"CvSparseMat_hdr_refcount_set",_wrap_CvSparseMat_hdr_refcount_set,0,0,2,0}, -{"CvSparseMat_hdr_refcount_get",_wrap_CvSparseMat_hdr_refcount_get,0,0,2,0}, -{"CvSparseMat_heap_set",_wrap_CvSparseMat_heap_set,0,0,2,0}, -{"CvSparseMat_heap_get",_wrap_CvSparseMat_heap_get,0,0,2,0}, -{"CvSparseMat_hashtable_set",_wrap_CvSparseMat_hashtable_set,0,0,2,0}, -{"CvSparseMat_hashtable_get",_wrap_CvSparseMat_hashtable_get,0,0,2,0}, -{"CvSparseMat_hashsize_set",_wrap_CvSparseMat_hashsize_set,0,0,2,0}, -{"CvSparseMat_hashsize_get",_wrap_CvSparseMat_hashsize_get,0,0,2,0}, -{"CvSparseMat_valoffset_set",_wrap_CvSparseMat_valoffset_set,0,0,2,0}, -{"CvSparseMat_valoffset_get",_wrap_CvSparseMat_valoffset_get,0,0,2,0}, -{"CvSparseMat_idxoffset_set",_wrap_CvSparseMat_idxoffset_set,0,0,2,0}, -{"CvSparseMat_idxoffset_get",_wrap_CvSparseMat_idxoffset_get,0,0,2,0}, -{"CvSparseMat_size_set",_wrap_CvSparseMat_size_set,0,0,2,0}, -{"CvSparseMat_size_get",_wrap_CvSparseMat_size_get,0,0,2,0}, -{"delete_CvSparseMat",_wrap_delete_CvSparseMat,0,0,2,_wrap_delete_CvSparseMat_texinfo}, -{"CvSparseNode_hashval_set",_wrap_CvSparseNode_hashval_set,0,0,2,0}, -{"CvSparseNode_hashval_get",_wrap_CvSparseNode_hashval_get,0,0,2,0}, -{"CvSparseNode_next_set",_wrap_CvSparseNode_next_set,0,0,2,0}, -{"CvSparseNode_next_get",_wrap_CvSparseNode_next_get,0,0,2,0}, -{"new_CvSparseNode",_wrap_new_CvSparseNode,0,0,2,_wrap_new_CvSparseNode_texinfo}, -{"delete_CvSparseNode",_wrap_delete_CvSparseNode,0,0,2,_wrap_delete_CvSparseNode_texinfo}, -{"CvSparseMatIterator_mat_set",_wrap_CvSparseMatIterator_mat_set,0,0,2,0}, -{"CvSparseMatIterator_mat_get",_wrap_CvSparseMatIterator_mat_get,0,0,2,0}, -{"CvSparseMatIterator_node_set",_wrap_CvSparseMatIterator_node_set,0,0,2,0}, -{"CvSparseMatIterator_node_get",_wrap_CvSparseMatIterator_node_get,0,0,2,0}, -{"CvSparseMatIterator_curidx_set",_wrap_CvSparseMatIterator_curidx_set,0,0,2,0}, -{"CvSparseMatIterator_curidx_get",_wrap_CvSparseMatIterator_curidx_get,0,0,2,0}, -{"new_CvSparseMatIterator",_wrap_new_CvSparseMatIterator,0,0,2,_wrap_new_CvSparseMatIterator_texinfo}, -{"delete_CvSparseMatIterator",_wrap_delete_CvSparseMatIterator,0,0,2,_wrap_delete_CvSparseMatIterator_texinfo}, -{"CvHistogram_type_set",_wrap_CvHistogram_type_set,0,0,2,0}, -{"CvHistogram_type_get",_wrap_CvHistogram_type_get,0,0,2,0}, -{"CvHistogram_bins_set",_wrap_CvHistogram_bins_set,0,0,2,0}, -{"CvHistogram_bins_get",_wrap_CvHistogram_bins_get,0,0,2,0}, -{"CvHistogram_thresh_set",_wrap_CvHistogram_thresh_set,0,0,2,0}, -{"CvHistogram_thresh_get",_wrap_CvHistogram_thresh_get,0,0,2,0}, -{"CvHistogram_thresh2_set",_wrap_CvHistogram_thresh2_set,0,0,2,0}, -{"CvHistogram_thresh2_get",_wrap_CvHistogram_thresh2_get,0,0,2,0}, -{"CvHistogram_mat_set",_wrap_CvHistogram_mat_set,0,0,2,0}, -{"CvHistogram_mat_get",_wrap_CvHistogram_mat_get,0,0,2,0}, -{"delete_CvHistogram",_wrap_delete_CvHistogram,0,0,2,_wrap_delete_CvHistogram_texinfo}, -{"CvRect_x_set",_wrap_CvRect_x_set,0,0,2,0}, -{"CvRect_x_get",_wrap_CvRect_x_get,0,0,2,0}, -{"CvRect_y_set",_wrap_CvRect_y_set,0,0,2,0}, -{"CvRect_y_get",_wrap_CvRect_y_get,0,0,2,0}, -{"CvRect_width_set",_wrap_CvRect_width_set,0,0,2,0}, -{"CvRect_width_get",_wrap_CvRect_width_get,0,0,2,0}, -{"CvRect_height_set",_wrap_CvRect_height_set,0,0,2,0}, -{"CvRect_height_get",_wrap_CvRect_height_get,0,0,2,0}, -{"new_CvRect",_wrap_new_CvRect,0,0,2,_wrap_new_CvRect_texinfo}, -{"delete_CvRect",_wrap_delete_CvRect,0,0,2,_wrap_delete_CvRect_texinfo}, -{"cvRect",_wrap_cvRect,0,0,2,_wrap_cvRect_texinfo}, -{"cvRectToROI",_wrap_cvRectToROI,0,0,2,_wrap_cvRectToROI_texinfo}, -{"cvROIToRect",_wrap_cvROIToRect,0,0,2,_wrap_cvROIToRect_texinfo}, -{"CvTermCriteria_type_set",_wrap_CvTermCriteria_type_set,0,0,2,0}, -{"CvTermCriteria_type_get",_wrap_CvTermCriteria_type_get,0,0,2,0}, -{"CvTermCriteria_max_iter_set",_wrap_CvTermCriteria_max_iter_set,0,0,2,0}, -{"CvTermCriteria_max_iter_get",_wrap_CvTermCriteria_max_iter_get,0,0,2,0}, -{"CvTermCriteria_epsilon_set",_wrap_CvTermCriteria_epsilon_set,0,0,2,0}, -{"CvTermCriteria_epsilon_get",_wrap_CvTermCriteria_epsilon_get,0,0,2,0}, -{"new_CvTermCriteria",_wrap_new_CvTermCriteria,0,0,2,_wrap_new_CvTermCriteria_texinfo}, -{"delete_CvTermCriteria",_wrap_delete_CvTermCriteria,0,0,2,_wrap_delete_CvTermCriteria_texinfo}, -{"cvTermCriteria",_wrap_cvTermCriteria,0,0,2,_wrap_cvTermCriteria_texinfo}, -{"CvPoint_x_set",_wrap_CvPoint_x_set,0,0,2,0}, -{"CvPoint_x_get",_wrap_CvPoint_x_get,0,0,2,0}, -{"CvPoint_y_set",_wrap_CvPoint_y_set,0,0,2,0}, -{"CvPoint_y_get",_wrap_CvPoint_y_get,0,0,2,0}, -{"CvPoint___str__",_wrap_CvPoint___str__,0,0,2,_wrap_CvPoint___str___texinfo}, -{"CvPoint___repr__",_wrap_CvPoint___repr__,0,0,2,_wrap_CvPoint___repr___texinfo}, -{"new_CvPoint",_wrap_new_CvPoint,0,0,2,_wrap_new_CvPoint_texinfo}, -{"delete_CvPoint",_wrap_delete_CvPoint,0,0,2,_wrap_delete_CvPoint_texinfo}, -{"cvPoint",_wrap_cvPoint,0,0,2,_wrap_cvPoint_texinfo}, -{"CvPoint2D32f_x_set",_wrap_CvPoint2D32f_x_set,0,0,2,0}, -{"CvPoint2D32f_x_get",_wrap_CvPoint2D32f_x_get,0,0,2,0}, -{"CvPoint2D32f_y_set",_wrap_CvPoint2D32f_y_set,0,0,2,0}, -{"CvPoint2D32f_y_get",_wrap_CvPoint2D32f_y_get,0,0,2,0}, -{"CvPoint2D32f___str__",_wrap_CvPoint2D32f___str__,0,0,2,_wrap_CvPoint2D32f___str___texinfo}, -{"CvPoint2D32f___repr__",_wrap_CvPoint2D32f___repr__,0,0,2,_wrap_CvPoint2D32f___repr___texinfo}, -{"new_CvPoint2D32f",_wrap_new_CvPoint2D32f,0,0,2,_wrap_new_CvPoint2D32f_texinfo}, -{"delete_CvPoint2D32f",_wrap_delete_CvPoint2D32f,0,0,2,_wrap_delete_CvPoint2D32f_texinfo}, -{"cvPoint2D32f",_wrap_cvPoint2D32f,0,0,2,_wrap_cvPoint2D32f_texinfo}, -{"cvPointTo32f",_wrap_cvPointTo32f,0,0,2,_wrap_cvPointTo32f_texinfo}, -{"cvPointFrom32f",_wrap_cvPointFrom32f,0,0,2,_wrap_cvPointFrom32f_texinfo}, -{"CvPoint3D32f_x_set",_wrap_CvPoint3D32f_x_set,0,0,2,0}, -{"CvPoint3D32f_x_get",_wrap_CvPoint3D32f_x_get,0,0,2,0}, -{"CvPoint3D32f_y_set",_wrap_CvPoint3D32f_y_set,0,0,2,0}, -{"CvPoint3D32f_y_get",_wrap_CvPoint3D32f_y_get,0,0,2,0}, -{"CvPoint3D32f_z_set",_wrap_CvPoint3D32f_z_set,0,0,2,0}, -{"CvPoint3D32f_z_get",_wrap_CvPoint3D32f_z_get,0,0,2,0}, -{"new_CvPoint3D32f",_wrap_new_CvPoint3D32f,0,0,2,_wrap_new_CvPoint3D32f_texinfo}, -{"delete_CvPoint3D32f",_wrap_delete_CvPoint3D32f,0,0,2,_wrap_delete_CvPoint3D32f_texinfo}, -{"cvPoint3D32f",_wrap_cvPoint3D32f,0,0,2,_wrap_cvPoint3D32f_texinfo}, -{"CvPoint2D64f_x_set",_wrap_CvPoint2D64f_x_set,0,0,2,0}, -{"CvPoint2D64f_x_get",_wrap_CvPoint2D64f_x_get,0,0,2,0}, -{"CvPoint2D64f_y_set",_wrap_CvPoint2D64f_y_set,0,0,2,0}, -{"CvPoint2D64f_y_get",_wrap_CvPoint2D64f_y_get,0,0,2,0}, -{"new_CvPoint2D64f",_wrap_new_CvPoint2D64f,0,0,2,_wrap_new_CvPoint2D64f_texinfo}, -{"delete_CvPoint2D64f",_wrap_delete_CvPoint2D64f,0,0,2,_wrap_delete_CvPoint2D64f_texinfo}, -{"cvPoint2D64f",_wrap_cvPoint2D64f,0,0,2,_wrap_cvPoint2D64f_texinfo}, -{"CvPoint3D64f_x_set",_wrap_CvPoint3D64f_x_set,0,0,2,0}, -{"CvPoint3D64f_x_get",_wrap_CvPoint3D64f_x_get,0,0,2,0}, -{"CvPoint3D64f_y_set",_wrap_CvPoint3D64f_y_set,0,0,2,0}, -{"CvPoint3D64f_y_get",_wrap_CvPoint3D64f_y_get,0,0,2,0}, -{"CvPoint3D64f_z_set",_wrap_CvPoint3D64f_z_set,0,0,2,0}, -{"CvPoint3D64f_z_get",_wrap_CvPoint3D64f_z_get,0,0,2,0}, -{"new_CvPoint3D64f",_wrap_new_CvPoint3D64f,0,0,2,_wrap_new_CvPoint3D64f_texinfo}, -{"delete_CvPoint3D64f",_wrap_delete_CvPoint3D64f,0,0,2,_wrap_delete_CvPoint3D64f_texinfo}, -{"cvPoint3D64f",_wrap_cvPoint3D64f,0,0,2,_wrap_cvPoint3D64f_texinfo}, -{"CvSize_width_set",_wrap_CvSize_width_set,0,0,2,0}, -{"CvSize_width_get",_wrap_CvSize_width_get,0,0,2,0}, -{"CvSize_height_set",_wrap_CvSize_height_set,0,0,2,0}, -{"CvSize_height_get",_wrap_CvSize_height_get,0,0,2,0}, -{"new_CvSize",_wrap_new_CvSize,0,0,2,_wrap_new_CvSize_texinfo}, -{"delete_CvSize",_wrap_delete_CvSize,0,0,2,_wrap_delete_CvSize_texinfo}, -{"cvSize",_wrap_cvSize,0,0,2,_wrap_cvSize_texinfo}, -{"CvSize2D32f_width_set",_wrap_CvSize2D32f_width_set,0,0,2,0}, -{"CvSize2D32f_width_get",_wrap_CvSize2D32f_width_get,0,0,2,0}, -{"CvSize2D32f_height_set",_wrap_CvSize2D32f_height_set,0,0,2,0}, -{"CvSize2D32f_height_get",_wrap_CvSize2D32f_height_get,0,0,2,0}, -{"new_CvSize2D32f",_wrap_new_CvSize2D32f,0,0,2,_wrap_new_CvSize2D32f_texinfo}, -{"delete_CvSize2D32f",_wrap_delete_CvSize2D32f,0,0,2,_wrap_delete_CvSize2D32f_texinfo}, -{"cvSize2D32f",_wrap_cvSize2D32f,0,0,2,_wrap_cvSize2D32f_texinfo}, -{"CvBox2D_center_set",_wrap_CvBox2D_center_set,0,0,2,0}, -{"CvBox2D_center_get",_wrap_CvBox2D_center_get,0,0,2,0}, -{"CvBox2D_size_set",_wrap_CvBox2D_size_set,0,0,2,0}, -{"CvBox2D_size_get",_wrap_CvBox2D_size_get,0,0,2,0}, -{"CvBox2D_angle_set",_wrap_CvBox2D_angle_set,0,0,2,0}, -{"CvBox2D_angle_get",_wrap_CvBox2D_angle_get,0,0,2,0}, -{"new_CvBox2D",_wrap_new_CvBox2D,0,0,2,_wrap_new_CvBox2D_texinfo}, -{"delete_CvBox2D",_wrap_delete_CvBox2D,0,0,2,_wrap_delete_CvBox2D_texinfo}, -{"CvLineIterator_ptr_set",_wrap_CvLineIterator_ptr_set,0,0,2,0}, -{"CvLineIterator_ptr_get",_wrap_CvLineIterator_ptr_get,0,0,2,0}, -{"CvLineIterator_err_set",_wrap_CvLineIterator_err_set,0,0,2,0}, -{"CvLineIterator_err_get",_wrap_CvLineIterator_err_get,0,0,2,0}, -{"CvLineIterator_plus_delta_set",_wrap_CvLineIterator_plus_delta_set,0,0,2,0}, -{"CvLineIterator_plus_delta_get",_wrap_CvLineIterator_plus_delta_get,0,0,2,0}, -{"CvLineIterator_minus_delta_set",_wrap_CvLineIterator_minus_delta_set,0,0,2,0}, -{"CvLineIterator_minus_delta_get",_wrap_CvLineIterator_minus_delta_get,0,0,2,0}, -{"CvLineIterator_plus_step_set",_wrap_CvLineIterator_plus_step_set,0,0,2,0}, -{"CvLineIterator_plus_step_get",_wrap_CvLineIterator_plus_step_get,0,0,2,0}, -{"CvLineIterator_minus_step_set",_wrap_CvLineIterator_minus_step_set,0,0,2,0}, -{"CvLineIterator_minus_step_get",_wrap_CvLineIterator_minus_step_get,0,0,2,0}, -{"new_CvLineIterator",_wrap_new_CvLineIterator,0,0,2,_wrap_new_CvLineIterator_texinfo}, -{"delete_CvLineIterator",_wrap_delete_CvLineIterator,0,0,2,_wrap_delete_CvLineIterator_texinfo}, -{"CvSlice_start_index_set",_wrap_CvSlice_start_index_set,0,0,2,0}, -{"CvSlice_start_index_get",_wrap_CvSlice_start_index_get,0,0,2,0}, -{"CvSlice_end_index_set",_wrap_CvSlice_end_index_set,0,0,2,0}, -{"CvSlice_end_index_get",_wrap_CvSlice_end_index_get,0,0,2,0}, -{"new_CvSlice",_wrap_new_CvSlice,0,0,2,_wrap_new_CvSlice_texinfo}, -{"delete_CvSlice",_wrap_delete_CvSlice,0,0,2,_wrap_delete_CvSlice_texinfo}, -{"cvSlice",_wrap_cvSlice,0,0,2,_wrap_cvSlice_texinfo}, -{"CvScalar_val_set",_wrap_CvScalar_val_set,0,0,2,0}, -{"CvScalar_val_get",_wrap_CvScalar_val_get,0,0,2,0}, -{"CvScalar___str__",_wrap_CvScalar___str__,0,0,2,_wrap_CvScalar___str___texinfo}, -{"CvScalar___repr__",_wrap_CvScalar___repr__,0,0,2,_wrap_CvScalar___repr___texinfo}, -{"CvScalar___getitem__",_wrap_CvScalar___getitem__,0,0,2,_wrap_CvScalar___getitem___texinfo}, -{"CvScalar___setitem__",_wrap_CvScalar___setitem__,0,0,2,_wrap_CvScalar___setitem___texinfo}, -{"new_CvScalar",_wrap_new_CvScalar,0,0,2,_wrap_new_CvScalar_texinfo}, -{"delete_CvScalar",_wrap_delete_CvScalar,0,0,2,_wrap_delete_CvScalar_texinfo}, -{"cvScalar",_wrap_cvScalar,0,0,2,_wrap_cvScalar_texinfo}, -{"cvRealScalar",_wrap_cvRealScalar,0,0,2,_wrap_cvRealScalar_texinfo}, -{"cvScalarAll",_wrap_cvScalarAll,0,0,2,_wrap_cvScalarAll_texinfo}, -{"CvMemBlock_prev_set",_wrap_CvMemBlock_prev_set,0,0,2,0}, -{"CvMemBlock_prev_get",_wrap_CvMemBlock_prev_get,0,0,2,0}, -{"CvMemBlock_next_set",_wrap_CvMemBlock_next_set,0,0,2,0}, -{"CvMemBlock_next_get",_wrap_CvMemBlock_next_get,0,0,2,0}, -{"new_CvMemBlock",_wrap_new_CvMemBlock,0,0,2,_wrap_new_CvMemBlock_texinfo}, -{"delete_CvMemBlock",_wrap_delete_CvMemBlock,0,0,2,_wrap_delete_CvMemBlock_texinfo}, -{"CvMemStorage_signature_set",_wrap_CvMemStorage_signature_set,0,0,2,0}, -{"CvMemStorage_signature_get",_wrap_CvMemStorage_signature_get,0,0,2,0}, -{"CvMemStorage_bottom_set",_wrap_CvMemStorage_bottom_set,0,0,2,0}, -{"CvMemStorage_bottom_get",_wrap_CvMemStorage_bottom_get,0,0,2,0}, -{"CvMemStorage_top_set",_wrap_CvMemStorage_top_set,0,0,2,0}, -{"CvMemStorage_top_get",_wrap_CvMemStorage_top_get,0,0,2,0}, -{"CvMemStorage_parent_set",_wrap_CvMemStorage_parent_set,0,0,2,0}, -{"CvMemStorage_parent_get",_wrap_CvMemStorage_parent_get,0,0,2,0}, -{"CvMemStorage_block_size_set",_wrap_CvMemStorage_block_size_set,0,0,2,0}, -{"CvMemStorage_block_size_get",_wrap_CvMemStorage_block_size_get,0,0,2,0}, -{"CvMemStorage_free_space_set",_wrap_CvMemStorage_free_space_set,0,0,2,0}, -{"CvMemStorage_free_space_get",_wrap_CvMemStorage_free_space_get,0,0,2,0}, -{"delete_CvMemStorage",_wrap_delete_CvMemStorage,0,0,2,_wrap_delete_CvMemStorage_texinfo}, -{"CvMemStoragePos_top_set",_wrap_CvMemStoragePos_top_set,0,0,2,0}, -{"CvMemStoragePos_top_get",_wrap_CvMemStoragePos_top_get,0,0,2,0}, -{"CvMemStoragePos_free_space_set",_wrap_CvMemStoragePos_free_space_set,0,0,2,0}, -{"CvMemStoragePos_free_space_get",_wrap_CvMemStoragePos_free_space_get,0,0,2,0}, -{"new_CvMemStoragePos",_wrap_new_CvMemStoragePos,0,0,2,_wrap_new_CvMemStoragePos_texinfo}, -{"delete_CvMemStoragePos",_wrap_delete_CvMemStoragePos,0,0,2,_wrap_delete_CvMemStoragePos_texinfo}, -{"CvSeqBlock_prev_set",_wrap_CvSeqBlock_prev_set,0,0,2,0}, -{"CvSeqBlock_prev_get",_wrap_CvSeqBlock_prev_get,0,0,2,0}, -{"CvSeqBlock_next_set",_wrap_CvSeqBlock_next_set,0,0,2,0}, -{"CvSeqBlock_next_get",_wrap_CvSeqBlock_next_get,0,0,2,0}, -{"CvSeqBlock_start_index_set",_wrap_CvSeqBlock_start_index_set,0,0,2,0}, -{"CvSeqBlock_start_index_get",_wrap_CvSeqBlock_start_index_get,0,0,2,0}, -{"CvSeqBlock_count_set",_wrap_CvSeqBlock_count_set,0,0,2,0}, -{"CvSeqBlock_count_get",_wrap_CvSeqBlock_count_get,0,0,2,0}, -{"CvSeqBlock_data_set",_wrap_CvSeqBlock_data_set,0,0,2,0}, -{"CvSeqBlock_data_get",_wrap_CvSeqBlock_data_get,0,0,2,0}, -{"new_CvSeqBlock",_wrap_new_CvSeqBlock,0,0,2,_wrap_new_CvSeqBlock_texinfo}, -{"delete_CvSeqBlock",_wrap_delete_CvSeqBlock,0,0,2,_wrap_delete_CvSeqBlock_texinfo}, -{"CvSeq_flags_set",_wrap_CvSeq_flags_set,0,0,2,0}, -{"CvSeq_flags_get",_wrap_CvSeq_flags_get,0,0,2,0}, -{"CvSeq_header_size_set",_wrap_CvSeq_header_size_set,0,0,2,0}, -{"CvSeq_header_size_get",_wrap_CvSeq_header_size_get,0,0,2,0}, -{"CvSeq_h_prev_set",_wrap_CvSeq_h_prev_set,0,0,2,0}, -{"CvSeq_h_prev_get",_wrap_CvSeq_h_prev_get,0,0,2,0}, -{"CvSeq_h_next_set",_wrap_CvSeq_h_next_set,0,0,2,0}, -{"CvSeq_h_next_get",_wrap_CvSeq_h_next_get,0,0,2,0}, -{"CvSeq_v_prev_set",_wrap_CvSeq_v_prev_set,0,0,2,0}, -{"CvSeq_v_prev_get",_wrap_CvSeq_v_prev_get,0,0,2,0}, -{"CvSeq_v_next_set",_wrap_CvSeq_v_next_set,0,0,2,0}, -{"CvSeq_v_next_get",_wrap_CvSeq_v_next_get,0,0,2,0}, -{"CvSeq_total_set",_wrap_CvSeq_total_set,0,0,2,0}, -{"CvSeq_total_get",_wrap_CvSeq_total_get,0,0,2,0}, -{"CvSeq_elem_size_set",_wrap_CvSeq_elem_size_set,0,0,2,0}, -{"CvSeq_elem_size_get",_wrap_CvSeq_elem_size_get,0,0,2,0}, -{"CvSeq_block_max_set",_wrap_CvSeq_block_max_set,0,0,2,0}, -{"CvSeq_block_max_get",_wrap_CvSeq_block_max_get,0,0,2,0}, -{"CvSeq_ptr_set",_wrap_CvSeq_ptr_set,0,0,2,0}, -{"CvSeq_ptr_get",_wrap_CvSeq_ptr_get,0,0,2,0}, -{"CvSeq_delta_elems_set",_wrap_CvSeq_delta_elems_set,0,0,2,0}, -{"CvSeq_delta_elems_get",_wrap_CvSeq_delta_elems_get,0,0,2,0}, -{"CvSeq_storage_set",_wrap_CvSeq_storage_set,0,0,2,0}, -{"CvSeq_storage_get",_wrap_CvSeq_storage_get,0,0,2,0}, -{"CvSeq_free_blocks_set",_wrap_CvSeq_free_blocks_set,0,0,2,0}, -{"CvSeq_free_blocks_get",_wrap_CvSeq_free_blocks_get,0,0,2,0}, -{"CvSeq_first_set",_wrap_CvSeq_first_set,0,0,2,0}, -{"CvSeq_first_get",_wrap_CvSeq_first_get,0,0,2,0}, -{"new_CvSeq",_wrap_new_CvSeq,0,0,2,_wrap_new_CvSeq_texinfo}, -{"delete_CvSeq",_wrap_delete_CvSeq,0,0,2,_wrap_delete_CvSeq_texinfo}, -{"CvSetElem_flags_set",_wrap_CvSetElem_flags_set,0,0,2,0}, -{"CvSetElem_flags_get",_wrap_CvSetElem_flags_get,0,0,2,0}, -{"CvSetElem_next_free_set",_wrap_CvSetElem_next_free_set,0,0,2,0}, -{"CvSetElem_next_free_get",_wrap_CvSetElem_next_free_get,0,0,2,0}, -{"new_CvSetElem",_wrap_new_CvSetElem,0,0,2,_wrap_new_CvSetElem_texinfo}, -{"delete_CvSetElem",_wrap_delete_CvSetElem,0,0,2,_wrap_delete_CvSetElem_texinfo}, -{"CvSet_flags_set",_wrap_CvSet_flags_set,0,0,2,0}, -{"CvSet_flags_get",_wrap_CvSet_flags_get,0,0,2,0}, -{"CvSet_header_size_set",_wrap_CvSet_header_size_set,0,0,2,0}, -{"CvSet_header_size_get",_wrap_CvSet_header_size_get,0,0,2,0}, -{"CvSet_h_prev_set",_wrap_CvSet_h_prev_set,0,0,2,0}, -{"CvSet_h_prev_get",_wrap_CvSet_h_prev_get,0,0,2,0}, -{"CvSet_h_next_set",_wrap_CvSet_h_next_set,0,0,2,0}, -{"CvSet_h_next_get",_wrap_CvSet_h_next_get,0,0,2,0}, -{"CvSet_v_prev_set",_wrap_CvSet_v_prev_set,0,0,2,0}, -{"CvSet_v_prev_get",_wrap_CvSet_v_prev_get,0,0,2,0}, -{"CvSet_v_next_set",_wrap_CvSet_v_next_set,0,0,2,0}, -{"CvSet_v_next_get",_wrap_CvSet_v_next_get,0,0,2,0}, -{"CvSet_total_set",_wrap_CvSet_total_set,0,0,2,0}, -{"CvSet_total_get",_wrap_CvSet_total_get,0,0,2,0}, -{"CvSet_elem_size_set",_wrap_CvSet_elem_size_set,0,0,2,0}, -{"CvSet_elem_size_get",_wrap_CvSet_elem_size_get,0,0,2,0}, -{"CvSet_block_max_set",_wrap_CvSet_block_max_set,0,0,2,0}, -{"CvSet_block_max_get",_wrap_CvSet_block_max_get,0,0,2,0}, -{"CvSet_ptr_set",_wrap_CvSet_ptr_set,0,0,2,0}, -{"CvSet_ptr_get",_wrap_CvSet_ptr_get,0,0,2,0}, -{"CvSet_delta_elems_set",_wrap_CvSet_delta_elems_set,0,0,2,0}, -{"CvSet_delta_elems_get",_wrap_CvSet_delta_elems_get,0,0,2,0}, -{"CvSet_storage_set",_wrap_CvSet_storage_set,0,0,2,0}, -{"CvSet_storage_get",_wrap_CvSet_storage_get,0,0,2,0}, -{"CvSet_free_blocks_set",_wrap_CvSet_free_blocks_set,0,0,2,0}, -{"CvSet_free_blocks_get",_wrap_CvSet_free_blocks_get,0,0,2,0}, -{"CvSet_first_set",_wrap_CvSet_first_set,0,0,2,0}, -{"CvSet_first_get",_wrap_CvSet_first_get,0,0,2,0}, -{"CvSet_free_elems_set",_wrap_CvSet_free_elems_set,0,0,2,0}, -{"CvSet_free_elems_get",_wrap_CvSet_free_elems_get,0,0,2,0}, -{"CvSet_active_count_set",_wrap_CvSet_active_count_set,0,0,2,0}, -{"CvSet_active_count_get",_wrap_CvSet_active_count_get,0,0,2,0}, -{"new_CvSet",_wrap_new_CvSet,0,0,2,_wrap_new_CvSet_texinfo}, -{"delete_CvSet",_wrap_delete_CvSet,0,0,2,_wrap_delete_CvSet_texinfo}, -{"CvGraphEdge_flags_set",_wrap_CvGraphEdge_flags_set,0,0,2,0}, -{"CvGraphEdge_flags_get",_wrap_CvGraphEdge_flags_get,0,0,2,0}, -{"CvGraphEdge_weight_set",_wrap_CvGraphEdge_weight_set,0,0,2,0}, -{"CvGraphEdge_weight_get",_wrap_CvGraphEdge_weight_get,0,0,2,0}, -{"CvGraphEdge_next_set",_wrap_CvGraphEdge_next_set,0,0,2,0}, -{"CvGraphEdge_next_get",_wrap_CvGraphEdge_next_get,0,0,2,0}, -{"CvGraphEdge_vtx_set",_wrap_CvGraphEdge_vtx_set,0,0,2,0}, -{"CvGraphEdge_vtx_get",_wrap_CvGraphEdge_vtx_get,0,0,2,0}, -{"new_CvGraphEdge",_wrap_new_CvGraphEdge,0,0,2,_wrap_new_CvGraphEdge_texinfo}, -{"delete_CvGraphEdge",_wrap_delete_CvGraphEdge,0,0,2,_wrap_delete_CvGraphEdge_texinfo}, -{"CvGraphVtx_flags_set",_wrap_CvGraphVtx_flags_set,0,0,2,0}, -{"CvGraphVtx_flags_get",_wrap_CvGraphVtx_flags_get,0,0,2,0}, -{"CvGraphVtx_first_set",_wrap_CvGraphVtx_first_set,0,0,2,0}, -{"CvGraphVtx_first_get",_wrap_CvGraphVtx_first_get,0,0,2,0}, -{"new_CvGraphVtx",_wrap_new_CvGraphVtx,0,0,2,_wrap_new_CvGraphVtx_texinfo}, -{"delete_CvGraphVtx",_wrap_delete_CvGraphVtx,0,0,2,_wrap_delete_CvGraphVtx_texinfo}, -{"CvGraphVtx2D_flags_set",_wrap_CvGraphVtx2D_flags_set,0,0,2,0}, -{"CvGraphVtx2D_flags_get",_wrap_CvGraphVtx2D_flags_get,0,0,2,0}, -{"CvGraphVtx2D_first_set",_wrap_CvGraphVtx2D_first_set,0,0,2,0}, -{"CvGraphVtx2D_first_get",_wrap_CvGraphVtx2D_first_get,0,0,2,0}, -{"CvGraphVtx2D_ptr_set",_wrap_CvGraphVtx2D_ptr_set,0,0,2,0}, -{"CvGraphVtx2D_ptr_get",_wrap_CvGraphVtx2D_ptr_get,0,0,2,0}, -{"new_CvGraphVtx2D",_wrap_new_CvGraphVtx2D,0,0,2,_wrap_new_CvGraphVtx2D_texinfo}, -{"delete_CvGraphVtx2D",_wrap_delete_CvGraphVtx2D,0,0,2,_wrap_delete_CvGraphVtx2D_texinfo}, -{"CvGraph_flags_set",_wrap_CvGraph_flags_set,0,0,2,0}, -{"CvGraph_flags_get",_wrap_CvGraph_flags_get,0,0,2,0}, -{"CvGraph_header_size_set",_wrap_CvGraph_header_size_set,0,0,2,0}, -{"CvGraph_header_size_get",_wrap_CvGraph_header_size_get,0,0,2,0}, -{"CvGraph_h_prev_set",_wrap_CvGraph_h_prev_set,0,0,2,0}, -{"CvGraph_h_prev_get",_wrap_CvGraph_h_prev_get,0,0,2,0}, -{"CvGraph_h_next_set",_wrap_CvGraph_h_next_set,0,0,2,0}, -{"CvGraph_h_next_get",_wrap_CvGraph_h_next_get,0,0,2,0}, -{"CvGraph_v_prev_set",_wrap_CvGraph_v_prev_set,0,0,2,0}, -{"CvGraph_v_prev_get",_wrap_CvGraph_v_prev_get,0,0,2,0}, -{"CvGraph_v_next_set",_wrap_CvGraph_v_next_set,0,0,2,0}, -{"CvGraph_v_next_get",_wrap_CvGraph_v_next_get,0,0,2,0}, -{"CvGraph_total_set",_wrap_CvGraph_total_set,0,0,2,0}, -{"CvGraph_total_get",_wrap_CvGraph_total_get,0,0,2,0}, -{"CvGraph_elem_size_set",_wrap_CvGraph_elem_size_set,0,0,2,0}, -{"CvGraph_elem_size_get",_wrap_CvGraph_elem_size_get,0,0,2,0}, -{"CvGraph_block_max_set",_wrap_CvGraph_block_max_set,0,0,2,0}, -{"CvGraph_block_max_get",_wrap_CvGraph_block_max_get,0,0,2,0}, -{"CvGraph_ptr_set",_wrap_CvGraph_ptr_set,0,0,2,0}, -{"CvGraph_ptr_get",_wrap_CvGraph_ptr_get,0,0,2,0}, -{"CvGraph_delta_elems_set",_wrap_CvGraph_delta_elems_set,0,0,2,0}, -{"CvGraph_delta_elems_get",_wrap_CvGraph_delta_elems_get,0,0,2,0}, -{"CvGraph_storage_set",_wrap_CvGraph_storage_set,0,0,2,0}, -{"CvGraph_storage_get",_wrap_CvGraph_storage_get,0,0,2,0}, -{"CvGraph_free_blocks_set",_wrap_CvGraph_free_blocks_set,0,0,2,0}, -{"CvGraph_free_blocks_get",_wrap_CvGraph_free_blocks_get,0,0,2,0}, -{"CvGraph_first_set",_wrap_CvGraph_first_set,0,0,2,0}, -{"CvGraph_first_get",_wrap_CvGraph_first_get,0,0,2,0}, -{"CvGraph_free_elems_set",_wrap_CvGraph_free_elems_set,0,0,2,0}, -{"CvGraph_free_elems_get",_wrap_CvGraph_free_elems_get,0,0,2,0}, -{"CvGraph_active_count_set",_wrap_CvGraph_active_count_set,0,0,2,0}, -{"CvGraph_active_count_get",_wrap_CvGraph_active_count_get,0,0,2,0}, -{"CvGraph_edges_set",_wrap_CvGraph_edges_set,0,0,2,0}, -{"CvGraph_edges_get",_wrap_CvGraph_edges_get,0,0,2,0}, -{"new_CvGraph",_wrap_new_CvGraph,0,0,2,_wrap_new_CvGraph_texinfo}, -{"delete_CvGraph",_wrap_delete_CvGraph,0,0,2,_wrap_delete_CvGraph_texinfo}, -{"CvChain_flags_set",_wrap_CvChain_flags_set,0,0,2,0}, -{"CvChain_flags_get",_wrap_CvChain_flags_get,0,0,2,0}, -{"CvChain_header_size_set",_wrap_CvChain_header_size_set,0,0,2,0}, -{"CvChain_header_size_get",_wrap_CvChain_header_size_get,0,0,2,0}, -{"CvChain_h_prev_set",_wrap_CvChain_h_prev_set,0,0,2,0}, -{"CvChain_h_prev_get",_wrap_CvChain_h_prev_get,0,0,2,0}, -{"CvChain_h_next_set",_wrap_CvChain_h_next_set,0,0,2,0}, -{"CvChain_h_next_get",_wrap_CvChain_h_next_get,0,0,2,0}, -{"CvChain_v_prev_set",_wrap_CvChain_v_prev_set,0,0,2,0}, -{"CvChain_v_prev_get",_wrap_CvChain_v_prev_get,0,0,2,0}, -{"CvChain_v_next_set",_wrap_CvChain_v_next_set,0,0,2,0}, -{"CvChain_v_next_get",_wrap_CvChain_v_next_get,0,0,2,0}, -{"CvChain_total_set",_wrap_CvChain_total_set,0,0,2,0}, -{"CvChain_total_get",_wrap_CvChain_total_get,0,0,2,0}, -{"CvChain_elem_size_set",_wrap_CvChain_elem_size_set,0,0,2,0}, -{"CvChain_elem_size_get",_wrap_CvChain_elem_size_get,0,0,2,0}, -{"CvChain_block_max_set",_wrap_CvChain_block_max_set,0,0,2,0}, -{"CvChain_block_max_get",_wrap_CvChain_block_max_get,0,0,2,0}, -{"CvChain_ptr_set",_wrap_CvChain_ptr_set,0,0,2,0}, -{"CvChain_ptr_get",_wrap_CvChain_ptr_get,0,0,2,0}, -{"CvChain_delta_elems_set",_wrap_CvChain_delta_elems_set,0,0,2,0}, -{"CvChain_delta_elems_get",_wrap_CvChain_delta_elems_get,0,0,2,0}, -{"CvChain_storage_set",_wrap_CvChain_storage_set,0,0,2,0}, -{"CvChain_storage_get",_wrap_CvChain_storage_get,0,0,2,0}, -{"CvChain_free_blocks_set",_wrap_CvChain_free_blocks_set,0,0,2,0}, -{"CvChain_free_blocks_get",_wrap_CvChain_free_blocks_get,0,0,2,0}, -{"CvChain_first_set",_wrap_CvChain_first_set,0,0,2,0}, -{"CvChain_first_get",_wrap_CvChain_first_get,0,0,2,0}, -{"CvChain_origin_set",_wrap_CvChain_origin_set,0,0,2,0}, -{"CvChain_origin_get",_wrap_CvChain_origin_get,0,0,2,0}, -{"new_CvChain",_wrap_new_CvChain,0,0,2,_wrap_new_CvChain_texinfo}, -{"delete_CvChain",_wrap_delete_CvChain,0,0,2,_wrap_delete_CvChain_texinfo}, -{"CvContour_flags_set",_wrap_CvContour_flags_set,0,0,2,0}, -{"CvContour_flags_get",_wrap_CvContour_flags_get,0,0,2,0}, -{"CvContour_header_size_set",_wrap_CvContour_header_size_set,0,0,2,0}, -{"CvContour_header_size_get",_wrap_CvContour_header_size_get,0,0,2,0}, -{"CvContour_h_prev_set",_wrap_CvContour_h_prev_set,0,0,2,0}, -{"CvContour_h_prev_get",_wrap_CvContour_h_prev_get,0,0,2,0}, -{"CvContour_h_next_set",_wrap_CvContour_h_next_set,0,0,2,0}, -{"CvContour_h_next_get",_wrap_CvContour_h_next_get,0,0,2,0}, -{"CvContour_v_prev_set",_wrap_CvContour_v_prev_set,0,0,2,0}, -{"CvContour_v_prev_get",_wrap_CvContour_v_prev_get,0,0,2,0}, -{"CvContour_v_next_set",_wrap_CvContour_v_next_set,0,0,2,0}, -{"CvContour_v_next_get",_wrap_CvContour_v_next_get,0,0,2,0}, -{"CvContour_total_set",_wrap_CvContour_total_set,0,0,2,0}, -{"CvContour_total_get",_wrap_CvContour_total_get,0,0,2,0}, -{"CvContour_elem_size_set",_wrap_CvContour_elem_size_set,0,0,2,0}, -{"CvContour_elem_size_get",_wrap_CvContour_elem_size_get,0,0,2,0}, -{"CvContour_block_max_set",_wrap_CvContour_block_max_set,0,0,2,0}, -{"CvContour_block_max_get",_wrap_CvContour_block_max_get,0,0,2,0}, -{"CvContour_ptr_set",_wrap_CvContour_ptr_set,0,0,2,0}, -{"CvContour_ptr_get",_wrap_CvContour_ptr_get,0,0,2,0}, -{"CvContour_delta_elems_set",_wrap_CvContour_delta_elems_set,0,0,2,0}, -{"CvContour_delta_elems_get",_wrap_CvContour_delta_elems_get,0,0,2,0}, -{"CvContour_storage_set",_wrap_CvContour_storage_set,0,0,2,0}, -{"CvContour_storage_get",_wrap_CvContour_storage_get,0,0,2,0}, -{"CvContour_free_blocks_set",_wrap_CvContour_free_blocks_set,0,0,2,0}, -{"CvContour_free_blocks_get",_wrap_CvContour_free_blocks_get,0,0,2,0}, -{"CvContour_first_set",_wrap_CvContour_first_set,0,0,2,0}, -{"CvContour_first_get",_wrap_CvContour_first_get,0,0,2,0}, -{"CvContour_rect_set",_wrap_CvContour_rect_set,0,0,2,0}, -{"CvContour_rect_get",_wrap_CvContour_rect_get,0,0,2,0}, -{"CvContour_color_set",_wrap_CvContour_color_set,0,0,2,0}, -{"CvContour_color_get",_wrap_CvContour_color_get,0,0,2,0}, -{"CvContour_reserved_set",_wrap_CvContour_reserved_set,0,0,2,0}, -{"CvContour_reserved_get",_wrap_CvContour_reserved_get,0,0,2,0}, -{"new_CvContour",_wrap_new_CvContour,0,0,2,_wrap_new_CvContour_texinfo}, -{"delete_CvContour",_wrap_delete_CvContour,0,0,2,_wrap_delete_CvContour_texinfo}, -{"CvSeqWriter_header_size_set",_wrap_CvSeqWriter_header_size_set,0,0,2,0}, -{"CvSeqWriter_header_size_get",_wrap_CvSeqWriter_header_size_get,0,0,2,0}, -{"CvSeqWriter_seq_set",_wrap_CvSeqWriter_seq_set,0,0,2,0}, -{"CvSeqWriter_seq_get",_wrap_CvSeqWriter_seq_get,0,0,2,0}, -{"CvSeqWriter_block_set",_wrap_CvSeqWriter_block_set,0,0,2,0}, -{"CvSeqWriter_block_get",_wrap_CvSeqWriter_block_get,0,0,2,0}, -{"CvSeqWriter_ptr_set",_wrap_CvSeqWriter_ptr_set,0,0,2,0}, -{"CvSeqWriter_ptr_get",_wrap_CvSeqWriter_ptr_get,0,0,2,0}, -{"CvSeqWriter_block_min_set",_wrap_CvSeqWriter_block_min_set,0,0,2,0}, -{"CvSeqWriter_block_min_get",_wrap_CvSeqWriter_block_min_get,0,0,2,0}, -{"CvSeqWriter_block_max_set",_wrap_CvSeqWriter_block_max_set,0,0,2,0}, -{"CvSeqWriter_block_max_get",_wrap_CvSeqWriter_block_max_get,0,0,2,0}, -{"new_CvSeqWriter",_wrap_new_CvSeqWriter,0,0,2,_wrap_new_CvSeqWriter_texinfo}, -{"delete_CvSeqWriter",_wrap_delete_CvSeqWriter,0,0,2,_wrap_delete_CvSeqWriter_texinfo}, -{"CvSeqReader_header_size_set",_wrap_CvSeqReader_header_size_set,0,0,2,0}, -{"CvSeqReader_header_size_get",_wrap_CvSeqReader_header_size_get,0,0,2,0}, -{"CvSeqReader_seq_set",_wrap_CvSeqReader_seq_set,0,0,2,0}, -{"CvSeqReader_seq_get",_wrap_CvSeqReader_seq_get,0,0,2,0}, -{"CvSeqReader_block_set",_wrap_CvSeqReader_block_set,0,0,2,0}, -{"CvSeqReader_block_get",_wrap_CvSeqReader_block_get,0,0,2,0}, -{"CvSeqReader_ptr_set",_wrap_CvSeqReader_ptr_set,0,0,2,0}, -{"CvSeqReader_ptr_get",_wrap_CvSeqReader_ptr_get,0,0,2,0}, -{"CvSeqReader_block_min_set",_wrap_CvSeqReader_block_min_set,0,0,2,0}, -{"CvSeqReader_block_min_get",_wrap_CvSeqReader_block_min_get,0,0,2,0}, -{"CvSeqReader_block_max_set",_wrap_CvSeqReader_block_max_set,0,0,2,0}, -{"CvSeqReader_block_max_get",_wrap_CvSeqReader_block_max_get,0,0,2,0}, -{"CvSeqReader_delta_index_set",_wrap_CvSeqReader_delta_index_set,0,0,2,0}, -{"CvSeqReader_delta_index_get",_wrap_CvSeqReader_delta_index_get,0,0,2,0}, -{"CvSeqReader_prev_elem_set",_wrap_CvSeqReader_prev_elem_set,0,0,2,0}, -{"CvSeqReader_prev_elem_get",_wrap_CvSeqReader_prev_elem_get,0,0,2,0}, -{"new_CvSeqReader",_wrap_new_CvSeqReader,0,0,2,_wrap_new_CvSeqReader_texinfo}, -{"delete_CvSeqReader",_wrap_delete_CvSeqReader,0,0,2,_wrap_delete_CvSeqReader_texinfo}, -{"CvAttrList_attr_set",_wrap_CvAttrList_attr_set,0,0,2,0}, -{"CvAttrList_attr_get",_wrap_CvAttrList_attr_get,0,0,2,0}, -{"CvAttrList_next_set",_wrap_CvAttrList_next_set,0,0,2,0}, -{"CvAttrList_next_get",_wrap_CvAttrList_next_get,0,0,2,0}, -{"new_CvAttrList",_wrap_new_CvAttrList,0,0,2,_wrap_new_CvAttrList_texinfo}, -{"delete_CvAttrList",_wrap_delete_CvAttrList,0,0,2,_wrap_delete_CvAttrList_texinfo}, -{"cvAttrList",_wrap_cvAttrList,0,0,2,_wrap_cvAttrList_texinfo}, -{"CvString_len_set",_wrap_CvString_len_set,0,0,2,0}, -{"CvString_len_get",_wrap_CvString_len_get,0,0,2,0}, -{"CvString_ptr_set",_wrap_CvString_ptr_set,0,0,2,0}, -{"CvString_ptr_get",_wrap_CvString_ptr_get,0,0,2,0}, -{"new_CvString",_wrap_new_CvString,0,0,2,_wrap_new_CvString_texinfo}, -{"delete_CvString",_wrap_delete_CvString,0,0,2,_wrap_delete_CvString_texinfo}, -{"CvStringHashNode_hashval_set",_wrap_CvStringHashNode_hashval_set,0,0,2,0}, -{"CvStringHashNode_hashval_get",_wrap_CvStringHashNode_hashval_get,0,0,2,0}, -{"CvStringHashNode_str_set",_wrap_CvStringHashNode_str_set,0,0,2,0}, -{"CvStringHashNode_str_get",_wrap_CvStringHashNode_str_get,0,0,2,0}, -{"CvStringHashNode_next_set",_wrap_CvStringHashNode_next_set,0,0,2,0}, -{"CvStringHashNode_next_get",_wrap_CvStringHashNode_next_get,0,0,2,0}, -{"new_CvStringHashNode",_wrap_new_CvStringHashNode,0,0,2,_wrap_new_CvStringHashNode_texinfo}, -{"delete_CvStringHashNode",_wrap_delete_CvStringHashNode,0,0,2,_wrap_delete_CvStringHashNode_texinfo}, -{"CvFileNode_tag_set",_wrap_CvFileNode_tag_set,0,0,2,0}, -{"CvFileNode_tag_get",_wrap_CvFileNode_tag_get,0,0,2,0}, -{"CvFileNode_info_set",_wrap_CvFileNode_info_set,0,0,2,0}, -{"CvFileNode_info_get",_wrap_CvFileNode_info_get,0,0,2,0}, -{"CvFileNode_data_get",_wrap_CvFileNode_data_get,0,0,2,0}, -{"new_CvFileNode",_wrap_new_CvFileNode,0,0,2,_wrap_new_CvFileNode_texinfo}, -{"delete_CvFileNode",_wrap_delete_CvFileNode,0,0,2,_wrap_delete_CvFileNode_texinfo}, -{"CvFileNode_data_f_set",_wrap_CvFileNode_data_f_set,0,0,2,0}, -{"CvFileNode_data_f_get",_wrap_CvFileNode_data_f_get,0,0,2,0}, -{"CvFileNode_data_i_set",_wrap_CvFileNode_data_i_set,0,0,2,0}, -{"CvFileNode_data_i_get",_wrap_CvFileNode_data_i_get,0,0,2,0}, -{"CvFileNode_data_str_set",_wrap_CvFileNode_data_str_set,0,0,2,0}, -{"CvFileNode_data_str_get",_wrap_CvFileNode_data_str_get,0,0,2,0}, -{"CvFileNode_data_seq_set",_wrap_CvFileNode_data_seq_set,0,0,2,0}, -{"CvFileNode_data_seq_get",_wrap_CvFileNode_data_seq_get,0,0,2,0}, -{"CvFileNode_data_map_set",_wrap_CvFileNode_data_map_set,0,0,2,0}, -{"CvFileNode_data_map_get",_wrap_CvFileNode_data_map_get,0,0,2,0}, -{"new_CvFileNode_data",_wrap_new_CvFileNode_data,0,0,2,_wrap_new_CvFileNode_data_texinfo}, -{"delete_CvFileNode_data",_wrap_delete_CvFileNode_data,0,0,2,_wrap_delete_CvFileNode_data_texinfo}, -{"CvTypeInfo_flags_set",_wrap_CvTypeInfo_flags_set,0,0,2,0}, -{"CvTypeInfo_flags_get",_wrap_CvTypeInfo_flags_get,0,0,2,0}, -{"CvTypeInfo_header_size_set",_wrap_CvTypeInfo_header_size_set,0,0,2,0}, -{"CvTypeInfo_header_size_get",_wrap_CvTypeInfo_header_size_get,0,0,2,0}, -{"CvTypeInfo_prev_set",_wrap_CvTypeInfo_prev_set,0,0,2,0}, -{"CvTypeInfo_prev_get",_wrap_CvTypeInfo_prev_get,0,0,2,0}, -{"CvTypeInfo_next_set",_wrap_CvTypeInfo_next_set,0,0,2,0}, -{"CvTypeInfo_next_get",_wrap_CvTypeInfo_next_get,0,0,2,0}, -{"CvTypeInfo_type_name_set",_wrap_CvTypeInfo_type_name_set,0,0,2,0}, -{"CvTypeInfo_type_name_get",_wrap_CvTypeInfo_type_name_get,0,0,2,0}, -{"CvTypeInfo_is_instance_set",_wrap_CvTypeInfo_is_instance_set,0,0,2,0}, -{"CvTypeInfo_is_instance_get",_wrap_CvTypeInfo_is_instance_get,0,0,2,0}, -{"CvTypeInfo_release_set",_wrap_CvTypeInfo_release_set,0,0,2,0}, -{"CvTypeInfo_release_get",_wrap_CvTypeInfo_release_get,0,0,2,0}, -{"CvTypeInfo_read_set",_wrap_CvTypeInfo_read_set,0,0,2,0}, -{"CvTypeInfo_read_get",_wrap_CvTypeInfo_read_get,0,0,2,0}, -{"CvTypeInfo_write_set",_wrap_CvTypeInfo_write_set,0,0,2,0}, -{"CvTypeInfo_write_get",_wrap_CvTypeInfo_write_get,0,0,2,0}, -{"CvTypeInfo_clone_set",_wrap_CvTypeInfo_clone_set,0,0,2,0}, -{"CvTypeInfo_clone_get",_wrap_CvTypeInfo_clone_get,0,0,2,0}, -{"new_CvTypeInfo",_wrap_new_CvTypeInfo,0,0,2,_wrap_new_CvTypeInfo_texinfo}, -{"delete_CvTypeInfo",_wrap_delete_CvTypeInfo,0,0,2,_wrap_delete_CvTypeInfo_texinfo}, -{"CvPluginFuncInfo_func_addr_set",_wrap_CvPluginFuncInfo_func_addr_set,0,0,2,0}, -{"CvPluginFuncInfo_func_addr_get",_wrap_CvPluginFuncInfo_func_addr_get,0,0,2,0}, -{"CvPluginFuncInfo_default_func_addr_set",_wrap_CvPluginFuncInfo_default_func_addr_set,0,0,2,0}, -{"CvPluginFuncInfo_default_func_addr_get",_wrap_CvPluginFuncInfo_default_func_addr_get,0,0,2,0}, -{"CvPluginFuncInfo_func_names_set",_wrap_CvPluginFuncInfo_func_names_set,0,0,2,0}, -{"CvPluginFuncInfo_func_names_get",_wrap_CvPluginFuncInfo_func_names_get,0,0,2,0}, -{"CvPluginFuncInfo_search_modules_set",_wrap_CvPluginFuncInfo_search_modules_set,0,0,2,0}, -{"CvPluginFuncInfo_search_modules_get",_wrap_CvPluginFuncInfo_search_modules_get,0,0,2,0}, -{"CvPluginFuncInfo_loaded_from_set",_wrap_CvPluginFuncInfo_loaded_from_set,0,0,2,0}, -{"CvPluginFuncInfo_loaded_from_get",_wrap_CvPluginFuncInfo_loaded_from_get,0,0,2,0}, -{"new_CvPluginFuncInfo",_wrap_new_CvPluginFuncInfo,0,0,2,_wrap_new_CvPluginFuncInfo_texinfo}, -{"delete_CvPluginFuncInfo",_wrap_delete_CvPluginFuncInfo,0,0,2,_wrap_delete_CvPluginFuncInfo_texinfo}, -{"CvModuleInfo_next_set",_wrap_CvModuleInfo_next_set,0,0,2,0}, -{"CvModuleInfo_next_get",_wrap_CvModuleInfo_next_get,0,0,2,0}, -{"CvModuleInfo_name_set",_wrap_CvModuleInfo_name_set,0,0,2,0}, -{"CvModuleInfo_name_get",_wrap_CvModuleInfo_name_get,0,0,2,0}, -{"CvModuleInfo_version_set",_wrap_CvModuleInfo_version_set,0,0,2,0}, -{"CvModuleInfo_version_get",_wrap_CvModuleInfo_version_get,0,0,2,0}, -{"CvModuleInfo_func_tab_set",_wrap_CvModuleInfo_func_tab_set,0,0,2,0}, -{"CvModuleInfo_func_tab_get",_wrap_CvModuleInfo_func_tab_get,0,0,2,0}, -{"new_CvModuleInfo",_wrap_new_CvModuleInfo,0,0,2,_wrap_new_CvModuleInfo_texinfo}, -{"delete_CvModuleInfo",_wrap_delete_CvModuleInfo,0,0,2,_wrap_delete_CvModuleInfo_texinfo}, -{"cvAlloc",_wrap_cvAlloc,0,0,2,_wrap_cvAlloc_texinfo}, -{"cvFree_",_wrap_cvFree_,0,0,2,_wrap_cvFree__texinfo}, -{"cvReleaseImageHeader",_wrap_cvReleaseImageHeader,0,0,2,_wrap_cvReleaseImageHeader_texinfo}, -{"cvReleaseImage",_wrap_cvReleaseImage,0,0,2,_wrap_cvReleaseImage_texinfo}, -{"cvResetImageROI",_wrap_cvResetImageROI,0,0,2,_wrap_cvResetImageROI_texinfo}, -{"cvCreateMatHeader",_wrap_cvCreateMatHeader,0,0,2,_wrap_cvCreateMatHeader_texinfo}, -{"cvInitMatHeader",_wrap_cvInitMatHeader,0,0,2,_wrap_cvInitMatHeader_texinfo}, -{"cvCreateMat",_wrap_cvCreateMat,0,0,2,_wrap_cvCreateMat_texinfo}, -{"cvReleaseMat",_wrap_cvReleaseMat,0,0,2,_wrap_cvReleaseMat_texinfo}, -{"cvDecRefData",_wrap_cvDecRefData,0,0,2,_wrap_cvDecRefData_texinfo}, -{"cvIncRefData",_wrap_cvIncRefData,0,0,2,_wrap_cvIncRefData_texinfo}, -{"cvCloneMat",_wrap_cvCloneMat,0,0,2,_wrap_cvCloneMat_texinfo}, -{"cvGetSubRect",_wrap_cvGetSubRect,0,0,2,_wrap_cvGetSubRect_texinfo}, -{"cvGetRows",_wrap_cvGetRows,0,0,2,_wrap_cvGetRows_texinfo}, -{"cvGetRow",_wrap_cvGetRow,0,0,2,_wrap_cvGetRow_texinfo}, -{"cvGetCols",_wrap_cvGetCols,0,0,2,_wrap_cvGetCols_texinfo}, -{"cvGetCol",_wrap_cvGetCol,0,0,2,_wrap_cvGetCol_texinfo}, -{"cvGetDiag",_wrap_cvGetDiag,0,0,2,_wrap_cvGetDiag_texinfo}, -{"cvScalarToRawData",_wrap_cvScalarToRawData,0,0,2,_wrap_cvScalarToRawData_texinfo}, -{"cvRawDataToScalar",_wrap_cvRawDataToScalar,0,0,2,_wrap_cvRawDataToScalar_texinfo}, -{"cvCreateMatNDHeader",_wrap_cvCreateMatNDHeader,0,0,2,_wrap_cvCreateMatNDHeader_texinfo}, -{"cvCreateMatND",_wrap_cvCreateMatND,0,0,2,_wrap_cvCreateMatND_texinfo}, -{"cvInitMatNDHeader",_wrap_cvInitMatNDHeader,0,0,2,_wrap_cvInitMatNDHeader_texinfo}, -{"cvReleaseMatND",_wrap_cvReleaseMatND,0,0,2,_wrap_cvReleaseMatND_texinfo}, -{"cvCloneMatND",_wrap_cvCloneMatND,0,0,2,_wrap_cvCloneMatND_texinfo}, -{"cvCreateSparseMat",_wrap_cvCreateSparseMat,0,0,2,_wrap_cvCreateSparseMat_texinfo}, -{"cvReleaseSparseMat",_wrap_cvReleaseSparseMat,0,0,2,_wrap_cvReleaseSparseMat_texinfo}, -{"cvCloneSparseMat",_wrap_cvCloneSparseMat,0,0,2,_wrap_cvCloneSparseMat_texinfo}, -{"cvInitSparseMatIterator",_wrap_cvInitSparseMatIterator,0,0,2,_wrap_cvInitSparseMatIterator_texinfo}, -{"cvGetNextSparseNode",_wrap_cvGetNextSparseNode,0,0,2,_wrap_cvGetNextSparseNode_texinfo}, -{"CvNArrayIterator_count_set",_wrap_CvNArrayIterator_count_set,0,0,2,0}, -{"CvNArrayIterator_count_get",_wrap_CvNArrayIterator_count_get,0,0,2,0}, -{"CvNArrayIterator_dims_set",_wrap_CvNArrayIterator_dims_set,0,0,2,0}, -{"CvNArrayIterator_dims_get",_wrap_CvNArrayIterator_dims_get,0,0,2,0}, -{"CvNArrayIterator_size_set",_wrap_CvNArrayIterator_size_set,0,0,2,0}, -{"CvNArrayIterator_size_get",_wrap_CvNArrayIterator_size_get,0,0,2,0}, -{"CvNArrayIterator_ptr_set",_wrap_CvNArrayIterator_ptr_set,0,0,2,0}, -{"CvNArrayIterator_ptr_get",_wrap_CvNArrayIterator_ptr_get,0,0,2,0}, -{"CvNArrayIterator_stack_set",_wrap_CvNArrayIterator_stack_set,0,0,2,0}, -{"CvNArrayIterator_stack_get",_wrap_CvNArrayIterator_stack_get,0,0,2,0}, -{"CvNArrayIterator_hdr_set",_wrap_CvNArrayIterator_hdr_set,0,0,2,0}, -{"CvNArrayIterator_hdr_get",_wrap_CvNArrayIterator_hdr_get,0,0,2,0}, -{"new_CvNArrayIterator",_wrap_new_CvNArrayIterator,0,0,2,_wrap_new_CvNArrayIterator_texinfo}, -{"delete_CvNArrayIterator",_wrap_delete_CvNArrayIterator,0,0,2,_wrap_delete_CvNArrayIterator_texinfo}, -{"cvInitNArrayIterator",_wrap_cvInitNArrayIterator,0,0,2,_wrap_cvInitNArrayIterator_texinfo}, -{"cvNextNArraySlice",_wrap_cvNextNArraySlice,0,0,2,_wrap_cvNextNArraySlice_texinfo}, -{"cvGetElemType",_wrap_cvGetElemType,0,0,2,_wrap_cvGetElemType_texinfo}, -{"cvGetDims",_wrap_cvGetDims,0,0,2,_wrap_cvGetDims_texinfo}, -{"cvGetDimSize",_wrap_cvGetDimSize,0,0,2,_wrap_cvGetDimSize_texinfo}, -{"cvPtr1D",_wrap_cvPtr1D,0,0,2,_wrap_cvPtr1D_texinfo}, -{"cvPtr2D",_wrap_cvPtr2D,0,0,2,_wrap_cvPtr2D_texinfo}, -{"cvPtr3D",_wrap_cvPtr3D,0,0,2,_wrap_cvPtr3D_texinfo}, -{"cvPtrND",_wrap_cvPtrND,0,0,2,_wrap_cvPtrND_texinfo}, -{"cvGet1D",_wrap_cvGet1D,0,0,2,_wrap_cvGet1D_texinfo}, -{"cvGet2D",_wrap_cvGet2D,0,0,2,_wrap_cvGet2D_texinfo}, -{"cvGet3D",_wrap_cvGet3D,0,0,2,_wrap_cvGet3D_texinfo}, -{"cvGetND",_wrap_cvGetND,0,0,2,_wrap_cvGetND_texinfo}, -{"cvGetReal1D",_wrap_cvGetReal1D,0,0,2,_wrap_cvGetReal1D_texinfo}, -{"cvGetReal2D",_wrap_cvGetReal2D,0,0,2,_wrap_cvGetReal2D_texinfo}, -{"cvGetReal3D",_wrap_cvGetReal3D,0,0,2,_wrap_cvGetReal3D_texinfo}, -{"cvGetRealND",_wrap_cvGetRealND,0,0,2,_wrap_cvGetRealND_texinfo}, -{"cvSet1D",_wrap_cvSet1D,0,0,2,_wrap_cvSet1D_texinfo}, -{"cvSet2D",_wrap_cvSet2D,0,0,2,_wrap_cvSet2D_texinfo}, -{"cvSet3D",_wrap_cvSet3D,0,0,2,_wrap_cvSet3D_texinfo}, -{"cvSetND",_wrap_cvSetND,0,0,2,_wrap_cvSetND_texinfo}, -{"cvSetReal1D",_wrap_cvSetReal1D,0,0,2,_wrap_cvSetReal1D_texinfo}, -{"cvSetReal2D",_wrap_cvSetReal2D,0,0,2,_wrap_cvSetReal2D_texinfo}, -{"cvSetReal3D",_wrap_cvSetReal3D,0,0,2,_wrap_cvSetReal3D_texinfo}, -{"cvSetRealND",_wrap_cvSetRealND,0,0,2,_wrap_cvSetRealND_texinfo}, -{"cvClearND",_wrap_cvClearND,0,0,2,_wrap_cvClearND_texinfo}, -{"cvGetMat",_wrap_cvGetMat,0,0,2,_wrap_cvGetMat_texinfo}, -{"cvReshapeMatND",_wrap_cvReshapeMatND,0,0,2,_wrap_cvReshapeMatND_texinfo}, -{"cvReshape",_wrap_cvReshape,0,0,2,_wrap_cvReshape_texinfo}, -{"cvRepeat",_wrap_cvRepeat,0,0,2,_wrap_cvRepeat_texinfo}, -{"cvCreateData",_wrap_cvCreateData,0,0,2,_wrap_cvCreateData_texinfo}, -{"cvReleaseData",_wrap_cvReleaseData,0,0,2,_wrap_cvReleaseData_texinfo}, -{"cvSetData",_wrap_cvSetData,0,0,2,_wrap_cvSetData_texinfo}, -{"cvGetRawData",_wrap_cvGetRawData,0,0,2,_wrap_cvGetRawData_texinfo}, -{"cvGetSize",_wrap_cvGetSize,0,0,2,_wrap_cvGetSize_texinfo}, -{"cvCopy",_wrap_cvCopy,0,0,2,_wrap_cvCopy_texinfo}, -{"cvSet",_wrap_cvSet,0,0,2,_wrap_cvSet_texinfo}, -{"cvSetZero",_wrap_cvSetZero,0,0,2,_wrap_cvSetZero_texinfo}, -{"cvSplit",_wrap_cvSplit,0,0,2,_wrap_cvSplit_texinfo}, -{"cvMerge",_wrap_cvMerge,0,0,2,_wrap_cvMerge_texinfo}, -{"cvMixChannels",_wrap_cvMixChannels,0,0,2,_wrap_cvMixChannels_texinfo}, -{"cvConvertScale",_wrap_cvConvertScale,0,0,2,_wrap_cvConvertScale_texinfo}, -{"cvConvertScaleAbs",_wrap_cvConvertScaleAbs,0,0,2,_wrap_cvConvertScaleAbs_texinfo}, -{"cvCheckTermCriteria",_wrap_cvCheckTermCriteria,0,0,2,_wrap_cvCheckTermCriteria_texinfo}, -{"cvAdd",_wrap_cvAdd,0,0,2,_wrap_cvAdd_texinfo}, -{"cvAddS",_wrap_cvAddS,0,0,2,_wrap_cvAddS_texinfo}, -{"cvSub",_wrap_cvSub,0,0,2,_wrap_cvSub_texinfo}, -{"cvSubS",_wrap_cvSubS,0,0,2,_wrap_cvSubS_texinfo}, -{"cvSubRS",_wrap_cvSubRS,0,0,2,_wrap_cvSubRS_texinfo}, -{"cvMul",_wrap_cvMul,0,0,2,_wrap_cvMul_texinfo}, -{"cvDiv",_wrap_cvDiv,0,0,2,_wrap_cvDiv_texinfo}, -{"cvScaleAdd",_wrap_cvScaleAdd,0,0,2,_wrap_cvScaleAdd_texinfo}, -{"cvAddWeighted",_wrap_cvAddWeighted,0,0,2,_wrap_cvAddWeighted_texinfo}, -{"cvDotProduct",_wrap_cvDotProduct,0,0,2,_wrap_cvDotProduct_texinfo}, -{"cvAnd",_wrap_cvAnd,0,0,2,_wrap_cvAnd_texinfo}, -{"cvAndS",_wrap_cvAndS,0,0,2,_wrap_cvAndS_texinfo}, -{"cvOr",_wrap_cvOr,0,0,2,_wrap_cvOr_texinfo}, -{"cvOrS",_wrap_cvOrS,0,0,2,_wrap_cvOrS_texinfo}, -{"cvXor",_wrap_cvXor,0,0,2,_wrap_cvXor_texinfo}, -{"cvXorS",_wrap_cvXorS,0,0,2,_wrap_cvXorS_texinfo}, -{"cvNot",_wrap_cvNot,0,0,2,_wrap_cvNot_texinfo}, -{"cvInRange",_wrap_cvInRange,0,0,2,_wrap_cvInRange_texinfo}, -{"cvInRangeS",_wrap_cvInRangeS,0,0,2,_wrap_cvInRangeS_texinfo}, -{"cvCmp",_wrap_cvCmp,0,0,2,_wrap_cvCmp_texinfo}, -{"cvCmpS",_wrap_cvCmpS,0,0,2,_wrap_cvCmpS_texinfo}, -{"cvMin",_wrap_cvMin,0,0,2,_wrap_cvMin_texinfo}, -{"cvMax",_wrap_cvMax,0,0,2,_wrap_cvMax_texinfo}, -{"cvMinS",_wrap_cvMinS,0,0,2,_wrap_cvMinS_texinfo}, -{"cvMaxS",_wrap_cvMaxS,0,0,2,_wrap_cvMaxS_texinfo}, -{"cvAbsDiff",_wrap_cvAbsDiff,0,0,2,_wrap_cvAbsDiff_texinfo}, -{"cvAbsDiffS",_wrap_cvAbsDiffS,0,0,2,_wrap_cvAbsDiffS_texinfo}, -{"cvCartToPolar",_wrap_cvCartToPolar,0,0,2,_wrap_cvCartToPolar_texinfo}, -{"cvPolarToCart",_wrap_cvPolarToCart,0,0,2,_wrap_cvPolarToCart_texinfo}, -{"cvPow",_wrap_cvPow,0,0,2,_wrap_cvPow_texinfo}, -{"cvExp",_wrap_cvExp,0,0,2,_wrap_cvExp_texinfo}, -{"cvLog",_wrap_cvLog,0,0,2,_wrap_cvLog_texinfo}, -{"cvFastArctan",_wrap_cvFastArctan,0,0,2,_wrap_cvFastArctan_texinfo}, -{"cvCbrt",_wrap_cvCbrt,0,0,2,_wrap_cvCbrt_texinfo}, -{"cvCheckArr",_wrap_cvCheckArr,0,0,2,_wrap_cvCheckArr_texinfo}, -{"cvRandArr",_wrap_cvRandArr,0,0,2,_wrap_cvRandArr_texinfo}, -{"cvRandShuffle",_wrap_cvRandShuffle,0,0,2,_wrap_cvRandShuffle_texinfo}, -{"cvSort",_wrap_cvSort,0,0,2,_wrap_cvSort_texinfo}, -{"cvSolveCubic",_wrap_cvSolveCubic,0,0,2,_wrap_cvSolveCubic_texinfo}, -{"cvSolvePoly",_wrap_cvSolvePoly,0,0,2,_wrap_cvSolvePoly_texinfo}, -{"cvCrossProduct",_wrap_cvCrossProduct,0,0,2,_wrap_cvCrossProduct_texinfo}, -{"cvGEMM",_wrap_cvGEMM,0,0,2,_wrap_cvGEMM_texinfo}, -{"cvTransform",_wrap_cvTransform,0,0,2,_wrap_cvTransform_texinfo}, -{"cvPerspectiveTransform",_wrap_cvPerspectiveTransform,0,0,2,_wrap_cvPerspectiveTransform_texinfo}, -{"cvMulTransposed",_wrap_cvMulTransposed,0,0,2,_wrap_cvMulTransposed_texinfo}, -{"cvTranspose",_wrap_cvTranspose,0,0,2,_wrap_cvTranspose_texinfo}, -{"cvCompleteSymm",_wrap_cvCompleteSymm,0,0,2,_wrap_cvCompleteSymm_texinfo}, -{"cvFlip",_wrap_cvFlip,0,0,2,_wrap_cvFlip_texinfo}, -{"cvSVD",_wrap_cvSVD,0,0,2,_wrap_cvSVD_texinfo}, -{"cvSVBkSb",_wrap_cvSVBkSb,0,0,2,_wrap_cvSVBkSb_texinfo}, -{"cvInvert",_wrap_cvInvert,0,0,2,_wrap_cvInvert_texinfo}, -{"cvSolve",_wrap_cvSolve,0,0,2,_wrap_cvSolve_texinfo}, -{"cvDet",_wrap_cvDet,0,0,2,_wrap_cvDet_texinfo}, -{"cvTrace",_wrap_cvTrace,0,0,2,_wrap_cvTrace_texinfo}, -{"cvEigenVV",_wrap_cvEigenVV,0,0,2,_wrap_cvEigenVV_texinfo}, -{"cvSetIdentity",_wrap_cvSetIdentity,0,0,2,_wrap_cvSetIdentity_texinfo}, -{"cvRange",_wrap_cvRange,0,0,2,_wrap_cvRange_texinfo}, -{"cvCalcCovarMatrix",_wrap_cvCalcCovarMatrix,0,0,2,_wrap_cvCalcCovarMatrix_texinfo}, -{"cvCalcPCA",_wrap_cvCalcPCA,0,0,2,_wrap_cvCalcPCA_texinfo}, -{"cvProjectPCA",_wrap_cvProjectPCA,0,0,2,_wrap_cvProjectPCA_texinfo}, -{"cvBackProjectPCA",_wrap_cvBackProjectPCA,0,0,2,_wrap_cvBackProjectPCA_texinfo}, -{"cvMahalanobis",_wrap_cvMahalanobis,0,0,2,_wrap_cvMahalanobis_texinfo}, -{"cvSum",_wrap_cvSum,0,0,2,_wrap_cvSum_texinfo}, -{"cvCountNonZero",_wrap_cvCountNonZero,0,0,2,_wrap_cvCountNonZero_texinfo}, -{"cvAvg",_wrap_cvAvg,0,0,2,_wrap_cvAvg_texinfo}, -{"cvAvgSdv",_wrap_cvAvgSdv,0,0,2,_wrap_cvAvgSdv_texinfo}, -{"cvMinMaxLoc",_wrap_cvMinMaxLoc,0,0,2,_wrap_cvMinMaxLoc_texinfo}, -{"cvNorm",_wrap_cvNorm,0,0,2,_wrap_cvNorm_texinfo}, -{"cvNormalize",_wrap_cvNormalize,0,0,2,_wrap_cvNormalize_texinfo}, -{"cvReduce",_wrap_cvReduce,0,0,2,_wrap_cvReduce_texinfo}, -{"cvDFT",_wrap_cvDFT,0,0,2,_wrap_cvDFT_texinfo}, -{"cvMulSpectrums",_wrap_cvMulSpectrums,0,0,2,_wrap_cvMulSpectrums_texinfo}, -{"cvGetOptimalDFTSize",_wrap_cvGetOptimalDFTSize,0,0,2,_wrap_cvGetOptimalDFTSize_texinfo}, -{"cvDCT",_wrap_cvDCT,0,0,2,_wrap_cvDCT_texinfo}, -{"cvSliceLength",_wrap_cvSliceLength,0,0,2,_wrap_cvSliceLength_texinfo}, -{"cvCreateMemStorage",_wrap_cvCreateMemStorage,0,0,2,_wrap_cvCreateMemStorage_texinfo}, -{"cvCreateChildMemStorage",_wrap_cvCreateChildMemStorage,0,0,2,_wrap_cvCreateChildMemStorage_texinfo}, -{"cvReleaseMemStorage",_wrap_cvReleaseMemStorage,0,0,2,_wrap_cvReleaseMemStorage_texinfo}, -{"cvClearMemStorage",_wrap_cvClearMemStorage,0,0,2,_wrap_cvClearMemStorage_texinfo}, -{"cvSaveMemStoragePos",_wrap_cvSaveMemStoragePos,0,0,2,_wrap_cvSaveMemStoragePos_texinfo}, -{"cvRestoreMemStoragePos",_wrap_cvRestoreMemStoragePos,0,0,2,_wrap_cvRestoreMemStoragePos_texinfo}, -{"cvMemStorageAlloc",_wrap_cvMemStorageAlloc,0,0,2,_wrap_cvMemStorageAlloc_texinfo}, -{"cvMemStorageAllocString",_wrap_cvMemStorageAllocString,0,0,2,_wrap_cvMemStorageAllocString_texinfo}, -{"cvCreateSeq",_wrap_cvCreateSeq,0,0,2,_wrap_cvCreateSeq_texinfo}, -{"cvSetSeqBlockSize",_wrap_cvSetSeqBlockSize,0,0,2,_wrap_cvSetSeqBlockSize_texinfo}, -{"cvSeqPush",_wrap_cvSeqPush,0,0,2,_wrap_cvSeqPush_texinfo}, -{"cvSeqPushFront",_wrap_cvSeqPushFront,0,0,2,_wrap_cvSeqPushFront_texinfo}, -{"cvSeqPop",_wrap_cvSeqPop,0,0,2,_wrap_cvSeqPop_texinfo}, -{"cvSeqPopFront",_wrap_cvSeqPopFront,0,0,2,_wrap_cvSeqPopFront_texinfo}, -{"cvSeqPushMulti",_wrap_cvSeqPushMulti,0,0,2,_wrap_cvSeqPushMulti_texinfo}, -{"cvSeqPopMulti",_wrap_cvSeqPopMulti,0,0,2,_wrap_cvSeqPopMulti_texinfo}, -{"cvSeqInsert",_wrap_cvSeqInsert,0,0,2,_wrap_cvSeqInsert_texinfo}, -{"cvSeqRemove",_wrap_cvSeqRemove,0,0,2,_wrap_cvSeqRemove_texinfo}, -{"cvClearSeq",_wrap_cvClearSeq,0,0,2,_wrap_cvClearSeq_texinfo}, -{"cvGetSeqElem",_wrap_cvGetSeqElem,0,0,2,_wrap_cvGetSeqElem_texinfo}, -{"cvSeqElemIdx",_wrap_cvSeqElemIdx,0,0,2,_wrap_cvSeqElemIdx_texinfo}, -{"cvStartAppendToSeq",_wrap_cvStartAppendToSeq,0,0,2,_wrap_cvStartAppendToSeq_texinfo}, -{"cvStartWriteSeq",_wrap_cvStartWriteSeq,0,0,2,_wrap_cvStartWriteSeq_texinfo}, -{"cvEndWriteSeq",_wrap_cvEndWriteSeq,0,0,2,_wrap_cvEndWriteSeq_texinfo}, -{"cvFlushSeqWriter",_wrap_cvFlushSeqWriter,0,0,2,_wrap_cvFlushSeqWriter_texinfo}, -{"cvStartReadSeq",_wrap_cvStartReadSeq,0,0,2,_wrap_cvStartReadSeq_texinfo}, -{"cvGetSeqReaderPos",_wrap_cvGetSeqReaderPos,0,0,2,_wrap_cvGetSeqReaderPos_texinfo}, -{"cvSetSeqReaderPos",_wrap_cvSetSeqReaderPos,0,0,2,_wrap_cvSetSeqReaderPos_texinfo}, -{"cvMakeSeqHeaderForArray",_wrap_cvMakeSeqHeaderForArray,0,0,2,_wrap_cvMakeSeqHeaderForArray_texinfo}, -{"cvSeqSlice",_wrap_cvSeqSlice,0,0,2,_wrap_cvSeqSlice_texinfo}, -{"cvCloneSeq",_wrap_cvCloneSeq,0,0,2,_wrap_cvCloneSeq_texinfo}, -{"cvSeqRemoveSlice",_wrap_cvSeqRemoveSlice,0,0,2,_wrap_cvSeqRemoveSlice_texinfo}, -{"cvSeqInsertSlice",_wrap_cvSeqInsertSlice,0,0,2,_wrap_cvSeqInsertSlice_texinfo}, -{"cvSeqSort",_wrap_cvSeqSort,0,0,2,_wrap_cvSeqSort_texinfo}, -{"cvSeqSearch",_wrap_cvSeqSearch,0,0,2,_wrap_cvSeqSearch_texinfo}, -{"cvSeqInvert",_wrap_cvSeqInvert,0,0,2,_wrap_cvSeqInvert_texinfo}, -{"cvSeqPartition",_wrap_cvSeqPartition,0,0,2,_wrap_cvSeqPartition_texinfo}, -{"cvChangeSeqBlock",_wrap_cvChangeSeqBlock,0,0,2,_wrap_cvChangeSeqBlock_texinfo}, -{"cvCreateSeqBlock",_wrap_cvCreateSeqBlock,0,0,2,_wrap_cvCreateSeqBlock_texinfo}, -{"cvCreateSet",_wrap_cvCreateSet,0,0,2,_wrap_cvCreateSet_texinfo}, -{"cvSetAdd",_wrap_cvSetAdd,0,0,2,_wrap_cvSetAdd_texinfo}, -{"cvSetNew",_wrap_cvSetNew,0,0,2,_wrap_cvSetNew_texinfo}, -{"cvSetRemoveByPtr",_wrap_cvSetRemoveByPtr,0,0,2,_wrap_cvSetRemoveByPtr_texinfo}, -{"cvSetRemove",_wrap_cvSetRemove,0,0,2,_wrap_cvSetRemove_texinfo}, -{"cvGetSetElem",_wrap_cvGetSetElem,0,0,2,_wrap_cvGetSetElem_texinfo}, -{"cvClearSet",_wrap_cvClearSet,0,0,2,_wrap_cvClearSet_texinfo}, -{"cvCreateGraph",_wrap_cvCreateGraph,0,0,2,_wrap_cvCreateGraph_texinfo}, -{"cvGraphAddVtx",_wrap_cvGraphAddVtx,0,0,2,_wrap_cvGraphAddVtx_texinfo}, -{"cvGraphRemoveVtx",_wrap_cvGraphRemoveVtx,0,0,2,_wrap_cvGraphRemoveVtx_texinfo}, -{"cvGraphRemoveVtxByPtr",_wrap_cvGraphRemoveVtxByPtr,0,0,2,_wrap_cvGraphRemoveVtxByPtr_texinfo}, -{"cvGraphAddEdge",_wrap_cvGraphAddEdge,0,0,2,_wrap_cvGraphAddEdge_texinfo}, -{"cvGraphAddEdgeByPtr",_wrap_cvGraphAddEdgeByPtr,0,0,2,_wrap_cvGraphAddEdgeByPtr_texinfo}, -{"cvGraphRemoveEdge",_wrap_cvGraphRemoveEdge,0,0,2,_wrap_cvGraphRemoveEdge_texinfo}, -{"cvGraphRemoveEdgeByPtr",_wrap_cvGraphRemoveEdgeByPtr,0,0,2,_wrap_cvGraphRemoveEdgeByPtr_texinfo}, -{"cvFindGraphEdge",_wrap_cvFindGraphEdge,0,0,2,_wrap_cvFindGraphEdge_texinfo}, -{"cvFindGraphEdgeByPtr",_wrap_cvFindGraphEdgeByPtr,0,0,2,_wrap_cvFindGraphEdgeByPtr_texinfo}, -{"cvClearGraph",_wrap_cvClearGraph,0,0,2,_wrap_cvClearGraph_texinfo}, -{"cvGraphVtxDegree",_wrap_cvGraphVtxDegree,0,0,2,_wrap_cvGraphVtxDegree_texinfo}, -{"cvGraphVtxDegreeByPtr",_wrap_cvGraphVtxDegreeByPtr,0,0,2,_wrap_cvGraphVtxDegreeByPtr_texinfo}, -{"CvGraphScanner_vtx_set",_wrap_CvGraphScanner_vtx_set,0,0,2,0}, -{"CvGraphScanner_vtx_get",_wrap_CvGraphScanner_vtx_get,0,0,2,0}, -{"CvGraphScanner_dst_set",_wrap_CvGraphScanner_dst_set,0,0,2,0}, -{"CvGraphScanner_dst_get",_wrap_CvGraphScanner_dst_get,0,0,2,0}, -{"CvGraphScanner_edge_set",_wrap_CvGraphScanner_edge_set,0,0,2,0}, -{"CvGraphScanner_edge_get",_wrap_CvGraphScanner_edge_get,0,0,2,0}, -{"CvGraphScanner_graph_set",_wrap_CvGraphScanner_graph_set,0,0,2,0}, -{"CvGraphScanner_graph_get",_wrap_CvGraphScanner_graph_get,0,0,2,0}, -{"CvGraphScanner_stack_set",_wrap_CvGraphScanner_stack_set,0,0,2,0}, -{"CvGraphScanner_stack_get",_wrap_CvGraphScanner_stack_get,0,0,2,0}, -{"CvGraphScanner_index_set",_wrap_CvGraphScanner_index_set,0,0,2,0}, -{"CvGraphScanner_index_get",_wrap_CvGraphScanner_index_get,0,0,2,0}, -{"CvGraphScanner_mask_set",_wrap_CvGraphScanner_mask_set,0,0,2,0}, -{"CvGraphScanner_mask_get",_wrap_CvGraphScanner_mask_get,0,0,2,0}, -{"delete_CvGraphScanner",_wrap_delete_CvGraphScanner,0,0,2,_wrap_delete_CvGraphScanner_texinfo}, -{"cvCreateGraphScanner",_wrap_cvCreateGraphScanner,0,0,2,_wrap_cvCreateGraphScanner_texinfo}, -{"cvReleaseGraphScanner",_wrap_cvReleaseGraphScanner,0,0,2,_wrap_cvReleaseGraphScanner_texinfo}, -{"cvNextGraphItem",_wrap_cvNextGraphItem,0,0,2,_wrap_cvNextGraphItem_texinfo}, -{"cvCloneGraph",_wrap_cvCloneGraph,0,0,2,_wrap_cvCloneGraph_texinfo}, -{"cvLine",_wrap_cvLine,0,0,2,_wrap_cvLine_texinfo}, -{"cvRectangle",_wrap_cvRectangle,0,0,2,_wrap_cvRectangle_texinfo}, -{"cvCircle",_wrap_cvCircle,0,0,2,_wrap_cvCircle_texinfo}, -{"cvEllipse",_wrap_cvEllipse,0,0,2,_wrap_cvEllipse_texinfo}, -{"cvEllipseBox",_wrap_cvEllipseBox,0,0,2,_wrap_cvEllipseBox_texinfo}, -{"cvFillConvexPoly",_wrap_cvFillConvexPoly,0,0,2,_wrap_cvFillConvexPoly_texinfo}, -{"cvFillPoly",_wrap_cvFillPoly,0,0,2,_wrap_cvFillPoly_texinfo}, -{"cvPolyLine",_wrap_cvPolyLine,0,0,2,_wrap_cvPolyLine_texinfo}, -{"cvClipLine",_wrap_cvClipLine,0,0,2,_wrap_cvClipLine_texinfo}, -{"cvInitLineIterator",_wrap_cvInitLineIterator,0,0,2,_wrap_cvInitLineIterator_texinfo}, -{"CvFont_font_face_set",_wrap_CvFont_font_face_set,0,0,2,0}, -{"CvFont_font_face_get",_wrap_CvFont_font_face_get,0,0,2,0}, -{"CvFont_ascii_set",_wrap_CvFont_ascii_set,0,0,2,0}, -{"CvFont_ascii_get",_wrap_CvFont_ascii_get,0,0,2,0}, -{"CvFont_greek_set",_wrap_CvFont_greek_set,0,0,2,0}, -{"CvFont_greek_get",_wrap_CvFont_greek_get,0,0,2,0}, -{"CvFont_cyrillic_set",_wrap_CvFont_cyrillic_set,0,0,2,0}, -{"CvFont_cyrillic_get",_wrap_CvFont_cyrillic_get,0,0,2,0}, -{"CvFont_hscale_set",_wrap_CvFont_hscale_set,0,0,2,0}, -{"CvFont_hscale_get",_wrap_CvFont_hscale_get,0,0,2,0}, -{"CvFont_vscale_set",_wrap_CvFont_vscale_set,0,0,2,0}, -{"CvFont_vscale_get",_wrap_CvFont_vscale_get,0,0,2,0}, -{"CvFont_shear_set",_wrap_CvFont_shear_set,0,0,2,0}, -{"CvFont_shear_get",_wrap_CvFont_shear_get,0,0,2,0}, -{"CvFont_thickness_set",_wrap_CvFont_thickness_set,0,0,2,0}, -{"CvFont_thickness_get",_wrap_CvFont_thickness_get,0,0,2,0}, -{"CvFont_dx_set",_wrap_CvFont_dx_set,0,0,2,0}, -{"CvFont_dx_get",_wrap_CvFont_dx_get,0,0,2,0}, -{"CvFont_line_type_set",_wrap_CvFont_line_type_set,0,0,2,0}, -{"CvFont_line_type_get",_wrap_CvFont_line_type_get,0,0,2,0}, -{"new_CvFont",_wrap_new_CvFont,0,0,2,_wrap_new_CvFont_texinfo}, -{"delete_CvFont",_wrap_delete_CvFont,0,0,2,_wrap_delete_CvFont_texinfo}, -{"cvInitFont",_wrap_cvInitFont,0,0,2,_wrap_cvInitFont_texinfo}, -{"cvFont",_wrap_cvFont,0,0,2,_wrap_cvFont_texinfo}, -{"cvPutText",_wrap_cvPutText,0,0,2,_wrap_cvPutText_texinfo}, -{"cvGetTextSize",_wrap_cvGetTextSize,0,0,2,_wrap_cvGetTextSize_texinfo}, -{"cvColorToScalar",_wrap_cvColorToScalar,0,0,2,_wrap_cvColorToScalar_texinfo}, -{"cvEllipse2Poly",_wrap_cvEllipse2Poly,0,0,2,_wrap_cvEllipse2Poly_texinfo}, -{"cvDrawContours",_wrap_cvDrawContours,0,0,2,_wrap_cvDrawContours_texinfo}, -{"cvLUT",_wrap_cvLUT,0,0,2,_wrap_cvLUT_texinfo}, -{"CvTreeNodeIterator_node_set",_wrap_CvTreeNodeIterator_node_set,0,0,2,0}, -{"CvTreeNodeIterator_node_get",_wrap_CvTreeNodeIterator_node_get,0,0,2,0}, -{"CvTreeNodeIterator_level_set",_wrap_CvTreeNodeIterator_level_set,0,0,2,0}, -{"CvTreeNodeIterator_level_get",_wrap_CvTreeNodeIterator_level_get,0,0,2,0}, -{"CvTreeNodeIterator_max_level_set",_wrap_CvTreeNodeIterator_max_level_set,0,0,2,0}, -{"CvTreeNodeIterator_max_level_get",_wrap_CvTreeNodeIterator_max_level_get,0,0,2,0}, -{"new_CvTreeNodeIterator",_wrap_new_CvTreeNodeIterator,0,0,2,_wrap_new_CvTreeNodeIterator_texinfo}, -{"delete_CvTreeNodeIterator",_wrap_delete_CvTreeNodeIterator,0,0,2,_wrap_delete_CvTreeNodeIterator_texinfo}, -{"cvInitTreeNodeIterator",_wrap_cvInitTreeNodeIterator,0,0,2,_wrap_cvInitTreeNodeIterator_texinfo}, -{"cvNextTreeNode",_wrap_cvNextTreeNode,0,0,2,_wrap_cvNextTreeNode_texinfo}, -{"cvPrevTreeNode",_wrap_cvPrevTreeNode,0,0,2,_wrap_cvPrevTreeNode_texinfo}, -{"cvInsertNodeIntoTree",_wrap_cvInsertNodeIntoTree,0,0,2,_wrap_cvInsertNodeIntoTree_texinfo}, -{"cvRemoveNodeFromTree",_wrap_cvRemoveNodeFromTree,0,0,2,_wrap_cvRemoveNodeFromTree_texinfo}, -{"cvTreeToNodeSeq",_wrap_cvTreeToNodeSeq,0,0,2,_wrap_cvTreeToNodeSeq_texinfo}, -{"cvKMeans2",_wrap_cvKMeans2,0,0,2,_wrap_cvKMeans2_texinfo}, -{"cvRegisterModule",_wrap_cvRegisterModule,0,0,2,_wrap_cvRegisterModule_texinfo}, -{"cvUseOptimized",_wrap_cvUseOptimized,0,0,2,_wrap_cvUseOptimized_texinfo}, -{"cvGetModuleInfo",_wrap_cvGetModuleInfo,0,0,2,_wrap_cvGetModuleInfo_texinfo}, -{"cvGetErrStatus",_wrap_cvGetErrStatus,0,0,2,_wrap_cvGetErrStatus_texinfo}, -{"cvSetErrStatus",_wrap_cvSetErrStatus,0,0,2,_wrap_cvSetErrStatus_texinfo}, -{"cvGetErrMode",_wrap_cvGetErrMode,0,0,2,_wrap_cvGetErrMode_texinfo}, -{"cvSetErrMode",_wrap_cvSetErrMode,0,0,2,_wrap_cvSetErrMode_texinfo}, -{"cvError",_wrap_cvError,0,0,2,_wrap_cvError_texinfo}, -{"cvErrorStr",_wrap_cvErrorStr,0,0,2,_wrap_cvErrorStr_texinfo}, -{"cvGetErrInfo",_wrap_cvGetErrInfo,0,0,2,_wrap_cvGetErrInfo_texinfo}, -{"cvErrorFromIppStatus",_wrap_cvErrorFromIppStatus,0,0,2,_wrap_cvErrorFromIppStatus_texinfo}, -{"cvRedirectError",_wrap_cvRedirectError,0,0,2,_wrap_cvRedirectError_texinfo}, -{"cvNulDevReport",_wrap_cvNulDevReport,0,0,2,_wrap_cvNulDevReport_texinfo}, -{"cvStdErrReport",_wrap_cvStdErrReport,0,0,2,_wrap_cvStdErrReport_texinfo}, -{"cvGuiBoxReport",_wrap_cvGuiBoxReport,0,0,2,_wrap_cvGuiBoxReport_texinfo}, -{"cvSetMemoryManager",_wrap_cvSetMemoryManager,0,0,2,_wrap_cvSetMemoryManager_texinfo}, -{"cvSetIPLAllocators",_wrap_cvSetIPLAllocators,0,0,2,_wrap_cvSetIPLAllocators_texinfo}, -{"cvOpenFileStorage",_wrap_cvOpenFileStorage,0,0,2,_wrap_cvOpenFileStorage_texinfo}, -{"cvReleaseFileStorage",_wrap_cvReleaseFileStorage,0,0,2,_wrap_cvReleaseFileStorage_texinfo}, -{"cvAttrValue",_wrap_cvAttrValue,0,0,2,_wrap_cvAttrValue_texinfo}, -{"cvStartWriteStruct",_wrap_cvStartWriteStruct,0,0,2,_wrap_cvStartWriteStruct_texinfo}, -{"cvEndWriteStruct",_wrap_cvEndWriteStruct,0,0,2,_wrap_cvEndWriteStruct_texinfo}, -{"cvWriteInt",_wrap_cvWriteInt,0,0,2,_wrap_cvWriteInt_texinfo}, -{"cvWriteReal",_wrap_cvWriteReal,0,0,2,_wrap_cvWriteReal_texinfo}, -{"cvWriteString",_wrap_cvWriteString,0,0,2,_wrap_cvWriteString_texinfo}, -{"cvWriteComment",_wrap_cvWriteComment,0,0,2,_wrap_cvWriteComment_texinfo}, -{"cvWrite",_wrap_cvWrite,0,0,2,_wrap_cvWrite_texinfo}, -{"cvStartNextStream",_wrap_cvStartNextStream,0,0,2,_wrap_cvStartNextStream_texinfo}, -{"cvWriteRawData",_wrap_cvWriteRawData,0,0,2,_wrap_cvWriteRawData_texinfo}, -{"cvGetHashedKey",_wrap_cvGetHashedKey,0,0,2,_wrap_cvGetHashedKey_texinfo}, -{"cvGetRootFileNode",_wrap_cvGetRootFileNode,0,0,2,_wrap_cvGetRootFileNode_texinfo}, -{"cvGetFileNode",_wrap_cvGetFileNode,0,0,2,_wrap_cvGetFileNode_texinfo}, -{"cvGetFileNodeByName",_wrap_cvGetFileNodeByName,0,0,2,_wrap_cvGetFileNodeByName_texinfo}, -{"cvReadInt",_wrap_cvReadInt,0,0,2,_wrap_cvReadInt_texinfo}, -{"cvReadIntByName",_wrap_cvReadIntByName,0,0,2,_wrap_cvReadIntByName_texinfo}, -{"cvReadReal",_wrap_cvReadReal,0,0,2,_wrap_cvReadReal_texinfo}, -{"cvReadRealByName",_wrap_cvReadRealByName,0,0,2,_wrap_cvReadRealByName_texinfo}, -{"cvReadString",_wrap_cvReadString,0,0,2,_wrap_cvReadString_texinfo}, -{"cvReadStringByName",_wrap_cvReadStringByName,0,0,2,_wrap_cvReadStringByName_texinfo}, -{"cvRead",_wrap_cvRead,0,0,2,_wrap_cvRead_texinfo}, -{"cvReadByName",_wrap_cvReadByName,0,0,2,_wrap_cvReadByName_texinfo}, -{"cvStartReadRawData",_wrap_cvStartReadRawData,0,0,2,_wrap_cvStartReadRawData_texinfo}, -{"cvReadRawDataSlice",_wrap_cvReadRawDataSlice,0,0,2,_wrap_cvReadRawDataSlice_texinfo}, -{"cvReadRawData",_wrap_cvReadRawData,0,0,2,_wrap_cvReadRawData_texinfo}, -{"cvWriteFileNode",_wrap_cvWriteFileNode,0,0,2,_wrap_cvWriteFileNode_texinfo}, -{"cvGetFileNodeName",_wrap_cvGetFileNodeName,0,0,2,_wrap_cvGetFileNodeName_texinfo}, -{"cvRegisterType",_wrap_cvRegisterType,0,0,2,_wrap_cvRegisterType_texinfo}, -{"cvUnregisterType",_wrap_cvUnregisterType,0,0,2,_wrap_cvUnregisterType_texinfo}, -{"cvFirstType",_wrap_cvFirstType,0,0,2,_wrap_cvFirstType_texinfo}, -{"cvFindType",_wrap_cvFindType,0,0,2,_wrap_cvFindType_texinfo}, -{"cvTypeOf",_wrap_cvTypeOf,0,0,2,_wrap_cvTypeOf_texinfo}, -{"cvRelease",_wrap_cvRelease,0,0,2,_wrap_cvRelease_texinfo}, -{"cvClone",_wrap_cvClone,0,0,2,_wrap_cvClone_texinfo}, -{"cvSave",_wrap_cvSave,0,0,2,_wrap_cvSave_texinfo}, -{"cvLoad",_wrap_cvLoad,0,0,2,_wrap_cvLoad_texinfo}, -{"cvGetTickCount",_wrap_cvGetTickCount,0,0,2,_wrap_cvGetTickCount_texinfo}, -{"cvGetTickFrequency",_wrap_cvGetTickFrequency,0,0,2,_wrap_cvGetTickFrequency_texinfo}, -{"cvGetNumThreads",_wrap_cvGetNumThreads,0,0,2,_wrap_cvGetNumThreads_texinfo}, -{"cvSetNumThreads",_wrap_cvSetNumThreads,0,0,2,_wrap_cvSetNumThreads_texinfo}, -{"cvGetThreadNum",_wrap_cvGetThreadNum,0,0,2,_wrap_cvGetThreadNum_texinfo}, -{"cvSetImageIOFunctions",_wrap_cvSetImageIOFunctions,0,0,2,_wrap_cvSetImageIOFunctions_texinfo}, -{"new_CvImage",_wrap_new_CvImage,0,0,2,_wrap_new_CvImage_texinfo}, -{"delete_CvImage",_wrap_delete_CvImage,0,0,2,_wrap_delete_CvImage_texinfo}, -{"CvImage_clone",_wrap_CvImage_clone,0,0,2,_wrap_CvImage_clone_texinfo}, -{"CvImage_create",_wrap_CvImage_create,0,0,2,_wrap_CvImage_create_texinfo}, -{"CvImage_release",_wrap_CvImage_release,0,0,2,_wrap_CvImage_release_texinfo}, -{"CvImage_clear",_wrap_CvImage_clear,0,0,2,_wrap_CvImage_clear_texinfo}, -{"CvImage_attach",_wrap_CvImage_attach,0,0,2,_wrap_CvImage_attach_texinfo}, -{"CvImage_detach",_wrap_CvImage_detach,0,0,2,_wrap_CvImage_detach_texinfo}, -{"CvImage_load",_wrap_CvImage_load,0,0,2,_wrap_CvImage_load_texinfo}, -{"CvImage_read",_wrap_CvImage_read,0,0,2,_wrap_CvImage_read_texinfo}, -{"CvImage_save",_wrap_CvImage_save,0,0,2,_wrap_CvImage_save_texinfo}, -{"CvImage_write",_wrap_CvImage_write,0,0,2,_wrap_CvImage_write_texinfo}, -{"CvImage_show",_wrap_CvImage_show,0,0,2,_wrap_CvImage_show_texinfo}, -{"CvImage_is_valid",_wrap_CvImage_is_valid,0,0,2,_wrap_CvImage_is_valid_texinfo}, -{"CvImage_width",_wrap_CvImage_width,0,0,2,_wrap_CvImage_width_texinfo}, -{"CvImage_height",_wrap_CvImage_height,0,0,2,_wrap_CvImage_height_texinfo}, -{"CvImage_size",_wrap_CvImage_size,0,0,2,_wrap_CvImage_size_texinfo}, -{"CvImage_roi_size",_wrap_CvImage_roi_size,0,0,2,_wrap_CvImage_roi_size_texinfo}, -{"CvImage_roi",_wrap_CvImage_roi,0,0,2,_wrap_CvImage_roi_texinfo}, -{"CvImage_coi",_wrap_CvImage_coi,0,0,2,_wrap_CvImage_coi_texinfo}, -{"CvImage_set_roi",_wrap_CvImage_set_roi,0,0,2,_wrap_CvImage_set_roi_texinfo}, -{"CvImage_reset_roi",_wrap_CvImage_reset_roi,0,0,2,_wrap_CvImage_reset_roi_texinfo}, -{"CvImage_set_coi",_wrap_CvImage_set_coi,0,0,2,_wrap_CvImage_set_coi_texinfo}, -{"CvImage_depth",_wrap_CvImage_depth,0,0,2,_wrap_CvImage_depth_texinfo}, -{"CvImage_channels",_wrap_CvImage_channels,0,0,2,_wrap_CvImage_channels_texinfo}, -{"CvImage_pix_size",_wrap_CvImage_pix_size,0,0,2,_wrap_CvImage_pix_size_texinfo}, -{"CvImage_data",_wrap_CvImage_data,0,0,2,_wrap_CvImage_data_texinfo}, -{"CvImage_step",_wrap_CvImage_step,0,0,2,_wrap_CvImage_step_texinfo}, -{"CvImage_origin",_wrap_CvImage_origin,0,0,2,_wrap_CvImage_origin_texinfo}, -{"CvImage_roi_row",_wrap_CvImage_roi_row,0,0,2,_wrap_CvImage_roi_row_texinfo}, -{"CvImage_asIplImage",_wrap_CvImage_asIplImage,0,0,2,_wrap_CvImage_asIplImage_texinfo}, -{"new_CvMatrix",_wrap_new_CvMatrix,0,0,2,_wrap_new_CvMatrix_texinfo}, -{"delete_CvMatrix",_wrap_delete_CvMatrix,0,0,2,_wrap_delete_CvMatrix_texinfo}, -{"CvMatrix_clone",_wrap_CvMatrix_clone,0,0,2,_wrap_CvMatrix_clone_texinfo}, -{"CvMatrix_set",_wrap_CvMatrix_set,0,0,2,_wrap_CvMatrix_set_texinfo}, -{"CvMatrix_create",_wrap_CvMatrix_create,0,0,2,_wrap_CvMatrix_create_texinfo}, -{"CvMatrix_addref",_wrap_CvMatrix_addref,0,0,2,_wrap_CvMatrix_addref_texinfo}, -{"CvMatrix_release",_wrap_CvMatrix_release,0,0,2,_wrap_CvMatrix_release_texinfo}, -{"CvMatrix_clear",_wrap_CvMatrix_clear,0,0,2,_wrap_CvMatrix_clear_texinfo}, -{"CvMatrix_load",_wrap_CvMatrix_load,0,0,2,_wrap_CvMatrix_load_texinfo}, -{"CvMatrix_read",_wrap_CvMatrix_read,0,0,2,_wrap_CvMatrix_read_texinfo}, -{"CvMatrix_save",_wrap_CvMatrix_save,0,0,2,_wrap_CvMatrix_save_texinfo}, -{"CvMatrix_write",_wrap_CvMatrix_write,0,0,2,_wrap_CvMatrix_write_texinfo}, -{"CvMatrix_show",_wrap_CvMatrix_show,0,0,2,_wrap_CvMatrix_show_texinfo}, -{"CvMatrix_is_valid",_wrap_CvMatrix_is_valid,0,0,2,_wrap_CvMatrix_is_valid_texinfo}, -{"CvMatrix_rows",_wrap_CvMatrix_rows,0,0,2,_wrap_CvMatrix_rows_texinfo}, -{"CvMatrix_cols",_wrap_CvMatrix_cols,0,0,2,_wrap_CvMatrix_cols_texinfo}, -{"CvMatrix_size",_wrap_CvMatrix_size,0,0,2,_wrap_CvMatrix_size_texinfo}, -{"CvMatrix_type",_wrap_CvMatrix_type,0,0,2,_wrap_CvMatrix_type_texinfo}, -{"CvMatrix_depth",_wrap_CvMatrix_depth,0,0,2,_wrap_CvMatrix_depth_texinfo}, -{"CvMatrix_channels",_wrap_CvMatrix_channels,0,0,2,_wrap_CvMatrix_channels_texinfo}, -{"CvMatrix_pix_size",_wrap_CvMatrix_pix_size,0,0,2,_wrap_CvMatrix_pix_size_texinfo}, -{"CvMatrix_data",_wrap_CvMatrix_data,0,0,2,_wrap_CvMatrix_data_texinfo}, -{"CvMatrix_step",_wrap_CvMatrix_step,0,0,2,_wrap_CvMatrix_step_texinfo}, -{"CvMatrix_set_data",_wrap_CvMatrix_set_data,0,0,2,_wrap_CvMatrix_set_data_texinfo}, -{"CvMatrix_row",_wrap_CvMatrix_row,0,0,2,_wrap_CvMatrix_row_texinfo}, -{"CvMatrix_asCvMat",_wrap_CvMatrix_asCvMat,0,0,2,_wrap_CvMatrix_asCvMat_texinfo}, -{"new_CvModule",_wrap_new_CvModule,0,0,2,_wrap_new_CvModule_texinfo}, -{"delete_CvModule",_wrap_delete_CvModule,0,0,2,_wrap_delete_CvModule_texinfo}, -{"CvModule_info_set",_wrap_CvModule_info_set,0,0,2,0}, -{"CvModule_info_get",_wrap_CvModule_info_get,0,0,2,0}, -{"CvModule_first",0,_wrap_CvModule_first_get,_wrap_CvModule_first_set,2,0}, -{"CvModule_last",0,_wrap_CvModule_last_get,_wrap_CvModule_last_set,2,0}, -{"new_CvType",_wrap_new_CvType,0,0,2,_wrap_new_CvType_texinfo}, -{"delete_CvType",_wrap_delete_CvType,0,0,2,_wrap_delete_CvType_texinfo}, -{"CvType_info_set",_wrap_CvType_info_set,0,0,2,0}, -{"CvType_info_get",_wrap_CvType_info_get,0,0,2,0}, -{"CvType_first",0,_wrap_CvType_first_get,_wrap_CvType_first_set,2,0}, -{"CvType_last",0,_wrap_CvType_last_get,_wrap_CvType_last_set,2,0}, -{"CvMoments_m00_set",_wrap_CvMoments_m00_set,0,0,2,0}, -{"CvMoments_m00_get",_wrap_CvMoments_m00_get,0,0,2,0}, -{"CvMoments_m10_set",_wrap_CvMoments_m10_set,0,0,2,0}, -{"CvMoments_m10_get",_wrap_CvMoments_m10_get,0,0,2,0}, -{"CvMoments_m01_set",_wrap_CvMoments_m01_set,0,0,2,0}, -{"CvMoments_m01_get",_wrap_CvMoments_m01_get,0,0,2,0}, -{"CvMoments_m20_set",_wrap_CvMoments_m20_set,0,0,2,0}, -{"CvMoments_m20_get",_wrap_CvMoments_m20_get,0,0,2,0}, -{"CvMoments_m11_set",_wrap_CvMoments_m11_set,0,0,2,0}, -{"CvMoments_m11_get",_wrap_CvMoments_m11_get,0,0,2,0}, -{"CvMoments_m02_set",_wrap_CvMoments_m02_set,0,0,2,0}, -{"CvMoments_m02_get",_wrap_CvMoments_m02_get,0,0,2,0}, -{"CvMoments_m30_set",_wrap_CvMoments_m30_set,0,0,2,0}, -{"CvMoments_m30_get",_wrap_CvMoments_m30_get,0,0,2,0}, -{"CvMoments_m21_set",_wrap_CvMoments_m21_set,0,0,2,0}, -{"CvMoments_m21_get",_wrap_CvMoments_m21_get,0,0,2,0}, -{"CvMoments_m12_set",_wrap_CvMoments_m12_set,0,0,2,0}, -{"CvMoments_m12_get",_wrap_CvMoments_m12_get,0,0,2,0}, -{"CvMoments_m03_set",_wrap_CvMoments_m03_set,0,0,2,0}, -{"CvMoments_m03_get",_wrap_CvMoments_m03_get,0,0,2,0}, -{"CvMoments_mu20_set",_wrap_CvMoments_mu20_set,0,0,2,0}, -{"CvMoments_mu20_get",_wrap_CvMoments_mu20_get,0,0,2,0}, -{"CvMoments_mu11_set",_wrap_CvMoments_mu11_set,0,0,2,0}, -{"CvMoments_mu11_get",_wrap_CvMoments_mu11_get,0,0,2,0}, -{"CvMoments_mu02_set",_wrap_CvMoments_mu02_set,0,0,2,0}, -{"CvMoments_mu02_get",_wrap_CvMoments_mu02_get,0,0,2,0}, -{"CvMoments_mu30_set",_wrap_CvMoments_mu30_set,0,0,2,0}, -{"CvMoments_mu30_get",_wrap_CvMoments_mu30_get,0,0,2,0}, -{"CvMoments_mu21_set",_wrap_CvMoments_mu21_set,0,0,2,0}, -{"CvMoments_mu21_get",_wrap_CvMoments_mu21_get,0,0,2,0}, -{"CvMoments_mu12_set",_wrap_CvMoments_mu12_set,0,0,2,0}, -{"CvMoments_mu12_get",_wrap_CvMoments_mu12_get,0,0,2,0}, -{"CvMoments_mu03_set",_wrap_CvMoments_mu03_set,0,0,2,0}, -{"CvMoments_mu03_get",_wrap_CvMoments_mu03_get,0,0,2,0}, -{"CvMoments_inv_sqrt_m00_set",_wrap_CvMoments_inv_sqrt_m00_set,0,0,2,0}, -{"CvMoments_inv_sqrt_m00_get",_wrap_CvMoments_inv_sqrt_m00_get,0,0,2,0}, -{"new_CvMoments",_wrap_new_CvMoments,0,0,2,_wrap_new_CvMoments_texinfo}, -{"delete_CvMoments",_wrap_delete_CvMoments,0,0,2,_wrap_delete_CvMoments_texinfo}, -{"CvHuMoments_hu1_set",_wrap_CvHuMoments_hu1_set,0,0,2,0}, -{"CvHuMoments_hu1_get",_wrap_CvHuMoments_hu1_get,0,0,2,0}, -{"CvHuMoments_hu2_set",_wrap_CvHuMoments_hu2_set,0,0,2,0}, -{"CvHuMoments_hu2_get",_wrap_CvHuMoments_hu2_get,0,0,2,0}, -{"CvHuMoments_hu3_set",_wrap_CvHuMoments_hu3_set,0,0,2,0}, -{"CvHuMoments_hu3_get",_wrap_CvHuMoments_hu3_get,0,0,2,0}, -{"CvHuMoments_hu4_set",_wrap_CvHuMoments_hu4_set,0,0,2,0}, -{"CvHuMoments_hu4_get",_wrap_CvHuMoments_hu4_get,0,0,2,0}, -{"CvHuMoments_hu5_set",_wrap_CvHuMoments_hu5_set,0,0,2,0}, -{"CvHuMoments_hu5_get",_wrap_CvHuMoments_hu5_get,0,0,2,0}, -{"CvHuMoments_hu6_set",_wrap_CvHuMoments_hu6_set,0,0,2,0}, -{"CvHuMoments_hu6_get",_wrap_CvHuMoments_hu6_get,0,0,2,0}, -{"CvHuMoments_hu7_set",_wrap_CvHuMoments_hu7_set,0,0,2,0}, -{"CvHuMoments_hu7_get",_wrap_CvHuMoments_hu7_get,0,0,2,0}, -{"new_CvHuMoments",_wrap_new_CvHuMoments,0,0,2,_wrap_new_CvHuMoments_texinfo}, -{"delete_CvHuMoments",_wrap_delete_CvHuMoments,0,0,2,_wrap_delete_CvHuMoments_texinfo}, -{"CvConnectedComp_area_set",_wrap_CvConnectedComp_area_set,0,0,2,0}, -{"CvConnectedComp_area_get",_wrap_CvConnectedComp_area_get,0,0,2,0}, -{"CvConnectedComp_value_set",_wrap_CvConnectedComp_value_set,0,0,2,0}, -{"CvConnectedComp_value_get",_wrap_CvConnectedComp_value_get,0,0,2,0}, -{"CvConnectedComp_rect_set",_wrap_CvConnectedComp_rect_set,0,0,2,0}, -{"CvConnectedComp_rect_get",_wrap_CvConnectedComp_rect_get,0,0,2,0}, -{"CvConnectedComp_contour_set",_wrap_CvConnectedComp_contour_set,0,0,2,0}, -{"CvConnectedComp_contour_get",_wrap_CvConnectedComp_contour_get,0,0,2,0}, -{"new_CvConnectedComp",_wrap_new_CvConnectedComp,0,0,2,_wrap_new_CvConnectedComp_texinfo}, -{"delete_CvConnectedComp",_wrap_delete_CvConnectedComp,0,0,2,_wrap_delete_CvConnectedComp_texinfo}, -{"CvChainPtReader_header_size_set",_wrap_CvChainPtReader_header_size_set,0,0,2,0}, -{"CvChainPtReader_header_size_get",_wrap_CvChainPtReader_header_size_get,0,0,2,0}, -{"CvChainPtReader_seq_set",_wrap_CvChainPtReader_seq_set,0,0,2,0}, -{"CvChainPtReader_seq_get",_wrap_CvChainPtReader_seq_get,0,0,2,0}, -{"CvChainPtReader_block_set",_wrap_CvChainPtReader_block_set,0,0,2,0}, -{"CvChainPtReader_block_get",_wrap_CvChainPtReader_block_get,0,0,2,0}, -{"CvChainPtReader_ptr_set",_wrap_CvChainPtReader_ptr_set,0,0,2,0}, -{"CvChainPtReader_ptr_get",_wrap_CvChainPtReader_ptr_get,0,0,2,0}, -{"CvChainPtReader_block_min_set",_wrap_CvChainPtReader_block_min_set,0,0,2,0}, -{"CvChainPtReader_block_min_get",_wrap_CvChainPtReader_block_min_get,0,0,2,0}, -{"CvChainPtReader_block_max_set",_wrap_CvChainPtReader_block_max_set,0,0,2,0}, -{"CvChainPtReader_block_max_get",_wrap_CvChainPtReader_block_max_get,0,0,2,0}, -{"CvChainPtReader_delta_index_set",_wrap_CvChainPtReader_delta_index_set,0,0,2,0}, -{"CvChainPtReader_delta_index_get",_wrap_CvChainPtReader_delta_index_get,0,0,2,0}, -{"CvChainPtReader_prev_elem_set",_wrap_CvChainPtReader_prev_elem_set,0,0,2,0}, -{"CvChainPtReader_prev_elem_get",_wrap_CvChainPtReader_prev_elem_get,0,0,2,0}, -{"CvChainPtReader_code_set",_wrap_CvChainPtReader_code_set,0,0,2,0}, -{"CvChainPtReader_code_get",_wrap_CvChainPtReader_code_get,0,0,2,0}, -{"CvChainPtReader_pt_set",_wrap_CvChainPtReader_pt_set,0,0,2,0}, -{"CvChainPtReader_pt_get",_wrap_CvChainPtReader_pt_get,0,0,2,0}, -{"CvChainPtReader_deltas_set",_wrap_CvChainPtReader_deltas_set,0,0,2,0}, -{"CvChainPtReader_deltas_get",_wrap_CvChainPtReader_deltas_get,0,0,2,0}, -{"new_CvChainPtReader",_wrap_new_CvChainPtReader,0,0,2,_wrap_new_CvChainPtReader_texinfo}, -{"delete_CvChainPtReader",_wrap_delete_CvChainPtReader,0,0,2,_wrap_delete_CvChainPtReader_texinfo}, -{"CvContourTree_flags_set",_wrap_CvContourTree_flags_set,0,0,2,0}, -{"CvContourTree_flags_get",_wrap_CvContourTree_flags_get,0,0,2,0}, -{"CvContourTree_header_size_set",_wrap_CvContourTree_header_size_set,0,0,2,0}, -{"CvContourTree_header_size_get",_wrap_CvContourTree_header_size_get,0,0,2,0}, -{"CvContourTree_h_prev_set",_wrap_CvContourTree_h_prev_set,0,0,2,0}, -{"CvContourTree_h_prev_get",_wrap_CvContourTree_h_prev_get,0,0,2,0}, -{"CvContourTree_h_next_set",_wrap_CvContourTree_h_next_set,0,0,2,0}, -{"CvContourTree_h_next_get",_wrap_CvContourTree_h_next_get,0,0,2,0}, -{"CvContourTree_v_prev_set",_wrap_CvContourTree_v_prev_set,0,0,2,0}, -{"CvContourTree_v_prev_get",_wrap_CvContourTree_v_prev_get,0,0,2,0}, -{"CvContourTree_v_next_set",_wrap_CvContourTree_v_next_set,0,0,2,0}, -{"CvContourTree_v_next_get",_wrap_CvContourTree_v_next_get,0,0,2,0}, -{"CvContourTree_total_set",_wrap_CvContourTree_total_set,0,0,2,0}, -{"CvContourTree_total_get",_wrap_CvContourTree_total_get,0,0,2,0}, -{"CvContourTree_elem_size_set",_wrap_CvContourTree_elem_size_set,0,0,2,0}, -{"CvContourTree_elem_size_get",_wrap_CvContourTree_elem_size_get,0,0,2,0}, -{"CvContourTree_block_max_set",_wrap_CvContourTree_block_max_set,0,0,2,0}, -{"CvContourTree_block_max_get",_wrap_CvContourTree_block_max_get,0,0,2,0}, -{"CvContourTree_ptr_set",_wrap_CvContourTree_ptr_set,0,0,2,0}, -{"CvContourTree_ptr_get",_wrap_CvContourTree_ptr_get,0,0,2,0}, -{"CvContourTree_delta_elems_set",_wrap_CvContourTree_delta_elems_set,0,0,2,0}, -{"CvContourTree_delta_elems_get",_wrap_CvContourTree_delta_elems_get,0,0,2,0}, -{"CvContourTree_storage_set",_wrap_CvContourTree_storage_set,0,0,2,0}, -{"CvContourTree_storage_get",_wrap_CvContourTree_storage_get,0,0,2,0}, -{"CvContourTree_free_blocks_set",_wrap_CvContourTree_free_blocks_set,0,0,2,0}, -{"CvContourTree_free_blocks_get",_wrap_CvContourTree_free_blocks_get,0,0,2,0}, -{"CvContourTree_first_set",_wrap_CvContourTree_first_set,0,0,2,0}, -{"CvContourTree_first_get",_wrap_CvContourTree_first_get,0,0,2,0}, -{"CvContourTree_p1_set",_wrap_CvContourTree_p1_set,0,0,2,0}, -{"CvContourTree_p1_get",_wrap_CvContourTree_p1_get,0,0,2,0}, -{"CvContourTree_p2_set",_wrap_CvContourTree_p2_set,0,0,2,0}, -{"CvContourTree_p2_get",_wrap_CvContourTree_p2_get,0,0,2,0}, -{"new_CvContourTree",_wrap_new_CvContourTree,0,0,2,_wrap_new_CvContourTree_texinfo}, -{"delete_CvContourTree",_wrap_delete_CvContourTree,0,0,2,_wrap_delete_CvContourTree_texinfo}, -{"CvConvexityDefect_start_set",_wrap_CvConvexityDefect_start_set,0,0,2,0}, -{"CvConvexityDefect_start_get",_wrap_CvConvexityDefect_start_get,0,0,2,0}, -{"CvConvexityDefect_end_set",_wrap_CvConvexityDefect_end_set,0,0,2,0}, -{"CvConvexityDefect_end_get",_wrap_CvConvexityDefect_end_get,0,0,2,0}, -{"CvConvexityDefect_depth_point_set",_wrap_CvConvexityDefect_depth_point_set,0,0,2,0}, -{"CvConvexityDefect_depth_point_get",_wrap_CvConvexityDefect_depth_point_get,0,0,2,0}, -{"CvConvexityDefect_depth_set",_wrap_CvConvexityDefect_depth_set,0,0,2,0}, -{"CvConvexityDefect_depth_get",_wrap_CvConvexityDefect_depth_get,0,0,2,0}, -{"new_CvConvexityDefect",_wrap_new_CvConvexityDefect,0,0,2,_wrap_new_CvConvexityDefect_texinfo}, -{"delete_CvConvexityDefect",_wrap_delete_CvConvexityDefect,0,0,2,_wrap_delete_CvConvexityDefect_texinfo}, -{"CvQuadEdge2D_flags_set",_wrap_CvQuadEdge2D_flags_set,0,0,2,0}, -{"CvQuadEdge2D_flags_get",_wrap_CvQuadEdge2D_flags_get,0,0,2,0}, -{"CvQuadEdge2D_pt_set",_wrap_CvQuadEdge2D_pt_set,0,0,2,0}, -{"CvQuadEdge2D_pt_get",_wrap_CvQuadEdge2D_pt_get,0,0,2,0}, -{"CvQuadEdge2D_next_set",_wrap_CvQuadEdge2D_next_set,0,0,2,0}, -{"CvQuadEdge2D_next_get",_wrap_CvQuadEdge2D_next_get,0,0,2,0}, -{"new_CvQuadEdge2D",_wrap_new_CvQuadEdge2D,0,0,2,_wrap_new_CvQuadEdge2D_texinfo}, -{"delete_CvQuadEdge2D",_wrap_delete_CvQuadEdge2D,0,0,2,_wrap_delete_CvQuadEdge2D_texinfo}, -{"CvSubdiv2DPoint_flags_set",_wrap_CvSubdiv2DPoint_flags_set,0,0,2,0}, -{"CvSubdiv2DPoint_flags_get",_wrap_CvSubdiv2DPoint_flags_get,0,0,2,0}, -{"CvSubdiv2DPoint_first_set",_wrap_CvSubdiv2DPoint_first_set,0,0,2,0}, -{"CvSubdiv2DPoint_first_get",_wrap_CvSubdiv2DPoint_first_get,0,0,2,0}, -{"CvSubdiv2DPoint_pt_set",_wrap_CvSubdiv2DPoint_pt_set,0,0,2,0}, -{"CvSubdiv2DPoint_pt_get",_wrap_CvSubdiv2DPoint_pt_get,0,0,2,0}, -{"new_CvSubdiv2DPoint",_wrap_new_CvSubdiv2DPoint,0,0,2,_wrap_new_CvSubdiv2DPoint_texinfo}, -{"delete_CvSubdiv2DPoint",_wrap_delete_CvSubdiv2DPoint,0,0,2,_wrap_delete_CvSubdiv2DPoint_texinfo}, -{"CvSubdiv2D_flags_set",_wrap_CvSubdiv2D_flags_set,0,0,2,0}, -{"CvSubdiv2D_flags_get",_wrap_CvSubdiv2D_flags_get,0,0,2,0}, -{"CvSubdiv2D_header_size_set",_wrap_CvSubdiv2D_header_size_set,0,0,2,0}, -{"CvSubdiv2D_header_size_get",_wrap_CvSubdiv2D_header_size_get,0,0,2,0}, -{"CvSubdiv2D_h_prev_set",_wrap_CvSubdiv2D_h_prev_set,0,0,2,0}, -{"CvSubdiv2D_h_prev_get",_wrap_CvSubdiv2D_h_prev_get,0,0,2,0}, -{"CvSubdiv2D_h_next_set",_wrap_CvSubdiv2D_h_next_set,0,0,2,0}, -{"CvSubdiv2D_h_next_get",_wrap_CvSubdiv2D_h_next_get,0,0,2,0}, -{"CvSubdiv2D_v_prev_set",_wrap_CvSubdiv2D_v_prev_set,0,0,2,0}, -{"CvSubdiv2D_v_prev_get",_wrap_CvSubdiv2D_v_prev_get,0,0,2,0}, -{"CvSubdiv2D_v_next_set",_wrap_CvSubdiv2D_v_next_set,0,0,2,0}, -{"CvSubdiv2D_v_next_get",_wrap_CvSubdiv2D_v_next_get,0,0,2,0}, -{"CvSubdiv2D_total_set",_wrap_CvSubdiv2D_total_set,0,0,2,0}, -{"CvSubdiv2D_total_get",_wrap_CvSubdiv2D_total_get,0,0,2,0}, -{"CvSubdiv2D_elem_size_set",_wrap_CvSubdiv2D_elem_size_set,0,0,2,0}, -{"CvSubdiv2D_elem_size_get",_wrap_CvSubdiv2D_elem_size_get,0,0,2,0}, -{"CvSubdiv2D_block_max_set",_wrap_CvSubdiv2D_block_max_set,0,0,2,0}, -{"CvSubdiv2D_block_max_get",_wrap_CvSubdiv2D_block_max_get,0,0,2,0}, -{"CvSubdiv2D_ptr_set",_wrap_CvSubdiv2D_ptr_set,0,0,2,0}, -{"CvSubdiv2D_ptr_get",_wrap_CvSubdiv2D_ptr_get,0,0,2,0}, -{"CvSubdiv2D_delta_elems_set",_wrap_CvSubdiv2D_delta_elems_set,0,0,2,0}, -{"CvSubdiv2D_delta_elems_get",_wrap_CvSubdiv2D_delta_elems_get,0,0,2,0}, -{"CvSubdiv2D_storage_set",_wrap_CvSubdiv2D_storage_set,0,0,2,0}, -{"CvSubdiv2D_storage_get",_wrap_CvSubdiv2D_storage_get,0,0,2,0}, -{"CvSubdiv2D_free_blocks_set",_wrap_CvSubdiv2D_free_blocks_set,0,0,2,0}, -{"CvSubdiv2D_free_blocks_get",_wrap_CvSubdiv2D_free_blocks_get,0,0,2,0}, -{"CvSubdiv2D_first_set",_wrap_CvSubdiv2D_first_set,0,0,2,0}, -{"CvSubdiv2D_first_get",_wrap_CvSubdiv2D_first_get,0,0,2,0}, -{"CvSubdiv2D_free_elems_set",_wrap_CvSubdiv2D_free_elems_set,0,0,2,0}, -{"CvSubdiv2D_free_elems_get",_wrap_CvSubdiv2D_free_elems_get,0,0,2,0}, -{"CvSubdiv2D_active_count_set",_wrap_CvSubdiv2D_active_count_set,0,0,2,0}, -{"CvSubdiv2D_active_count_get",_wrap_CvSubdiv2D_active_count_get,0,0,2,0}, -{"CvSubdiv2D_quad_edges_set",_wrap_CvSubdiv2D_quad_edges_set,0,0,2,0}, -{"CvSubdiv2D_quad_edges_get",_wrap_CvSubdiv2D_quad_edges_get,0,0,2,0}, -{"CvSubdiv2D_is_geometry_valid_set",_wrap_CvSubdiv2D_is_geometry_valid_set,0,0,2,0}, -{"CvSubdiv2D_is_geometry_valid_get",_wrap_CvSubdiv2D_is_geometry_valid_get,0,0,2,0}, -{"CvSubdiv2D_recent_edge_set",_wrap_CvSubdiv2D_recent_edge_set,0,0,2,0}, -{"CvSubdiv2D_recent_edge_get",_wrap_CvSubdiv2D_recent_edge_get,0,0,2,0}, -{"CvSubdiv2D_topleft_set",_wrap_CvSubdiv2D_topleft_set,0,0,2,0}, -{"CvSubdiv2D_topleft_get",_wrap_CvSubdiv2D_topleft_get,0,0,2,0}, -{"CvSubdiv2D_bottomright_set",_wrap_CvSubdiv2D_bottomright_set,0,0,2,0}, -{"CvSubdiv2D_bottomright_get",_wrap_CvSubdiv2D_bottomright_get,0,0,2,0}, -{"CvSubdiv2D_edges_set",_wrap_CvSubdiv2D_edges_set,0,0,2,0}, -{"CvSubdiv2D_edges_get",_wrap_CvSubdiv2D_edges_get,0,0,2,0}, -{"CvSubdiv2D_typed_edges_get",_wrap_CvSubdiv2D_typed_edges_get,0,0,2,_wrap_CvSubdiv2D_typed_edges_get_texinfo}, -{"CvSubdiv2D_typed_edges_set",_wrap_CvSubdiv2D_typed_edges_set,0,0,2,_wrap_CvSubdiv2D_typed_edges_set_texinfo}, -{"new_CvSubdiv2D",_wrap_new_CvSubdiv2D,0,0,2,_wrap_new_CvSubdiv2D_texinfo}, -{"delete_CvSubdiv2D",_wrap_delete_CvSubdiv2D,0,0,2,_wrap_delete_CvSubdiv2D_texinfo}, -{"CvMatrix3_m_set",_wrap_CvMatrix3_m_set,0,0,2,0}, -{"CvMatrix3_m_get",_wrap_CvMatrix3_m_get,0,0,2,0}, -{"new_CvMatrix3",_wrap_new_CvMatrix3,0,0,2,_wrap_new_CvMatrix3_texinfo}, -{"delete_CvMatrix3",_wrap_delete_CvMatrix3,0,0,2,_wrap_delete_CvMatrix3_texinfo}, -{"CvConDensation_MP_set",_wrap_CvConDensation_MP_set,0,0,2,0}, -{"CvConDensation_MP_get",_wrap_CvConDensation_MP_get,0,0,2,0}, -{"CvConDensation_DP_set",_wrap_CvConDensation_DP_set,0,0,2,0}, -{"CvConDensation_DP_get",_wrap_CvConDensation_DP_get,0,0,2,0}, -{"CvConDensation_DynamMatr_set",_wrap_CvConDensation_DynamMatr_set,0,0,2,0}, -{"CvConDensation_DynamMatr_get",_wrap_CvConDensation_DynamMatr_get,0,0,2,0}, -{"CvConDensation_State_set",_wrap_CvConDensation_State_set,0,0,2,0}, -{"CvConDensation_State_get",_wrap_CvConDensation_State_get,0,0,2,0}, -{"CvConDensation_SamplesNum_set",_wrap_CvConDensation_SamplesNum_set,0,0,2,0}, -{"CvConDensation_SamplesNum_get",_wrap_CvConDensation_SamplesNum_get,0,0,2,0}, -{"CvConDensation_flSamples_set",_wrap_CvConDensation_flSamples_set,0,0,2,0}, -{"CvConDensation_flSamples_get",_wrap_CvConDensation_flSamples_get,0,0,2,0}, -{"CvConDensation_flNewSamples_set",_wrap_CvConDensation_flNewSamples_set,0,0,2,0}, -{"CvConDensation_flNewSamples_get",_wrap_CvConDensation_flNewSamples_get,0,0,2,0}, -{"CvConDensation_flConfidence_set",_wrap_CvConDensation_flConfidence_set,0,0,2,0}, -{"CvConDensation_flConfidence_get",_wrap_CvConDensation_flConfidence_get,0,0,2,0}, -{"CvConDensation_flCumulative_set",_wrap_CvConDensation_flCumulative_set,0,0,2,0}, -{"CvConDensation_flCumulative_get",_wrap_CvConDensation_flCumulative_get,0,0,2,0}, -{"CvConDensation_Temp_set",_wrap_CvConDensation_Temp_set,0,0,2,0}, -{"CvConDensation_Temp_get",_wrap_CvConDensation_Temp_get,0,0,2,0}, -{"CvConDensation_RandomSample_set",_wrap_CvConDensation_RandomSample_set,0,0,2,0}, -{"CvConDensation_RandomSample_get",_wrap_CvConDensation_RandomSample_get,0,0,2,0}, -{"CvConDensation_RandS_set",_wrap_CvConDensation_RandS_set,0,0,2,0}, -{"CvConDensation_RandS_get",_wrap_CvConDensation_RandS_get,0,0,2,0}, -{"delete_CvConDensation",_wrap_delete_CvConDensation,0,0,2,_wrap_delete_CvConDensation_texinfo}, -{"CvKalman_MP_set",_wrap_CvKalman_MP_set,0,0,2,0}, -{"CvKalman_MP_get",_wrap_CvKalman_MP_get,0,0,2,0}, -{"CvKalman_DP_set",_wrap_CvKalman_DP_set,0,0,2,0}, -{"CvKalman_DP_get",_wrap_CvKalman_DP_get,0,0,2,0}, -{"CvKalman_CP_set",_wrap_CvKalman_CP_set,0,0,2,0}, -{"CvKalman_CP_get",_wrap_CvKalman_CP_get,0,0,2,0}, -{"CvKalman_PosterState_set",_wrap_CvKalman_PosterState_set,0,0,2,0}, -{"CvKalman_PosterState_get",_wrap_CvKalman_PosterState_get,0,0,2,0}, -{"CvKalman_PriorState_set",_wrap_CvKalman_PriorState_set,0,0,2,0}, -{"CvKalman_PriorState_get",_wrap_CvKalman_PriorState_get,0,0,2,0}, -{"CvKalman_DynamMatr_set",_wrap_CvKalman_DynamMatr_set,0,0,2,0}, -{"CvKalman_DynamMatr_get",_wrap_CvKalman_DynamMatr_get,0,0,2,0}, -{"CvKalman_MeasurementMatr_set",_wrap_CvKalman_MeasurementMatr_set,0,0,2,0}, -{"CvKalman_MeasurementMatr_get",_wrap_CvKalman_MeasurementMatr_get,0,0,2,0}, -{"CvKalman_MNCovariance_set",_wrap_CvKalman_MNCovariance_set,0,0,2,0}, -{"CvKalman_MNCovariance_get",_wrap_CvKalman_MNCovariance_get,0,0,2,0}, -{"CvKalman_PNCovariance_set",_wrap_CvKalman_PNCovariance_set,0,0,2,0}, -{"CvKalman_PNCovariance_get",_wrap_CvKalman_PNCovariance_get,0,0,2,0}, -{"CvKalman_KalmGainMatr_set",_wrap_CvKalman_KalmGainMatr_set,0,0,2,0}, -{"CvKalman_KalmGainMatr_get",_wrap_CvKalman_KalmGainMatr_get,0,0,2,0}, -{"CvKalman_PriorErrorCovariance_set",_wrap_CvKalman_PriorErrorCovariance_set,0,0,2,0}, -{"CvKalman_PriorErrorCovariance_get",_wrap_CvKalman_PriorErrorCovariance_get,0,0,2,0}, -{"CvKalman_PosterErrorCovariance_set",_wrap_CvKalman_PosterErrorCovariance_set,0,0,2,0}, -{"CvKalman_PosterErrorCovariance_get",_wrap_CvKalman_PosterErrorCovariance_get,0,0,2,0}, -{"CvKalman_Temp1_set",_wrap_CvKalman_Temp1_set,0,0,2,0}, -{"CvKalman_Temp1_get",_wrap_CvKalman_Temp1_get,0,0,2,0}, -{"CvKalman_Temp2_set",_wrap_CvKalman_Temp2_set,0,0,2,0}, -{"CvKalman_Temp2_get",_wrap_CvKalman_Temp2_get,0,0,2,0}, -{"CvKalman_state_pre_set",_wrap_CvKalman_state_pre_set,0,0,2,0}, -{"CvKalman_state_pre_get",_wrap_CvKalman_state_pre_get,0,0,2,0}, -{"CvKalman_state_post_set",_wrap_CvKalman_state_post_set,0,0,2,0}, -{"CvKalman_state_post_get",_wrap_CvKalman_state_post_get,0,0,2,0}, -{"CvKalman_transition_matrix_set",_wrap_CvKalman_transition_matrix_set,0,0,2,0}, -{"CvKalman_transition_matrix_get",_wrap_CvKalman_transition_matrix_get,0,0,2,0}, -{"CvKalman_control_matrix_set",_wrap_CvKalman_control_matrix_set,0,0,2,0}, -{"CvKalman_control_matrix_get",_wrap_CvKalman_control_matrix_get,0,0,2,0}, -{"CvKalman_measurement_matrix_set",_wrap_CvKalman_measurement_matrix_set,0,0,2,0}, -{"CvKalman_measurement_matrix_get",_wrap_CvKalman_measurement_matrix_get,0,0,2,0}, -{"CvKalman_process_noise_cov_set",_wrap_CvKalman_process_noise_cov_set,0,0,2,0}, -{"CvKalman_process_noise_cov_get",_wrap_CvKalman_process_noise_cov_get,0,0,2,0}, -{"CvKalman_measurement_noise_cov_set",_wrap_CvKalman_measurement_noise_cov_set,0,0,2,0}, -{"CvKalman_measurement_noise_cov_get",_wrap_CvKalman_measurement_noise_cov_get,0,0,2,0}, -{"CvKalman_error_cov_pre_set",_wrap_CvKalman_error_cov_pre_set,0,0,2,0}, -{"CvKalman_error_cov_pre_get",_wrap_CvKalman_error_cov_pre_get,0,0,2,0}, -{"CvKalman_gain_set",_wrap_CvKalman_gain_set,0,0,2,0}, -{"CvKalman_gain_get",_wrap_CvKalman_gain_get,0,0,2,0}, -{"CvKalman_error_cov_post_set",_wrap_CvKalman_error_cov_post_set,0,0,2,0}, -{"CvKalman_error_cov_post_get",_wrap_CvKalman_error_cov_post_get,0,0,2,0}, -{"CvKalman_temp1_set",_wrap_CvKalman_temp1_set,0,0,2,0}, -{"CvKalman_temp1_get",_wrap_CvKalman_temp1_get,0,0,2,0}, -{"CvKalman_temp2_set",_wrap_CvKalman_temp2_set,0,0,2,0}, -{"CvKalman_temp2_get",_wrap_CvKalman_temp2_get,0,0,2,0}, -{"CvKalman_temp3_set",_wrap_CvKalman_temp3_set,0,0,2,0}, -{"CvKalman_temp3_get",_wrap_CvKalman_temp3_get,0,0,2,0}, -{"CvKalman_temp4_set",_wrap_CvKalman_temp4_set,0,0,2,0}, -{"CvKalman_temp4_get",_wrap_CvKalman_temp4_get,0,0,2,0}, -{"CvKalman_temp5_set",_wrap_CvKalman_temp5_set,0,0,2,0}, -{"CvKalman_temp5_get",_wrap_CvKalman_temp5_get,0,0,2,0}, -{"delete_CvKalman",_wrap_delete_CvKalman,0,0,2,_wrap_delete_CvKalman_texinfo}, -{"CvHaarFeature_tilted_set",_wrap_CvHaarFeature_tilted_set,0,0,2,0}, -{"CvHaarFeature_tilted_get",_wrap_CvHaarFeature_tilted_get,0,0,2,0}, -{"CvHaarFeature_rect_get",_wrap_CvHaarFeature_rect_get,0,0,2,0}, -{"new_CvHaarFeature",_wrap_new_CvHaarFeature,0,0,2,_wrap_new_CvHaarFeature_texinfo}, -{"delete_CvHaarFeature",_wrap_delete_CvHaarFeature,0,0,2,_wrap_delete_CvHaarFeature_texinfo}, -{"CvHaarFeature_rect_r_set",_wrap_CvHaarFeature_rect_r_set,0,0,2,0}, -{"CvHaarFeature_rect_r_get",_wrap_CvHaarFeature_rect_r_get,0,0,2,0}, -{"CvHaarFeature_rect_weight_set",_wrap_CvHaarFeature_rect_weight_set,0,0,2,0}, -{"CvHaarFeature_rect_weight_get",_wrap_CvHaarFeature_rect_weight_get,0,0,2,0}, -{"new_CvHaarFeature_rect",_wrap_new_CvHaarFeature_rect,0,0,2,_wrap_new_CvHaarFeature_rect_texinfo}, -{"delete_CvHaarFeature_rect",_wrap_delete_CvHaarFeature_rect,0,0,2,_wrap_delete_CvHaarFeature_rect_texinfo}, -{"CvHaarClassifier_count_set",_wrap_CvHaarClassifier_count_set,0,0,2,0}, -{"CvHaarClassifier_count_get",_wrap_CvHaarClassifier_count_get,0,0,2,0}, -{"CvHaarClassifier_haar_feature_set",_wrap_CvHaarClassifier_haar_feature_set,0,0,2,0}, -{"CvHaarClassifier_haar_feature_get",_wrap_CvHaarClassifier_haar_feature_get,0,0,2,0}, -{"CvHaarClassifier_threshold_set",_wrap_CvHaarClassifier_threshold_set,0,0,2,0}, -{"CvHaarClassifier_threshold_get",_wrap_CvHaarClassifier_threshold_get,0,0,2,0}, -{"CvHaarClassifier_left_set",_wrap_CvHaarClassifier_left_set,0,0,2,0}, -{"CvHaarClassifier_left_get",_wrap_CvHaarClassifier_left_get,0,0,2,0}, -{"CvHaarClassifier_right_set",_wrap_CvHaarClassifier_right_set,0,0,2,0}, -{"CvHaarClassifier_right_get",_wrap_CvHaarClassifier_right_get,0,0,2,0}, -{"CvHaarClassifier_alpha_set",_wrap_CvHaarClassifier_alpha_set,0,0,2,0}, -{"CvHaarClassifier_alpha_get",_wrap_CvHaarClassifier_alpha_get,0,0,2,0}, -{"new_CvHaarClassifier",_wrap_new_CvHaarClassifier,0,0,2,_wrap_new_CvHaarClassifier_texinfo}, -{"delete_CvHaarClassifier",_wrap_delete_CvHaarClassifier,0,0,2,_wrap_delete_CvHaarClassifier_texinfo}, -{"CvHaarStageClassifier_count_set",_wrap_CvHaarStageClassifier_count_set,0,0,2,0}, -{"CvHaarStageClassifier_count_get",_wrap_CvHaarStageClassifier_count_get,0,0,2,0}, -{"CvHaarStageClassifier_threshold_set",_wrap_CvHaarStageClassifier_threshold_set,0,0,2,0}, -{"CvHaarStageClassifier_threshold_get",_wrap_CvHaarStageClassifier_threshold_get,0,0,2,0}, -{"CvHaarStageClassifier_classifier_set",_wrap_CvHaarStageClassifier_classifier_set,0,0,2,0}, -{"CvHaarStageClassifier_classifier_get",_wrap_CvHaarStageClassifier_classifier_get,0,0,2,0}, -{"CvHaarStageClassifier_next_set",_wrap_CvHaarStageClassifier_next_set,0,0,2,0}, -{"CvHaarStageClassifier_next_get",_wrap_CvHaarStageClassifier_next_get,0,0,2,0}, -{"CvHaarStageClassifier_child_set",_wrap_CvHaarStageClassifier_child_set,0,0,2,0}, -{"CvHaarStageClassifier_child_get",_wrap_CvHaarStageClassifier_child_get,0,0,2,0}, -{"CvHaarStageClassifier_parent_set",_wrap_CvHaarStageClassifier_parent_set,0,0,2,0}, -{"CvHaarStageClassifier_parent_get",_wrap_CvHaarStageClassifier_parent_get,0,0,2,0}, -{"new_CvHaarStageClassifier",_wrap_new_CvHaarStageClassifier,0,0,2,_wrap_new_CvHaarStageClassifier_texinfo}, -{"delete_CvHaarStageClassifier",_wrap_delete_CvHaarStageClassifier,0,0,2,_wrap_delete_CvHaarStageClassifier_texinfo}, -{"CvHaarClassifierCascade_flags_set",_wrap_CvHaarClassifierCascade_flags_set,0,0,2,0}, -{"CvHaarClassifierCascade_flags_get",_wrap_CvHaarClassifierCascade_flags_get,0,0,2,0}, -{"CvHaarClassifierCascade_count_set",_wrap_CvHaarClassifierCascade_count_set,0,0,2,0}, -{"CvHaarClassifierCascade_count_get",_wrap_CvHaarClassifierCascade_count_get,0,0,2,0}, -{"CvHaarClassifierCascade_orig_window_size_set",_wrap_CvHaarClassifierCascade_orig_window_size_set,0,0,2,0}, -{"CvHaarClassifierCascade_orig_window_size_get",_wrap_CvHaarClassifierCascade_orig_window_size_get,0,0,2,0}, -{"CvHaarClassifierCascade_real_window_size_set",_wrap_CvHaarClassifierCascade_real_window_size_set,0,0,2,0}, -{"CvHaarClassifierCascade_real_window_size_get",_wrap_CvHaarClassifierCascade_real_window_size_get,0,0,2,0}, -{"CvHaarClassifierCascade_scale_set",_wrap_CvHaarClassifierCascade_scale_set,0,0,2,0}, -{"CvHaarClassifierCascade_scale_get",_wrap_CvHaarClassifierCascade_scale_get,0,0,2,0}, -{"CvHaarClassifierCascade_stage_classifier_set",_wrap_CvHaarClassifierCascade_stage_classifier_set,0,0,2,0}, -{"CvHaarClassifierCascade_stage_classifier_get",_wrap_CvHaarClassifierCascade_stage_classifier_get,0,0,2,0}, -{"CvHaarClassifierCascade_hid_cascade_set",_wrap_CvHaarClassifierCascade_hid_cascade_set,0,0,2,0}, -{"CvHaarClassifierCascade_hid_cascade_get",_wrap_CvHaarClassifierCascade_hid_cascade_get,0,0,2,0}, -{"delete_CvHaarClassifierCascade",_wrap_delete_CvHaarClassifierCascade,0,0,2,_wrap_delete_CvHaarClassifierCascade_texinfo}, -{"CvAvgComp_rect_set",_wrap_CvAvgComp_rect_set,0,0,2,0}, -{"CvAvgComp_rect_get",_wrap_CvAvgComp_rect_get,0,0,2,0}, -{"CvAvgComp_neighbors_set",_wrap_CvAvgComp_neighbors_set,0,0,2,0}, -{"CvAvgComp_neighbors_get",_wrap_CvAvgComp_neighbors_get,0,0,2,0}, -{"new_CvAvgComp",_wrap_new_CvAvgComp,0,0,2,_wrap_new_CvAvgComp_texinfo}, -{"delete_CvAvgComp",_wrap_delete_CvAvgComp,0,0,2,_wrap_delete_CvAvgComp_texinfo}, -{"cvCopyMakeBorder",_wrap_cvCopyMakeBorder,0,0,2,_wrap_cvCopyMakeBorder_texinfo}, -{"cvSmooth",_wrap_cvSmooth,0,0,2,_wrap_cvSmooth_texinfo}, -{"cvFilter2D",_wrap_cvFilter2D,0,0,2,_wrap_cvFilter2D_texinfo}, -{"cvIntegral",_wrap_cvIntegral,0,0,2,_wrap_cvIntegral_texinfo}, -{"cvPyrDown",_wrap_cvPyrDown,0,0,2,_wrap_cvPyrDown_texinfo}, -{"cvPyrUp",_wrap_cvPyrUp,0,0,2,_wrap_cvPyrUp_texinfo}, -{"cvCreatePyramid",_wrap_cvCreatePyramid,0,0,2,_wrap_cvCreatePyramid_texinfo}, -{"cvReleasePyramid",_wrap_cvReleasePyramid,0,0,2,_wrap_cvReleasePyramid_texinfo}, -{"cvPyrSegmentationUntyped",_wrap_cvPyrSegmentationUntyped,0,0,2,_wrap_cvPyrSegmentationUntyped_texinfo}, -{"cvPyrMeanShiftFiltering",_wrap_cvPyrMeanShiftFiltering,0,0,2,_wrap_cvPyrMeanShiftFiltering_texinfo}, -{"cvWatershed",_wrap_cvWatershed,0,0,2,_wrap_cvWatershed_texinfo}, -{"cvInpaint",_wrap_cvInpaint,0,0,2,_wrap_cvInpaint_texinfo}, -{"cvSobel",_wrap_cvSobel,0,0,2,_wrap_cvSobel_texinfo}, -{"cvLaplace",_wrap_cvLaplace,0,0,2,_wrap_cvLaplace_texinfo}, -{"cvCvtColor",_wrap_cvCvtColor,0,0,2,_wrap_cvCvtColor_texinfo}, -{"cvResize",_wrap_cvResize,0,0,2,_wrap_cvResize_texinfo}, -{"cvWarpAffine",_wrap_cvWarpAffine,0,0,2,_wrap_cvWarpAffine_texinfo}, -{"cvGetAffineTransform",_wrap_cvGetAffineTransform,0,0,2,_wrap_cvGetAffineTransform_texinfo}, -{"cv2DRotationMatrix",_wrap_cv2DRotationMatrix,0,0,2,_wrap_cv2DRotationMatrix_texinfo}, -{"cvWarpPerspective",_wrap_cvWarpPerspective,0,0,2,_wrap_cvWarpPerspective_texinfo}, -{"cvGetPerspectiveTransform",_wrap_cvGetPerspectiveTransform,0,0,2,_wrap_cvGetPerspectiveTransform_texinfo}, -{"cvRemap",_wrap_cvRemap,0,0,2,_wrap_cvRemap_texinfo}, -{"cvConvertMaps",_wrap_cvConvertMaps,0,0,2,_wrap_cvConvertMaps_texinfo}, -{"cvLogPolar",_wrap_cvLogPolar,0,0,2,_wrap_cvLogPolar_texinfo}, -{"cvLinearPolar",_wrap_cvLinearPolar,0,0,2,_wrap_cvLinearPolar_texinfo}, -{"cvCreateStructuringElementEx",_wrap_cvCreateStructuringElementEx,0,0,2,_wrap_cvCreateStructuringElementEx_texinfo}, -{"cvReleaseStructuringElement",_wrap_cvReleaseStructuringElement,0,0,2,_wrap_cvReleaseStructuringElement_texinfo}, -{"cvErode",_wrap_cvErode,0,0,2,_wrap_cvErode_texinfo}, -{"cvDilate",_wrap_cvDilate,0,0,2,_wrap_cvDilate_texinfo}, -{"cvMorphologyEx",_wrap_cvMorphologyEx,0,0,2,_wrap_cvMorphologyEx_texinfo}, -{"cvMoments",_wrap_cvMoments,0,0,2,_wrap_cvMoments_texinfo}, -{"cvGetSpatialMoment",_wrap_cvGetSpatialMoment,0,0,2,_wrap_cvGetSpatialMoment_texinfo}, -{"cvGetCentralMoment",_wrap_cvGetCentralMoment,0,0,2,_wrap_cvGetCentralMoment_texinfo}, -{"cvGetNormalizedCentralMoment",_wrap_cvGetNormalizedCentralMoment,0,0,2,_wrap_cvGetNormalizedCentralMoment_texinfo}, -{"cvGetHuMoments",_wrap_cvGetHuMoments,0,0,2,_wrap_cvGetHuMoments_texinfo}, -{"cvSampleLine",_wrap_cvSampleLine,0,0,2,_wrap_cvSampleLine_texinfo}, -{"cvGetRectSubPix",_wrap_cvGetRectSubPix,0,0,2,_wrap_cvGetRectSubPix_texinfo}, -{"cvGetQuadrangleSubPix",_wrap_cvGetQuadrangleSubPix,0,0,2,_wrap_cvGetQuadrangleSubPix_texinfo}, -{"cvMatchTemplate",_wrap_cvMatchTemplate,0,0,2,_wrap_cvMatchTemplate_texinfo}, -{"cvCalcEMD2",_wrap_cvCalcEMD2,0,0,2,_wrap_cvCalcEMD2_texinfo}, -{"cvFindContoursUntyped",_wrap_cvFindContoursUntyped,0,0,2,_wrap_cvFindContoursUntyped_texinfo}, -{"cvStartFindContours",_wrap_cvStartFindContours,0,0,2,_wrap_cvStartFindContours_texinfo}, -{"cvFindNextContour",_wrap_cvFindNextContour,0,0,2,_wrap_cvFindNextContour_texinfo}, -{"cvSubstituteContour",_wrap_cvSubstituteContour,0,0,2,_wrap_cvSubstituteContour_texinfo}, -{"cvEndFindContours",_wrap_cvEndFindContours,0,0,2,_wrap_cvEndFindContours_texinfo}, -{"cvApproxChainsUntyped",_wrap_cvApproxChainsUntyped,0,0,2,_wrap_cvApproxChainsUntyped_texinfo}, -{"cvStartReadChainPoints",_wrap_cvStartReadChainPoints,0,0,2,_wrap_cvStartReadChainPoints_texinfo}, -{"cvReadChainPoint",_wrap_cvReadChainPoint,0,0,2,_wrap_cvReadChainPoint_texinfo}, -{"cvCalcOpticalFlowLK",_wrap_cvCalcOpticalFlowLK,0,0,2,_wrap_cvCalcOpticalFlowLK_texinfo}, -{"cvCalcOpticalFlowBM",_wrap_cvCalcOpticalFlowBM,0,0,2,_wrap_cvCalcOpticalFlowBM_texinfo}, -{"cvCalcOpticalFlowHS",_wrap_cvCalcOpticalFlowHS,0,0,2,_wrap_cvCalcOpticalFlowHS_texinfo}, -{"cvCalcOpticalFlowPyrLK",_wrap_cvCalcOpticalFlowPyrLK,0,0,2,_wrap_cvCalcOpticalFlowPyrLK_texinfo}, -{"cvCalcAffineFlowPyrLK",_wrap_cvCalcAffineFlowPyrLK,0,0,2,_wrap_cvCalcAffineFlowPyrLK_texinfo}, -{"cvEstimateRigidTransform",_wrap_cvEstimateRigidTransform,0,0,2,_wrap_cvEstimateRigidTransform_texinfo}, -{"cvUpdateMotionHistory",_wrap_cvUpdateMotionHistory,0,0,2,_wrap_cvUpdateMotionHistory_texinfo}, -{"cvCalcMotionGradient",_wrap_cvCalcMotionGradient,0,0,2,_wrap_cvCalcMotionGradient_texinfo}, -{"cvCalcGlobalOrientation",_wrap_cvCalcGlobalOrientation,0,0,2,_wrap_cvCalcGlobalOrientation_texinfo}, -{"cvAcc",_wrap_cvAcc,0,0,2,_wrap_cvAcc_texinfo}, -{"cvSquareAcc",_wrap_cvSquareAcc,0,0,2,_wrap_cvSquareAcc_texinfo}, -{"cvMultiplyAcc",_wrap_cvMultiplyAcc,0,0,2,_wrap_cvMultiplyAcc_texinfo}, -{"cvRunningAvg",_wrap_cvRunningAvg,0,0,2,_wrap_cvRunningAvg_texinfo}, -{"cvCamShift",_wrap_cvCamShift,0,0,2,_wrap_cvCamShift_texinfo}, -{"cvMeanShift",_wrap_cvMeanShift,0,0,2,_wrap_cvMeanShift_texinfo}, -{"cvCreateConDensation",_wrap_cvCreateConDensation,0,0,2,_wrap_cvCreateConDensation_texinfo}, -{"cvReleaseConDensation",_wrap_cvReleaseConDensation,0,0,2,_wrap_cvReleaseConDensation_texinfo}, -{"cvConDensUpdateByTime",_wrap_cvConDensUpdateByTime,0,0,2,_wrap_cvConDensUpdateByTime_texinfo}, -{"cvConDensInitSampleSet",_wrap_cvConDensInitSampleSet,0,0,2,_wrap_cvConDensInitSampleSet_texinfo}, -{"cvCreateKalman",_wrap_cvCreateKalman,0,0,2,_wrap_cvCreateKalman_texinfo}, -{"cvReleaseKalman",_wrap_cvReleaseKalman,0,0,2,_wrap_cvReleaseKalman_texinfo}, -{"cvKalmanPredict",_wrap_cvKalmanPredict,0,0,2,_wrap_cvKalmanPredict_texinfo}, -{"cvKalmanCorrect",_wrap_cvKalmanCorrect,0,0,2,_wrap_cvKalmanCorrect_texinfo}, -{"cvInitSubdivDelaunay2D",_wrap_cvInitSubdivDelaunay2D,0,0,2,_wrap_cvInitSubdivDelaunay2D_texinfo}, -{"cvCreateSubdiv2D",_wrap_cvCreateSubdiv2D,0,0,2,_wrap_cvCreateSubdiv2D_texinfo}, -{"cvCreateSubdivDelaunay2D",_wrap_cvCreateSubdivDelaunay2D,0,0,2,_wrap_cvCreateSubdivDelaunay2D_texinfo}, -{"cvSubdivDelaunay2DInsert",_wrap_cvSubdivDelaunay2DInsert,0,0,2,_wrap_cvSubdivDelaunay2DInsert_texinfo}, -{"cvSubdiv2DLocate",_wrap_cvSubdiv2DLocate,0,0,2,_wrap_cvSubdiv2DLocate_texinfo}, -{"cvCalcSubdivVoronoi2D",_wrap_cvCalcSubdivVoronoi2D,0,0,2,_wrap_cvCalcSubdivVoronoi2D_texinfo}, -{"cvClearSubdivVoronoi2D",_wrap_cvClearSubdivVoronoi2D,0,0,2,_wrap_cvClearSubdivVoronoi2D_texinfo}, -{"cvFindNearestPoint2D",_wrap_cvFindNearestPoint2D,0,0,2,_wrap_cvFindNearestPoint2D_texinfo}, -{"cvSubdiv2DNextEdge",_wrap_cvSubdiv2DNextEdge,0,0,2,_wrap_cvSubdiv2DNextEdge_texinfo}, -{"cvSubdiv2DRotateEdge",_wrap_cvSubdiv2DRotateEdge,0,0,2,_wrap_cvSubdiv2DRotateEdge_texinfo}, -{"cvSubdiv2DSymEdge",_wrap_cvSubdiv2DSymEdge,0,0,2,_wrap_cvSubdiv2DSymEdge_texinfo}, -{"cvSubdiv2DGetEdge",_wrap_cvSubdiv2DGetEdge,0,0,2,_wrap_cvSubdiv2DGetEdge_texinfo}, -{"cvSubdiv2DEdgeOrg",_wrap_cvSubdiv2DEdgeOrg,0,0,2,_wrap_cvSubdiv2DEdgeOrg_texinfo}, -{"cvSubdiv2DEdgeDst",_wrap_cvSubdiv2DEdgeDst,0,0,2,_wrap_cvSubdiv2DEdgeDst_texinfo}, -{"cvTriangleArea",_wrap_cvTriangleArea,0,0,2,_wrap_cvTriangleArea_texinfo}, -{"cvFindDominantPoints",_wrap_cvFindDominantPoints,0,0,2,_wrap_cvFindDominantPoints_texinfo}, -{"cvBoundingRect",_wrap_cvBoundingRect,0,0,2,_wrap_cvBoundingRect_texinfo}, -{"cvContourArea",_wrap_cvContourArea,0,0,2,_wrap_cvContourArea_texinfo}, -{"cvMinAreaRect2",_wrap_cvMinAreaRect2,0,0,2,_wrap_cvMinAreaRect2_texinfo}, -{"cvMinEnclosingCircle",_wrap_cvMinEnclosingCircle,0,0,2,_wrap_cvMinEnclosingCircle_texinfo}, -{"cvMatchShapes",_wrap_cvMatchShapes,0,0,2,_wrap_cvMatchShapes_texinfo}, -{"cvCreateContourTree",_wrap_cvCreateContourTree,0,0,2,_wrap_cvCreateContourTree_texinfo}, -{"cvContourFromContourTreeUntyped",_wrap_cvContourFromContourTreeUntyped,0,0,2,_wrap_cvContourFromContourTreeUntyped_texinfo}, -{"cvMatchContourTrees",_wrap_cvMatchContourTrees,0,0,2,_wrap_cvMatchContourTrees_texinfo}, -{"cvCalcPGH",_wrap_cvCalcPGH,0,0,2,_wrap_cvCalcPGH_texinfo}, -{"cvCheckContourConvexity",_wrap_cvCheckContourConvexity,0,0,2,_wrap_cvCheckContourConvexity_texinfo}, -{"cvConvexityDefectsUntyped",_wrap_cvConvexityDefectsUntyped,0,0,2,_wrap_cvConvexityDefectsUntyped_texinfo}, -{"cvFitEllipse2",_wrap_cvFitEllipse2,0,0,2,_wrap_cvFitEllipse2_texinfo}, -{"cvMaxRect",_wrap_cvMaxRect,0,0,2,_wrap_cvMaxRect_texinfo}, -{"cvBoxPoints",_wrap_cvBoxPoints,0,0,2,_wrap_cvBoxPoints_texinfo}, -{"cvPointSeqFromMat",_wrap_cvPointSeqFromMat,0,0,2,_wrap_cvPointSeqFromMat_texinfo}, -{"cvPointPolygonTest",_wrap_cvPointPolygonTest,0,0,2,_wrap_cvPointPolygonTest_texinfo}, -{"cvCreateHist",_wrap_cvCreateHist,0,0,2,_wrap_cvCreateHist_texinfo}, -{"cvSetHistBinRanges",_wrap_cvSetHistBinRanges,0,0,2,_wrap_cvSetHistBinRanges_texinfo}, -{"cvMakeHistHeaderForArray",_wrap_cvMakeHistHeaderForArray,0,0,2,_wrap_cvMakeHistHeaderForArray_texinfo}, -{"cvReleaseHist",_wrap_cvReleaseHist,0,0,2,_wrap_cvReleaseHist_texinfo}, -{"cvClearHist",_wrap_cvClearHist,0,0,2,_wrap_cvClearHist_texinfo}, -{"cvGetMinMaxHistValue",_wrap_cvGetMinMaxHistValue,0,0,2,_wrap_cvGetMinMaxHistValue_texinfo}, -{"cvNormalizeHist",_wrap_cvNormalizeHist,0,0,2,_wrap_cvNormalizeHist_texinfo}, -{"cvThreshHist",_wrap_cvThreshHist,0,0,2,_wrap_cvThreshHist_texinfo}, -{"cvCompareHist",_wrap_cvCompareHist,0,0,2,_wrap_cvCompareHist_texinfo}, -{"cvCopyHist",_wrap_cvCopyHist,0,0,2,_wrap_cvCopyHist_texinfo}, -{"cvCalcBayesianProb",_wrap_cvCalcBayesianProb,0,0,2,_wrap_cvCalcBayesianProb_texinfo}, -{"cvCalcArrHist",_wrap_cvCalcArrHist,0,0,2,_wrap_cvCalcArrHist_texinfo}, -{"cvCalcImageHist",_wrap_cvCalcImageHist,0,0,2,_wrap_cvCalcImageHist_texinfo}, -{"cvCalcArrBackProject",_wrap_cvCalcArrBackProject,0,0,2,_wrap_cvCalcArrBackProject_texinfo}, -{"cvCalcArrBackProjectPatch",_wrap_cvCalcArrBackProjectPatch,0,0,2,_wrap_cvCalcArrBackProjectPatch_texinfo}, -{"cvCalcProbDensity",_wrap_cvCalcProbDensity,0,0,2,_wrap_cvCalcProbDensity_texinfo}, -{"cvEqualizeHist",_wrap_cvEqualizeHist,0,0,2,_wrap_cvEqualizeHist_texinfo}, -{"cvCalcImageHomography",_wrap_cvCalcImageHomography,0,0,2,_wrap_cvCalcImageHomography_texinfo}, -{"cvDistTransform",_wrap_cvDistTransform,0,0,2,_wrap_cvDistTransform_texinfo}, -{"cvThreshold",_wrap_cvThreshold,0,0,2,_wrap_cvThreshold_texinfo}, -{"cvAdaptiveThreshold",_wrap_cvAdaptiveThreshold,0,0,2,_wrap_cvAdaptiveThreshold_texinfo}, -{"cvFloodFill",_wrap_cvFloodFill,0,0,2,_wrap_cvFloodFill_texinfo}, -{"cvCanny",_wrap_cvCanny,0,0,2,_wrap_cvCanny_texinfo}, -{"cvPreCornerDetect",_wrap_cvPreCornerDetect,0,0,2,_wrap_cvPreCornerDetect_texinfo}, -{"cvCornerEigenValsAndVecs",_wrap_cvCornerEigenValsAndVecs,0,0,2,_wrap_cvCornerEigenValsAndVecs_texinfo}, -{"cvCornerMinEigenVal",_wrap_cvCornerMinEigenVal,0,0,2,_wrap_cvCornerMinEigenVal_texinfo}, -{"cvCornerHarris",_wrap_cvCornerHarris,0,0,2,_wrap_cvCornerHarris_texinfo}, -{"cvFindCornerSubPix",_wrap_cvFindCornerSubPix,0,0,2,_wrap_cvFindCornerSubPix_texinfo}, -{"cvGoodFeaturesToTrack",_wrap_cvGoodFeaturesToTrack,0,0,2,_wrap_cvGoodFeaturesToTrack_texinfo}, -{"cvHoughLinesUntyped",_wrap_cvHoughLinesUntyped,0,0,2,_wrap_cvHoughLinesUntyped_texinfo}, -{"cvHoughCirclesUntyped",_wrap_cvHoughCirclesUntyped,0,0,2,_wrap_cvHoughCirclesUntyped_texinfo}, -{"cvFitLine",_wrap_cvFitLine,0,0,2,_wrap_cvFitLine_texinfo}, -{"cvCreateKDTree",_wrap_cvCreateKDTree,0,0,2,_wrap_cvCreateKDTree_texinfo}, -{"cvCreateSpillTree",_wrap_cvCreateSpillTree,0,0,2,_wrap_cvCreateSpillTree_texinfo}, -{"cvReleaseFeatureTree",_wrap_cvReleaseFeatureTree,0,0,2,_wrap_cvReleaseFeatureTree_texinfo}, -{"cvFindFeatures",_wrap_cvFindFeatures,0,0,2,_wrap_cvFindFeatures_texinfo}, -{"cvFindFeaturesBoxed",_wrap_cvFindFeaturesBoxed,0,0,2,_wrap_cvFindFeaturesBoxed_texinfo}, -{"cvCreateLSH",_wrap_cvCreateLSH,0,0,2,_wrap_cvCreateLSH_texinfo}, -{"cvCreateMemoryLSH",_wrap_cvCreateMemoryLSH,0,0,2,_wrap_cvCreateMemoryLSH_texinfo}, -{"cvReleaseLSH",_wrap_cvReleaseLSH,0,0,2,_wrap_cvReleaseLSH_texinfo}, -{"LSHSize",_wrap_LSHSize,0,0,2,_wrap_LSHSize_texinfo}, -{"cvLSHAdd",_wrap_cvLSHAdd,0,0,2,_wrap_cvLSHAdd_texinfo}, -{"cvLSHRemove",_wrap_cvLSHRemove,0,0,2,_wrap_cvLSHRemove_texinfo}, -{"cvLSHQuery",_wrap_cvLSHQuery,0,0,2,_wrap_cvLSHQuery_texinfo}, -{"CvSURFPoint_pt_set",_wrap_CvSURFPoint_pt_set,0,0,2,0}, -{"CvSURFPoint_pt_get",_wrap_CvSURFPoint_pt_get,0,0,2,0}, -{"CvSURFPoint_laplacian_set",_wrap_CvSURFPoint_laplacian_set,0,0,2,0}, -{"CvSURFPoint_laplacian_get",_wrap_CvSURFPoint_laplacian_get,0,0,2,0}, -{"CvSURFPoint_size_set",_wrap_CvSURFPoint_size_set,0,0,2,0}, -{"CvSURFPoint_size_get",_wrap_CvSURFPoint_size_get,0,0,2,0}, -{"CvSURFPoint_dir_set",_wrap_CvSURFPoint_dir_set,0,0,2,0}, -{"CvSURFPoint_dir_get",_wrap_CvSURFPoint_dir_get,0,0,2,0}, -{"CvSURFPoint_hessian_set",_wrap_CvSURFPoint_hessian_set,0,0,2,0}, -{"CvSURFPoint_hessian_get",_wrap_CvSURFPoint_hessian_get,0,0,2,0}, -{"new_CvSURFPoint",_wrap_new_CvSURFPoint,0,0,2,_wrap_new_CvSURFPoint_texinfo}, -{"delete_CvSURFPoint",_wrap_delete_CvSURFPoint,0,0,2,_wrap_delete_CvSURFPoint_texinfo}, -{"cvSURFPoint",_wrap_cvSURFPoint,0,0,2,_wrap_cvSURFPoint_texinfo}, -{"CvSURFParams_extended_set",_wrap_CvSURFParams_extended_set,0,0,2,0}, -{"CvSURFParams_extended_get",_wrap_CvSURFParams_extended_get,0,0,2,0}, -{"CvSURFParams_hessianThreshold_set",_wrap_CvSURFParams_hessianThreshold_set,0,0,2,0}, -{"CvSURFParams_hessianThreshold_get",_wrap_CvSURFParams_hessianThreshold_get,0,0,2,0}, -{"CvSURFParams_nOctaves_set",_wrap_CvSURFParams_nOctaves_set,0,0,2,0}, -{"CvSURFParams_nOctaves_get",_wrap_CvSURFParams_nOctaves_get,0,0,2,0}, -{"CvSURFParams_nOctaveLayers_set",_wrap_CvSURFParams_nOctaveLayers_set,0,0,2,0}, -{"CvSURFParams_nOctaveLayers_get",_wrap_CvSURFParams_nOctaveLayers_get,0,0,2,0}, -{"new_CvSURFParams",_wrap_new_CvSURFParams,0,0,2,_wrap_new_CvSURFParams_texinfo}, -{"delete_CvSURFParams",_wrap_delete_CvSURFParams,0,0,2,_wrap_delete_CvSURFParams_texinfo}, -{"cvSURFParams",_wrap_cvSURFParams,0,0,2,_wrap_cvSURFParams_texinfo}, -{"cvExtractSURF",_wrap_cvExtractSURF,0,0,2,_wrap_cvExtractSURF_texinfo}, -{"CvMSERParams_delta_set",_wrap_CvMSERParams_delta_set,0,0,2,0}, -{"CvMSERParams_delta_get",_wrap_CvMSERParams_delta_get,0,0,2,0}, -{"CvMSERParams_maxArea_set",_wrap_CvMSERParams_maxArea_set,0,0,2,0}, -{"CvMSERParams_maxArea_get",_wrap_CvMSERParams_maxArea_get,0,0,2,0}, -{"CvMSERParams_minArea_set",_wrap_CvMSERParams_minArea_set,0,0,2,0}, -{"CvMSERParams_minArea_get",_wrap_CvMSERParams_minArea_get,0,0,2,0}, -{"CvMSERParams_maxVariation_set",_wrap_CvMSERParams_maxVariation_set,0,0,2,0}, -{"CvMSERParams_maxVariation_get",_wrap_CvMSERParams_maxVariation_get,0,0,2,0}, -{"CvMSERParams_minDiversity_set",_wrap_CvMSERParams_minDiversity_set,0,0,2,0}, -{"CvMSERParams_minDiversity_get",_wrap_CvMSERParams_minDiversity_get,0,0,2,0}, -{"CvMSERParams_maxEvolution_set",_wrap_CvMSERParams_maxEvolution_set,0,0,2,0}, -{"CvMSERParams_maxEvolution_get",_wrap_CvMSERParams_maxEvolution_get,0,0,2,0}, -{"CvMSERParams_areaThreshold_set",_wrap_CvMSERParams_areaThreshold_set,0,0,2,0}, -{"CvMSERParams_areaThreshold_get",_wrap_CvMSERParams_areaThreshold_get,0,0,2,0}, -{"CvMSERParams_minMargin_set",_wrap_CvMSERParams_minMargin_set,0,0,2,0}, -{"CvMSERParams_minMargin_get",_wrap_CvMSERParams_minMargin_get,0,0,2,0}, -{"CvMSERParams_edgeBlurSize_set",_wrap_CvMSERParams_edgeBlurSize_set,0,0,2,0}, -{"CvMSERParams_edgeBlurSize_get",_wrap_CvMSERParams_edgeBlurSize_get,0,0,2,0}, -{"new_CvMSERParams",_wrap_new_CvMSERParams,0,0,2,_wrap_new_CvMSERParams_texinfo}, -{"delete_CvMSERParams",_wrap_delete_CvMSERParams,0,0,2,_wrap_delete_CvMSERParams_texinfo}, -{"cvMSERParams",_wrap_cvMSERParams,0,0,2,_wrap_cvMSERParams_texinfo}, -{"cvExtractMSER",_wrap_cvExtractMSER,0,0,2,_wrap_cvExtractMSER_texinfo}, -{"CvStarKeypoint_pt_set",_wrap_CvStarKeypoint_pt_set,0,0,2,0}, -{"CvStarKeypoint_pt_get",_wrap_CvStarKeypoint_pt_get,0,0,2,0}, -{"CvStarKeypoint_size_set",_wrap_CvStarKeypoint_size_set,0,0,2,0}, -{"CvStarKeypoint_size_get",_wrap_CvStarKeypoint_size_get,0,0,2,0}, -{"CvStarKeypoint_response_set",_wrap_CvStarKeypoint_response_set,0,0,2,0}, -{"CvStarKeypoint_response_get",_wrap_CvStarKeypoint_response_get,0,0,2,0}, -{"new_CvStarKeypoint",_wrap_new_CvStarKeypoint,0,0,2,_wrap_new_CvStarKeypoint_texinfo}, -{"delete_CvStarKeypoint",_wrap_delete_CvStarKeypoint,0,0,2,_wrap_delete_CvStarKeypoint_texinfo}, -{"cvStarKeypoint",_wrap_cvStarKeypoint,0,0,2,_wrap_cvStarKeypoint_texinfo}, -{"CvStarDetectorParams_maxSize_set",_wrap_CvStarDetectorParams_maxSize_set,0,0,2,0}, -{"CvStarDetectorParams_maxSize_get",_wrap_CvStarDetectorParams_maxSize_get,0,0,2,0}, -{"CvStarDetectorParams_responseThreshold_set",_wrap_CvStarDetectorParams_responseThreshold_set,0,0,2,0}, -{"CvStarDetectorParams_responseThreshold_get",_wrap_CvStarDetectorParams_responseThreshold_get,0,0,2,0}, -{"CvStarDetectorParams_lineThresholdProjected_set",_wrap_CvStarDetectorParams_lineThresholdProjected_set,0,0,2,0}, -{"CvStarDetectorParams_lineThresholdProjected_get",_wrap_CvStarDetectorParams_lineThresholdProjected_get,0,0,2,0}, -{"CvStarDetectorParams_lineThresholdBinarized_set",_wrap_CvStarDetectorParams_lineThresholdBinarized_set,0,0,2,0}, -{"CvStarDetectorParams_lineThresholdBinarized_get",_wrap_CvStarDetectorParams_lineThresholdBinarized_get,0,0,2,0}, -{"CvStarDetectorParams_suppressNonmaxSize_set",_wrap_CvStarDetectorParams_suppressNonmaxSize_set,0,0,2,0}, -{"CvStarDetectorParams_suppressNonmaxSize_get",_wrap_CvStarDetectorParams_suppressNonmaxSize_get,0,0,2,0}, -{"new_CvStarDetectorParams",_wrap_new_CvStarDetectorParams,0,0,2,_wrap_new_CvStarDetectorParams_texinfo}, -{"delete_CvStarDetectorParams",_wrap_delete_CvStarDetectorParams,0,0,2,_wrap_delete_CvStarDetectorParams_texinfo}, -{"cvStarDetectorParams",_wrap_cvStarDetectorParams,0,0,2,_wrap_cvStarDetectorParams_texinfo}, -{"cvGetStarKeypoints",_wrap_cvGetStarKeypoints,0,0,2,_wrap_cvGetStarKeypoints_texinfo}, -{"cvLoadHaarClassifierCascade",_wrap_cvLoadHaarClassifierCascade,0,0,2,_wrap_cvLoadHaarClassifierCascade_texinfo}, -{"cvReleaseHaarClassifierCascade",_wrap_cvReleaseHaarClassifierCascade,0,0,2,_wrap_cvReleaseHaarClassifierCascade_texinfo}, -{"cvSetImagesForHaarClassifierCascade",_wrap_cvSetImagesForHaarClassifierCascade,0,0,2,_wrap_cvSetImagesForHaarClassifierCascade_texinfo}, -{"cvRunHaarClassifierCascade",_wrap_cvRunHaarClassifierCascade,0,0,2,_wrap_cvRunHaarClassifierCascade_texinfo}, -{"cvUndistort2",_wrap_cvUndistort2,0,0,2,_wrap_cvUndistort2_texinfo}, -{"cvInitUndistortMap",_wrap_cvInitUndistortMap,0,0,2,_wrap_cvInitUndistortMap_texinfo}, -{"cvInitUndistortRectifyMap",_wrap_cvInitUndistortRectifyMap,0,0,2,_wrap_cvInitUndistortRectifyMap_texinfo}, -{"cvUndistortPoints",_wrap_cvUndistortPoints,0,0,2,_wrap_cvUndistortPoints_texinfo}, -{"cvRodrigues2",_wrap_cvRodrigues2,0,0,2,_wrap_cvRodrigues2_texinfo}, -{"cvFindHomography",_wrap_cvFindHomography,0,0,2,_wrap_cvFindHomography_texinfo}, -{"cvRQDecomp3x3",_wrap_cvRQDecomp3x3,0,0,2,_wrap_cvRQDecomp3x3_texinfo}, -{"cvDecomposeProjectionMatrix",_wrap_cvDecomposeProjectionMatrix,0,0,2,_wrap_cvDecomposeProjectionMatrix_texinfo}, -{"cvCalcMatMulDeriv",_wrap_cvCalcMatMulDeriv,0,0,2,_wrap_cvCalcMatMulDeriv_texinfo}, -{"cvComposeRT",_wrap_cvComposeRT,0,0,2,_wrap_cvComposeRT_texinfo}, -{"cvProjectPoints2",_wrap_cvProjectPoints2,0,0,2,_wrap_cvProjectPoints2_texinfo}, -{"cvFindExtrinsicCameraParams2",_wrap_cvFindExtrinsicCameraParams2,0,0,2,_wrap_cvFindExtrinsicCameraParams2_texinfo}, -{"cvInitIntrinsicParams2D",_wrap_cvInitIntrinsicParams2D,0,0,2,_wrap_cvInitIntrinsicParams2D_texinfo}, -{"cvFindChessboardCorners",_wrap_cvFindChessboardCorners,0,0,2,_wrap_cvFindChessboardCorners_texinfo}, -{"cvDrawChessboardCorners",_wrap_cvDrawChessboardCorners,0,0,2,_wrap_cvDrawChessboardCorners_texinfo}, -{"cvCalibrateCamera2",_wrap_cvCalibrateCamera2,0,0,2,_wrap_cvCalibrateCamera2_texinfo}, -{"cvCalibrationMatrixValues",_wrap_cvCalibrationMatrixValues,0,0,2,_wrap_cvCalibrationMatrixValues_texinfo}, -{"cvStereoCalibrate",_wrap_cvStereoCalibrate,0,0,2,_wrap_cvStereoCalibrate_texinfo}, -{"cvStereoRectify",_wrap_cvStereoRectify,0,0,2,_wrap_cvStereoRectify_texinfo}, -{"cvStereoRectifyUncalibrated",_wrap_cvStereoRectifyUncalibrated,0,0,2,_wrap_cvStereoRectifyUncalibrated_texinfo}, -{"cvCreatePOSITObject",_wrap_cvCreatePOSITObject,0,0,2,_wrap_cvCreatePOSITObject_texinfo}, -{"cvPOSIT",_wrap_cvPOSIT,0,0,2,_wrap_cvPOSIT_texinfo}, -{"cvReleasePOSITObject",_wrap_cvReleasePOSITObject,0,0,2,_wrap_cvReleasePOSITObject_texinfo}, -{"cvRANSACUpdateNumIters",_wrap_cvRANSACUpdateNumIters,0,0,2,_wrap_cvRANSACUpdateNumIters_texinfo}, -{"cvConvertPointsHomogeneous",_wrap_cvConvertPointsHomogeneous,0,0,2,_wrap_cvConvertPointsHomogeneous_texinfo}, -{"cvFindFundamentalMat",_wrap_cvFindFundamentalMat,0,0,2,_wrap_cvFindFundamentalMat_texinfo}, -{"cvComputeCorrespondEpilines",_wrap_cvComputeCorrespondEpilines,0,0,2,_wrap_cvComputeCorrespondEpilines_texinfo}, -{"cvTriangulatePoints",_wrap_cvTriangulatePoints,0,0,2,_wrap_cvTriangulatePoints_texinfo}, -{"cvCorrectMatches",_wrap_cvCorrectMatches,0,0,2,_wrap_cvCorrectMatches_texinfo}, -{"CvStereoBMState_preFilterType_set",_wrap_CvStereoBMState_preFilterType_set,0,0,2,0}, -{"CvStereoBMState_preFilterType_get",_wrap_CvStereoBMState_preFilterType_get,0,0,2,0}, -{"CvStereoBMState_preFilterSize_set",_wrap_CvStereoBMState_preFilterSize_set,0,0,2,0}, -{"CvStereoBMState_preFilterSize_get",_wrap_CvStereoBMState_preFilterSize_get,0,0,2,0}, -{"CvStereoBMState_preFilterCap_set",_wrap_CvStereoBMState_preFilterCap_set,0,0,2,0}, -{"CvStereoBMState_preFilterCap_get",_wrap_CvStereoBMState_preFilterCap_get,0,0,2,0}, -{"CvStereoBMState_SADWindowSize_set",_wrap_CvStereoBMState_SADWindowSize_set,0,0,2,0}, -{"CvStereoBMState_SADWindowSize_get",_wrap_CvStereoBMState_SADWindowSize_get,0,0,2,0}, -{"CvStereoBMState_minDisparity_set",_wrap_CvStereoBMState_minDisparity_set,0,0,2,0}, -{"CvStereoBMState_minDisparity_get",_wrap_CvStereoBMState_minDisparity_get,0,0,2,0}, -{"CvStereoBMState_numberOfDisparities_set",_wrap_CvStereoBMState_numberOfDisparities_set,0,0,2,0}, -{"CvStereoBMState_numberOfDisparities_get",_wrap_CvStereoBMState_numberOfDisparities_get,0,0,2,0}, -{"CvStereoBMState_textureThreshold_set",_wrap_CvStereoBMState_textureThreshold_set,0,0,2,0}, -{"CvStereoBMState_textureThreshold_get",_wrap_CvStereoBMState_textureThreshold_get,0,0,2,0}, -{"CvStereoBMState_uniquenessRatio_set",_wrap_CvStereoBMState_uniquenessRatio_set,0,0,2,0}, -{"CvStereoBMState_uniquenessRatio_get",_wrap_CvStereoBMState_uniquenessRatio_get,0,0,2,0}, -{"CvStereoBMState_speckleWindowSize_set",_wrap_CvStereoBMState_speckleWindowSize_set,0,0,2,0}, -{"CvStereoBMState_speckleWindowSize_get",_wrap_CvStereoBMState_speckleWindowSize_get,0,0,2,0}, -{"CvStereoBMState_speckleRange_set",_wrap_CvStereoBMState_speckleRange_set,0,0,2,0}, -{"CvStereoBMState_speckleRange_get",_wrap_CvStereoBMState_speckleRange_get,0,0,2,0}, -{"CvStereoBMState_trySmallerWindows_set",_wrap_CvStereoBMState_trySmallerWindows_set,0,0,2,0}, -{"CvStereoBMState_trySmallerWindows_get",_wrap_CvStereoBMState_trySmallerWindows_get,0,0,2,0}, -{"CvStereoBMState_preFilteredImg0_set",_wrap_CvStereoBMState_preFilteredImg0_set,0,0,2,0}, -{"CvStereoBMState_preFilteredImg0_get",_wrap_CvStereoBMState_preFilteredImg0_get,0,0,2,0}, -{"CvStereoBMState_preFilteredImg1_set",_wrap_CvStereoBMState_preFilteredImg1_set,0,0,2,0}, -{"CvStereoBMState_preFilteredImg1_get",_wrap_CvStereoBMState_preFilteredImg1_get,0,0,2,0}, -{"CvStereoBMState_slidingSumBuf_set",_wrap_CvStereoBMState_slidingSumBuf_set,0,0,2,0}, -{"CvStereoBMState_slidingSumBuf_get",_wrap_CvStereoBMState_slidingSumBuf_get,0,0,2,0}, -{"CvStereoBMState_dbmin_set",_wrap_CvStereoBMState_dbmin_set,0,0,2,0}, -{"CvStereoBMState_dbmin_get",_wrap_CvStereoBMState_dbmin_get,0,0,2,0}, -{"CvStereoBMState_dbmax_set",_wrap_CvStereoBMState_dbmax_set,0,0,2,0}, -{"CvStereoBMState_dbmax_get",_wrap_CvStereoBMState_dbmax_get,0,0,2,0}, -{"new_CvStereoBMState",_wrap_new_CvStereoBMState,0,0,2,_wrap_new_CvStereoBMState_texinfo}, -{"delete_CvStereoBMState",_wrap_delete_CvStereoBMState,0,0,2,_wrap_delete_CvStereoBMState_texinfo}, -{"cvCreateStereoBMState",_wrap_cvCreateStereoBMState,0,0,2,_wrap_cvCreateStereoBMState_texinfo}, -{"cvReleaseStereoBMState",_wrap_cvReleaseStereoBMState,0,0,2,_wrap_cvReleaseStereoBMState_texinfo}, -{"cvFindStereoCorrespondenceBM",_wrap_cvFindStereoCorrespondenceBM,0,0,2,_wrap_cvFindStereoCorrespondenceBM_texinfo}, -{"CvStereoGCState_Ithreshold_set",_wrap_CvStereoGCState_Ithreshold_set,0,0,2,0}, -{"CvStereoGCState_Ithreshold_get",_wrap_CvStereoGCState_Ithreshold_get,0,0,2,0}, -{"CvStereoGCState_interactionRadius_set",_wrap_CvStereoGCState_interactionRadius_set,0,0,2,0}, -{"CvStereoGCState_interactionRadius_get",_wrap_CvStereoGCState_interactionRadius_get,0,0,2,0}, -{"CvStereoGCState_K_set",_wrap_CvStereoGCState_K_set,0,0,2,0}, -{"CvStereoGCState_K_get",_wrap_CvStereoGCState_K_get,0,0,2,0}, -{"CvStereoGCState_lambda_set",_wrap_CvStereoGCState_lambda_set,0,0,2,0}, -{"CvStereoGCState_lambda_get",_wrap_CvStereoGCState_lambda_get,0,0,2,0}, -{"CvStereoGCState_lambda1_set",_wrap_CvStereoGCState_lambda1_set,0,0,2,0}, -{"CvStereoGCState_lambda1_get",_wrap_CvStereoGCState_lambda1_get,0,0,2,0}, -{"CvStereoGCState_lambda2_set",_wrap_CvStereoGCState_lambda2_set,0,0,2,0}, -{"CvStereoGCState_lambda2_get",_wrap_CvStereoGCState_lambda2_get,0,0,2,0}, -{"CvStereoGCState_occlusionCost_set",_wrap_CvStereoGCState_occlusionCost_set,0,0,2,0}, -{"CvStereoGCState_occlusionCost_get",_wrap_CvStereoGCState_occlusionCost_get,0,0,2,0}, -{"CvStereoGCState_minDisparity_set",_wrap_CvStereoGCState_minDisparity_set,0,0,2,0}, -{"CvStereoGCState_minDisparity_get",_wrap_CvStereoGCState_minDisparity_get,0,0,2,0}, -{"CvStereoGCState_numberOfDisparities_set",_wrap_CvStereoGCState_numberOfDisparities_set,0,0,2,0}, -{"CvStereoGCState_numberOfDisparities_get",_wrap_CvStereoGCState_numberOfDisparities_get,0,0,2,0}, -{"CvStereoGCState_maxIters_set",_wrap_CvStereoGCState_maxIters_set,0,0,2,0}, -{"CvStereoGCState_maxIters_get",_wrap_CvStereoGCState_maxIters_get,0,0,2,0}, -{"CvStereoGCState_left_set",_wrap_CvStereoGCState_left_set,0,0,2,0}, -{"CvStereoGCState_left_get",_wrap_CvStereoGCState_left_get,0,0,2,0}, -{"CvStereoGCState_right_set",_wrap_CvStereoGCState_right_set,0,0,2,0}, -{"CvStereoGCState_right_get",_wrap_CvStereoGCState_right_get,0,0,2,0}, -{"CvStereoGCState_dispLeft_set",_wrap_CvStereoGCState_dispLeft_set,0,0,2,0}, -{"CvStereoGCState_dispLeft_get",_wrap_CvStereoGCState_dispLeft_get,0,0,2,0}, -{"CvStereoGCState_dispRight_set",_wrap_CvStereoGCState_dispRight_set,0,0,2,0}, -{"CvStereoGCState_dispRight_get",_wrap_CvStereoGCState_dispRight_get,0,0,2,0}, -{"CvStereoGCState_ptrLeft_set",_wrap_CvStereoGCState_ptrLeft_set,0,0,2,0}, -{"CvStereoGCState_ptrLeft_get",_wrap_CvStereoGCState_ptrLeft_get,0,0,2,0}, -{"CvStereoGCState_ptrRight_set",_wrap_CvStereoGCState_ptrRight_set,0,0,2,0}, -{"CvStereoGCState_ptrRight_get",_wrap_CvStereoGCState_ptrRight_get,0,0,2,0}, -{"CvStereoGCState_vtxBuf_set",_wrap_CvStereoGCState_vtxBuf_set,0,0,2,0}, -{"CvStereoGCState_vtxBuf_get",_wrap_CvStereoGCState_vtxBuf_get,0,0,2,0}, -{"CvStereoGCState_edgeBuf_set",_wrap_CvStereoGCState_edgeBuf_set,0,0,2,0}, -{"CvStereoGCState_edgeBuf_get",_wrap_CvStereoGCState_edgeBuf_get,0,0,2,0}, -{"new_CvStereoGCState",_wrap_new_CvStereoGCState,0,0,2,_wrap_new_CvStereoGCState_texinfo}, -{"delete_CvStereoGCState",_wrap_delete_CvStereoGCState,0,0,2,_wrap_delete_CvStereoGCState_texinfo}, -{"cvCreateStereoGCState",_wrap_cvCreateStereoGCState,0,0,2,_wrap_cvCreateStereoGCState_texinfo}, -{"cvReleaseStereoGCState",_wrap_cvReleaseStereoGCState,0,0,2,_wrap_cvReleaseStereoGCState_texinfo}, -{"cvFindStereoCorrespondenceGC",_wrap_cvFindStereoCorrespondenceGC,0,0,2,_wrap_cvFindStereoCorrespondenceGC_texinfo}, -{"cvReprojectImageTo3D",_wrap_cvReprojectImageTo3D,0,0,2,_wrap_cvReprojectImageTo3D_texinfo}, -{"delete_CvLSH",_wrap_delete_CvLSH,0,0,2,_wrap_delete_CvLSH_texinfo}, -{"CvTuple_CvPoint_2_val_set",_wrap_CvTuple_CvPoint_2_val_set,0,0,2,0}, -{"CvTuple_CvPoint_2_val_get",_wrap_CvTuple_CvPoint_2_val_get,0,0,2,0}, -{"CvTuple_CvPoint_2___paren",_wrap_CvTuple_CvPoint_2___paren,0,0,2,_wrap_CvTuple_CvPoint_2___paren_texinfo}, -{"CvTuple_CvPoint_2___paren_asgn",_wrap_CvTuple_CvPoint_2___paren_asgn,0,0,2,_wrap_CvTuple_CvPoint_2___paren_asgn_texinfo}, -{"CvTuple_CvPoint_2___brace",_wrap_CvTuple_CvPoint_2___brace,0,0,2,_wrap_CvTuple_CvPoint_2___brace_texinfo}, -{"CvTuple_CvPoint_2___brace_asgn",_wrap_CvTuple_CvPoint_2___brace_asgn,0,0,2,_wrap_CvTuple_CvPoint_2___brace_asgn_texinfo}, -{"new_CvTuple_CvPoint_2",_wrap_new_CvTuple_CvPoint_2,0,0,2,_wrap_new_CvTuple_CvPoint_2_texinfo}, -{"delete_CvTuple_CvPoint_2",_wrap_delete_CvTuple_CvPoint_2,0,0,2,_wrap_delete_CvTuple_CvPoint_2_texinfo}, -{"CvTuple_float_2_val_set",_wrap_CvTuple_float_2_val_set,0,0,2,0}, -{"CvTuple_float_2_val_get",_wrap_CvTuple_float_2_val_get,0,0,2,0}, -{"CvTuple_float_2___paren",_wrap_CvTuple_float_2___paren,0,0,2,_wrap_CvTuple_float_2___paren_texinfo}, -{"CvTuple_float_2___paren_asgn",_wrap_CvTuple_float_2___paren_asgn,0,0,2,_wrap_CvTuple_float_2___paren_asgn_texinfo}, -{"CvTuple_float_2___brace",_wrap_CvTuple_float_2___brace,0,0,2,_wrap_CvTuple_float_2___brace_texinfo}, -{"CvTuple_float_2___brace_asgn",_wrap_CvTuple_float_2___brace_asgn,0,0,2,_wrap_CvTuple_float_2___brace_asgn_texinfo}, -{"new_CvTuple_float_2",_wrap_new_CvTuple_float_2,0,0,2,_wrap_new_CvTuple_float_2_texinfo}, -{"delete_CvTuple_float_2",_wrap_delete_CvTuple_float_2,0,0,2,_wrap_delete_CvTuple_float_2_texinfo}, -{"CvTuple_float_3_val_set",_wrap_CvTuple_float_3_val_set,0,0,2,0}, -{"CvTuple_float_3_val_get",_wrap_CvTuple_float_3_val_get,0,0,2,0}, -{"CvTuple_float_3___paren",_wrap_CvTuple_float_3___paren,0,0,2,_wrap_CvTuple_float_3___paren_texinfo}, -{"CvTuple_float_3___paren_asgn",_wrap_CvTuple_float_3___paren_asgn,0,0,2,_wrap_CvTuple_float_3___paren_asgn_texinfo}, -{"CvTuple_float_3___brace",_wrap_CvTuple_float_3___brace,0,0,2,_wrap_CvTuple_float_3___brace_texinfo}, -{"CvTuple_float_3___brace_asgn",_wrap_CvTuple_float_3___brace_asgn,0,0,2,_wrap_CvTuple_float_3___brace_asgn_texinfo}, -{"new_CvTuple_float_3",_wrap_new_CvTuple_float_3,0,0,2,_wrap_new_CvTuple_float_3_texinfo}, -{"delete_CvTuple_float_3",_wrap_delete_CvTuple_float_3,0,0,2,_wrap_delete_CvTuple_float_3_texinfo}, -{"CvSeq_CvPoint_cast",_wrap_CvSeq_CvPoint_cast,0,0,2,_wrap_CvSeq_CvPoint_cast_texinfo}, -{"CvSeq_CvPoint___paren",_wrap_CvSeq_CvPoint___paren,0,0,2,_wrap_CvSeq_CvPoint___paren_texinfo}, -{"CvSeq_CvPoint___paren_asgn",_wrap_CvSeq_CvPoint___paren_asgn,0,0,2,_wrap_CvSeq_CvPoint___paren_asgn_texinfo}, -{"CvSeq_CvPoint___brace",_wrap_CvSeq_CvPoint___brace,0,0,2,_wrap_CvSeq_CvPoint___brace_texinfo}, -{"CvSeq_CvPoint___brace_asgn",_wrap_CvSeq_CvPoint___brace_asgn,0,0,2,_wrap_CvSeq_CvPoint___brace_asgn_texinfo}, -{"CvSeq_CvPoint_append",_wrap_CvSeq_CvPoint_append,0,0,2,_wrap_CvSeq_CvPoint_append_texinfo}, -{"CvSeq_CvPoint_pop",_wrap_CvSeq_CvPoint_pop,0,0,2,_wrap_CvSeq_CvPoint_pop_texinfo}, -{"new_CvSeq_CvPoint",_wrap_new_CvSeq_CvPoint,0,0,2,_wrap_new_CvSeq_CvPoint_texinfo}, -{"delete_CvSeq_CvPoint",_wrap_delete_CvSeq_CvPoint,0,0,2,_wrap_delete_CvSeq_CvPoint_texinfo}, -{"CvSeq_CvPoint2D32f_cast",_wrap_CvSeq_CvPoint2D32f_cast,0,0,2,_wrap_CvSeq_CvPoint2D32f_cast_texinfo}, -{"CvSeq_CvPoint2D32f___paren",_wrap_CvSeq_CvPoint2D32f___paren,0,0,2,_wrap_CvSeq_CvPoint2D32f___paren_texinfo}, -{"CvSeq_CvPoint2D32f___paren_asgn",_wrap_CvSeq_CvPoint2D32f___paren_asgn,0,0,2,_wrap_CvSeq_CvPoint2D32f___paren_asgn_texinfo}, -{"CvSeq_CvPoint2D32f___brace",_wrap_CvSeq_CvPoint2D32f___brace,0,0,2,_wrap_CvSeq_CvPoint2D32f___brace_texinfo}, -{"CvSeq_CvPoint2D32f___brace_asgn",_wrap_CvSeq_CvPoint2D32f___brace_asgn,0,0,2,_wrap_CvSeq_CvPoint2D32f___brace_asgn_texinfo}, -{"CvSeq_CvPoint2D32f_append",_wrap_CvSeq_CvPoint2D32f_append,0,0,2,_wrap_CvSeq_CvPoint2D32f_append_texinfo}, -{"CvSeq_CvPoint2D32f_pop",_wrap_CvSeq_CvPoint2D32f_pop,0,0,2,_wrap_CvSeq_CvPoint2D32f_pop_texinfo}, -{"new_CvSeq_CvPoint2D32f",_wrap_new_CvSeq_CvPoint2D32f,0,0,2,_wrap_new_CvSeq_CvPoint2D32f_texinfo}, -{"delete_CvSeq_CvPoint2D32f",_wrap_delete_CvSeq_CvPoint2D32f,0,0,2,_wrap_delete_CvSeq_CvPoint2D32f_texinfo}, -{"CvSeq_CvRect_cast",_wrap_CvSeq_CvRect_cast,0,0,2,_wrap_CvSeq_CvRect_cast_texinfo}, -{"CvSeq_CvRect___paren",_wrap_CvSeq_CvRect___paren,0,0,2,_wrap_CvSeq_CvRect___paren_texinfo}, -{"CvSeq_CvRect___paren_asgn",_wrap_CvSeq_CvRect___paren_asgn,0,0,2,_wrap_CvSeq_CvRect___paren_asgn_texinfo}, -{"CvSeq_CvRect___brace",_wrap_CvSeq_CvRect___brace,0,0,2,_wrap_CvSeq_CvRect___brace_texinfo}, -{"CvSeq_CvRect___brace_asgn",_wrap_CvSeq_CvRect___brace_asgn,0,0,2,_wrap_CvSeq_CvRect___brace_asgn_texinfo}, -{"CvSeq_CvRect_append",_wrap_CvSeq_CvRect_append,0,0,2,_wrap_CvSeq_CvRect_append_texinfo}, -{"CvSeq_CvRect_pop",_wrap_CvSeq_CvRect_pop,0,0,2,_wrap_CvSeq_CvRect_pop_texinfo}, -{"new_CvSeq_CvRect",_wrap_new_CvSeq_CvRect,0,0,2,_wrap_new_CvSeq_CvRect_texinfo}, -{"delete_CvSeq_CvRect",_wrap_delete_CvSeq_CvRect,0,0,2,_wrap_delete_CvSeq_CvRect_texinfo}, -{"CvSeq_CvSeq_cast",_wrap_CvSeq_CvSeq_cast,0,0,2,_wrap_CvSeq_CvSeq_cast_texinfo}, -{"CvSeq_CvSeq___paren",_wrap_CvSeq_CvSeq___paren,0,0,2,_wrap_CvSeq_CvSeq___paren_texinfo}, -{"CvSeq_CvSeq___paren_asgn",_wrap_CvSeq_CvSeq___paren_asgn,0,0,2,_wrap_CvSeq_CvSeq___paren_asgn_texinfo}, -{"CvSeq_CvSeq___brace",_wrap_CvSeq_CvSeq___brace,0,0,2,_wrap_CvSeq_CvSeq___brace_texinfo}, -{"CvSeq_CvSeq___brace_asgn",_wrap_CvSeq_CvSeq___brace_asgn,0,0,2,_wrap_CvSeq_CvSeq___brace_asgn_texinfo}, -{"CvSeq_CvSeq_append",_wrap_CvSeq_CvSeq_append,0,0,2,_wrap_CvSeq_CvSeq_append_texinfo}, -{"CvSeq_CvSeq_pop",_wrap_CvSeq_CvSeq_pop,0,0,2,_wrap_CvSeq_CvSeq_pop_texinfo}, -{"new_CvSeq_CvSeq",_wrap_new_CvSeq_CvSeq,0,0,2,_wrap_new_CvSeq_CvSeq_texinfo}, -{"delete_CvSeq_CvSeq",_wrap_delete_CvSeq_CvSeq,0,0,2,_wrap_delete_CvSeq_CvSeq_texinfo}, -{"CvSeq_CvQuadEdge2D_cast",_wrap_CvSeq_CvQuadEdge2D_cast,0,0,2,_wrap_CvSeq_CvQuadEdge2D_cast_texinfo}, -{"CvSeq_CvQuadEdge2D___paren",_wrap_CvSeq_CvQuadEdge2D___paren,0,0,2,_wrap_CvSeq_CvQuadEdge2D___paren_texinfo}, -{"CvSeq_CvQuadEdge2D___paren_asgn",_wrap_CvSeq_CvQuadEdge2D___paren_asgn,0,0,2,_wrap_CvSeq_CvQuadEdge2D___paren_asgn_texinfo}, -{"CvSeq_CvQuadEdge2D___brace",_wrap_CvSeq_CvQuadEdge2D___brace,0,0,2,_wrap_CvSeq_CvQuadEdge2D___brace_texinfo}, -{"CvSeq_CvQuadEdge2D___brace_asgn",_wrap_CvSeq_CvQuadEdge2D___brace_asgn,0,0,2,_wrap_CvSeq_CvQuadEdge2D___brace_asgn_texinfo}, -{"CvSeq_CvQuadEdge2D_append",_wrap_CvSeq_CvQuadEdge2D_append,0,0,2,_wrap_CvSeq_CvQuadEdge2D_append_texinfo}, -{"CvSeq_CvQuadEdge2D_pop",_wrap_CvSeq_CvQuadEdge2D_pop,0,0,2,_wrap_CvSeq_CvQuadEdge2D_pop_texinfo}, -{"new_CvSeq_CvQuadEdge2D",_wrap_new_CvSeq_CvQuadEdge2D,0,0,2,_wrap_new_CvSeq_CvQuadEdge2D_texinfo}, -{"delete_CvSeq_CvQuadEdge2D",_wrap_delete_CvSeq_CvQuadEdge2D,0,0,2,_wrap_delete_CvSeq_CvQuadEdge2D_texinfo}, -{"CvSeq_CvConnectedComp_cast",_wrap_CvSeq_CvConnectedComp_cast,0,0,2,_wrap_CvSeq_CvConnectedComp_cast_texinfo}, -{"CvSeq_CvConnectedComp___paren",_wrap_CvSeq_CvConnectedComp___paren,0,0,2,_wrap_CvSeq_CvConnectedComp___paren_texinfo}, -{"CvSeq_CvConnectedComp___paren_asgn",_wrap_CvSeq_CvConnectedComp___paren_asgn,0,0,2,_wrap_CvSeq_CvConnectedComp___paren_asgn_texinfo}, -{"CvSeq_CvConnectedComp___brace",_wrap_CvSeq_CvConnectedComp___brace,0,0,2,_wrap_CvSeq_CvConnectedComp___brace_texinfo}, -{"CvSeq_CvConnectedComp___brace_asgn",_wrap_CvSeq_CvConnectedComp___brace_asgn,0,0,2,_wrap_CvSeq_CvConnectedComp___brace_asgn_texinfo}, -{"CvSeq_CvConnectedComp_append",_wrap_CvSeq_CvConnectedComp_append,0,0,2,_wrap_CvSeq_CvConnectedComp_append_texinfo}, -{"CvSeq_CvConnectedComp_pop",_wrap_CvSeq_CvConnectedComp_pop,0,0,2,_wrap_CvSeq_CvConnectedComp_pop_texinfo}, -{"new_CvSeq_CvConnectedComp",_wrap_new_CvSeq_CvConnectedComp,0,0,2,_wrap_new_CvSeq_CvConnectedComp_texinfo}, -{"delete_CvSeq_CvConnectedComp",_wrap_delete_CvSeq_CvConnectedComp,0,0,2,_wrap_delete_CvSeq_CvConnectedComp_texinfo}, -{"CvSeq_CvPoint_2_cast",_wrap_CvSeq_CvPoint_2_cast,0,0,2,_wrap_CvSeq_CvPoint_2_cast_texinfo}, -{"CvSeq_CvPoint_2___paren",_wrap_CvSeq_CvPoint_2___paren,0,0,2,_wrap_CvSeq_CvPoint_2___paren_texinfo}, -{"CvSeq_CvPoint_2___paren_asgn",_wrap_CvSeq_CvPoint_2___paren_asgn,0,0,2,_wrap_CvSeq_CvPoint_2___paren_asgn_texinfo}, -{"CvSeq_CvPoint_2___brace",_wrap_CvSeq_CvPoint_2___brace,0,0,2,_wrap_CvSeq_CvPoint_2___brace_texinfo}, -{"CvSeq_CvPoint_2___brace_asgn",_wrap_CvSeq_CvPoint_2___brace_asgn,0,0,2,_wrap_CvSeq_CvPoint_2___brace_asgn_texinfo}, -{"CvSeq_CvPoint_2_append",_wrap_CvSeq_CvPoint_2_append,0,0,2,_wrap_CvSeq_CvPoint_2_append_texinfo}, -{"CvSeq_CvPoint_2_pop",_wrap_CvSeq_CvPoint_2_pop,0,0,2,_wrap_CvSeq_CvPoint_2_pop_texinfo}, -{"new_CvSeq_CvPoint_2",_wrap_new_CvSeq_CvPoint_2,0,0,2,_wrap_new_CvSeq_CvPoint_2_texinfo}, -{"delete_CvSeq_CvPoint_2",_wrap_delete_CvSeq_CvPoint_2,0,0,2,_wrap_delete_CvSeq_CvPoint_2_texinfo}, -{"CvSeq_float_2_cast",_wrap_CvSeq_float_2_cast,0,0,2,_wrap_CvSeq_float_2_cast_texinfo}, -{"CvSeq_float_2___paren",_wrap_CvSeq_float_2___paren,0,0,2,_wrap_CvSeq_float_2___paren_texinfo}, -{"CvSeq_float_2___paren_asgn",_wrap_CvSeq_float_2___paren_asgn,0,0,2,_wrap_CvSeq_float_2___paren_asgn_texinfo}, -{"CvSeq_float_2___brace",_wrap_CvSeq_float_2___brace,0,0,2,_wrap_CvSeq_float_2___brace_texinfo}, -{"CvSeq_float_2___brace_asgn",_wrap_CvSeq_float_2___brace_asgn,0,0,2,_wrap_CvSeq_float_2___brace_asgn_texinfo}, -{"CvSeq_float_2_append",_wrap_CvSeq_float_2_append,0,0,2,_wrap_CvSeq_float_2_append_texinfo}, -{"CvSeq_float_2_pop",_wrap_CvSeq_float_2_pop,0,0,2,_wrap_CvSeq_float_2_pop_texinfo}, -{"new_CvSeq_float_2",_wrap_new_CvSeq_float_2,0,0,2,_wrap_new_CvSeq_float_2_texinfo}, -{"delete_CvSeq_float_2",_wrap_delete_CvSeq_float_2,0,0,2,_wrap_delete_CvSeq_float_2_texinfo}, -{"CvSeq_float_3_cast",_wrap_CvSeq_float_3_cast,0,0,2,_wrap_CvSeq_float_3_cast_texinfo}, -{"CvSeq_float_3___paren",_wrap_CvSeq_float_3___paren,0,0,2,_wrap_CvSeq_float_3___paren_texinfo}, -{"CvSeq_float_3___paren_asgn",_wrap_CvSeq_float_3___paren_asgn,0,0,2,_wrap_CvSeq_float_3___paren_asgn_texinfo}, -{"CvSeq_float_3___brace",_wrap_CvSeq_float_3___brace,0,0,2,_wrap_CvSeq_float_3___brace_texinfo}, -{"CvSeq_float_3___brace_asgn",_wrap_CvSeq_float_3___brace_asgn,0,0,2,_wrap_CvSeq_float_3___brace_asgn_texinfo}, -{"CvSeq_float_3_append",_wrap_CvSeq_float_3_append,0,0,2,_wrap_CvSeq_float_3_append_texinfo}, -{"CvSeq_float_3_pop",_wrap_CvSeq_float_3_pop,0,0,2,_wrap_CvSeq_float_3_pop_texinfo}, -{"new_CvSeq_float_3",_wrap_new_CvSeq_float_3,0,0,2,_wrap_new_CvSeq_float_3_texinfo}, -{"delete_CvSeq_float_3",_wrap_delete_CvSeq_float_3,0,0,2,_wrap_delete_CvSeq_float_3_texinfo}, -{0,0,0,0,0} -}; - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - -static void *_p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvTuple< CvPoint,2 > > **) x)); -} -static void *_p_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvTuple< float,2 > > **) x)); -} -static void *_p_p_CvTypedSeqT_CvConnectedComp_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvConnectedComp > **) x)); -} -static void *_p_p_CvTypedSeqT_CvRect_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvRect > **) x)); -} -static void *_p_p_CvTypedSeqT_CvPoint_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvPoint > **) x)); -} -static void *_p_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvTuple< float,3 > > **) x)); -} -static void *_p_p_CvTypedSeqT_CvSeq_p_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvSeq * > **) x)); -} -static void *_p_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvQuadEdge2D > **) x)); -} -static void *_p_p_CvTypedSeqT_CvPoint2D32f_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvPoint2D32f > **) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< CvPoint,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvConnectedComp > *) x)); -} -static void *_p_CvTypedSeqT_CvRect_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvRect > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,3 > > *) x)); -} -static void *_p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvSeq * > *) x)); -} -static void *_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvQuadEdge2D > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint2D32f > *) x)); -} -static swig_type_info _swigt__p_Cv32suf = {"_p_Cv32suf", "Cv32suf *", 0, 0, (void*)&_wrap_class_Cv32suf, 0}; -static swig_type_info _swigt__p_Cv64suf = {"_p_Cv64suf", "Cv64suf *", 0, 0, (void*)&_wrap_class_Cv64suf, 0}; -static swig_type_info _swigt__p_CvAttrList = {"_p_CvAttrList", "CvAttrList *", 0, 0, (void*)&_wrap_class_CvAttrList, 0}; -static swig_type_info _swigt__p_CvAvgComp = {"_p_CvAvgComp", "CvAvgComp *", 0, 0, (void*)&_wrap_class_CvAvgComp, 0}; -static swig_type_info _swigt__p_CvBox2D = {"_p_CvBox2D", "CvBox2D *", 0, 0, (void*)&_wrap_class_CvBox2D, 0}; -static swig_type_info _swigt__p_CvChain = {"_p_CvChain", "CvChain *", 0, 0, (void*)&_wrap_class_CvChain, 0}; -static swig_type_info _swigt__p_CvChainPtReader = {"_p_CvChainPtReader", "CvChainPtReader *", 0, 0, (void*)&_wrap_class_CvChainPtReader, 0}; -static swig_type_info _swigt__p_CvConDensation = {"_p_CvConDensation", "CvConDensation *", 0, 0, (void*)&_wrap_class_CvConDensation, 0}; -static swig_type_info _swigt__p_CvConnectedComp = {"_p_CvConnectedComp", "CvConnectedComp *", 0, 0, (void*)&_wrap_class_CvConnectedComp, 0}; -static swig_type_info _swigt__p_CvContour = {"_p_CvContour", "CvPoint2DSeq *|CvContour *", 0, 0, (void*)&_wrap_class_CvContour, 0}; -static swig_type_info _swigt__p_CvContourTree = {"_p_CvContourTree", "CvContourTree *", 0, 0, (void*)&_wrap_class_CvContourTree, 0}; -static swig_type_info _swigt__p_CvConvexityDefect = {"_p_CvConvexityDefect", "CvConvexityDefect *", 0, 0, (void*)&_wrap_class_CvConvexityDefect, 0}; -static swig_type_info _swigt__p_CvFeatureTree = {"_p_CvFeatureTree", "CvFeatureTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileNode = {"_p_CvFileNode", "CvFileNode *", 0, 0, (void*)&_wrap_class_CvFileNode, 0}; -static swig_type_info _swigt__p_CvFileNode_data = {"_p_CvFileNode_data", "CvFileNode_data *", 0, 0, (void*)&_wrap_class_CvFileNode_data, 0}; -static swig_type_info _swigt__p_CvFileStorage = {"_p_CvFileStorage", "CvFileStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFilter = {"_p_CvFilter", "enum CvFilter *|CvFilter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFont = {"_p_CvFont", "CvFont *", 0, 0, (void*)&_wrap_class_CvFont, 0}; -static swig_type_info _swigt__p_CvGenericHash = {"_p_CvGenericHash", "CvGenericHash *|CvFileNodeHash *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraph = {"_p_CvGraph", "CvGraph *", 0, 0, (void*)&_wrap_class_CvGraph, 0}; -static swig_type_info _swigt__p_CvGraphEdge = {"_p_CvGraphEdge", "CvGraphEdge *", 0, 0, (void*)&_wrap_class_CvGraphEdge, 0}; -static swig_type_info _swigt__p_CvGraphScanner = {"_p_CvGraphScanner", "CvGraphScanner *", 0, 0, (void*)&_wrap_class_CvGraphScanner, 0}; -static swig_type_info _swigt__p_CvGraphVtx = {"_p_CvGraphVtx", "CvGraphVtx *", 0, 0, (void*)&_wrap_class_CvGraphVtx, 0}; -static swig_type_info _swigt__p_CvGraphVtx2D = {"_p_CvGraphVtx2D", "CvGraphVtx2D *", 0, 0, (void*)&_wrap_class_CvGraphVtx2D, 0}; -static swig_type_info _swigt__p_CvHaarClassifier = {"_p_CvHaarClassifier", "CvHaarClassifier *", 0, 0, (void*)&_wrap_class_CvHaarClassifier, 0}; -static swig_type_info _swigt__p_CvHaarClassifierCascade = {"_p_CvHaarClassifierCascade", "CvHaarClassifierCascade *", 0, 0, (void*)&_wrap_class_CvHaarClassifierCascade, 0}; -static swig_type_info _swigt__p_CvHaarFeature = {"_p_CvHaarFeature", "CvHaarFeature *", 0, 0, (void*)&_wrap_class_CvHaarFeature, 0}; -static swig_type_info _swigt__p_CvHaarFeature_rect = {"_p_CvHaarFeature_rect", "CvHaarFeature_rect *", 0, 0, (void*)&_wrap_class_CvHaarFeature_rect, 0}; -static swig_type_info _swigt__p_CvHaarStageClassifier = {"_p_CvHaarStageClassifier", "CvHaarStageClassifier *", 0, 0, (void*)&_wrap_class_CvHaarStageClassifier, 0}; -static swig_type_info _swigt__p_CvHidHaarClassifierCascade = {"_p_CvHidHaarClassifierCascade", "CvHidHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHistogram = {"_p_CvHistogram", "CvHistogram *", 0, 0, (void*)&_wrap_class_CvHistogram, 0}; -static swig_type_info _swigt__p_CvHuMoments = {"_p_CvHuMoments", "CvHuMoments *", 0, 0, (void*)&_wrap_class_CvHuMoments, 0}; -static swig_type_info _swigt__p_CvImage = {"_p_CvImage", "CvImage *", 0, 0, (void*)&_wrap_class_CvImage, 0}; -static swig_type_info _swigt__p_CvKalman = {"_p_CvKalman", "CvKalman *", 0, 0, (void*)&_wrap_class_CvKalman, 0}; -static swig_type_info _swigt__p_CvLSH = {"_p_CvLSH", "CvLSH *", 0, 0, (void*)&_wrap_class_CvLSH, 0}; -static swig_type_info _swigt__p_CvLSHOperations = {"_p_CvLSHOperations", "CvLSHOperations *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLineIterator = {"_p_CvLineIterator", "CvLineIterator *", 0, 0, (void*)&_wrap_class_CvLineIterator, 0}; -static swig_type_info _swigt__p_CvMSERParams = {"_p_CvMSERParams", "CvMSERParams *", 0, 0, (void*)&_wrap_class_CvMSERParams, 0}; -static swig_type_info _swigt__p_CvMat = {"_p_CvMat", "CvMat *", 0, 0, (void*)&_wrap_class_CvMat, 0}; -static swig_type_info _swigt__p_CvMatND = {"_p_CvMatND", "CvMatND *", 0, 0, (void*)&_wrap_class_CvMatND, 0}; -static swig_type_info _swigt__p_CvMatND_data = {"_p_CvMatND_data", "CvMatND_data *", 0, 0, (void*)&_wrap_class_CvMatND_data, 0}; -static swig_type_info _swigt__p_CvMatND_dim = {"_p_CvMatND_dim", "CvMatND_dim *", 0, 0, (void*)&_wrap_class_CvMatND_dim, 0}; -static swig_type_info _swigt__p_CvMat_data = {"_p_CvMat_data", "CvMat_data *", 0, 0, (void*)&_wrap_class_CvMat_data, 0}; -static swig_type_info _swigt__p_CvMatrix = {"_p_CvMatrix", "CvMatrix *", 0, 0, (void*)&_wrap_class_CvMatrix, 0}; -static swig_type_info _swigt__p_CvMatrix3 = {"_p_CvMatrix3", "CvMatrix3 *", 0, 0, (void*)&_wrap_class_CvMatrix3, 0}; -static swig_type_info _swigt__p_CvMemBlock = {"_p_CvMemBlock", "CvMemBlock *", 0, 0, (void*)&_wrap_class_CvMemBlock, 0}; -static swig_type_info _swigt__p_CvMemStorage = {"_p_CvMemStorage", "CvMemStorage *", 0, 0, (void*)&_wrap_class_CvMemStorage, 0}; -static swig_type_info _swigt__p_CvMemStoragePos = {"_p_CvMemStoragePos", "CvMemStoragePos *", 0, 0, (void*)&_wrap_class_CvMemStoragePos, 0}; -static swig_type_info _swigt__p_CvModule = {"_p_CvModule", "CvModule *", 0, 0, (void*)&_wrap_class_CvModule, 0}; -static swig_type_info _swigt__p_CvModuleInfo = {"_p_CvModuleInfo", "CvModuleInfo *", 0, 0, (void*)&_wrap_class_CvModuleInfo, 0}; -static swig_type_info _swigt__p_CvMoments = {"_p_CvMoments", "CvMoments *", 0, 0, (void*)&_wrap_class_CvMoments, 0}; -static swig_type_info _swigt__p_CvNArrayIterator = {"_p_CvNArrayIterator", "CvNArrayIterator *", 0, 0, (void*)&_wrap_class_CvNArrayIterator, 0}; -static swig_type_info _swigt__p_CvNextEdgeType = {"_p_CvNextEdgeType", "enum CvNextEdgeType *|CvNextEdgeType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPOSITObject = {"_p_CvPOSITObject", "CvPOSITObject *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPluginFuncInfo = {"_p_CvPluginFuncInfo", "CvPluginFuncInfo *", 0, 0, (void*)&_wrap_class_CvPluginFuncInfo, 0}; -static swig_type_info _swigt__p_CvPoint = {"_p_CvPoint", "CvPoint *", 0, 0, (void*)&_wrap_class_CvPoint, 0}; -static swig_type_info _swigt__p_CvPoint2D32f = {"_p_CvPoint2D32f", "CvPoint2D32f *", 0, 0, (void*)&_wrap_class_CvPoint2D32f, 0}; -static swig_type_info _swigt__p_CvPoint2D64f = {"_p_CvPoint2D64f", "CvPoint2D64f *", 0, 0, (void*)&_wrap_class_CvPoint2D64f, 0}; -static swig_type_info _swigt__p_CvPoint3D32f = {"_p_CvPoint3D32f", "CvPoint3D32f *", 0, 0, (void*)&_wrap_class_CvPoint3D32f, 0}; -static swig_type_info _swigt__p_CvPoint3D64f = {"_p_CvPoint3D64f", "CvPoint3D64f *", 0, 0, (void*)&_wrap_class_CvPoint3D64f, 0}; -static swig_type_info _swigt__p_CvQuadEdge2D = {"_p_CvQuadEdge2D", "CvQuadEdge2D *", 0, 0, (void*)&_wrap_class_CvQuadEdge2D, 0}; -static swig_type_info _swigt__p_CvRNG_Wrapper = {"_p_CvRNG_Wrapper", "CvRNG_Wrapper *", 0, 0, (void*)&_wrap_class_CvRNG_Wrapper, 0}; -static swig_type_info _swigt__p_CvRandState = {"_p_CvRandState", "CvRandState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRect = {"_p_CvRect", "CvRect *", 0, 0, (void*)&_wrap_class_CvRect, 0}; -static swig_type_info _swigt__p_CvSURFParams = {"_p_CvSURFParams", "CvSURFParams *", 0, 0, (void*)&_wrap_class_CvSURFParams, 0}; -static swig_type_info _swigt__p_CvSURFPoint = {"_p_CvSURFPoint", "CvSURFPoint *", 0, 0, (void*)&_wrap_class_CvSURFPoint, 0}; -static swig_type_info _swigt__p_CvScalar = {"_p_CvScalar", "CvScalar *", 0, 0, (void*)&_wrap_class_CvScalar, 0}; -static swig_type_info _swigt__p_CvSeq = {"_p_CvSeq", "CvSeq *", 0, 0, (void*)&_wrap_class_CvSeq, 0}; -static swig_type_info _swigt__p_CvSeqBlock = {"_p_CvSeqBlock", "CvSeqBlock *", 0, 0, (void*)&_wrap_class_CvSeqBlock, 0}; -static swig_type_info _swigt__p_CvSeqReader = {"_p_CvSeqReader", "CvSeqReader *", 0, 0, (void*)&_wrap_class_CvSeqReader, 0}; -static swig_type_info _swigt__p_CvSeqWriter = {"_p_CvSeqWriter", "CvSeqWriter *", 0, 0, (void*)&_wrap_class_CvSeqWriter, 0}; -static swig_type_info _swigt__p_CvSet = {"_p_CvSet", "CvSet *", 0, 0, (void*)&_wrap_class_CvSet, 0}; -static swig_type_info _swigt__p_CvSetElem = {"_p_CvSetElem", "CvSetElem *", 0, 0, (void*)&_wrap_class_CvSetElem, 0}; -static swig_type_info _swigt__p_CvSize = {"_p_CvSize", "CvSize *", 0, 0, (void*)&_wrap_class_CvSize, 0}; -static swig_type_info _swigt__p_CvSize2D32f = {"_p_CvSize2D32f", "CvSize2D32f *", 0, 0, (void*)&_wrap_class_CvSize2D32f, 0}; -static swig_type_info _swigt__p_CvSlice = {"_p_CvSlice", "CvSlice *", 0, 0, (void*)&_wrap_class_CvSlice, 0}; -static swig_type_info _swigt__p_CvSparseMat = {"_p_CvSparseMat", "CvSparseMat *", 0, 0, (void*)&_wrap_class_CvSparseMat, 0}; -static swig_type_info _swigt__p_CvSparseMatIterator = {"_p_CvSparseMatIterator", "CvSparseMatIterator *", 0, 0, (void*)&_wrap_class_CvSparseMatIterator, 0}; -static swig_type_info _swigt__p_CvSparseNode = {"_p_CvSparseNode", "CvSparseNode *", 0, 0, (void*)&_wrap_class_CvSparseNode, 0}; -static swig_type_info _swigt__p_CvStarDetectorParams = {"_p_CvStarDetectorParams", "CvStarDetectorParams *", 0, 0, (void*)&_wrap_class_CvStarDetectorParams, 0}; -static swig_type_info _swigt__p_CvStarKeypoint = {"_p_CvStarKeypoint", "CvStarKeypoint *", 0, 0, (void*)&_wrap_class_CvStarKeypoint, 0}; -static swig_type_info _swigt__p_CvStereoBMState = {"_p_CvStereoBMState", "CvStereoBMState *", 0, 0, (void*)&_wrap_class_CvStereoBMState, 0}; -static swig_type_info _swigt__p_CvStereoGCState = {"_p_CvStereoGCState", "CvStereoGCState *", 0, 0, (void*)&_wrap_class_CvStereoGCState, 0}; -static swig_type_info _swigt__p_CvString = {"_p_CvString", "CvString *", 0, 0, (void*)&_wrap_class_CvString, 0}; -static swig_type_info _swigt__p_CvStringHashNode = {"_p_CvStringHashNode", "CvStringHashNode *", 0, 0, (void*)&_wrap_class_CvStringHashNode, 0}; -static swig_type_info _swigt__p_CvSubdiv2D = {"_p_CvSubdiv2D", "CvSubdiv2D *", 0, 0, (void*)&_wrap_class_CvSubdiv2D, 0}; -static swig_type_info _swigt__p_CvSubdiv2DEdge_Wrapper = {"_p_CvSubdiv2DEdge_Wrapper", "CvSubdiv2DEdge_Wrapper *", 0, 0, (void*)&_wrap_class_CvSubdiv2DEdge_Wrapper, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPoint = {"_p_CvSubdiv2DPoint", "CvSubdiv2DPoint *", 0, 0, (void*)&_wrap_class_CvSubdiv2DPoint, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPointLocation = {"_p_CvSubdiv2DPointLocation", "enum CvSubdiv2DPointLocation *|CvSubdiv2DPointLocation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTermCriteria = {"_p_CvTermCriteria", "CvTermCriteria *", 0, 0, (void*)&_wrap_class_CvTermCriteria, 0}; -static swig_type_info _swigt__p_CvTreeNodeIterator = {"_p_CvTreeNodeIterator", "CvTreeNodeIterator *", 0, 0, (void*)&_wrap_class_CvTreeNodeIterator, 0}; -static swig_type_info _swigt__p_CvTupleT_CvPoint_2_t = {"_p_CvTupleT_CvPoint_2_t", "CvTuple< CvPoint,2 > *", 0, 0, (void*)&_wrap_class_CvTuple_CvPoint_2, 0}; -static swig_type_info _swigt__p_CvTupleT_float_2_t = {"_p_CvTupleT_float_2_t", "CvTuple< float,2 > *", 0, 0, (void*)&_wrap_class_CvTuple_float_2, 0}; -static swig_type_info _swigt__p_CvTupleT_float_3_t = {"_p_CvTupleT_float_3_t", "CvTuple< float,3 > *", 0, 0, (void*)&_wrap_class_CvTuple_float_3, 0}; -static swig_type_info _swigt__p_CvType = {"_p_CvType", "CvType *", 0, 0, (void*)&_wrap_class_CvType, 0}; -static swig_type_info _swigt__p_CvTypeInfo = {"_p_CvTypeInfo", "CvTypeInfo *", 0, 0, (void*)&_wrap_class_CvTypeInfo, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvConnectedComp_t = {"_p_CvTypedSeqT_CvConnectedComp_t", "CvTypedSeq< CvConnectedComp > *", 0, 0, (void*)&_wrap_class_CvSeq_CvConnectedComp, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint2D32f_t = {"_p_CvTypedSeqT_CvPoint2D32f_t", "CvTypedSeq< CvPoint2D32f > *", 0, 0, (void*)&_wrap_class_CvSeq_CvPoint2D32f, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint_t = {"_p_CvTypedSeqT_CvPoint_t", "CvTypedSeq< CvPoint > *", 0, 0, (void*)&_wrap_class_CvSeq_CvPoint, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvQuadEdge2D_t = {"_p_CvTypedSeqT_CvQuadEdge2D_t", "CvTypedSeq< CvQuadEdge2D > *", 0, 0, (void*)&_wrap_class_CvSeq_CvQuadEdge2D, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvRect_t = {"_p_CvTypedSeqT_CvRect_t", "CvTypedSeq< CvRect > *", 0, 0, (void*)&_wrap_class_CvSeq_CvRect, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvSeq_p_t = {"_p_CvTypedSeqT_CvSeq_p_t", "CvTypedSeq< CvSeq * > *", 0, 0, (void*)&_wrap_class_CvSeq_CvSeq, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t = {"_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t", "CvTypedSeq< CvTuple< CvPoint,2 > > *", 0, 0, (void*)&_wrap_class_CvSeq_CvPoint_2, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t = {"_p_CvTypedSeqT_CvTupleT_float_2_t_t", "CvTypedSeq< CvTuple< float,2 > > *", 0, 0, (void*)&_wrap_class_CvSeq_float_2, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t = {"_p_CvTypedSeqT_CvTupleT_float_3_t_t", "CvTypedSeq< CvTuple< float,3 > > *", 0, 0, (void*)&_wrap_class_CvSeq_float_3, 0}; -static swig_type_info _swigt__p__CvContourScanner = {"_p__CvContourScanner", "_CvContourScanner *|CvContourScanner", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernel = {"_p__IplConvKernel", "_IplConvKernel *|IplConvKernel *", 0, 0, (void*)&_wrap_class_IplConvKernel, 0}; -static swig_type_info _swigt__p__IplConvKernelFP = {"_p__IplConvKernelFP", "_IplConvKernelFP *|IplConvKernelFP *", 0, 0, (void*)&_wrap_class_IplConvKernelFP, 0}; -static swig_type_info _swigt__p__IplImage = {"_p__IplImage", "_IplImage *|IplImage *", 0, 0, (void*)&_wrap_class_IplImage, 0}; -static swig_type_info _swigt__p__IplROI = {"_p__IplROI", "_IplROI *|IplROI *", 0, 0, (void*)&_wrap_class_IplROI, 0}; -static swig_type_info _swigt__p__IplTileInfo = {"_p__IplTileInfo", "_IplTileInfo *|IplTileInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_a_2__float = {"_p_a_2__float", "float (*)[2]", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_a_2__signed_char = {"_p_a_2__signed_char", "signed char (*)[2]|schar (*)[2]", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_a_3__float = {"_p_a_3__float", "float (*)[3]", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_allocator_type = {"_p_allocator_type", "allocator_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_difference_type = {"_p_difference_type", "difference_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_double = {"_p_double", "double *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_int_int_int_int__p__IplROI = {"_p_f_int_int_int_int_int__p__IplROI", "Cv_iplCreateROI|_IplROI *(*)(int,int,int,int,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage = {"_p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage", "_IplImage *(*)(int,int,int,char *,char *,int,int,int,int,int,IplROI *,IplImage *,void *,IplTileInfo *)|Cv_iplCreateImageHeader", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int = {"_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int", "int (*)(int,char const *,char const *,char const *,int,void *)|CvErrorCallback", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_CvFileStorage_p_CvFileNode__p_void = {"_p_f_p_CvFileStorage_p_CvFileNode__p_void", "void *(*)(CvFileStorage *,CvFileNode *)|CvReadFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void = {"_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void", "void (*)(CvFileStorage *,char const *,void const *,CvAttrList)|CvWriteFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p__IplImage_int__void = {"_p_f_p__IplImage_int__void", "Cv_iplDeallocate|void (*)(_IplImage *,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p__IplImage_int_int__void = {"_p_f_p__IplImage_int_int__void", "Cv_iplAllocateImageData|void (*)(_IplImage *,int,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_p_void__void = {"_p_f_p_p_void__void", "void (*)(void **)|CvReleaseFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__IplImage__p__IplImage = {"_p_f_p_q_const__IplImage__p__IplImage", "_IplImage *(*)(IplImage const *)|Cv_iplCloneImage", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_int__p_CvMat = {"_p_f_p_q_const__char_int__p_CvMat", "CvMat *(*)(char const *,int)|CvLoadImageMFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_int__p__IplImage = {"_p_f_p_q_const__char_int__p__IplImage", "CvLoadImageFunc|_IplImage *(*)(char const *,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_p_q_const__void__void = {"_p_f_p_q_const__char_p_q_const__void__void", "CvShowImageFunc|void (*)(char const *,void const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int = {"_p_f_p_q_const__char_p_q_const__void_p_q_const__int__int", "CvSaveImageFunc|int (*)(char const *,void const *,int const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__float_p_q_const__float_p_void__float = {"_p_f_p_q_const__float_p_q_const__float_p_void__float", "CvDistanceFunction|float (*)(float const *,float const *,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__void__int = {"_p_f_p_q_const__void__int", "CvIsInstanceFunc|int (*)(void const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__void__p_void = {"_p_f_p_q_const__void__p_void", "CvCloneFunc|void *(*)(void const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__void_p_q_const__void_p_void__int = {"_p_f_p_q_const__void_p_q_const__void_p_void__int", "CvCmpFunc|int (*)(void const *,void const *,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_void_p_void__int = {"_p_f_p_void_p_void__int", "int (*)(void *,void *)|CvFreeFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_size_t_p_void__p_void = {"_p_f_size_t_p_void__p_void", "CvAllocFunc|void *(*)(size_t,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_float = {"_p_float", "float *|CvVect32f|CvMatr32f", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int = {"_p_int", "CvHistType *|int *|CVStatus *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|int64 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvConDensation = {"_p_p_CvConDensation", "CvConDensation **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvFileStorage = {"_p_p_CvFileStorage", "CvFileStorage **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvGraphEdge = {"_p_p_CvGraphEdge", "CvGraphEdge **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvGraphScanner = {"_p_p_CvGraphScanner", "CvGraphScanner **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvGraphVtx = {"_p_p_CvGraphVtx", "CvGraphVtx **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvHaarClassifierCascade = {"_p_p_CvHaarClassifierCascade", "CvHaarClassifierCascade **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvHistogram = {"_p_p_CvHistogram", "CvHistogram **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvKalman = {"_p_p_CvKalman", "CvKalman **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvLSH = {"_p_p_CvLSH", "CvLSH **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMat = {"_p_p_CvMat", "CvMat **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMatND = {"_p_p_CvMatND", "CvMatND **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMemStorage = {"_p_p_CvMemStorage", "CvMemStorage **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvPOSITObject = {"_p_p_CvPOSITObject", "CvPOSITObject **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvPoint = {"_p_p_CvPoint", "CvPoint **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSeq = {"_p_p_CvSeq", "CvSeq **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t = {"_p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t = {"_p_p_CvTypedSeqT_CvTupleT_float_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvRect_t = {"_p_p_CvTypedSeqT_CvRect_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvPoint_t = {"_p_p_CvTypedSeqT_CvPoint_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t = {"_p_p_CvTypedSeqT_CvQuadEdge2D_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvSeq_p_t = {"_p_p_CvTypedSeqT_CvSeq_p_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvPoint2D32f_t = {"_p_p_CvTypedSeqT_CvPoint2D32f_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t = {"_p_p_CvTypedSeqT_CvTupleT_float_3_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvConnectedComp_t = {"_p_p_CvTypedSeqT_CvConnectedComp_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvSeqBlock = {"_p_p_CvSeqBlock", "CvSeqBlock **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSetElem = {"_p_p_CvSetElem", "CvSetElem **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSparseMat = {"_p_p_CvSparseMat", "CvSparseMat **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvStereoBMState = {"_p_p_CvStereoBMState", "CvStereoBMState **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvStereoGCState = {"_p_p_CvStereoGCState", "CvStereoGCState **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSubdiv2DPoint = {"_p_p_CvSubdiv2DPoint", "CvSubdiv2DPoint **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p__CvContourScanner = {"_p_p__CvContourScanner", "CvContourScanner *|_CvContourScanner **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p__IplConvKernel = {"_p_p__IplConvKernel", "_IplConvKernel **|IplConvKernel **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p__IplImage = {"_p_p__IplImage", "_IplImage **|IplImage **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_float = {"_p_p_float", "float **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_p_CvMat = {"_p_p_p_CvMat", "CvMat ***", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_unsigned_char = {"_p_p_unsigned_char", "unsigned char **|uchar **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **|CvArr **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_short = {"_p_short", "short *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "schar *|signed char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *|CvSubdiv2DEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_type = {"_p_size_type", "size_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t = {"_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t", "std::vector< CvPoint,std::allocator< CvPoint > > *|std::vector< CvPoint > *", 0, 0, (void*)&_wrap_class_CvPointVector, 0}; -static swig_type_info _swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type = {"_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type", "std::vector< CvPoint >::allocator_type *|std::allocator< CvPoint > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type = {"_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type", "std::vector< CvPoint >::value_type *|CvPoint *", 0, 0, (void*)&_wrap_class_CvPoint, 0}; -static swig_type_info _swigt__p_std__vectorT_float_std__allocatorT_float_t_t = {"_p_std__vectorT_float_std__allocatorT_float_t_t", "std::vector< float > *|std::vector< float,std::allocator< float > > *", 0, 0, (void*)&_wrap_class_FloatVector, 0}; -static swig_type_info _swigt__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type = {"_p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type", "std::vector< float >::allocator_type *|std::allocator< float > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_swig__OctSwigIterator = {"_p_swig__OctSwigIterator", "swig::OctSwigIterator *", 0, 0, (void*)&_wrap_class_OctSwigIterator, 0}; -static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uint64 *|CvRNG *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "uchar *|unsigned char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|ushort *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_value_type = {"_p_value_type", "value_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_void = {"_p_void", "CvArr *|void *", 0, 0, (void*)0, 0}; - -static swig_type_info *swig_type_initial[] = { - &_swigt__p_Cv32suf, - &_swigt__p_Cv64suf, - &_swigt__p_CvAttrList, - &_swigt__p_CvAvgComp, - &_swigt__p_CvBox2D, - &_swigt__p_CvChain, - &_swigt__p_CvChainPtReader, - &_swigt__p_CvConDensation, - &_swigt__p_CvConnectedComp, - &_swigt__p_CvContour, - &_swigt__p_CvContourTree, - &_swigt__p_CvConvexityDefect, - &_swigt__p_CvFeatureTree, - &_swigt__p_CvFileNode, - &_swigt__p_CvFileNode_data, - &_swigt__p_CvFileStorage, - &_swigt__p_CvFilter, - &_swigt__p_CvFont, - &_swigt__p_CvGenericHash, - &_swigt__p_CvGraph, - &_swigt__p_CvGraphEdge, - &_swigt__p_CvGraphScanner, - &_swigt__p_CvGraphVtx, - &_swigt__p_CvGraphVtx2D, - &_swigt__p_CvHaarClassifier, - &_swigt__p_CvHaarClassifierCascade, - &_swigt__p_CvHaarFeature, - &_swigt__p_CvHaarFeature_rect, - &_swigt__p_CvHaarStageClassifier, - &_swigt__p_CvHidHaarClassifierCascade, - &_swigt__p_CvHistogram, - &_swigt__p_CvHuMoments, - &_swigt__p_CvImage, - &_swigt__p_CvKalman, - &_swigt__p_CvLSH, - &_swigt__p_CvLSHOperations, - &_swigt__p_CvLineIterator, - &_swigt__p_CvMSERParams, - &_swigt__p_CvMat, - &_swigt__p_CvMatND, - &_swigt__p_CvMatND_data, - &_swigt__p_CvMatND_dim, - &_swigt__p_CvMat_data, - &_swigt__p_CvMatrix, - &_swigt__p_CvMatrix3, - &_swigt__p_CvMemBlock, - &_swigt__p_CvMemStorage, - &_swigt__p_CvMemStoragePos, - &_swigt__p_CvModule, - &_swigt__p_CvModuleInfo, - &_swigt__p_CvMoments, - &_swigt__p_CvNArrayIterator, - &_swigt__p_CvNextEdgeType, - &_swigt__p_CvPOSITObject, - &_swigt__p_CvPluginFuncInfo, - &_swigt__p_CvPoint, - &_swigt__p_CvPoint2D32f, - &_swigt__p_CvPoint2D64f, - &_swigt__p_CvPoint3D32f, - &_swigt__p_CvPoint3D64f, - &_swigt__p_CvQuadEdge2D, - &_swigt__p_CvRNG_Wrapper, - &_swigt__p_CvRandState, - &_swigt__p_CvRect, - &_swigt__p_CvSURFParams, - &_swigt__p_CvSURFPoint, - &_swigt__p_CvScalar, - &_swigt__p_CvSeq, - &_swigt__p_CvSeqBlock, - &_swigt__p_CvSeqReader, - &_swigt__p_CvSeqWriter, - &_swigt__p_CvSet, - &_swigt__p_CvSetElem, - &_swigt__p_CvSize, - &_swigt__p_CvSize2D32f, - &_swigt__p_CvSlice, - &_swigt__p_CvSparseMat, - &_swigt__p_CvSparseMatIterator, - &_swigt__p_CvSparseNode, - &_swigt__p_CvStarDetectorParams, - &_swigt__p_CvStarKeypoint, - &_swigt__p_CvStereoBMState, - &_swigt__p_CvStereoGCState, - &_swigt__p_CvString, - &_swigt__p_CvStringHashNode, - &_swigt__p_CvSubdiv2D, - &_swigt__p_CvSubdiv2DEdge_Wrapper, - &_swigt__p_CvSubdiv2DPoint, - &_swigt__p_CvSubdiv2DPointLocation, - &_swigt__p_CvTermCriteria, - &_swigt__p_CvTreeNodeIterator, - &_swigt__p_CvTupleT_CvPoint_2_t, - &_swigt__p_CvTupleT_float_2_t, - &_swigt__p_CvTupleT_float_3_t, - &_swigt__p_CvType, - &_swigt__p_CvTypeInfo, - &_swigt__p_CvTypedSeqT_CvConnectedComp_t, - &_swigt__p_CvTypedSeqT_CvPoint2D32f_t, - &_swigt__p_CvTypedSeqT_CvPoint_t, - &_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, - &_swigt__p_CvTypedSeqT_CvRect_t, - &_swigt__p_CvTypedSeqT_CvSeq_p_t, - &_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, - &_swigt__p__CvContourScanner, - &_swigt__p__IplConvKernel, - &_swigt__p__IplConvKernelFP, - &_swigt__p__IplImage, - &_swigt__p__IplROI, - &_swigt__p__IplTileInfo, - &_swigt__p_a_2__float, - &_swigt__p_a_2__signed_char, - &_swigt__p_a_3__float, - &_swigt__p_allocator_type, - &_swigt__p_char, - &_swigt__p_difference_type, - &_swigt__p_double, - &_swigt__p_f_int_int_int_int_int__p__IplROI, - &_swigt__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage, - &_swigt__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int, - &_swigt__p_f_p_CvFileStorage_p_CvFileNode__p_void, - &_swigt__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void, - &_swigt__p_f_p__IplImage_int__void, - &_swigt__p_f_p__IplImage_int_int__void, - &_swigt__p_f_p_p_void__void, - &_swigt__p_f_p_q_const__IplImage__p__IplImage, - &_swigt__p_f_p_q_const__char_int__p_CvMat, - &_swigt__p_f_p_q_const__char_int__p__IplImage, - &_swigt__p_f_p_q_const__char_p_q_const__void__void, - &_swigt__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int, - &_swigt__p_f_p_q_const__float_p_q_const__float_p_void__float, - &_swigt__p_f_p_q_const__void__int, - &_swigt__p_f_p_q_const__void__p_void, - &_swigt__p_f_p_q_const__void_p_q_const__void_p_void__int, - &_swigt__p_f_p_void_p_void__int, - &_swigt__p_f_size_t_p_void__p_void, - &_swigt__p_float, - &_swigt__p_int, - &_swigt__p_int64_t, - &_swigt__p_p_CvConDensation, - &_swigt__p_p_CvFileStorage, - &_swigt__p_p_CvGraphEdge, - &_swigt__p_p_CvGraphScanner, - &_swigt__p_p_CvGraphVtx, - &_swigt__p_p_CvHaarClassifierCascade, - &_swigt__p_p_CvHistogram, - &_swigt__p_p_CvKalman, - &_swigt__p_p_CvLSH, - &_swigt__p_p_CvMat, - &_swigt__p_p_CvMatND, - &_swigt__p_p_CvMemStorage, - &_swigt__p_p_CvPOSITObject, - &_swigt__p_p_CvPoint, - &_swigt__p_p_CvSeq, - &_swigt__p_p_CvSeqBlock, - &_swigt__p_p_CvSetElem, - &_swigt__p_p_CvSparseMat, - &_swigt__p_p_CvStereoBMState, - &_swigt__p_p_CvStereoGCState, - &_swigt__p_p_CvSubdiv2DPoint, - &_swigt__p_p_CvTypedSeqT_CvConnectedComp_t, - &_swigt__p_p_CvTypedSeqT_CvPoint2D32f_t, - &_swigt__p_p_CvTypedSeqT_CvPoint_t, - &_swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t, - &_swigt__p_p_CvTypedSeqT_CvRect_t, - &_swigt__p_p_CvTypedSeqT_CvSeq_p_t, - &_swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - &_swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, - &_swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, - &_swigt__p_p__CvContourScanner, - &_swigt__p_p__IplConvKernel, - &_swigt__p_p__IplImage, - &_swigt__p_p_char, - &_swigt__p_p_float, - &_swigt__p_p_p_CvMat, - &_swigt__p_p_unsigned_char, - &_swigt__p_p_void, - &_swigt__p_short, - &_swigt__p_signed_char, - &_swigt__p_size_t, - &_swigt__p_size_type, - &_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, - &_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, - &_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, - &_swigt__p_std__vectorT_float_std__allocatorT_float_t_t, - &_swigt__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, - &_swigt__p_swig__OctSwigIterator, - &_swigt__p_uint64_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_int, - &_swigt__p_unsigned_short, - &_swigt__p_value_type, - &_swigt__p_void, -}; - -static swig_cast_info _swigc__p_Cv32suf[] = { {&_swigt__p_Cv32suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv64suf[] = { {&_swigt__p_Cv64suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAttrList[] = { {&_swigt__p_CvAttrList, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAvgComp[] = { {&_swigt__p_CvAvgComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBox2D[] = { {&_swigt__p_CvBox2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChain[] = { {&_swigt__p_CvChain, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChainPtReader[] = { {&_swigt__p_CvChainPtReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConDensation[] = { {&_swigt__p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConnectedComp[] = { {&_swigt__p_CvConnectedComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContour[] = { {&_swigt__p_CvContour, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContourTree[] = { {&_swigt__p_CvContourTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConvexityDefect[] = { {&_swigt__p_CvConvexityDefect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFeatureTree[] = { {&_swigt__p_CvFeatureTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode[] = { {&_swigt__p_CvFileNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode_data[] = { {&_swigt__p_CvFileNode_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileStorage[] = { {&_swigt__p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFilter[] = { {&_swigt__p_CvFilter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFont[] = { {&_swigt__p_CvFont, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGenericHash[] = { {&_swigt__p_CvGenericHash, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraph[] = { {&_swigt__p_CvGraph, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphEdge[] = { {&_swigt__p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphScanner[] = { {&_swigt__p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx[] = { {&_swigt__p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx2D[] = { {&_swigt__p_CvGraphVtx2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifier[] = { {&_swigt__p_CvHaarClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifierCascade[] = { {&_swigt__p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature[] = { {&_swigt__p_CvHaarFeature, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature_rect[] = { {&_swigt__p_CvHaarFeature_rect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarStageClassifier[] = { {&_swigt__p_CvHaarStageClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHidHaarClassifierCascade[] = { {&_swigt__p_CvHidHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHistogram[] = { {&_swigt__p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHuMoments[] = { {&_swigt__p_CvHuMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvImage[] = { {&_swigt__p_CvImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKalman[] = { {&_swigt__p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLSH[] = { {&_swigt__p_CvLSH, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLSHOperations[] = { {&_swigt__p_CvLSHOperations, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLineIterator[] = { {&_swigt__p_CvLineIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMSERParams[] = { {&_swigt__p_CvMSERParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat[] = { {&_swigt__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND[] = { {&_swigt__p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND_data[] = { {&_swigt__p_CvMatND_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND_dim[] = { {&_swigt__p_CvMatND_dim, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat_data[] = { {&_swigt__p_CvMat_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix[] = { {&_swigt__p_CvMatrix, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix3[] = { {&_swigt__p_CvMatrix3, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemBlock[] = { {&_swigt__p_CvMemBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStorage[] = { {&_swigt__p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStoragePos[] = { {&_swigt__p_CvMemStoragePos, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModule[] = { {&_swigt__p_CvModule, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModuleInfo[] = { {&_swigt__p_CvModuleInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMoments[] = { {&_swigt__p_CvMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNArrayIterator[] = { {&_swigt__p_CvNArrayIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNextEdgeType[] = { {&_swigt__p_CvNextEdgeType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPOSITObject[] = { {&_swigt__p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPluginFuncInfo[] = { {&_swigt__p_CvPluginFuncInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0, 0, 0}, {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D32f[] = { {&_swigt__p_CvPoint2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D64f[] = { {&_swigt__p_CvPoint2D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D32f[] = { {&_swigt__p_CvPoint3D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D64f[] = { {&_swigt__p_CvPoint3D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvQuadEdge2D[] = { {&_swigt__p_CvQuadEdge2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRNG_Wrapper[] = { {&_swigt__p_CvRNG_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRandState[] = { {&_swigt__p_CvRandState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRect[] = { {&_swigt__p_CvRect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFParams[] = { {&_swigt__p_CvSURFParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFPoint[] = { {&_swigt__p_CvSURFPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvScalar[] = { {&_swigt__p_CvScalar, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeq[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, _p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, _p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvRect_t, _p_CvTypedSeqT_CvRect_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint_t, _p_CvTypedSeqT_CvPoint_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, _p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvSeq_p_t, _p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, _p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvSeq, 0, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, _p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvConnectedComp_t, _p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqBlock[] = { {&_swigt__p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqReader[] = { {&_swigt__p_CvSeqReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqWriter[] = { {&_swigt__p_CvSeqWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSet[] = { {&_swigt__p_CvSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSetElem[] = { {&_swigt__p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize[] = { {&_swigt__p_CvSize, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize2D32f[] = { {&_swigt__p_CvSize2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSlice[] = { {&_swigt__p_CvSlice, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMat[] = { {&_swigt__p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMatIterator[] = { {&_swigt__p_CvSparseMatIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseNode[] = { {&_swigt__p_CvSparseNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarDetectorParams[] = { {&_swigt__p_CvStarDetectorParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarKeypoint[] = { {&_swigt__p_CvStarKeypoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoBMState[] = { {&_swigt__p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoGCState[] = { {&_swigt__p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvString[] = { {&_swigt__p_CvString, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStringHashNode[] = { {&_swigt__p_CvStringHashNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2D[] = { {&_swigt__p_CvSubdiv2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DEdge_Wrapper[] = { {&_swigt__p_CvSubdiv2DEdge_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPoint[] = { {&_swigt__p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPointLocation[] = { {&_swigt__p_CvSubdiv2DPointLocation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTermCriteria[] = { {&_swigt__p_CvTermCriteria, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTreeNodeIterator[] = { {&_swigt__p_CvTreeNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTupleT_CvPoint_2_t[] = { {&_swigt__p_CvTupleT_CvPoint_2_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTupleT_float_2_t[] = { {&_swigt__p_CvTupleT_float_2_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTupleT_float_3_t[] = { {&_swigt__p_CvTupleT_float_3_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvType[] = { {&_swigt__p_CvType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypeInfo[] = { {&_swigt__p_CvTypeInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvConnectedComp_t[] = { {&_swigt__p_CvTypedSeqT_CvConnectedComp_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint2D32f_t[] = { {&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint_t[] = { {&_swigt__p_CvTypedSeqT_CvPoint_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvQuadEdge2D_t[] = { {&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvRect_t[] = { {&_swigt__p_CvTypedSeqT_CvRect_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvSeq_p_t[] = { {&_swigt__p_CvTypedSeqT_CvSeq_p_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__CvContourScanner[] = { {&_swigt__p__CvContourScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernel[] = { {&_swigt__p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernelFP[] = { {&_swigt__p__IplConvKernelFP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplImage[] = { {&_swigt__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplROI[] = { {&_swigt__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplTileInfo[] = { {&_swigt__p__IplTileInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_a_2__float[] = { {&_swigt__p_a_2__float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_a_2__signed_char[] = { {&_swigt__p_a_2__signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_a_3__float[] = { {&_swigt__p_a_3__float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_allocator_type[] = { {&_swigt__p_allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_difference_type[] = { {&_swigt__p_difference_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_int_int_int_int__p__IplROI[] = { {&_swigt__p_f_int_int_int_int_int__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage[] = { {&_swigt__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int[] = { {&_swigt__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_CvFileStorage_p_CvFileNode__p_void[] = { {&_swigt__p_f_p_CvFileStorage_p_CvFileNode__p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void[] = { {&_swigt__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p__IplImage_int__void[] = { {&_swigt__p_f_p__IplImage_int__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p__IplImage_int_int__void[] = { {&_swigt__p_f_p__IplImage_int_int__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_p_void__void[] = { {&_swigt__p_f_p_p_void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__IplImage__p__IplImage[] = { {&_swigt__p_f_p_q_const__IplImage__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_int__p_CvMat[] = { {&_swigt__p_f_p_q_const__char_int__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_int__p__IplImage[] = { {&_swigt__p_f_p_q_const__char_int__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_p_q_const__void__void[] = { {&_swigt__p_f_p_q_const__char_p_q_const__void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int[] = { {&_swigt__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__float_p_q_const__float_p_void__float[] = { {&_swigt__p_f_p_q_const__float_p_q_const__float_p_void__float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__void__int[] = { {&_swigt__p_f_p_q_const__void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__void__p_void[] = { {&_swigt__p_f_p_q_const__void__p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__void_p_q_const__void_p_void__int[] = { {&_swigt__p_f_p_q_const__void_p_q_const__void_p_void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_void_p_void__int[] = { {&_swigt__p_f_p_void_p_void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_size_t_p_void__p_void[] = { {&_swigt__p_f_size_t_p_void__p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvConDensation[] = { {&_swigt__p_p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvFileStorage[] = { {&_swigt__p_p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvGraphEdge[] = { {&_swigt__p_p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvGraphScanner[] = { {&_swigt__p_p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvGraphVtx[] = { {&_swigt__p_p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvHaarClassifierCascade[] = { {&_swigt__p_p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvHistogram[] = { {&_swigt__p_p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvKalman[] = { {&_swigt__p_p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvLSH[] = { {&_swigt__p_p_CvLSH, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMat[] = { {&_swigt__p_p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMatND[] = { {&_swigt__p_p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMemStorage[] = { {&_swigt__p_p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvPOSITObject[] = { {&_swigt__p_p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvPoint[] = { {&_swigt__p_p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t[] = {{&_swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvTupleT_float_2_t_t[] = {{&_swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvRect_t[] = {{&_swigt__p_p_CvTypedSeqT_CvRect_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvPoint_t[] = {{&_swigt__p_p_CvTypedSeqT_CvPoint_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvQuadEdge2D_t[] = {{&_swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvSeq_p_t[] = {{&_swigt__p_p_CvTypedSeqT_CvSeq_p_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvPoint2D32f_t[] = {{&_swigt__p_p_CvTypedSeqT_CvPoint2D32f_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvTupleT_float_3_t_t[] = {{&_swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvConnectedComp_t[] = {{&_swigt__p_p_CvTypedSeqT_CvConnectedComp_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSeq[] = { {&_swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, _p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, _p_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvRect_t, _p_p_CvTypedSeqT_CvRect_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvPoint_t, _p_p_CvTypedSeqT_CvPoint_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t, _p_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvSeq_p_t, _p_p_CvTypedSeqT_CvSeq_p_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvPoint2D32f_t, _p_p_CvTypedSeqT_CvPoint2D32f_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvSeq, 0, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, _p_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvConnectedComp_t, _p_p_CvTypedSeqT_CvConnectedComp_tTo_p_p_CvSeq, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSeqBlock[] = { {&_swigt__p_p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSetElem[] = { {&_swigt__p_p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSparseMat[] = { {&_swigt__p_p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvStereoBMState[] = { {&_swigt__p_p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvStereoGCState[] = { {&_swigt__p_p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSubdiv2DPoint[] = { {&_swigt__p_p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p__CvContourScanner[] = { {&_swigt__p_p__CvContourScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p__IplConvKernel[] = { {&_swigt__p_p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p__IplImage[] = { {&_swigt__p_p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_float[] = { {&_swigt__p_p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_p_CvMat[] = { {&_swigt__p_p_p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_unsigned_char[] = { {&_swigt__p_p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_void[] = { {&_swigt__p_p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_short[] = { {&_swigt__p_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_type[] = { {&_swigt__p_size_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0, 0, 0}, {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_float_std__allocatorT_float_t_t[] = { {&_swigt__p_std__vectorT_float_std__allocatorT_float_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type[] = { {&_swigt__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_swig__OctSwigIterator[] = { {&_swigt__p_swig__OctSwigIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_value_type[] = { {&_swigt__p_value_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; - -static swig_cast_info *swig_cast_initial[] = { - _swigc__p_Cv32suf, - _swigc__p_Cv64suf, - _swigc__p_CvAttrList, - _swigc__p_CvAvgComp, - _swigc__p_CvBox2D, - _swigc__p_CvChain, - _swigc__p_CvChainPtReader, - _swigc__p_CvConDensation, - _swigc__p_CvConnectedComp, - _swigc__p_CvContour, - _swigc__p_CvContourTree, - _swigc__p_CvConvexityDefect, - _swigc__p_CvFeatureTree, - _swigc__p_CvFileNode, - _swigc__p_CvFileNode_data, - _swigc__p_CvFileStorage, - _swigc__p_CvFilter, - _swigc__p_CvFont, - _swigc__p_CvGenericHash, - _swigc__p_CvGraph, - _swigc__p_CvGraphEdge, - _swigc__p_CvGraphScanner, - _swigc__p_CvGraphVtx, - _swigc__p_CvGraphVtx2D, - _swigc__p_CvHaarClassifier, - _swigc__p_CvHaarClassifierCascade, - _swigc__p_CvHaarFeature, - _swigc__p_CvHaarFeature_rect, - _swigc__p_CvHaarStageClassifier, - _swigc__p_CvHidHaarClassifierCascade, - _swigc__p_CvHistogram, - _swigc__p_CvHuMoments, - _swigc__p_CvImage, - _swigc__p_CvKalman, - _swigc__p_CvLSH, - _swigc__p_CvLSHOperations, - _swigc__p_CvLineIterator, - _swigc__p_CvMSERParams, - _swigc__p_CvMat, - _swigc__p_CvMatND, - _swigc__p_CvMatND_data, - _swigc__p_CvMatND_dim, - _swigc__p_CvMat_data, - _swigc__p_CvMatrix, - _swigc__p_CvMatrix3, - _swigc__p_CvMemBlock, - _swigc__p_CvMemStorage, - _swigc__p_CvMemStoragePos, - _swigc__p_CvModule, - _swigc__p_CvModuleInfo, - _swigc__p_CvMoments, - _swigc__p_CvNArrayIterator, - _swigc__p_CvNextEdgeType, - _swigc__p_CvPOSITObject, - _swigc__p_CvPluginFuncInfo, - _swigc__p_CvPoint, - _swigc__p_CvPoint2D32f, - _swigc__p_CvPoint2D64f, - _swigc__p_CvPoint3D32f, - _swigc__p_CvPoint3D64f, - _swigc__p_CvQuadEdge2D, - _swigc__p_CvRNG_Wrapper, - _swigc__p_CvRandState, - _swigc__p_CvRect, - _swigc__p_CvSURFParams, - _swigc__p_CvSURFPoint, - _swigc__p_CvScalar, - _swigc__p_CvSeq, - _swigc__p_CvSeqBlock, - _swigc__p_CvSeqReader, - _swigc__p_CvSeqWriter, - _swigc__p_CvSet, - _swigc__p_CvSetElem, - _swigc__p_CvSize, - _swigc__p_CvSize2D32f, - _swigc__p_CvSlice, - _swigc__p_CvSparseMat, - _swigc__p_CvSparseMatIterator, - _swigc__p_CvSparseNode, - _swigc__p_CvStarDetectorParams, - _swigc__p_CvStarKeypoint, - _swigc__p_CvStereoBMState, - _swigc__p_CvStereoGCState, - _swigc__p_CvString, - _swigc__p_CvStringHashNode, - _swigc__p_CvSubdiv2D, - _swigc__p_CvSubdiv2DEdge_Wrapper, - _swigc__p_CvSubdiv2DPoint, - _swigc__p_CvSubdiv2DPointLocation, - _swigc__p_CvTermCriteria, - _swigc__p_CvTreeNodeIterator, - _swigc__p_CvTupleT_CvPoint_2_t, - _swigc__p_CvTupleT_float_2_t, - _swigc__p_CvTupleT_float_3_t, - _swigc__p_CvType, - _swigc__p_CvTypeInfo, - _swigc__p_CvTypedSeqT_CvConnectedComp_t, - _swigc__p_CvTypedSeqT_CvPoint2D32f_t, - _swigc__p_CvTypedSeqT_CvPoint_t, - _swigc__p_CvTypedSeqT_CvQuadEdge2D_t, - _swigc__p_CvTypedSeqT_CvRect_t, - _swigc__p_CvTypedSeqT_CvSeq_p_t, - _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t, - _swigc__p__CvContourScanner, - _swigc__p__IplConvKernel, - _swigc__p__IplConvKernelFP, - _swigc__p__IplImage, - _swigc__p__IplROI, - _swigc__p__IplTileInfo, - _swigc__p_a_2__float, - _swigc__p_a_2__signed_char, - _swigc__p_a_3__float, - _swigc__p_allocator_type, - _swigc__p_char, - _swigc__p_difference_type, - _swigc__p_double, - _swigc__p_f_int_int_int_int_int__p__IplROI, - _swigc__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage, - _swigc__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int, - _swigc__p_f_p_CvFileStorage_p_CvFileNode__p_void, - _swigc__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void, - _swigc__p_f_p__IplImage_int__void, - _swigc__p_f_p__IplImage_int_int__void, - _swigc__p_f_p_p_void__void, - _swigc__p_f_p_q_const__IplImage__p__IplImage, - _swigc__p_f_p_q_const__char_int__p_CvMat, - _swigc__p_f_p_q_const__char_int__p__IplImage, - _swigc__p_f_p_q_const__char_p_q_const__void__void, - _swigc__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int, - _swigc__p_f_p_q_const__float_p_q_const__float_p_void__float, - _swigc__p_f_p_q_const__void__int, - _swigc__p_f_p_q_const__void__p_void, - _swigc__p_f_p_q_const__void_p_q_const__void_p_void__int, - _swigc__p_f_p_void_p_void__int, - _swigc__p_f_size_t_p_void__p_void, - _swigc__p_float, - _swigc__p_int, - _swigc__p_int64_t, - _swigc__p_p_CvConDensation, - _swigc__p_p_CvFileStorage, - _swigc__p_p_CvGraphEdge, - _swigc__p_p_CvGraphScanner, - _swigc__p_p_CvGraphVtx, - _swigc__p_p_CvHaarClassifierCascade, - _swigc__p_p_CvHistogram, - _swigc__p_p_CvKalman, - _swigc__p_p_CvLSH, - _swigc__p_p_CvMat, - _swigc__p_p_CvMatND, - _swigc__p_p_CvMemStorage, - _swigc__p_p_CvPOSITObject, - _swigc__p_p_CvPoint, - _swigc__p_p_CvSeq, - _swigc__p_p_CvSeqBlock, - _swigc__p_p_CvSetElem, - _swigc__p_p_CvSparseMat, - _swigc__p_p_CvStereoBMState, - _swigc__p_p_CvStereoGCState, - _swigc__p_p_CvSubdiv2DPoint, - _swigc__p_p_CvTypedSeqT_CvConnectedComp_t, - _swigc__p_p_CvTypedSeqT_CvPoint2D32f_t, - _swigc__p_p_CvTypedSeqT_CvPoint_t, - _swigc__p_p_CvTypedSeqT_CvQuadEdge2D_t, - _swigc__p_p_CvTypedSeqT_CvRect_t, - _swigc__p_p_CvTypedSeqT_CvSeq_p_t, - _swigc__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - _swigc__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, - _swigc__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, - _swigc__p_p__CvContourScanner, - _swigc__p_p__IplConvKernel, - _swigc__p_p__IplImage, - _swigc__p_p_char, - _swigc__p_p_float, - _swigc__p_p_p_CvMat, - _swigc__p_p_unsigned_char, - _swigc__p_p_void, - _swigc__p_short, - _swigc__p_signed_char, - _swigc__p_size_t, - _swigc__p_size_type, - _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, - _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, - _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, - _swigc__p_std__vectorT_float_std__allocatorT_float_t_t, - _swigc__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, - _swigc__p_swig__OctSwigIterator, - _swigc__p_uint64_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_int, - _swigc__p_unsigned_short, - _swigc__p_value_type, - _swigc__p_void, -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -/* ----------------------------------------------------------------------------- - * Type initialization: - * This problem is tough by the requirement that no dynamic - * memory is used. Also, since swig_type_info structures store pointers to - * swig_cast_info structures and swig_cast_info structures store pointers back - * to swig_type_info structures, we need some lookup code at initialization. - * The idea is that swig generates all the structures that are needed. - * The runtime then collects these partially filled structures. - * The SWIG_InitializeModule function takes these initial arrays out of - * swig_module, and does all the lookup, filling in the swig_module.types - * array with the correct data and linking the correct swig_cast_info - * structures together. - * - * The generated swig_type_info structures are assigned staticly to an initial - * array. We just loop through that array, and handle each type individually. - * First we lookup if this type has been already loaded, and if so, use the - * loaded structure instead of the generated one. Then we have to fill in the - * cast linked list. The cast data is initially stored in something like a - * two-dimensional array. Each row corresponds to a type (there are the same - * number of rows as there are in the swig_type_initial array). Each entry in - * a column is one of the swig_cast_info structures for that type. - * The cast_initial array is actually an array of arrays, because each row has - * a variable number of columns. So to actually build the cast linked list, - * we find the array of casts associated with the type, and loop through it - * adding the casts to the list. The one last trick we need to do is making - * sure the type pointer in the swig_cast_info struct is correct. - * - * First off, we lookup the cast->type name to see if it is already loaded. - * There are three cases to handle: - * 1) If the cast->type has already been loaded AND the type we are adding - * casting info to has not been loaded (it is in this module), THEN we - * replace the cast->type pointer with the type pointer that has already - * been loaded. - * 2) If BOTH types (the one we are adding casting info to, and the - * cast->type) are loaded, THEN the cast info has already been loaded by - * the previous module so we just ignore it. - * 3) Finally, if cast->type has not already been loaded, then we add that - * swig_cast_info to the linked list (because the cast->type) pointer will - * be correct. - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* c-mode */ -#endif -#endif - -#if 0 -#define SWIGRUNTIME_DEBUG -#endif - - -SWIGRUNTIME void -SWIG_InitializeModule(void *clientdata) { - size_t i; - swig_module_info *module_head, *iter; - int found, init; - - clientdata = clientdata; - - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next==0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (!module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - module_head = &swig_module; - } else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - found=0; - iter=module_head; - do { - if (iter==&swig_module) { - found=1; - break; - } - iter=iter->next; - } while (iter!= module_head); - - /* if the is found in the list, then all is done and we may leave */ - if (found) return; - /* otherwise we must add out module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpeters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) return; - - /* Now work on filling in swig_module.types */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %d\n", swig_module.size); -#endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info *type = 0; - swig_type_info *ret; - swig_cast_info *cast; - -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); -#endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } else { - /* Check for casting already in the list */ - swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (!ocast) ret = 0; - } - } - - if (!ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; - } - swig_module.types[i] = 0; - -#ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info *cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n",j); - } - printf("**** SWIG_InitializeModule: Cast List ******\n"); -#endif -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientData(void) { - size_t i; - swig_cast_info *equiv; - static int init_run = 0; - - if (init_run) return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (!equiv->converter) { - if (equiv->type && !equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } - } - } -} - -#ifdef __cplusplus -#if 0 -{ /* c-mode */ -#endif -} -#endif - - - -static void SWIG_init_user(octave_swig_type* module_ns); - -DEFUN_DLD (SWIG_name,args,nargout,SWIG_name_d) { - static bool already_init=false; - if (already_init) - return octave_value_list(); - already_init=true; - - octave_swig_ref::register_type(); - octave_swig_packed::register_type(); - SWIG_InitializeModule(0); - SWIG_PropagateClientData(); - - install_builtin_function(swig_type,"swig_type",std::string()); - install_builtin_function(swig_typequery,"swig_typequery",std::string()); - install_builtin_function(swig_this,"swig_this",std::string()); - install_builtin_function(swig_subclass,"subclass",std::string()); - - bool global_option=true; // * swig cli option should control this default - for (int j=0;jassign(swig_globals[j].name,&swig_globals[j]); - - octave_swig_type* module_ns=new octave_swig_type(0, 0, 0, true); - module_ns->assign("cvar",Swig::swig_value_ref(cvar_ns)); - for (int j=0;swig_globals[j].name;++j) - if (swig_globals[j].method) - module_ns->assign(swig_globals[j].name,&swig_globals[j]); - - // * need better solution here; swig_type -> octave_class mapping is - // * really n-to-1, in some cases such as template partial spec, etc. - // * see failing tests. - for (int j=0;swig_types[j];++j) - if (swig_types[j]->clientdata) { - swig_octave_class* c=(swig_octave_class*)swig_types[j]->clientdata; - module_ns->assign(c->name, - Swig::swig_value_ref - (new octave_swig_type(0,swig_types[j]))); - } - - SWIG_init_user(module_ns); - - SWIG_InstallOps(octave_swig_ref::static_type_id()); - - // the incref is necessary so install_global doesn't destroy module_ns, - // as it would if it installed something with the same name as the module. - module_ns->incref(); - if (global_option) - module_ns->install_global(); - module_ns->decref(); - -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(SWIG_name_d,true)); -#else - symbol_table::varref(SWIG_name_d); - symbol_table::mark_global(SWIG_name_d); -#endif - set_global_value(SWIG_name_d,Swig::swig_value_ref(module_ns)); - -#if USE_OCTAVE_API_VERSION>=37 - mlock(); -#endif - - return octave_value_list(); -} - -// workaround bug in octave where installing global variable of custom type and then -// exiting without explicitly clearing the variable causes octave to segfault. -#if USE_OCTAVE_API_VERSION>=37 -struct oct_file_unload { - ~oct_file_unload() { - string_vector vars = symbol_table::global_variable_names(); - for (int i = 0; i < vars.length(); i++) - symbol_table::clear_global(vars[i]); - } -}; -static oct_file_unload __unload; -#endif - - -static void SWIG_init_user(octave_swig_type* module_ns) -{ - SWIG_Octave_SetConstant(module_ns,"sizeof_CvContour",SWIG_From_size_t((size_t)(sizeof(CvContour)))); - SWIG_Octave_SetConstant(module_ns,"sizeof_CvPoint",SWIG_From_size_t((size_t)(sizeof(CvPoint)))); - SWIG_Octave_SetConstant(module_ns,"sizeof_CvSeq",SWIG_From_size_t((size_t)(sizeof(CvSeq)))); - SWIG_Octave_SetConstant(module_ns,"CV_AUTOSTEP",SWIG_From_int((int)(0x7fffffff))); - SWIG_Octave_SetConstant(module_ns,"CV_MAX_ARR",SWIG_From_int((int)(10))); - SWIG_Octave_SetConstant(module_ns,"CV_NO_DEPTH_CHECK",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_NO_CN_CHECK",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_NO_SIZE_CHECK",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_CMP_EQ",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_CMP_GT",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CMP_GE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CMP_LT",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_CMP_LE",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_CMP_NE",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_CHECK_RANGE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CHECK_QUIET",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_RAND_UNI",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_RAND_NORMAL",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_SORT_EVERY_ROW",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SORT_EVERY_COLUMN",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_SORT_ASCENDING",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SORT_DESCENDING",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_GEMM_A_T",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_GEMM_B_T",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_GEMM_C_T",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_SVD_MODIFY_A",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_SVD_U_T",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_SVD_V_T",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_LU",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SVD",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_SVD_SYM",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CHOLESKY",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_QR",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_NORMAL",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_COVAR_SCRAMBLED",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_COVAR_NORMAL",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_COVAR_USE_AVG",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_COVAR_SCALE",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_COVAR_ROWS",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_COVAR_COLS",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_PCA_DATA_AS_ROW",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_PCA_DATA_AS_COL",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_PCA_USE_AVG",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_C",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_L1",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_L2",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_NORM_MASK",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_RELATIVE",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_DIFF",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_MINMAX",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_DIFF_C",SWIG_From_int((int)((16|1)))); - SWIG_Octave_SetConstant(module_ns,"CV_DIFF_L1",SWIG_From_int((int)((16|2)))); - SWIG_Octave_SetConstant(module_ns,"CV_DIFF_L2",SWIG_From_int((int)((16|4)))); - SWIG_Octave_SetConstant(module_ns,"CV_RELATIVE_C",SWIG_From_int((int)((8|1)))); - SWIG_Octave_SetConstant(module_ns,"CV_RELATIVE_L1",SWIG_From_int((int)((8|2)))); - SWIG_Octave_SetConstant(module_ns,"CV_RELATIVE_L2",SWIG_From_int((int)((8|4)))); - SWIG_Octave_SetConstant(module_ns,"CV_REDUCE_SUM",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_REDUCE_AVG",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_REDUCE_MAX",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_REDUCE_MIN",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_FORWARD",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_INVERSE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_SCALE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_INV_SCALE",SWIG_From_int((int)((1+2)))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_INVERSE_SCALE",SWIG_From_int((int)((1+2)))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_ROWS",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_DXT_MUL_CONJ",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_FRONT",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_BACK",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_VERTEX",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_TREE_EDGE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_BACK_EDGE",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_FORWARD_EDGE",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_CROSS_EDGE",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_ANY_EDGE",SWIG_From_int((int)(30))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_NEW_TREE",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_BACKTRACKING",SWIG_From_int((int)(64))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_OVER",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_ALL_ITEMS",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_ITEM_VISITED_FLAG",SWIG_From_int((int)((1 << 30)))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_SEARCH_TREE_NODE_FLAG",SWIG_From_int((int)((1 << 29)))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_FORWARD_EDGE_FLAG",SWIG_From_int((int)((1 << 28)))); - SWIG_Octave_SetConstant(module_ns,"CV_FILLED",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_AA",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_SIMPLEX",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_PLAIN",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_DUPLEX",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_COMPLEX",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_TRIPLEX",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_COMPLEX_SMALL",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_SCRIPT_SIMPLEX",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_HERSHEY_SCRIPT_COMPLEX",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_ITALIC",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_FONT_VECTOR0",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_KMEANS_USE_INITIAL_LABELS",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_ErrModeLeaf",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_ErrModeParent",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_ErrModeSilent",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_MAJOR_VERSION",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_MINOR_VERSION",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SUBMINOR_VERSION",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_PI",octave_value(3.1415926535897932384626433832795)); - SWIG_Octave_SetConstant(module_ns,"CV_LOG2",octave_value(0.69314718055994530941723212145818)); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_SIGN",SWIG_From_int((int)(0x80000000))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_1U",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_8U",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_16U",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_32F",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_8S",SWIG_From_int((int)((0x80000000|8)))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_16S",SWIG_From_int((int)((0x80000000|16)))); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_32S",SWIG_From_int((int)((0x80000000|32)))); - SWIG_Octave_SetConstant(module_ns,"IPL_DATA_ORDER_PIXEL",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"IPL_DATA_ORDER_PLANE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"IPL_ORIGIN_TL",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"IPL_ORIGIN_BL",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"IPL_ALIGN_4BYTES",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"IPL_ALIGN_8BYTES",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"IPL_ALIGN_16BYTES",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"IPL_ALIGN_32BYTES",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"IPL_ALIGN_DWORD",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"IPL_ALIGN_QWORD",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"IPL_BORDER_CONSTANT",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"IPL_BORDER_REPLICATE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"IPL_BORDER_REFLECT",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"IPL_BORDER_WRAP",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"IPL_IMAGE_HEADER",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"IPL_IMAGE_DATA",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"IPL_IMAGE_ROI",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"IPL_BORDER_REFLECT_101",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_IMAGE",SWIG_FromCharPtr("opencv-image")); - SWIG_Octave_SetConstant(module_ns,"IPL_DEPTH_64F",SWIG_From_int((int)(64))); - SWIG_Octave_SetConstant(module_ns,"CV_CN_MAX",SWIG_From_int((int)(64))); - SWIG_Octave_SetConstant(module_ns,"CV_CN_SHIFT",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_DEPTH_MAX",SWIG_From_int((int)((1 << 3)))); - SWIG_Octave_SetConstant(module_ns,"CV_8U",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_8S",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_16U",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_16S",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_32S",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_32F",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_64F",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_USRTYPE1",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_DEPTH_MASK",SWIG_From_int((int)(((1 << 3) -1)))); - SWIG_Octave_SetConstant(module_ns,"CV_8UC1",SWIG_From_int((int)((((0) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8UC2",SWIG_From_int((int)((((0) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8UC3",SWIG_From_int((int)((((0) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8UC4",SWIG_From_int((int)((((0) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8SC1",SWIG_From_int((int)((((1) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8SC2",SWIG_From_int((int)((((1) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8SC3",SWIG_From_int((int)((((1) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_8SC4",SWIG_From_int((int)((((1) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16UC1",SWIG_From_int((int)((((2) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16UC2",SWIG_From_int((int)((((2) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16UC3",SWIG_From_int((int)((((2) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16UC4",SWIG_From_int((int)((((2) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16SC1",SWIG_From_int((int)((((3) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16SC2",SWIG_From_int((int)((((3) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16SC3",SWIG_From_int((int)((((3) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_16SC4",SWIG_From_int((int)((((3) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32SC1",SWIG_From_int((int)((((4) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32SC2",SWIG_From_int((int)((((4) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32SC3",SWIG_From_int((int)((((4) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32SC4",SWIG_From_int((int)((((4) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32FC1",SWIG_From_int((int)((((5) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32FC2",SWIG_From_int((int)((((5) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32FC3",SWIG_From_int((int)((((5) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_32FC4",SWIG_From_int((int)((((5) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_64FC1",SWIG_From_int((int)((((6) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_64FC2",SWIG_From_int((int)((((6) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_64FC3",SWIG_From_int((int)((((6) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_64FC4",SWIG_From_int((int)((((6) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_AUTO_STEP",SWIG_From_int((int)(0x7fffffff))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_CN_MASK",SWIG_From_int((int)(((64-1) << 3)))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_TYPE_MASK",SWIG_From_int((int)(((1 << 3) *64-1)))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_CONT_FLAG_SHIFT",SWIG_From_int((int)(14))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_CONT_FLAG",SWIG_From_int((int)((1 << 14)))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_TEMP_FLAG_SHIFT",SWIG_From_int((int)(15))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_TEMP_FLAG",SWIG_From_int((int)((1 << 15)))); - SWIG_Octave_SetConstant(module_ns,"CV_MAGIC_MASK",SWIG_From_int((int)(0xFFFF0000))); - SWIG_Octave_SetConstant(module_ns,"CV_MAT_MAGIC_VAL",SWIG_From_int((int)(0x42420000))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_MAT",SWIG_FromCharPtr("opencv-matrix")); - SWIG_Octave_SetConstant(module_ns,"CV_MATND_MAGIC_VAL",SWIG_From_int((int)(0x42430000))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_MATND",SWIG_FromCharPtr("opencv-nd-matrix")); - SWIG_Octave_SetConstant(module_ns,"CV_MAX_DIM",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_MAX_DIM_HEAP",SWIG_From_int((int)((1 << 16)))); - SWIG_Octave_SetConstant(module_ns,"CV_SPARSE_MAT_MAGIC_VAL",SWIG_From_int((int)(0x42440000))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_SPARSE_MAT",SWIG_FromCharPtr("opencv-sparse-matrix")); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_MAGIC_VAL",SWIG_From_int((int)(0x42450000))); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_UNIFORM_FLAG",SWIG_From_int((int)((1 << 10)))); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_RANGES_FLAG",SWIG_From_int((int)((1 << 11)))); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_ARRAY",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_SPARSE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_TREE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_HIST_UNIFORM",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_TERMCRIT_ITER",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_TERMCRIT_NUMBER",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_TERMCRIT_EPS",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_WHOLE_SEQ_END_INDEX",SWIG_From_int((int)(0x3fffffff))); - SWIG_Octave_SetConstant(module_ns,"CV_STORAGE_MAGIC_VAL",SWIG_From_int((int)(0x42890000))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_SEQ",SWIG_FromCharPtr("opencv-sequence")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_SEQ_TREE",SWIG_FromCharPtr("opencv-sequence-tree")); - SWIG_Octave_SetConstant(module_ns,"CV_SET_ELEM_IDX_MASK",SWIG_From_int((int)(((1 << 26) -1)))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_GRAPH",SWIG_FromCharPtr("opencv-graph")); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_MAGIC_VAL",SWIG_From_int((int)(0x42990000))); - SWIG_Octave_SetConstant(module_ns,"CV_SET_MAGIC_VAL",SWIG_From_int((int)(0x42980000))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_BITS",SWIG_From_int((int)(9))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_MASK",SWIG_From_int((int)(((1 << 9) -1)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_POINT",SWIG_From_int((int)((((4) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_CODE",SWIG_From_int((int)((((0) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_GENERIC",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_PTR",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_PPOINT",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_INDEX",SWIG_From_int((int)((((4) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_GRAPH_EDGE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_GRAPH_VERTEX",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_TRIAN_ATR",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_CONNECTED_COMP",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_ELTYPE_POINT3D",SWIG_From_int((int)((((5) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_BITS",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_MASK",SWIG_From_int((int)((((1 << 3) -1) << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_GENERIC",SWIG_From_int((int)((0 << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_CURVE",SWIG_From_int((int)((1 << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_BIN_TREE",SWIG_From_int((int)((2 << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_GRAPH",SWIG_From_int((int)((3 << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_KIND_SUBDIV2D",SWIG_From_int((int)((4 << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_FLAG_SHIFT",SWIG_From_int((int)((3+9)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_FLAG_CLOSED",SWIG_From_int((int)((1 << (3+9))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_FLAG_SIMPLE",SWIG_From_int((int)((2 << (3+9))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_FLAG_CONVEX",SWIG_From_int((int)((4 << (3+9))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_FLAG_HOLE",SWIG_From_int((int)((8 << (3+9))))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH_FLAG_ORIENTED",SWIG_From_int((int)((1 << (3+9))))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAPH",SWIG_From_int((int)((3 << 9)))); - SWIG_Octave_SetConstant(module_ns,"CV_ORIENTED_GRAPH",SWIG_From_int((int)(((3 << 9)|(1 << (3+9)))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_POINT_SET",SWIG_From_int((int)(((0 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3)))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_POINT3D_SET",SWIG_From_int((int)(((0 << 9)|(((5) &((1 << 3) -1)) +(((3) -1) << 3)))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_POLYLINE",SWIG_From_int((int)(((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3)))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_POLYGON",SWIG_From_int((int)(((1 << (3+9))|((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3))))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_CONTOUR",SWIG_From_int((int)(((1 << (3+9))|((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3))))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_SIMPLE_POLYGON",SWIG_From_int((int)(((2 << (3+9))|((1 << (3+9))|((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3)))))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_CHAIN",SWIG_From_int((int)(((1 << 9)|(((0) &((1 << 3) -1)) +(((1) -1) << 3)))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_CHAIN_CONTOUR",SWIG_From_int((int)(((1 << (3+9))|((1 << 9)|(((0) &((1 << 3) -1)) +(((1) -1) << 3))))))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_POLYGON_TREE",SWIG_From_int((int)(((2 << 9)|0)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_CONNECTED_COMP",SWIG_From_int((int)(((0 << 9)|0)))); - SWIG_Octave_SetConstant(module_ns,"CV_SEQ_INDEX",SWIG_From_int((int)(((0 << 9)|(((4) &((1 << 3) -1)) +(((1) -1) << 3)))))); - SWIG_Octave_SetConstant(module_ns,"CV_STORAGE_READ",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_STORAGE_WRITE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_STORAGE_WRITE_TEXT",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_STORAGE_WRITE_BINARY",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_STORAGE_APPEND",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_NONE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_INT",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_INTEGER",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_REAL",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_FLOAT",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_STR",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_STRING",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_REF",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_SEQ",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_MAP",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_TYPE_MASK",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_FLOW",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_USER",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_EMPTY",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_NAMED",SWIG_From_int((int)(64))); - SWIG_Octave_SetConstant(module_ns,"CV_NODE_SEQ_SIMPLE",SWIG_From_int((int)(256))); - SWIG_Octave_SetConstant(module_ns,"CV_StsOk",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBackTrace",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_StsError",SWIG_From_int((int)(-2))); - SWIG_Octave_SetConstant(module_ns,"CV_StsInternal",SWIG_From_int((int)(-3))); - SWIG_Octave_SetConstant(module_ns,"CV_StsNoMem",SWIG_From_int((int)(-4))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadArg",SWIG_From_int((int)(-5))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadFunc",SWIG_From_int((int)(-6))); - SWIG_Octave_SetConstant(module_ns,"CV_StsNoConv",SWIG_From_int((int)(-7))); - SWIG_Octave_SetConstant(module_ns,"CV_StsAutoTrace",SWIG_From_int((int)(-8))); - SWIG_Octave_SetConstant(module_ns,"CV_HeaderIsNull",SWIG_From_int((int)(-9))); - SWIG_Octave_SetConstant(module_ns,"CV_BadImageSize",SWIG_From_int((int)(-10))); - SWIG_Octave_SetConstant(module_ns,"CV_BadOffset",SWIG_From_int((int)(-11))); - SWIG_Octave_SetConstant(module_ns,"CV_BadDataPtr",SWIG_From_int((int)(-12))); - SWIG_Octave_SetConstant(module_ns,"CV_BadStep",SWIG_From_int((int)(-13))); - SWIG_Octave_SetConstant(module_ns,"CV_BadModelOrChSeq",SWIG_From_int((int)(-14))); - SWIG_Octave_SetConstant(module_ns,"CV_BadNumChannels",SWIG_From_int((int)(-15))); - SWIG_Octave_SetConstant(module_ns,"CV_BadNumChannel1U",SWIG_From_int((int)(-16))); - SWIG_Octave_SetConstant(module_ns,"CV_BadDepth",SWIG_From_int((int)(-17))); - SWIG_Octave_SetConstant(module_ns,"CV_BadAlphaChannel",SWIG_From_int((int)(-18))); - SWIG_Octave_SetConstant(module_ns,"CV_BadOrder",SWIG_From_int((int)(-19))); - SWIG_Octave_SetConstant(module_ns,"CV_BadOrigin",SWIG_From_int((int)(-20))); - SWIG_Octave_SetConstant(module_ns,"CV_BadAlign",SWIG_From_int((int)(-21))); - SWIG_Octave_SetConstant(module_ns,"CV_BadCallBack",SWIG_From_int((int)(-22))); - SWIG_Octave_SetConstant(module_ns,"CV_BadTileSize",SWIG_From_int((int)(-23))); - SWIG_Octave_SetConstant(module_ns,"CV_BadCOI",SWIG_From_int((int)(-24))); - SWIG_Octave_SetConstant(module_ns,"CV_BadROISize",SWIG_From_int((int)(-25))); - SWIG_Octave_SetConstant(module_ns,"CV_MaskIsTiled",SWIG_From_int((int)(-26))); - SWIG_Octave_SetConstant(module_ns,"CV_StsNullPtr",SWIG_From_int((int)(-27))); - SWIG_Octave_SetConstant(module_ns,"CV_StsVecLengthErr",SWIG_From_int((int)(-28))); - SWIG_Octave_SetConstant(module_ns,"CV_StsFilterStructContentErr",SWIG_From_int((int)(-29))); - SWIG_Octave_SetConstant(module_ns,"CV_StsKernelStructContentErr",SWIG_From_int((int)(-30))); - SWIG_Octave_SetConstant(module_ns,"CV_StsFilterOffsetErr",SWIG_From_int((int)(-31))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadSize",SWIG_From_int((int)(-201))); - SWIG_Octave_SetConstant(module_ns,"CV_StsDivByZero",SWIG_From_int((int)(-202))); - SWIG_Octave_SetConstant(module_ns,"CV_StsInplaceNotSupported",SWIG_From_int((int)(-203))); - SWIG_Octave_SetConstant(module_ns,"CV_StsObjectNotFound",SWIG_From_int((int)(-204))); - SWIG_Octave_SetConstant(module_ns,"CV_StsUnmatchedFormats",SWIG_From_int((int)(-205))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadFlag",SWIG_From_int((int)(-206))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadPoint",SWIG_From_int((int)(-207))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadMask",SWIG_From_int((int)(-208))); - SWIG_Octave_SetConstant(module_ns,"CV_StsUnmatchedSizes",SWIG_From_int((int)(-209))); - SWIG_Octave_SetConstant(module_ns,"CV_StsUnsupportedFormat",SWIG_From_int((int)(-210))); - SWIG_Octave_SetConstant(module_ns,"CV_StsOutOfRange",SWIG_From_int((int)(-211))); - SWIG_Octave_SetConstant(module_ns,"CV_StsParseError",SWIG_From_int((int)(-212))); - SWIG_Octave_SetConstant(module_ns,"CV_StsNotImplemented",SWIG_From_int((int)(-213))); - SWIG_Octave_SetConstant(module_ns,"CV_StsBadMemBlock",SWIG_From_int((int)(-214))); - SWIG_Octave_SetConstant(module_ns,"CV_StsAssert",SWIG_From_int((int)(-215))); - SWIG_Octave_SetConstant(module_ns,"CV_BLUR_NO_SCALE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_BLUR",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_GAUSSIAN",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_MEDIAN",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_BILATERAL",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_INPAINT_NS",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_INPAINT_TELEA",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_SCHARR",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_MAX_SOBEL_KSIZE",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2BGRA",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2RGBA",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_BGRA2BGR",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_RGBA2RGB",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2RGBA",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2BGRA",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_RGBA2BGR",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_BGRA2RGB",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2RGB",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2BGR",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_BGRA2RGBA",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_RGBA2BGRA",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2GRAY",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2GRAY",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAY2BGR",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAY2RGB",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAY2BGRA",SWIG_From_int((int)(9))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAY2RGBA",SWIG_From_int((int)(9))); - SWIG_Octave_SetConstant(module_ns,"CV_BGRA2GRAY",SWIG_From_int((int)(10))); - SWIG_Octave_SetConstant(module_ns,"CV_RGBA2GRAY",SWIG_From_int((int)(11))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2BGR565",SWIG_From_int((int)(12))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2BGR565",SWIG_From_int((int)(13))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5652BGR",SWIG_From_int((int)(14))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5652RGB",SWIG_From_int((int)(15))); - SWIG_Octave_SetConstant(module_ns,"CV_BGRA2BGR565",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_RGBA2BGR565",SWIG_From_int((int)(17))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5652BGRA",SWIG_From_int((int)(18))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5652RGBA",SWIG_From_int((int)(19))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAY2BGR565",SWIG_From_int((int)(20))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5652GRAY",SWIG_From_int((int)(21))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2BGR555",SWIG_From_int((int)(22))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2BGR555",SWIG_From_int((int)(23))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5552BGR",SWIG_From_int((int)(24))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5552RGB",SWIG_From_int((int)(25))); - SWIG_Octave_SetConstant(module_ns,"CV_BGRA2BGR555",SWIG_From_int((int)(26))); - SWIG_Octave_SetConstant(module_ns,"CV_RGBA2BGR555",SWIG_From_int((int)(27))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5552BGRA",SWIG_From_int((int)(28))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5552RGBA",SWIG_From_int((int)(29))); - SWIG_Octave_SetConstant(module_ns,"CV_GRAY2BGR555",SWIG_From_int((int)(30))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR5552GRAY",SWIG_From_int((int)(31))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2XYZ",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2XYZ",SWIG_From_int((int)(33))); - SWIG_Octave_SetConstant(module_ns,"CV_XYZ2BGR",SWIG_From_int((int)(34))); - SWIG_Octave_SetConstant(module_ns,"CV_XYZ2RGB",SWIG_From_int((int)(35))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2YCrCb",SWIG_From_int((int)(36))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2YCrCb",SWIG_From_int((int)(37))); - SWIG_Octave_SetConstant(module_ns,"CV_YCrCb2BGR",SWIG_From_int((int)(38))); - SWIG_Octave_SetConstant(module_ns,"CV_YCrCb2RGB",SWIG_From_int((int)(39))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2HSV",SWIG_From_int((int)(40))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2HSV",SWIG_From_int((int)(41))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2Lab",SWIG_From_int((int)(44))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2Lab",SWIG_From_int((int)(45))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerBG2BGR",SWIG_From_int((int)(46))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerGB2BGR",SWIG_From_int((int)(47))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerRG2BGR",SWIG_From_int((int)(48))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerGR2BGR",SWIG_From_int((int)(49))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerBG2RGB",SWIG_From_int((int)(48))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerGB2RGB",SWIG_From_int((int)(49))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerRG2RGB",SWIG_From_int((int)(46))); - SWIG_Octave_SetConstant(module_ns,"CV_BayerGR2RGB",SWIG_From_int((int)(47))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2Luv",SWIG_From_int((int)(50))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2Luv",SWIG_From_int((int)(51))); - SWIG_Octave_SetConstant(module_ns,"CV_BGR2HLS",SWIG_From_int((int)(52))); - SWIG_Octave_SetConstant(module_ns,"CV_RGB2HLS",SWIG_From_int((int)(53))); - SWIG_Octave_SetConstant(module_ns,"CV_HSV2BGR",SWIG_From_int((int)(54))); - SWIG_Octave_SetConstant(module_ns,"CV_HSV2RGB",SWIG_From_int((int)(55))); - SWIG_Octave_SetConstant(module_ns,"CV_Lab2BGR",SWIG_From_int((int)(56))); - SWIG_Octave_SetConstant(module_ns,"CV_Lab2RGB",SWIG_From_int((int)(57))); - SWIG_Octave_SetConstant(module_ns,"CV_Luv2BGR",SWIG_From_int((int)(58))); - SWIG_Octave_SetConstant(module_ns,"CV_Luv2RGB",SWIG_From_int((int)(59))); - SWIG_Octave_SetConstant(module_ns,"CV_HLS2BGR",SWIG_From_int((int)(60))); - SWIG_Octave_SetConstant(module_ns,"CV_HLS2RGB",SWIG_From_int((int)(61))); - SWIG_Octave_SetConstant(module_ns,"CV_COLORCVT_MAX",SWIG_From_int((int)(100))); - SWIG_Octave_SetConstant(module_ns,"CV_INTER_NN",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_INTER_LINEAR",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_INTER_CUBIC",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_INTER_AREA",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_WARP_FILL_OUTLIERS",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_WARP_INVERSE_MAP",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_SHAPE_RECT",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_SHAPE_CROSS",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_SHAPE_ELLIPSE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_SHAPE_CUSTOM",SWIG_From_int((int)(100))); - SWIG_Octave_SetConstant(module_ns,"CV_MOP_OPEN",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_MOP_CLOSE",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_MOP_GRADIENT",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_MOP_TOPHAT",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_MOP_BLACKHAT",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_TM_SQDIFF",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_TM_SQDIFF_NORMED",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_TM_CCORR",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_TM_CCORR_NORMED",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_TM_CCOEFF",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_TM_CCOEFF_NORMED",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_LKFLOW_PYR_A_READY",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_LKFLOW_PYR_B_READY",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_LKFLOW_INITIAL_GUESSES",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_LKFLOW_GET_MIN_EIGENVALS",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_POLY_APPROX_DP",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_DOMINANT_IPAN",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CONTOURS_MATCH_I1",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CONTOURS_MATCH_I2",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CONTOURS_MATCH_I3",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_CONTOUR_TREES_MATCH_I1",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CLOCKWISE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_COUNTER_CLOCKWISE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_COMP_CORREL",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_COMP_CHISQR",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_COMP_INTERSECT",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_COMP_BHATTACHARYYA",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_VALUE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_ARRAY",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_MASK_3",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_MASK_5",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_MASK_PRECISE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_BINARY",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_BINARY_INV",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_TRUNC",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_TOZERO",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_TOZERO_INV",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_MASK",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_THRESH_OTSU",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_ADAPTIVE_THRESH_MEAN_C",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_ADAPTIVE_THRESH_GAUSSIAN_C",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_FLOODFILL_FIXED_RANGE",SWIG_From_int((int)((1 << 16)))); - SWIG_Octave_SetConstant(module_ns,"CV_FLOODFILL_MASK_ONLY",SWIG_From_int((int)((1 << 17)))); - SWIG_Octave_SetConstant(module_ns,"CV_CANNY_L2_GRADIENT",SWIG_From_int((int)((1 << 31)))); - SWIG_Octave_SetConstant(module_ns,"CV_HOUGH_STANDARD",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_HOUGH_PROBABILISTIC",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_HOUGH_MULTI_SCALE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_HOUGH_GRADIENT",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_HAAR_DO_CANNY_PRUNING",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_HAAR_SCALE_IMAGE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_HAAR_FIND_BIGGEST_OBJECT",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_HAAR_DO_ROUGH_SEARCH",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_LMEDS",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_RANSAC",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_CB_ADAPTIVE_THRESH",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_CB_NORMALIZE_IMAGE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_CB_FILTER_QUADS",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_USE_INTRINSIC_GUESS",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_ASPECT_RATIO",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_PRINCIPAL_POINT",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_ZERO_TANGENT_DIST",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_FOCAL_LENGTH",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_K1",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_K2",SWIG_From_int((int)(64))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_K3",SWIG_From_int((int)(128))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_FIX_INTRINSIC",SWIG_From_int((int)(256))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_SAME_FOCAL_LENGTH",SWIG_From_int((int)(512))); - SWIG_Octave_SetConstant(module_ns,"CV_CALIB_ZERO_DISPARITY",SWIG_From_int((int)(1024))); - SWIG_Octave_SetConstant(module_ns,"CV_FM_7POINT",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_FM_8POINT",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_FM_LMEDS_ONLY",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_FM_RANSAC_ONLY",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_FM_LMEDS",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_FM_RANSAC",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_STEREO_BM_NORMALIZED_RESPONSE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_STEREO_BM_BASIC",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_STEREO_BM_FISH_EYE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_STEREO_BM_NARROW",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_RETR_EXTERNAL",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_RETR_LIST",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_RETR_CCOMP",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_RETR_TREE",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_CHAIN_CODE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_CHAIN_APPROX_NONE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CHAIN_APPROX_SIMPLE",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CHAIN_APPROX_TC89_L1",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_CHAIN_APPROX_TC89_KCOS",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_LINK_RUNS",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_SUBDIV2D_VIRTUAL_POINT_FLAG",SWIG_From_int((int)((1 << 30)))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_USER",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_L1",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_L2",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_C",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_L12",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_FAIR",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_WELSCH",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_DIST_HUBER",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_HAAR_MAGIC_VAL",SWIG_From_int((int)(0x42500000))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_HAAR",SWIG_FromCharPtr("opencv-haar-classifier")); - SWIG_Octave_SetConstant(module_ns,"CV_HAAR_FEATURE_MAX",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_PTLOC_ERROR",SWIG_From_int((int)(CV_PTLOC_ERROR))); - SWIG_Octave_SetConstant(module_ns,"CV_PTLOC_OUTSIDE_RECT",SWIG_From_int((int)(CV_PTLOC_OUTSIDE_RECT))); - SWIG_Octave_SetConstant(module_ns,"CV_PTLOC_INSIDE",SWIG_From_int((int)(CV_PTLOC_INSIDE))); - SWIG_Octave_SetConstant(module_ns,"CV_PTLOC_VERTEX",SWIG_From_int((int)(CV_PTLOC_VERTEX))); - SWIG_Octave_SetConstant(module_ns,"CV_PTLOC_ON_EDGE",SWIG_From_int((int)(CV_PTLOC_ON_EDGE))); - SWIG_Octave_SetConstant(module_ns,"CV_NEXT_AROUND_ORG",SWIG_From_int((int)(CV_NEXT_AROUND_ORG))); - SWIG_Octave_SetConstant(module_ns,"CV_NEXT_AROUND_DST",SWIG_From_int((int)(CV_NEXT_AROUND_DST))); - SWIG_Octave_SetConstant(module_ns,"CV_PREV_AROUND_ORG",SWIG_From_int((int)(CV_PREV_AROUND_ORG))); - SWIG_Octave_SetConstant(module_ns,"CV_PREV_AROUND_DST",SWIG_From_int((int)(CV_PREV_AROUND_DST))); - SWIG_Octave_SetConstant(module_ns,"CV_NEXT_AROUND_LEFT",SWIG_From_int((int)(CV_NEXT_AROUND_LEFT))); - SWIG_Octave_SetConstant(module_ns,"CV_NEXT_AROUND_RIGHT",SWIG_From_int((int)(CV_NEXT_AROUND_RIGHT))); - SWIG_Octave_SetConstant(module_ns,"CV_PREV_AROUND_LEFT",SWIG_From_int((int)(CV_PREV_AROUND_LEFT))); - SWIG_Octave_SetConstant(module_ns,"CV_PREV_AROUND_RIGHT",SWIG_From_int((int)(CV_PREV_AROUND_RIGHT))); - SWIG_Octave_SetConstant(module_ns,"CV_GAUSSIAN_5x5",SWIG_From_int((int)(CV_GAUSSIAN_5x5))); - - cvRedirectError(function_ptr_generator(), void_ptr_generator(), void_ptrptr_generator()); - -} - diff --git a/interfaces/swig/octave/cvaliases.i b/interfaces/swig/octave/cvaliases.i deleted file mode 100644 index 91a0f5c80..000000000 --- a/interfaces/swig/octave/cvaliases.i +++ /dev/null @@ -1,53 +0,0 @@ -/* -%module cv -%pythoncode %{ -IPL_ALIGN_DWORD=IPL_ALIGN_4BYTES -IPL_ALIGN_QWORD=IPL_ALIGN_8BYTES -CV_MAKE_TYPE=CV_MAKETYPE -CV_IS_CONT_MAT=CV_IS_MAT_CONT -CV_HIST_TREE=CV_HIST_SPARSE -CV_TERMCRIT_NUMBER=CV_TERMCRIT_ITER -CV_SEQ_ELTYPE_PTR=CV_USRTYPE1 -CV_GRAPH=CV_SEQ_KIND_GRAPH -CV_SEQ_CONTOUR=CV_SEQ_POLYGON -CV_STORAGE_WRITE_TEXT=CV_STORAGE_WRITE -CV_STORAGE_WRITE_BINARY=CV_STORAGE_WRITE -CV_NODE_INTEGER=CV_NODE_INT -CV_NODE_FLOAT=CV_NODE_REAL -CV_NODE_STRING=CV_NODE_STR -cvGetSubArr=cvGetSubRect -cvZero=cvSetZero -cvCvtScale=cvConvertScale -cvScale=cvConvertScale -cvCvtScaleAbs=cvConvertScaleAbs -cvCheckArray=cvCheckArr -cvMatMulAddEx=cvGEMM -cvMatMulAddS=cvTransform -cvT=cvTranspose -cvMirror=cvFlip -cvInv=cvInvert -cvMahalonobis=cvMahalanobis -CV_DXT_INVERSE_SCALE=CV_DXT_INV_SCALE -cvFFT=cvDFT -cvGraphFindEdge=cvFindGraphEdge -cvGraphFindEdgeByPtr=cvFindGraphEdgeByPtr -cvDrawRect=cvRectangle -cvDrawLine=cvLine -cvDrawCircle=cvCircle -cvDrawEllipse=cvEllipse -cvDrawPolyLine=cvPolyLine -CV_FONT_VECTOR0=CV_FONT_HERSHEY_SIMPLEX -CV_RGB2RGBA=CV_BGR2BGRA -CV_RGBA2RGB=CV_BGRA2BGR -CV_RGB2BGRA=CV_BGR2RGBA -CV_BGRA2RGB=CV_RGBA2BGR -CV_RGB2BGR=CV_BGR2RGB -CV_RGBA2BGRA=CV_BGRA2RGBA -CV_GRAY2RGB=CV_GRAY2BGR -CV_GRAY2RGBA=CV_GRAY2BGRA -CV_BayerBG2RGB=CV_BayerRG2BGR -CV_BayerGB2RGB=CV_BayerGR2BGR -CV_BayerRG2RGB=CV_BayerBG2BGR -CV_BayerGR2RGB=CV_BayerGB2BGR -%} -*/ diff --git a/interfaces/swig/octave/cvarr.i b/interfaces/swig/octave/cvarr.i deleted file mode 100644 index f3d6883f4..000000000 --- a/interfaces/swig/octave/cvarr.i +++ /dev/null @@ -1,461 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2006-02-17 Roman Stanchak -// 2006-07-19 Moved most operators to general/cvarr_operators.i for use with other languages - -/*M////////////////////////////////////////////////////////////////////////////////////////// -// Macros for extending CvMat and IplImage -- primarily for operator overloading -//////////////////////////////////////////////////////////////////////////////////////////M*/ - -// Macro to define octave function of form B = A.f(c) -// where A is a CvArr type, c and B are arbitrary types -%define %wrap_cvGeneric_CvArr(cname, rettype, octfunc, argtype, cvfunc, newobjcall) - %newobject cname::octfunc(argtype arg); - %extend cname { - rettype octfunc(argtype arg){ - rettype retarg = newobjcall; - cvfunc; - return retarg; - } - } -%enddef - -// Macro to define octave function of the form B = A.f(c) -// where A and B are both CvArr of same size and type -%define %wrap_cvArr_binaryop(octfunc, argtype, cvfunc) - %wrap_cvGeneric_CvArr(CvMat, CvMat *, octfunc, argtype, cvfunc, - cvCreateMat(self->rows, self->cols, self->type)); - %wrap_cvGeneric_CvArr(IplImage, IplImage *, octfunc, argtype, cvfunc, - cvCreateImage(cvGetSize(self), self->depth, self->nChannels)); - %enddef - - // Macro to define octave function of the form A = A.f(c) - // where f modifies A inplace - // use for +=, etc - %define %wrap_cvGeneric_InPlace(cname, rettype, octfunc, argtype, cvfunc) - %wrap_cvGeneric_CvArr(cname, rettype, octfunc, argtype, cvfunc, self); - %enddef - - /*M////////////////////////////////////////////////////////////////////////////////////////// - // Macros to map operators to specific OpenCV functions - //////////////////////////////////////////////////////////////////////////////////////////M*/ - - // map any OpenCV function of form cvFunc(src1, src2, dst) - %define %wrap_cvArith(octfunc, cvfunc) - %wrap_cvArr_binaryop(octfunc, CvArr *, cvfunc(self, arg, retarg)); - %enddef - - // map any OpenCV function of form cvFunc(src1, value, dst) - %define %wrap_cvArithS(octfunc, cvfuncS) - %wrap_cvArr_binaryop(octfunc, CvScalar, cvfuncS(self, arg, retarg)); - %wrap_cvArr_binaryop(octfunc, double, cvfuncS(self, cvScalar(arg), retarg)); - %enddef - - // same as wrap_cvArith - %define %wrap_cvLogic(octfunc, cvfunc) - %wrap_cvArr_binaryop(octfunc, CvArr *, cvfunc(self, arg, retarg)) - %enddef - - // same as wrap_cvArithS - %define %wrap_cvLogicS(octfunc, cvfuncS) - %wrap_cvArr_binaryop(octfunc, CvScalar, cvfuncS(self, arg, retarg)); - %wrap_cvArr_binaryop(octfunc, double, cvfuncS(self, cvScalar(arg), retarg)); - %enddef - - // Macro to map logical operations to cvCmp - %define %wrap_cvCmp(octfunc, cmp_op) - %wrap_cvGeneric_CvArr(CvMat, CvArr *, octfunc, CvMat *, - cvCmp(self, arg, retarg, cmp_op), - cvCreateMat(self->rows, self->cols, CV_8U)); - %wrap_cvGeneric_CvArr(IplImage, CvArr *, octfunc, IplImage *, - cvCmp(self, arg, retarg, cmp_op), - cvCreateImage(cvGetSize(self), 8, 1)); - %enddef - - %define %wrap_cvCmpS(octfunc, cmp_op) - %wrap_cvGeneric_CvArr(CvMat, CvArr *, octfunc, double, - cvCmpS(self, arg, retarg, cmp_op), - cvCreateMat(self->rows, self->cols, CV_8U)); - %wrap_cvGeneric_CvArr(IplImage, CvArr *, octfunc, double, - cvCmpS(self, arg, retarg, cmp_op), - cvCreateImage(cvGetSize(self), 8, 1)); - %enddef - - // special case for cvScale, /, * - %define %wrap_cvScale(octfunc, scale) - %wrap_cvGeneric_CvArr(CvMat, CvArr *, octfunc, double, - cvScale(self, retarg, scale), - cvCreateMat(self->rows, self->cols, self->type)); - %wrap_cvGeneric_CvArr(IplImage, CvArr *, octfunc, double, - cvScale(self, retarg, scale), - cvCreateImage(cvGetSize(self), self->depth, self->nChannels)); - %enddef - - /*M////////////////////////////////////////////////////////////////////////////////////////// - // Actual Operator Declarations - //////////////////////////////////////////////////////////////////////////////////////////M*/ - - // Arithmetic operators - %wrap_cvArith(__radd__, cvAdd); - -// special case for reverse operations -%wrap_cvArr_binaryop(__rsub__, CvArr *, cvSub(arg, self, retarg)); -%wrap_cvArr_binaryop(__rdiv__, CvArr *, cvDiv(arg, self, retarg)); -%wrap_cvArr_binaryop(__rmul__, CvArr *, cvMatMul(arg, self, retarg)); - -%wrap_cvArithS(__radd__, cvAddS); -%wrap_cvArithS(__rsub__, cvSubRS); - - -%wrap_cvScale(__rmul__, arg); -%wrap_cvScale(__rdiv__, 1.0/arg); - -%wrap_cvLogicS(__ror__, cvOrS) - %wrap_cvLogicS(__rand__, cvAndS) - %wrap_cvLogicS(__rxor__, cvXorS) - - %wrap_cvCmpS(__req__, CV_CMP_EQ); - %wrap_cvCmpS(__rgt__, CV_CMP_GT); - %wrap_cvCmpS(__rge__, CV_CMP_GE); - %wrap_cvCmpS(__rlt__, CV_CMP_LT); - %wrap_cvCmpS(__rle__, CV_CMP_LE); - %wrap_cvCmpS(__rne__, CV_CMP_NE); - - - // misc operators for octave - %wrap_cvArr_binaryop(__pow__, double, cvPow(self, retarg, arg)) - - // TODO -- other Octave operators listed in SWIG/Octave docs (www.swig.org) - - // __abs__ -- cvAbs - // __nonzero__ - // __hash__ ?? - // __repr__ -- full string representation - // __str__ -- compact representation - // __call__ -- ?? - // __len__ -- number of rows? or elements? - // __iter__ -- ?? - // __contains__ -- cvCmpS, cvMax ? - // __floordiv__ ?? - // __mul__ -- cvGEMM - // __lshift__ -- ?? - // __rshift__ -- ?? - // __pow__ -- cvPow - - // Called to implement the unary arithmetic operations (-, +, abs() and ~). - //__neg__( self) - //__pos__( self) - //__abs__( self) - //__invert__( self) - - // Called to implement the built-in functions complex(), int(), long(), and float(). Should return a value of the appropriate type. Can I abuse this to return an array of the correct type??? scipy only allows return of length 1 arrays. - // __complex__( self ) - // __int__( self ) - // __long__( self ) - // __float__( self ) - - /*M////////////////////////////////////////////////////////////////////////////////////////// - // Slice access and assignment for CvArr types - //////////////////////////////////////////////////////////////////////////////////////////M*/ - - // TODO: CvMatND - - %newobject CvMat::__paren(octave_value object); - %newobject _IplImage::__paren(octave_value object); - - // Macro to check bounds of slice and throw error if outside - %define CHECK_SLICE_BOUNDS(rect,w,h,retval) - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - if(rect.width<=0 || rect.height<=0 || - rect.width>w || rect.height>h || - rect.x<0 || rect.y<0 || - rect.x>= w || rect.y >=h){ - char errstr[256]; - // previous function already set error string - if(rect.width==0 && rect.height==0 && rect.x==0 && rect.y==0) return retval; - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - error(errstr); - return retval; - } -else{} -%enddef - -// slice access and assignment for CvMat -%extend CvMat -{ - char * __str(){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - return ""; - } - - // scalar assignment - void __paren_asgn(octave_value object, double val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } - void __paren_asgn(octave_value object, CvPoint val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __paren_asgn(octave_value object, CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __paren_asgn(octave_value object, CvScalar val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvSet(&tmp, val); - } - - // array slice assignment - void __paren_asgn(octave_value object, CvArr * arr){ - CvMat tmp, src_stub, *src; - CvRect subrect = OctSlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvGetSubRect(self, &tmp, subrect); - - // Reshape source array to fit destination - // This will be used a lot for small arrays b/c - // OctObject_to_CvArr tries to compress a 2-D octave - // array with 1-4 columns into a multichannel vector - src=cvReshape(arr, &src_stub, CV_MAT_CN(tmp.type), tmp.rows); - - cvConvert(src, &tmp); - } - - // slice access - octave_value __paren(octave_value object){ - CvMat * mat; - CvRect subrect = OctSlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, octave_value() ); - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, $descriptor(CvScalar *), 1 ); - } - switch(CV_MAT_DEPTH(type)){ - case CV_8U: - return OctLong_FromUnsignedLong( CV_MAT_ELEM(*self, uchar, subrect.y, subrect.x ) ); - case CV_8S: - return OctLong_FromLong( CV_MAT_ELEM(*self, char, subrect.y, subrect.x ) ); - case CV_16U: - return OctLong_FromUnsignedLong( CV_MAT_ELEM(*self, ushort, subrect.y, subrect.x ) ); - case CV_16S: - return OctLong_FromLong( CV_MAT_ELEM(*self, short, subrect.y, subrect.x ) ); - case CV_32S: - return OctLong_FromLong( CV_MAT_ELEM(*self, int, subrect.y, subrect.x ) ); - case CV_32F: - return OctFloat_FromDouble( CV_MAT_ELEM(*self, float, subrect.y, subrect.x) ); - case CV_64F: - return OctFloat_FromDouble( CV_MAT_ELEM(*self, double, subrect.y, subrect.x) ); - } - } - mat = (CvMat *) cvAlloc(sizeof(CvMat)); - cvGetSubRect(self, mat, subrect); - - // cvGetSubRect doesn't do this since it assumes mat lives on the stack - mat->hdr_refcount = self->hdr_refcount; - mat->refcount = self->refcount; - cvIncRefData(mat); - - return SWIG_NewPointerObj( mat, $descriptor(CvMat *), 1 ); - } - - /* - %octavecode %{ - def __iter__(self): - """ - generator function iterating through rows in matrix or elements in vector - """ - if self.rows==1: - return self.colrange() - return self.rowrange() - - def rowrange(self): - """ - generator function iterating along rows in matrix - """ - for i in range(self.rows): - yield self[i] - - def colrange(self): - """ - generator function iterating along columns in matrix - """ - for i in range(self.cols): - yield self[:,i] - - # if arg is None, octave still calls our operator overloads - # but we want - # if mat != None - # if mat == None - # to do the right thing -- so redefine __ne__ and __eq__ - - def __eq__(self, arg): - """ - __eq__(self, None) - __eq__(self, CvArr src) - __eq__(self, double val) - """ - - if not arg: - return False - return _cv.CvMat___eq__(self, arg) - def __ne__(self, arg): - """ - __ne__(self, None) - __ne__(self, CvArr src) - __ne__(self, double val) - """ - - if not arg: - return True - return _cv.CvMat___ne__(self, arg) - %} - */ - -} - -// slice access and assignment for IplImage -%extend _IplImage -{ - char * __str(){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - return ""; - } - - // scalar assignment - void __paren_asgn(octave_value object, double val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } - void __paren_asgn(octave_value object, CvPoint val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __paren_asgn(octave_value object, CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __paren_asgn(octave_value object, CvScalar val){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, val); - } - - // array slice assignment - void __paren_asgn(octave_value object, CvArr * arr){ - CvMat tmp; - CvRect subrect = OctSlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvConvert(arr, &tmp); - } - - // slice access - octave_value __paren(octave_value object){ - CvMat mat; - IplImage * im; - CvRect subrect = OctSlice_to_CvRect( self, object ); - - // return scalar if single element - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, $descriptor(CvScalar *), 1 ); - } - switch(CV_MAT_DEPTH(type)){ - case CV_8U: - return OctLong_FromUnsignedLong( CV_IMAGE_ELEM(self, uchar, subrect.y, subrect.x ) ); - case CV_8S: - return OctLong_FromLong( CV_IMAGE_ELEM(self, char, subrect.y, subrect.x ) ); - case CV_16U: - return OctLong_FromUnsignedLong( CV_IMAGE_ELEM(self, ushort, subrect.y, subrect.x ) ); - case CV_16S: - return OctLong_FromLong( CV_IMAGE_ELEM(self, short, subrect.y, subrect.x ) ); - case CV_32S: - return OctLong_FromLong( CV_IMAGE_ELEM(self, int, subrect.y, subrect.x ) ); - case CV_32F: - return OctFloat_FromDouble( CV_IMAGE_ELEM(self, float, subrect.y, subrect.x) ); - case CV_64F: - return OctFloat_FromDouble( CV_IMAGE_ELEM(self, double, subrect.y, subrect.x) ); - } - } - - // otherwise return array - im = (IplImage *) cvAlloc(sizeof(IplImage)); - cvGetSubRect(self, &mat, subrect); - im = cvGetImage(&mat, im); - return SWIG_NewPointerObj( im, $descriptor(_IplImage *), 1 ); - } -} - diff --git a/interfaces/swig/octave/cvseq.i b/interfaces/swig/octave/cvseq.i deleted file mode 100644 index f8a90d324..000000000 --- a/interfaces/swig/octave/cvseq.i +++ /dev/null @@ -1,76 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2006-08-02 Roman Stanchak - -%include "octcvseq.hpp" -%template (CvTuple_CvPoint_2) CvTuple; -%template (CvTuple_float_2) CvTuple; -%template (CvTuple_float_3) CvTuple; - -%template (CvSeq_CvPoint) CvTypedSeq; -%template (CvSeq_CvPoint2D32f) CvTypedSeq; -%template (CvSeq_CvRect) CvTypedSeq; -%template (CvSeq_CvSeq) CvTypedSeq; -%template (CvSeq_CvQuadEdge2D) CvTypedSeq; -%template (CvSeq_CvConnectedComp) CvTypedSeq; -%template (CvSeq_CvPoint_2) CvTypedSeq< CvTuple >; -%template (CvSeq_float_2) CvTypedSeq< CvTuple >; -%template (CvSeq_float_3) CvTypedSeq< CvTuple >; - -// accessor to turn edges into a typed sequence -%extend CvSubdiv2D { - CvTypedSeq * typed_edges; - CvTypedSeq * typed_edges_get(){ - return (CvTypedSeq *) self->edges; - } - void typed_edges_set( CvTypedSeq * ){ - } - /* add iterator support to octave... - %pythoncode %{ - def __iter__(self): - s = CvSeq_QuadEdge2D.cast(self) - for i in range(s.total): - yield s[i] - %} - */ -} - diff --git a/interfaces/swig/octave/cvshadow.cpp b/interfaces/swig/octave/cvshadow.cpp deleted file mode 100644 index b24c86ab4..000000000 --- a/interfaces/swig/octave/cvshadow.cpp +++ /dev/null @@ -1,85 +0,0 @@ -#include -#include -#include -#include "cvshadow.h" - -CvArr * cvCvtSeqToArray_Shadow( const CvSeq* seq, CvArr * elements, CvSlice slice){ - CvMat stub, *mat=(CvMat *)elements; - if(!CV_IS_MAT(mat)){ - mat = cvGetMat(elements, &stub); - } - cvCvtSeqToArray( seq, mat->data.ptr, slice ); - return elements; -} - -double cvArcLength_Shadow( const CvSeq * seq, CvSlice slice, int is_closed){ - return cvArcLength( seq, slice, is_closed ); -} -double cvArcLength_Shadow( const CvArr * arr, CvSlice slice, int is_closed){ - return cvArcLength( arr, slice, is_closed ); -} - -CvTypedSeq * cvHaarDetectObjects_Shadow( const CvArr* image, CvHaarClassifierCascade* cascade, - CvMemStorage* storage, double scale_factor, int min_neighbors, int flags, - CvSize min_size ) -{ - return (CvTypedSeq *) cvHaarDetectObjects( image, cascade, storage, scale_factor, - min_neighbors, flags, min_size); -} - -CvTypedSeq * cvSegmentMotion_Shadow( const CvArr* mhi, CvArr* seg_mask, CvMemStorage* storage, - double timestamp, double seg_thresh ){ - return (CvTypedSeq *) cvSegmentMotion( mhi, seg_mask, storage, timestamp, seg_thresh ); -} - -CvTypedSeq * cvApproxPoly_Shadow( const void* src_seq, int header_size, CvMemStorage* storage, - int method, double parameter, int parameter2) -{ - return (CvTypedSeq *) cvApproxPoly( src_seq, header_size, storage, method, parameter, parameter2 ); -} - -// Always return a new Mat of indices -CvMat * cvConvexHull2_Shadow( const CvArr * points, int orientation, int return_points){ - CvMat * hull; - CvMat * points_mat=(CvMat *) points; - CvSeq * points_seq=(CvSeq *) points; - int npoints, type; - - CV_FUNCNAME("cvConvexHull2"); - - __BEGIN__; - - if(CV_IS_MAT(points_mat)){ - npoints = MAX(points_mat->rows, points_mat->cols); - type = return_points ? points_mat->type : CV_32S; - } - else if(CV_IS_SEQ(points_seq)){ - npoints = points_seq->total; - type = return_points ? CV_SEQ_ELTYPE(points_seq) : 1; - } - else{ - CV_ERROR(CV_StsBadArg, "points must be a CvSeq or CvMat"); - } - CV_CALL( hull=cvCreateMat(1,npoints,type) ); - CV_CALL( cvConvexHull2(points, hull, orientation, return_points) ); - - __END__; - return hull; -} -std::vector cvSnakeImage_Shadow( const CvMat * image, std::vector points, - std::vector alpha, std::vector beta, - std::vector gamma, - CvSize win, CvTermCriteria criteria, int calc_gradient ){ - IplImage ipl_stub; - CV_FUNCNAME("cvSnakeImage_Shadow"); - - __BEGIN__; - - cvSnakeImage( cvGetImage(image, &ipl_stub), &(points[0]), points.size(), - &((alpha)[0]), &((beta)[0]), &((gamma)[0]), - (alpha.size()>1 && beta.size()>1 && gamma.size()>1 ? CV_ARRAY : CV_VALUE), - win, criteria, calc_gradient ); - - __END__; - return points; -} diff --git a/interfaces/swig/octave/cvshadow.h b/interfaces/swig/octave/cvshadow.h deleted file mode 100644 index ea226a771..000000000 --- a/interfaces/swig/octave/cvshadow.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef CV_SHADOW_H -#define CV_SHADOW_H - -#include -#include "cxtypes.h" -#include "cvtypes.h" -#include "octcvseq.hpp" - -// modify cvCvtSeqToArray to take CvArr as input instead of raw data -CvArr * cvCvtSeqToArray_Shadow( const CvSeq* seq, CvArr * elements, CvSlice slice=CV_WHOLE_SEQ); - -// formally overload ArcLength and cvContourPerimeter -double cvArcLength_Shadow( const CvSeq * seq, CvSlice slice=CV_WHOLE_SEQ, int is_closed=-1); -double cvArcLength_Shadow( const CvArr * arr, CvSlice slice=CV_WHOLE_SEQ, int is_closed=-1); - -// cvContourPerimeter is a macro, but this still works -static double cvContourPerimeter_Shadow(CvSeq * seq){ return cvContourPerimeter( seq ); } -static double cvContourPerimeter_Shadow(CvArr * arr){ return cvContourPerimeter( arr ); } - -// Return a typed sequence instead of generic CvSeq -CvTypedSeq * cvHaarDetectObjects_Shadow( const CvArr* image, CvHaarClassifierCascade* cascade, - CvMemStorage* storage, double scale_factor=1.1, int min_neighbors=3, int flags=0, - CvSize min_size=cvSize(0,0) ); -CvTypedSeq * cvSegmentMotion_Shadow( const CvArr* mhi, CvArr* seg_mask, CvMemStorage* storage, - double timestamp, double seg_thresh ); -CvTypedSeq * cvApproxPoly_Shadow( const void* src_seq, int header_size, CvMemStorage* storage, - int method, double parameter, int parameter2=0); - -// Always return a new Mat of indices -CvMat * cvConvexHull2_Shadow( const CvArr * points, int orientation=CV_CLOCKWISE, - int return_points=0); - -std::vector cvSnakeImage_Shadow( const CvMat * image, std::vector points, - std::vector alpha, std::vector beta, std::vector gamma, - CvSize win, CvTermCriteria criteria, int calc_gradient=1 ); - -#endif diff --git a/interfaces/swig/octave/cvshadow.i b/interfaces/swig/octave/cvshadow.i deleted file mode 100644 index d235b2c3b..000000000 --- a/interfaces/swig/octave/cvshadow.i +++ /dev/null @@ -1,138 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -/* This file contains custom python shadow class code for certain troublesome functions */ - -%{ -#include "cvshadow.h" -%} - -%define %myshadow(function) -%ignore function; -%rename (function) function##_Shadow; -%enddef - -%include "stl.i" - -// %ignore, %rename must come before %include -%myshadow(cvCvtSeqToArray); -%myshadow(cvArcLength); -%myshadow(cvHaarDetectObjects); -%myshadow(cvSegmentMotion); -%myshadow(cvApproxPoly); -%myshadow(cvContourPerimeter); -%myshadow(cvConvexHull2); -%newobject cvConvexHull2; // shadowed functioned always returns new object - -/* cvSnakeImage shadow uses a vector and vector */ -%template(FloatVector) std::vector; -%template(CvPointVector) std::vector; -%myshadow(cvSnakeImage); - -// eliminates need for IplImage ** typemap -%rename (cvCalcImageHist) cvCalcHist; - -// must come after %ignore, %rename -%include "cvshadow.h" - -/* return a typed CvSeq instead of generic for CvSubdiv2D edges -- see cvseq.i */ -%rename (untyped_edges) CvSubdiv2D::edges; -%ignore CvSubdiv2D::edges; -%rename (edges) CvSubdiv2D::typed_edges; - -/* Octave doesn't know what to do with these */ -%rename (asIplImage) operator IplImage*; -%rename (asCvMat) operator CvMat*; -%ignore operator const IplImage*; -%ignore operator const CvMat*; - -/* Define sequence type for functions returning sequences */ -%define %cast_seq( cvfunc, type ) -%rename (cvfunc##Untyped) cvfunc; -%enddef - -%cast_seq( cvHoughCircles, CvSeq_float_3 ); -%cast_seq( cvPyrSegmentation, CvSeq_CvConnectedComp ); -%cast_seq( cvApproxChains, CvSeq_CvPoint); -%cast_seq( cvContourFromContourTree, CvSeq_CvPoint ); -%cast_seq( cvConvexityDefects, CvSeq_CvConvexityDefect ); - -/* Special cases ... */ -%rename(cvFindContoursUntyped) cvFindContours; - -/* cvHoughLines2 returns a different type of sequence depending on its args */ -%rename (cvHoughLinesUntyped) cvHoughLines2; - -// cvPointSeqFromMat -// cvSeqPartition -// cvSeqSlice -// cvTreeToNodeSeq - -/* -// cvRelease* functions don't consider Octave's reference count -// so we get a double-free error when the reference count reaches zero. -// Instead, make these no-ops. -%define %myrelease(function) -%ignore function; -%rename (function) function##_Shadow; -%inline %{ -void function##_Shadow(PyObject * obj){ -} -%} -%enddef - -%myrelease(cvReleaseImage); -%myrelease(cvReleaseMat); -%myrelease(cvReleaseStructuringElement); -%myrelease(cvReleaseKalman); -%myrelease(cvReleaseHist); -%myrelease(cvReleaseHaarClassifierCascade); -%myrelease(cvReleasePOSITObject); -%myrelease(cvReleaseImageHeader); -%myrelease(cvReleaseMatND); -%myrelease(cvReleaseSparseMat); -%myrelease(cvReleaseMemStorage); -%myrelease(cvReleaseGraphScanner); -%myrelease(cvReleaseFileStorage); -%myrelease(cvRelease); -%myrelease(cvReleaseCapture); -%myrelease(cvReleaseVideoWriter); -*/ diff --git a/interfaces/swig/octave/highgui.i b/interfaces/swig/octave/highgui.i deleted file mode 100644 index 4cb1d782c..000000000 --- a/interfaces/swig/octave/highgui.i +++ /dev/null @@ -1,191 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University -// 2008-04-09 Xavier Delacour - -// todo remove these.. -#pragma SWIG nowarn=312,362,303,365,366,367,368,370,371,372,451,454,503 - -%{ -#include -#include -#include -#include "octhelpers.h" -#include "octcvseq.hpp" -%} - -// include octave-specific files -%include "./octtypemaps.i" -%include "exception.i" - -// the wrapping code to enable the use of Octave-based mouse callbacks -%{ - // This encapsulates the octave callback and user_data for mouse callback - struct OctCvMouseCBData { - octave_value oct_func; - octave_value user_data; - }; - // This encapsulates the octave callback and user_data for mouse callback - // C helper function which is responsible for calling - // the Octave real trackbar callback function - static void icvOctOnMouse (int event, int x, int y, - int flags, OctCvMouseCBData * param) { - octave_value oct_func(param->oct_func); - if (!oct_func.is_function() && !oct_func.is_function_handle()) - return; - - octave_value_list args; - args.append(octave_value(event)); - args.append(octave_value(x)); - args.append(octave_value(y)); - args.append(octave_value(flags)); - args.append(param->user_data); - oct_func.subsref ("(", std::list(1, args), 0); - } -%} - -// adapt cvSetMouseCallback to use octave callback -%rename (cvSetMouseCallbackOld) cvSetMouseCallback; -%rename (cvSetMouseCallback) cvSetMouseCallbackOct; -%inline { - void cvSetMouseCallbackOct( const char* window_name, octave_value on_mouse, octave_value param = octave_value() ){ - OctCvMouseCBData * oct_callback = new OctCvMouseCBData; - oct_callback->oct_func = on_mouse; - oct_callback->user_data = param; - cvSetMouseCallback( window_name, (CvMouseCallback) icvOctOnMouse, (void *) oct_callback ); - } -} - -// The following code enables trackbar callbacks from octave. Unfortunately, there is no -// way to distinguish which trackbar the event originated from, so must hard code a -// fixed number of unique c callback functions using the macros below -%{ - // C helper function which is responsible for calling - // the Octave real trackbar callback function - static void icvOctOnTrackbar( octave_value oct_cb_func, int pos) { - if (!oct_cb_func.is_function() && !oct_cb_func.is_function_handle()) - return; - - octave_value_list args; - args.append(octave_value(pos)); - oct_cb_func.subsref ("(", std::list(1, args), 0); - } - -#define ICV_OCT_MAX_CB 10 - - struct OctCvTrackbar { - CvTrackbarCallback cv_func; - octave_value oct_func; - octave_value oct_pos; - }; - - static int my_trackbar_cb_size=0; - extern OctCvTrackbar my_trackbar_cb_funcs[ICV_OCT_MAX_CB]; - %} - -// Callback table entry -%define %ICV_OCT_CB_TAB_ENTRY(idx) -{(CvTrackbarCallback) icvOctTrackbarCB##idx, octave_value(), octave_value() } -%enddef - -// Table of callbacks -%define %ICV_OCT_CB_TAB -%{ - OctCvTrackbar my_trackbar_cb_funcs[ICV_OCT_MAX_CB] = { - %ICV_OCT_CB_TAB_ENTRY(0), - %ICV_OCT_CB_TAB_ENTRY(1), - %ICV_OCT_CB_TAB_ENTRY(2), - %ICV_OCT_CB_TAB_ENTRY(3), - %ICV_OCT_CB_TAB_ENTRY(4), - %ICV_OCT_CB_TAB_ENTRY(5), - %ICV_OCT_CB_TAB_ENTRY(6), - %ICV_OCT_CB_TAB_ENTRY(7), - %ICV_OCT_CB_TAB_ENTRY(8), - %ICV_OCT_CB_TAB_ENTRY(9) - }; -%} -%enddef - -// Callback definition -%define %ICV_OCT_CB_IMPL(idx) -%{ -static void icvOctTrackbarCB##idx(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[idx].oct_func, pos); -} -%} -%enddef - -%ICV_OCT_CB_IMPL(0); -%ICV_OCT_CB_IMPL(1); -%ICV_OCT_CB_IMPL(2); -%ICV_OCT_CB_IMPL(3); -%ICV_OCT_CB_IMPL(4); -%ICV_OCT_CB_IMPL(5); -%ICV_OCT_CB_IMPL(6); -%ICV_OCT_CB_IMPL(7); -%ICV_OCT_CB_IMPL(8); -%ICV_OCT_CB_IMPL(9); - -%ICV_OCT_CB_TAB; - -// typemap to memorize the Octave callback when doing cvCreateTrackbar () -%typemap(in) CvTrackbarCallback { - if(my_trackbar_cb_size == ICV_OCT_MAX_CB){ - SWIG_exception(SWIG_IndexError, "Exceeded maximum number of trackbars"); - } - - my_trackbar_cb_size++; - - // memorize the Octave address of the callback function - my_trackbar_cb_funcs[my_trackbar_cb_size-1].oct_func = (octave_value) $input; - - // prepare to call the C function who will register the callback - $1 = my_trackbar_cb_funcs[ my_trackbar_cb_size-1 ].cv_func; -} - - -%include "../general/highgui.i" -%include "adapters.i" - diff --git a/interfaces/swig/octave/highgui_wrap.cpp b/interfaces/swig/octave/highgui_wrap.cpp deleted file mode 100644 index 1f79291f0..000000000 --- a/interfaces/swig/octave/highgui_wrap.cpp +++ /dev/null @@ -1,8961 +0,0 @@ -/* ---------------------------------------------------------------------------- - * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.40 - * - * This file is not intended to be easily readable and contains a number of - * coding conventions designed to improve portability and efficiency. Do not make - * changes to this file unless you know what you are doing--modify the SWIG - * interface file instead. - * ----------------------------------------------------------------------------- */ - -#define SWIGOCTAVE -#define SWIG_name_d "highgui" -#define SWIG_name highgui -#define OCTAVE_API_VERSION_OPTION 0 - - -#ifdef __cplusplus -/* SwigValueWrapper is described in swig.swg */ -template class SwigValueWrapper { - struct SwigMovePointer { - T *ptr; - SwigMovePointer(T *p) : ptr(p) { } - ~SwigMovePointer() { delete ptr; } - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); -public: - SwigValueWrapper() : pointer(0) { } - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } - operator T&() const { return *pointer.ptr; } - T *operator&() { return pointer.ptr; } -}; - -template T SwigValueInit() { - return T(); -} -#endif - -/* ----------------------------------------------------------------------------- - * This section contains generic SWIG labels for method/variable - * declarations/attributes, and other compiler dependent labels. - * ----------------------------------------------------------------------------- */ - -/* template workaround for compilers that cannot correctly implement the C++ standard */ -#ifndef SWIGTEMPLATEDISAMBIGUATOR -# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -# define SWIGTEMPLATEDISAMBIGUATOR template -# elif defined(__HP_aCC) -/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ -/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -# define SWIGTEMPLATEDISAMBIGUATOR template -# else -# define SWIGTEMPLATEDISAMBIGUATOR -# endif -#endif - -/* inline attribute */ -#ifndef SWIGINLINE -# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -# else -# define SWIGINLINE -# endif -#endif - -/* attribute recognised by some compilers to avoid 'unused' warnings */ -#ifndef SWIGUNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -# elif defined(__ICC) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -#endif - -#ifndef SWIG_MSC_UNSUPPRESS_4505 -# if defined(_MSC_VER) -# pragma warning(disable : 4505) /* unreferenced local function has been removed */ -# endif -#endif - -#ifndef SWIGUNUSEDPARM -# ifdef __cplusplus -# define SWIGUNUSEDPARM(p) -# else -# define SWIGUNUSEDPARM(p) p SWIGUNUSED -# endif -#endif - -/* internal SWIG method */ -#ifndef SWIGINTERN -# define SWIGINTERN static SWIGUNUSED -#endif - -/* internal inline SWIG method */ -#ifndef SWIGINTERNINLINE -# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE -#endif - -/* exporting methods */ -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -# ifndef GCC_HASCLASSVISIBILITY -# define GCC_HASCLASSVISIBILITY -# endif -#endif - -#ifndef SWIGEXPORT -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if defined(STATIC_LINKED) -# define SWIGEXPORT -# else -# define SWIGEXPORT __declspec(dllexport) -# endif -# else -# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -# define SWIGEXPORT __attribute__ ((visibility("default"))) -# else -# define SWIGEXPORT -# endif -# endif -#endif - -/* calling conventions for Windows */ -#ifndef SWIGSTDCALL -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# define SWIGSTDCALL __stdcall -# else -# define SWIGSTDCALL -# endif -#endif - -/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) -# define _CRT_SECURE_NO_DEPRECATE -#endif - -/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) -# define _SCL_SECURE_NO_DEPRECATE -#endif - - - -#include -#include -#include -#include -#include - -/* ----------------------------------------------------------------------------- - * swigrun.swg - * - * This file contains generic C API SWIG runtime support for pointer - * type checking. - * ----------------------------------------------------------------------------- */ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "4" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -# define SWIG_QUOTE_STRING(x) #x -# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -# define SWIG_TYPE_TABLE_NAME -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the SWIG runtime code. - In 99.9% of the cases, SWIG just needs to declare them as 'static'. - - But only do this if strictly necessary, ie, if you have problems - with your compiler or suchlike. -*/ - -#ifndef SWIGRUNTIME -# define SWIGRUNTIME SWIGINTERN -#endif - -#ifndef SWIGRUNTIMEINLINE -# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -/* Generic buffer size */ -#ifndef SWIG_BUFFER_SIZE -# define SWIG_BUFFER_SIZE 1024 -#endif - -/* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 - -/* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 - - -/* - Flags/methods for returning states. - - The SWIG conversion methods, as ConvertPtr, return and integer - that tells if the conversion was successful or not. And if not, - an error code can be returned (see swigerrors.swg for the codes). - - Use the following macros/flags to set or process the returning - states. - - In old versions of SWIG, code such as the following was usually written: - - if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { - // success code - } else { - //fail code - } - - Now you can be more explicit: - - int res = SWIG_ConvertPtr(obj,vptr,ty.flags); - if (SWIG_IsOK(res)) { - // success code - } else { - // fail code - } - - which is the same really, but now you can also do - - Type *ptr; - int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); - if (SWIG_IsOK(res)) { - // success code - if (SWIG_IsNewObj(res) { - ... - delete *ptr; - } else { - ... - } - } else { - // fail code - } - - I.e., now SWIG_ConvertPtr can return new objects and you can - identify the case and take care of the deallocation. Of course that - also requires SWIG_ConvertPtr to return new result values, such as - - int SWIG_ConvertPtr(obj, ptr,...) { - if () { - if () { - *ptr = ; - return SWIG_NEWOBJ; - } else { - *ptr = ; - return SWIG_OLDOBJ; - } - } else { - return SWIG_BADOBJ; - } - } - - Of course, returning the plain '0(success)/-1(fail)' still works, but you can be - more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the - SWIG errors code. - - Finally, if the SWIG_CASTRANK_MODE is enabled, the result code - allows to return the 'cast rank', for example, if you have this - - int food(double) - int fooi(int); - - and you call - - food(1) // cast rank '1' (1 -> 1.0) - fooi(1) // cast rank '0' - - just use the SWIG_AddCast()/SWIG_CheckState() -*/ - -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) - -/* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) -/* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) -/* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) -/* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) -/* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) - -/* Cast-Rank Mode */ -#if defined(SWIG_CASTRANK_MODE) -# ifndef SWIG_TypeRank -# define SWIG_TypeRank unsigned long -# endif -# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -# define SWIG_MAXCASTRANK (2) -# endif -# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) -# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) { - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; -} -SWIGINTERNINLINE int SWIG_CheckState(int r) { - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; -} -#else /* no cast-rank mode */ -# define SWIG_AddCast -# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) -#endif - - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *, int *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -/* Structure to store information on one type */ -typedef struct swig_type_info { - const char *name; /* mangled name of this type */ - const char *str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info *cast; /* linked list of types that can cast into this type */ - void *clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ -} swig_type_info; - -/* Structure to store a type and conversion function used for casting */ -typedef struct swig_cast_info { - swig_type_info *type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info *next; /* pointer to next cast in linked list */ - struct swig_cast_info *prev; /* pointer to the previous cast */ -} swig_cast_info; - -/* Structure used to store module information - * Each module generates one structure like this, and the runtime collects - * all of these structures and stores them in a circularly linked list.*/ -typedef struct swig_module_info { - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info *next; /* Pointer to next element in circularly linked list */ - swig_type_info **type_initial; /* Array of initially generated type structures */ - swig_cast_info **cast_initial; /* Array of initially generated casting structures */ - void *clientdata; /* Language specific module data */ -} swig_module_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); -} - -/* - Check type equivalence in a name list like ||... - Return 0 if not equal, 1 if equal -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Check type equivalence in a name list like ||... - Return 0 if equal, -1 if nb < tb, 1 if nb > tb -*/ -SWIGRUNTIME int -SWIG_TypeCompare(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - - -/* - Check the typename -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (!type) return NULL; - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - swig_cast_info *cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - - while (cast) { - if (!cast->converter) { - swig_type_info *tc = cast->type; - if (!tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; - } -} -SWIGRUNTIME void -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; -} - -/* - Search for a swig_type_info structure only by mangled name - Search is a O(log #types) - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_MangledTypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - swig_module_info *iter = start; - do { - if (iter->size) { - register size_t l = 0; - register size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - register size_t i = (l + r) >> 1; - const char *iname = iter->types[i]->name; - if (iname) { - register int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } else if (compare < 0) { - if (i) { - r = i - 1; - } else { - break; - } - } else if (compare > 0) { - l = i + 1; - } - } else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; -} - -/* - Search for a swig_type_info structure for either a mangled name or a human readable name. - It first searches the mangled names of the types, which is a O(log #types) - If a type is not found it then searches the human readable names, which is O(#types). - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - /* STEP 1: Search the name field using binary search */ - swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info *iter = start; - do { - register size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } - - /* neither found a match */ - return 0; -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static const char hex[17] = "0123456789abcdef"; - register const unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register char d = *(c++); - register unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 - - - - -#if OCTAVE_API_VERSION_OPTION>0 -#define USE_OCTAVE_API_VERSION OCTAVE_API_VERSION_OPTION -#else - -#include -#ifdef OCTAVE_API_VERSION_N -#define USE_OCTAVE_API_VERSION OCTAVE_API_VERSION_N - -#else // Interim hack to distinguish between Octave 3.2 and earlier versions. - -#define ComplexLU __ignore -#include -#undef ComplexLU -#ifdef octave_Complex_LU_h -#define USE_OCTAVE_API_VERSION 36 -#else -#define USE_OCTAVE_API_VERSION 37 -#endif - -#endif - -#endif - -SWIGRUNTIME bool SWIG_check_num_args(const char *func_name, int num_args, int max_args, int min_args, int varargs) { - if (num_args > max_args && !varargs) - error("function %s takes at most %i arguments", func_name, max_args); - else if (num_args < min_args) - error("function %s requires at least %i arguments", func_name, min_args); - else - return true; - return false; -} - -SWIGRUNTIME octave_value_list *SWIG_Octave_AppendOutput(octave_value_list *ovl, const octave_value &ov) { - ovl->append(ov); - return ovl; -} - -SWIGRUNTIME octave_value SWIG_ErrorType(int code) { - switch (code) { - case SWIG_MemoryError: - return "SWIG_MemoryError"; - case SWIG_IOError: - return "SWIG_IOError"; - case SWIG_RuntimeError: - return "SWIG_RuntimeError"; - case SWIG_IndexError: - return "SWIG_IndexError"; - case SWIG_TypeError: - return "SWIG_TypeError"; - case SWIG_DivisionByZero: - return "SWIG_DivisionByZero"; - case SWIG_OverflowError: - return "SWIG_OverflowError"; - case SWIG_SyntaxError: - return "SWIG_SyntaxError"; - case SWIG_ValueError: - return "SWIG_ValueError"; - case SWIG_SystemError: - return "SWIG_SystemError"; - case SWIG_AttributeError: - return "SWIG_AttributeError"; - } - return "SWIG unknown error"; -} - -SWIGRUNTIME octave_value SWIG_Error(int code, const char *msg) { - octave_value type(SWIG_ErrorType(code)); - std::string r = msg; - r += " (" + type.string_value() + ")"; - error(r.c_str()); - return octave_value(r); -} - -#define SWIG_fail goto fail - -#define SWIG_Octave_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Octave_ConvertPtrAndOwn(obj, pptr, type, flags, own) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Octave_NewPointerObj(ptr, type, flags) -#define swig_owntype int - -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Octave_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Octave_NewPackedObj(ptr, sz, type) - -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_ConvertPtr(obj, pptr, type, 0) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_NewPointerObj(ptr, type, 0) - -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Octave_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Octave_NewPackedObj(ptr, sz, type) - -#define SWIG_GetModule(clientdata) SWIG_Octave_GetModule(clientdata) -#define SWIG_SetModule(clientdata, pointer) SWIG_Octave_SetModule(clientdata,pointer); -#define SWIG_MODULE_CLIENTDATA_TYPE void* - -#define Octave_Error_Occurred() 0 -#define SWIG_Octave_AddErrorMsg(msg) {;} - -SWIGRUNTIME swig_module_info *SWIG_Octave_GetModule(void *clientdata); -SWIGRUNTIME void SWIG_Octave_SetModule(void *clientdata, swig_module_info *pointer); - -// For backward compatibility only -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) 0 - -// Runtime API implementation - -#include -#include -#include - -typedef octave_value_list(*octave_func) (const octave_value_list &, int); -class octave_swig_type; - -namespace Swig { - class Director; - - SWIGRUNTIME void swig_register_director(octave_swig_type *self, void *ptr, Director *d); - SWIGRUNTIME void swig_director_destroyed(octave_swig_type *self, Director *d); - SWIGRUNTIME void swig_director_set_self(Director *d, octave_swig_type *self); - - SWIGRUNTIME octave_base_value *swig_value_ref(octave_swig_type *ost); - SWIGRUNTIME octave_swig_type *swig_value_deref(octave_value ov); - SWIGRUNTIME octave_swig_type *swig_value_deref(const octave_base_value &ov); - - typedef std::map < void *, Director * > rtdir_map; - - SWIGINTERN rtdir_map* get_rtdir_map() { - static swig_module_info *module = 0; - if (!module) - module = SWIG_GetModule(0); - if (!module) - return 0; - if (!module->clientdata) - module->clientdata = new rtdir_map; - return (rtdir_map *) module->clientdata; - } - - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *d) { - rtdir_map* rm = get_rtdir_map(); - if (rm) - (*rm)[vptr] = d; - } - - SWIGINTERNINLINE void erase_rtdir(void *vptr) { - rtdir_map* rm = get_rtdir_map(); - if (rm) - (*rm).erase(vptr); - } - - SWIGINTERNINLINE Director *get_rtdir(void *vptr) { - rtdir_map* rm = get_rtdir_map(); - if (!rm) - return 0; - rtdir_map::const_iterator pos = rm->find(vptr); - Director *rtdir = (pos != rm->end())? pos->second : 0; - return rtdir; - } -} - - struct swig_octave_member { - const char *name; - octave_func method; - octave_func get_method; - octave_func set_method; - int flags; // 1 static, 2 global - const char *doc; - bool is_static() const { - return flags &1; - } bool is_global() const { - return flags &2; - } - }; - - struct swig_octave_class { - const char *name; - swig_type_info **type; - int director; - octave_func constructor; - const char *constructor_doc; - octave_func destructor; - const swig_octave_member *members; - const char **base_names; - const swig_type_info **base; - }; - - // octave_swig_type plays the role of both the shadow class and the class - // representation within Octave, since there is no support for classes. - // - // These should really be decoupled, with the class support added to Octave - // and the shadow class given by an m-file script. That would dramatically - // reduce the runtime complexity, and be more in line w/ other modules. - - class octave_swig_type:public octave_base_value { - struct cpp_ptr { - void *ptr; - bool destroyed; - cpp_ptr(void *_ptr):ptr(_ptr), destroyed(false) { - }}; - typedef std::pair < const swig_type_info *, cpp_ptr > type_ptr_pair; - - mutable swig_module_info *module; - - const swig_type_info *construct_type; // type of special type object - std::vector < type_ptr_pair > types; // our c++ base classes - int own; // whether we call c++ destructors when we die - - typedef std::pair < const swig_octave_member *, octave_value > member_value_pair; - typedef std::map < std::string, member_value_pair > member_map; - member_map members; - bool always_static; - - const swig_octave_member *find_member(const swig_type_info *type, const std::string &name) { - if (!type->clientdata) - return 0; - swig_octave_class *c = (swig_octave_class *) type->clientdata; - const swig_octave_member *m; - for (m = c->members; m->name; ++m) - if (m->name == name) - return m; - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - return 0; - if ((m = find_member(c->base[j], name))) - return m; - } - return 0; - } - - member_value_pair *find_member(const std::string &name, bool insert_if_not_found) { - member_map::iterator it = members.find(name); - if (it != members.end()) - return &it->second; - const swig_octave_member *m; - for (unsigned int j = 0; j < types.size(); ++j) - if ((m = find_member(types[j].first, name))) - return &members.insert(std::make_pair(name, std::make_pair(m, octave_value()))).first->second; - if (!insert_if_not_found) - return 0; - return &members[name]; - } - - const swig_type_info *find_base(const std::string &name, const swig_type_info *base) { - if (!base) { - for (unsigned int j = 0; j < types.size(); ++j) { - assert(types[j].first->clientdata); - swig_octave_class *cj = (swig_octave_class *) types[j].first->clientdata; - if (cj->name == name) - return types[j].first; - } - return 0; - } - assert(base->clientdata); - swig_octave_class *c = (swig_octave_class *) base->clientdata; - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - return 0; - assert(c->base[j]->clientdata); - swig_octave_class *cj = (swig_octave_class *) c->base[j]->clientdata; - if (cj->name == name) - return c->base[j]; - } - return 0; - } - - void load_members(const swig_octave_class* c,member_map& out) const { - for (const swig_octave_member *m = c->members; m->name; ++m) { - if (out.find(m->name) == out.end()) - out.insert(std::make_pair(m->name, std::make_pair(m, octave_value()))); - } - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - continue; - assert(c->base[j]->clientdata); - const swig_octave_class *cj = - (const swig_octave_class *) c->base[j]->clientdata; - load_members(cj,out); - } - } - - void load_members(member_map& out) const { - out=members; - for (unsigned int j = 0; j < types.size(); ++j) - if (types[j].first->clientdata) - load_members((const swig_octave_class *) types[j].first->clientdata, out); - } - - octave_value_list member_invoke(member_value_pair *m, const octave_value_list &args, int nargout) { - if (m->second.is_defined()) - return m->second.subsref("(", std::list < octave_value_list > (1, args), nargout); - else if (m->first && m->first->method) - return m->first->method(args, nargout); - error("member not defined or not invocable"); - return octave_value_list(); - } - - bool dispatch_unary_op(const std::string &symbol, octave_value &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() < 1) - return false; - ret = argout(0); - return true; - } - - bool dispatch_binary_op(const std::string &symbol, const octave_base_value &rhs, octave_value &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - args.append(make_value_hack(rhs)); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() < 1) - return false; - ret = argout(0); - return true; - } - - bool dispatch_index_op(const std::string &symbol, const octave_value_list &rhs, octave_value_list &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - args.append(rhs); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() >= 1) - ret = argout(0); - return true; - } - - octave_value_list member_deref(member_value_pair *m, const octave_value_list &args) { - if (m->second.is_defined()) - return m->second; - else if (m->first) { - if (m->first->get_method) - return m->first->get_method(args, 1); - else if (m->first->method) - return octave_value(new octave_builtin(m->first->method)); - } - error("undefined member"); - return octave_value_list(); - } - - static octave_value make_value_hack(const octave_base_value &x) { - ((octave_swig_type &) x).count++; - return octave_value((octave_base_value *) &x); - } - - octave_swig_type(const octave_swig_type &x); - octave_swig_type &operator=(const octave_swig_type &rhs); - public: - - octave_swig_type(void *_ptr = 0, const swig_type_info *_type = 0, int _own = 0, - bool _always_static = false) - : module(0), construct_type(_ptr ? 0 : _type), own(_own), - always_static(_always_static) { - if (_type || _ptr) - types.push_back(std::make_pair(_type, _ptr)); - if (_ptr) { - Swig::Director *d = Swig::get_rtdir(_ptr); - if (d) - Swig::swig_director_set_self(d, this); - } - } - - ~octave_swig_type() { - if (own) { - ++count; - for (unsigned int j = 0; j < types.size(); ++j) { - if (!types[j].first || !types[j].first->clientdata) - continue; - swig_octave_class *c = (swig_octave_class *) types[j].first->clientdata; - if (c->destructor && !types[j].second.destroyed && types[j].second.ptr) { - c->destructor(as_value(), 0); - } - } - } - for (unsigned int j = 0; j < types.size(); ++j) - Swig::erase_rtdir(types[j].second.ptr); - } - - octave_value as_value() { - ++count; - return Swig::swig_value_ref(this); - } - - void incref() { - ++count; - } - - void decref() { - if (!--count) - delete this; - } - - long swig_this() const { - if (!types.size()) - return (long) this; - return (long) types[0].second.ptr; - } - const char* help_text() const { - if (!types.size()) - return 0; - if (!types[0].first->clientdata) - return 0; - swig_octave_class *c = (swig_octave_class *) types[0].first->clientdata; - return c->constructor_doc; - } - - std::string swig_type_name() const { - // * need some way to manually name subclasses. - // * eg optional first arg to subclass(), or named_subclass() - std::string ret; - for (unsigned int j = 0; j < types.size(); ++j) { - if (j) - ret += "_"; - if (types[j].first->clientdata) { - swig_octave_class *c = (swig_octave_class *) types[j].first->clientdata; - ret += c->name; - } else - ret += types[j].first->name; - } - return ret; - } - - void merge(octave_swig_type &rhs) { - rhs.own = 0; - for (unsigned int j = 0; j < rhs.types.size(); ++j) { - assert(!rhs.types[j].second.destroyed); - Swig::Director *d = Swig::get_rtdir(rhs.types[j].second.ptr); - if (d) - Swig::swig_director_set_self(d, this); - } - types.insert(types.end(), rhs.types.begin(), rhs.types.end()); - members.insert(rhs.members.begin(), rhs.members.end()); - rhs.types.clear(); - rhs.members.clear(); - } - - void install_global() { - for (member_map::const_iterator it = members.begin(); it != members.end(); ++it) { - if (it->second.first && it->second.first->method) - install_builtin_function(it->second.first->method, it->first, - it->second.first->doc?it->second.first->doc:std::string()); - else if (it->second.second.is_defined()) { -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(it->first, true)); -#else - symbol_table::varref(it->first); - symbol_table::mark_global(it->first); -#endif - set_global_value(it->first, it->second.second); - -#if USE_OCTAVE_API_VERSION<37 - octave_swig_type *ost = Swig::swig_value_deref(it->second.second); - if (ost) { - const char* h = ost->help_text(); - if (h) { - symbol_record *sr = global_sym_tab->lookup (it->first, true); - sr->document(h); - } - } -#endif - } - } - } - - void *cast(swig_type_info *type, int *_own, int flags) { - if (_own) - *_own = own; - if (flags &SWIG_POINTER_DISOWN) - own = 0; - if (!type && types.size()) - return types[0].second.ptr; - for (unsigned int j = 0; j < types.size(); ++j) - if (type == types[j].first) - return types[j].second.ptr; - for (unsigned int j = 0; j < types.size(); ++j) { - swig_cast_info *tc = SWIG_TypeCheck(types[j].first->name, type); - if (!tc) - continue; - int newmemory = 0; - void *vptr = SWIG_TypeCast(tc, types[j].second.ptr, &newmemory); - assert(!newmemory); // newmemory handling not yet implemented - return vptr; - } - return 0; - } - - bool is_owned() const { - return own; - } - - void director_destroyed(Swig::Director *d) { - bool found = false; - for (unsigned int j = 0; j < types.size(); ++j) { - Swig::Director *dj = Swig::get_rtdir(types[j].second.ptr); - if (dj == d) { - types[j].second.destroyed = true; - found = true; - } - } - assert(found); - } - - void assign(const std::string &name, const octave_value &ov) { - members[name] = std::make_pair((const swig_octave_member *) 0, ov); - } - - void assign(const std::string &name, const swig_octave_member *m) { - members[name] = std::make_pair(m, octave_value()); - } - - octave_base_value *clone() const { - // pass-by-value is probably not desired, and is harder; - // requires calling copy constructors of contained types etc. - assert(0); - *(int *) 0 = 0; - return 0; - } - - octave_base_value *empty_clone() const { - return new octave_swig_type(); - } - - bool is_defined() const { - return true; - } - - virtual bool is_map() const { - return true; - } - - virtual octave_value subsref(const std::string &ops, const std::list < octave_value_list > &idx) { - octave_value_list ovl = subsref(ops, idx, 1); - return ovl.length()? ovl(0) : octave_value(); - } - - virtual octave_value_list subsref(const std::string &ops, const std::list < octave_value_list > &idx, int nargout) { - assert(ops.size() > 0); - assert(ops.size() == idx.size()); - - std::list < octave_value_list >::const_iterator idx_it = idx.begin(); - int skip = 0; - octave_value_list sub_ovl; - - // constructor invocation - if (ops[skip] == '(' && construct_type) { - assert(construct_type->clientdata); - swig_octave_class *c = (swig_octave_class *) construct_type->clientdata; - if (!c->constructor) { - error("cannot create instance"); - return octave_value_list(); - } - octave_value_list args; - if (c->director) - args.append(Swig::swig_value_ref(new octave_swig_type(this, 0, 0))); - args.append(*idx_it++); - ++skip; - sub_ovl = c->constructor(args, nargout); - } - // member dereference or invocation - else if (ops[skip] == '.') { - std::string subname; - const swig_type_info *base = 0; // eg, a.base.base_cpp_mem - for (;;) { - octave_value_list subname_ovl(*idx_it++); - ++skip; - assert(subname_ovl.length() == 1 && subname_ovl(0).is_string()); - subname = subname_ovl(0).string_value(); - - const swig_type_info *next_base = find_base(subname, base); - if (!next_base || skip >= (int) ops.size() || ops[skip] != '.') - break; - base = next_base; - } - - member_value_pair tmp, *m = &tmp; - if (!base || !(m->first = find_member(base, subname))) - m = find_member(subname, false); - if (!m) { - error("member not found"); - return octave_value_list(); - } - - octave_value_list args; - if (!always_static && - (!m->first || (!m->first->is_static() && !m->first->is_global()))) - args.append(as_value()); - if (skip < (int) ops.size() && ops[skip] == '(' && - ((m->first && m->first->method) || m->second.is_function() || - m->second.is_function_handle())) { - args.append(*idx_it++); - ++skip; - sub_ovl = member_invoke(m, args, nargout); - } else { - sub_ovl = member_deref(m, args); - } - } - // index operator - else { - if (ops[skip] == '(' || ops[skip] == '{') { - const char *op_name = ops[skip] == '(' ? "__paren__" : "__brace__"; - octave_value_list args; - args.append(*idx_it++); - ++skip; - if (!dispatch_index_op(op_name, args, sub_ovl)) { - error("error evaluating index operator"); - return octave_value_list(); - } - } else { - error("unsupported subsref"); - return octave_value_list(); - } - } - - if (skip >= (int) ops.size()) - return sub_ovl; - if (sub_ovl.length() < 1) { - error("bad subs ref"); - return octave_value_list(); - } - return sub_ovl(0).next_subsref(nargout, ops, idx, skip); - } - - octave_value subsasgn(const std::string &ops, const std::list < octave_value_list > &idx, const octave_value &rhs) { - assert(ops.size() > 0); - assert(ops.size() == idx.size()); - - std::list < octave_value_list >::const_iterator idx_it = idx.begin(); - int skip = 0; - - if (ops.size() > 1) { - std::list < octave_value_list >::const_iterator last = idx.end(); - --last; - std::list < octave_value_list > next_idx(idx.begin(), last); - octave_value next_ov = subsref(ops.substr(0, ops.size() - 1), next_idx); - next_ov.subsasgn(ops.substr(ops.size() - 1), std::list < octave_value_list > (1, *last), rhs); - } - - else if (ops[skip] == '(' || ops[skip] == '{') { - const char *op_name = ops[skip] == '(' ? "__paren_asgn__" : "__brace_asgn__"; - member_value_pair *m = find_member(op_name, false); - if (m) { - octave_value_list args; - args.append(as_value()); - args.append(*idx_it); - args.append(rhs); - member_invoke(m, args, 1); - } else - error("%s member not found", op_name); - } - - else if (ops[skip] == '.') { - octave_value_list subname_ovl(*idx_it++); - ++skip; - assert(subname_ovl.length() == 1 &&subname_ovl(0).is_string()); - std::string subname = subname_ovl(0).string_value(); - - member_value_pair *m = find_member(subname, true); - if (!m->first || !m->first->set_method) { - m->first = 0; - m->second = rhs; - } else if (m->first->set_method) { - octave_value_list args; - if (!m->first->is_static() && !m->first->is_global()) - args.append(as_value()); - args.append(rhs); - m->first->set_method(args, 1); - } else - error("member not assignable"); - } else - error("unsupported subsasgn"); - - return as_value(); - } - - virtual bool is_string() const { - octave_swig_type *nc_this = const_cast < octave_swig_type *>(this); - return !!nc_this->find_member("__str__", false); - } - - virtual std::string string_value(bool force = false) const { - octave_swig_type *nc_this = const_cast < octave_swig_type *>(this); - member_value_pair *m = nc_this->find_member("__str__", false); - if (!m) { - error("__str__ method not defined"); - return std::string(); - } - octave_value_list outarg = nc_this->member_invoke(m, octave_value_list(nc_this->as_value()), 1); - if (outarg.length() < 1 || !outarg(0).is_string()) { - error("__str__ method did not return a string"); - return std::string(); - } - return outarg(0).string_value(); - } - - virtual Octave_map map_value() const { - return Octave_map(); - } - - virtual string_vector map_keys() const { - member_map tmp; - load_members(tmp); - - string_vector keys(tmp.size()); - int k = 0; - for (member_map::iterator it = tmp.begin(); it != tmp.end(); ++it) - keys(k++) = it->first; - - return keys; - } - - virtual bool save_ascii (std::ostream& os) { - return true; - } - - virtual bool load_ascii (std::istream& is) { - return true; - } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) { - return true; - } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) { - return true; - } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) { - return true; - } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) { - return true; - } -#endif - - virtual octave_value convert_to_str(bool pad = false, bool force = false, char type = '"') const { - return string_value(); - } - - virtual octave_value convert_to_str_internal(bool pad, bool force, char type) const { - return string_value(); - } - - static bool dispatch_global_op(const std::string &symbol, const octave_value_list &args, octave_value &ret) { - // we assume that "op_"-prefixed functions are installed in global namespace - // (rather than any module namespace). - - octave_value fcn = get_global_value(symbol, true); - if (!fcn.is_function() && !fcn.is_function_handle()) - return false; - ret = fcn.subsref("(", std::list < octave_value_list > (1, args)); - return true; - } - - static octave_value dispatch_unary_op(const octave_base_value &x, const char *op_name) { - octave_swig_type *ost = Swig::swig_value_deref(x); - assert(ost); - - octave_value ret; - if (ost->dispatch_unary_op(std::string("__") + op_name + std::string("__"), ret)) - return ret; - std::string symbol = "op_" + ost->swig_type_name() + "_" + op_name; - octave_value_list args; - args.append(make_value_hack(x)); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - error("could not dispatch unary operator"); - return octave_value(); - } - - static octave_value dispatch_binary_op(const octave_base_value &lhs, const octave_base_value &rhs, const char *op_name) { - octave_swig_type *lhs_ost = Swig::swig_value_deref(lhs); - octave_swig_type *rhs_ost = Swig::swig_value_deref(rhs); - - octave_value ret; - if (lhs_ost && lhs_ost->dispatch_binary_op(std::string("__") + op_name + std::string("__"), rhs, ret)) - return ret; - - std::string symbol; - octave_value_list args; - args.append(make_value_hack(lhs)); - args.append(make_value_hack(rhs)); - - symbol = "op_"; - symbol += lhs_ost ? lhs_ost->swig_type_name() : lhs.type_name(); - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += rhs_ost ? rhs_ost->swig_type_name() : rhs.type_name(); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - symbol = "op_"; - symbol += lhs_ost ? lhs_ost->swig_type_name() : lhs.type_name(); - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += "any"; - if (dispatch_global_op(symbol, args, ret)) - return ret; - - symbol = "op_"; - symbol += "any"; - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += rhs_ost ? rhs_ost->swig_type_name() : rhs.type_name(); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - error("could not dispatch binary operator"); - return octave_value(); - } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const { - if (is_string()) { - os << string_value(); - return; - } - - member_map tmp; - load_members(tmp); - - os << "{" << std::endl; - for (unsigned int j = 0; j < types.size(); ++j) { - if (types[j].first->clientdata) { - const swig_octave_class *c = (const swig_octave_class *) types[j].first->clientdata; - os << " " << c->name << ", ptr = " << types[j].second.ptr << std::endl; - } else { - os << " " << types[j].first->name << ", ptr = " << types[j].second.ptr << std::endl; - } - } - for (member_map::const_iterator it = tmp.begin(); it != tmp.end(); ++it) { - if (it->second.first) { - const char *objtype = it->second.first->method ? "method" : "variable"; - const char *modifier = (it->second.first->flags &1) ? "static " : (it->second.first->flags &2) ? "global " : ""; - os << " " << it->second.first->name << " (" << modifier << objtype << ")" << std::endl; - assert(it->second.first->name == it->first); - } else { - os << " " << it->first << std::endl; - } - } - os << "}" << std::endl; - } - }; - - // Octave tries hard to preserve pass-by-value semantics. Eg, assignments - // will call clone() via make_unique() if there is more than one outstanding - // reference to the lhs, and forces the clone's reference count to 1 - // (so you can't just increment your own count and return this). - // - // One way to fix this (without modifying Octave) is to add a level of - // indirection such that clone copies ref-counted pointer and we keep - // pass-by-ref semantics (which are more natural/expected for C++ bindings). - // - // Supporting both pass-by-{ref,value} and toggling via %feature/option - // might be nice. - - class octave_swig_ref:public octave_base_value { - octave_swig_type *ptr; - public: - octave_swig_ref(octave_swig_type *_ptr = 0) - :ptr(_ptr) { } - - ~octave_swig_ref() - { if (ptr) ptr->decref(); } - - octave_swig_type *get_ptr() const - { return ptr; } - - octave_base_value *clone() const - { if (ptr) ptr->incref(); return new octave_swig_ref(ptr); } - - octave_base_value *empty_clone() const - { return new octave_swig_ref(0); } - - bool is_defined() const - { return ptr->is_defined(); } - - virtual bool is_map() const - { return ptr->is_map(); } - - virtual octave_value subsref(const std::string &ops, const std::list < octave_value_list > &idx) - { return ptr->subsref(ops, idx); } - - virtual octave_value_list subsref(const std::string &ops, const std::list < octave_value_list > &idx, int nargout) - { return ptr->subsref(ops, idx, nargout); } - - octave_value subsasgn(const std::string &ops, const std::list < octave_value_list > &idx, const octave_value &rhs) - { return ptr->subsasgn(ops, idx, rhs); } - - virtual bool is_string() const - { return ptr->is_string(); } - - virtual std::string string_value(bool force = false) const - { return ptr->string_value(force); } - - virtual Octave_map map_value() const - { return ptr->map_value(); } - - virtual string_vector map_keys() const - { return ptr->map_keys(); } - - virtual bool save_ascii (std::ostream& os) - { return ptr->save_ascii(os); } - - virtual bool load_ascii (std::istream& is) - { return ptr->load_ascii(is); } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) - { return ptr->save_binary(os, save_as_floats); } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) - { return ptr->load_binary(is, swap, fmt); } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) - { return ptr->save_hdf5(loc_id, name, save_as_floats); } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) - { return ptr->load_hdf5(loc_id, name, have_h5giterate_bug); } -#endif - - virtual octave_value convert_to_str(bool pad = false, bool force = false, char type = '"') const - { return ptr->convert_to_str(pad, force, type); } - - virtual octave_value convert_to_str_internal(bool pad, bool force, char type) const - { return ptr->convert_to_str_internal(pad, force, type); } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const - { return ptr->print(os, pr_as_read_syntax); } - - private: - DECLARE_OCTAVE_ALLOCATOR; - DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA; - }; - DEFINE_OCTAVE_ALLOCATOR(octave_swig_ref); - DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(octave_swig_ref, "swig_ref", "swig_ref"); - - class octave_swig_packed:public octave_base_value { - swig_type_info *type; - std::vector < char > buf; - public: - - octave_swig_packed(swig_type_info *_type = 0, const void *_buf = 0, size_t _buf_len = 0) - : type(_type), buf((const char*)_buf, (const char*)_buf + _buf_len) { - } - - bool copy(swig_type_info *outtype, void *ptr, size_t sz) const { - if (outtype && outtype != type) - return false; - assert(sz <= buf.size()); - std::copy(buf.begin(), buf.begin()+sz, (char*)ptr); - return true; - } - - octave_base_value *clone() const { - return new octave_swig_packed(*this); - } - - octave_base_value *empty_clone() const { - return new octave_swig_packed(); - } - - bool is_defined() const { - return true; - } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const { - os << "swig packed type: name = " << (type ? type->name : std::string()) << ", len = " << buf.size() << std::endl; - } - - - virtual bool save_ascii (std::ostream& os) { - return true; - } - - virtual bool load_ascii (std::istream& is) { - return true; - } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) { - return true; - } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) { - return true; - } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) { - return true; - } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) { - return true; - } -#endif - - private: - DECLARE_OCTAVE_ALLOCATOR; - DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA; - }; - DEFINE_OCTAVE_ALLOCATOR(octave_swig_packed); - DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(octave_swig_packed, "swig_packed", "swig_packed"); - - static octave_value_list octave_set_immutable(const octave_value_list &args, int nargout) { - error("attempt to set immutable member variable"); - return octave_value_list(); - } - - struct octave_value_ref { - const octave_value_list &ovl; - int j; - - octave_value_ref(const octave_value_list &_ovl, int _j) - :ovl(_ovl), j(_j) { } - - operator octave_value() const { - return ovl(j); - } - - octave_value operator*() const { - return ovl(j); - } - }; - - octave_value_list swig_subclass(const octave_value_list &args, int nargout) { - octave_swig_type *top = new octave_swig_type; - for (int j = 0; j < args.length(); ++j) { - if (args(j).type_id() == octave_swig_ref::static_type_id()) { - octave_swig_ref *osr = static_cast < octave_swig_ref *>(args(j).internal_rep()); - octave_swig_type *ost = osr->get_ptr(); - if (!ost->is_owned()) { - error("cannot subclass object not constructed on octave side"); - return octave_value_list(); - } - top->merge(*ost); - } else if (args(j).is_function_handle()) { - top->assign(args(j).fcn_handle_value()->fcn_name(), args(j)); - } else if (args(j).is_string()) { - if (j + 1 >= args.length()) { - error("member assignments must be of string,value form"); - return octave_value_list(); - } - top->assign(args(j).string_value(), args(j + 1)); - ++j; - } else { - error("invalid arguments to subclass"); - return octave_value_list(); - } - } - return octave_value(Swig::swig_value_ref(top)); - } - - octave_value_list swig_type(const octave_value_list &args, int nargout) { - if (args.length() != 1) { - error("swig_typeinfo must be called with only a single object"); - return octave_value_list(); - } - octave_swig_type *ost = Swig::swig_value_deref(args(0)); - if (!ost) { - error("object is not a swig_ref"); - return octave_value_list(); - } - return octave_value(ost->swig_type_name()); - } - - octave_value_list swig_typequery(const octave_value_list &args, int nargout) { - if (args.length() != 1 || !args(0).is_string()) { - error("swig_typeinfo must be called with single string argument"); - return octave_value_list(); - } - swig_module_info *module = SWIG_GetModule(0); - swig_type_info *type = SWIG_TypeQueryModule(module, module, args(0).string_value().c_str()); - if (!type) - return octave_value(""); - return octave_value(type->name); - } - - octave_value_list swig_this(const octave_value_list &args, int nargout) { - if (args.length() != 1) { - error("swig_typeinfo must be called with only a single object"); - return octave_value_list(); - } - if (args(0).is_matrix_type() && args(0).rows() == 0 && args(0).columns() == 0) - return octave_value(octave_uint64(0)); - octave_swig_type *ost = Swig::swig_value_deref(args(0)); - if (!ost) { - error("object is not a swig_ref"); - return octave_value_list(); - } - return octave_value(octave_uint64((unsigned long long) ost->swig_this())); - } - -#define SWIG_DIRECTORS - -namespace Swig { - class Director { - octave_swig_type *self; - bool disowned; - - Director(const Director &x); - Director &operator=(const Director &rhs); - public: - - Director(void *vptr):self(0), disowned(false) { - set_rtdir(vptr, this); - } - - ~Director() { - swig_director_destroyed(self, this); - if (disowned) - self->decref(); - } - - void swig_set_self(octave_swig_type *new_self) { - assert(!disowned); - self = new_self; - } - - octave_swig_type *swig_get_self() const { - return self; - } - - void swig_disown() { - if (disowned) - return; - disowned = true; - self->incref(); - } - }; - - struct DirectorTypeMismatchException { - static void raise(const char *msg) { - // ... todo - throw(DirectorTypeMismatchException()); - } - - static void raise(const octave_value &ov, const char *msg) { - // ... todo - raise(msg); - } - }; - struct DirectorPureVirtualException { - static void raise(const char *msg) { - // ... todo - throw(DirectorPureVirtualException()); - } - - static void raise(const octave_value &ov, const char *msg) { - // ... todo - raise(msg); - } - }; - -} - - SWIGRUNTIME void swig_acquire_ownership(void *vptr) { - // assert(0); - // ... todo - } - - SWIGRUNTIME void swig_acquire_ownership_array(void *vptr) { - // assert(0); - // ... todo - } - - SWIGRUNTIME void swig_acquire_ownership_obj(void *vptr, int own) { - // assert(0); - // ... todo - } - - namespace Swig { - SWIGRUNTIME void swig_director_destroyed(octave_swig_type *self, Director *d) { - self->director_destroyed(d); - } - - SWIGRUNTIME void swig_director_set_self(Director *d, octave_swig_type *self) { - d->swig_set_self(self); - } - - SWIGRUNTIME octave_base_value *swig_value_ref(octave_swig_type *ost) { - return new octave_swig_ref(ost); - } - - SWIGRUNTIME octave_swig_type *swig_value_deref(octave_value ov) { - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - return swig_value_deref(*ov.internal_rep()); - } - - SWIGRUNTIME octave_swig_type *swig_value_deref(const octave_base_value &ov) { - if (ov.type_id() != octave_swig_ref::static_type_id()) - return 0; - const octave_swig_ref *osr = static_cast < const octave_swig_ref *>(&ov); - return osr->get_ptr(); - } - - } - -#define swig_unary_op(name) \ -SWIGRUNTIME octave_value swig_unary_op_##name(const octave_base_value &x) { \ - return octave_swig_type::dispatch_unary_op(x,#name); \ -} -#define swig_binary_op(name) \ -SWIGRUNTIME octave_value swig_binary_op_##name(const octave_base_value&lhs,const octave_base_value &rhs) { \ - return octave_swig_type::dispatch_binary_op(lhs,rhs,#name); \ -} -#define swigreg_unary_op(name) \ -if (!octave_value_typeinfo::lookup_unary_op(octave_value::op_##name,tid)) \ -octave_value_typeinfo::register_unary_op(octave_value::op_##name,tid,swig_unary_op_##name); -#define swigreg_binary_op(name) \ -if (!octave_value_typeinfo::lookup_binary_op(octave_value::op_##name,tid1,tid2)) \ -octave_value_typeinfo::register_binary_op(octave_value::op_##name,tid1,tid2,swig_binary_op_##name); - - swig_unary_op(not); - swig_unary_op(uplus); - swig_unary_op(uminus); - swig_unary_op(transpose); - swig_unary_op(hermitian); - swig_unary_op(incr); - swig_unary_op(decr); - - swig_binary_op(add); - swig_binary_op(sub); - swig_binary_op(mul); - swig_binary_op(div); - swig_binary_op(pow); - swig_binary_op(ldiv); - swig_binary_op(lshift); - swig_binary_op(rshift); - swig_binary_op(lt); - swig_binary_op(le); - swig_binary_op(eq); - swig_binary_op(ge); - swig_binary_op(gt); - swig_binary_op(ne); - swig_binary_op(el_mul); - swig_binary_op(el_div); - swig_binary_op(el_pow); - swig_binary_op(el_ldiv); - swig_binary_op(el_and); - swig_binary_op(el_or); - - SWIGRUNTIME void SWIG_InstallUnaryOps(int tid) { - swigreg_unary_op(not); - swigreg_unary_op(uplus); - swigreg_unary_op(uminus); - swigreg_unary_op(transpose); - swigreg_unary_op(hermitian); - swigreg_unary_op(incr); - swigreg_unary_op(decr); - } - SWIGRUNTIME void SWIG_InstallBinaryOps(int tid1, int tid2) { - swigreg_binary_op(add); - swigreg_binary_op(sub); - swigreg_binary_op(mul); - swigreg_binary_op(div); - swigreg_binary_op(pow); - swigreg_binary_op(ldiv); - swigreg_binary_op(lshift); - swigreg_binary_op(rshift); - swigreg_binary_op(lt); - swigreg_binary_op(le); - swigreg_binary_op(eq); - swigreg_binary_op(ge); - swigreg_binary_op(gt); - swigreg_binary_op(ne); - swigreg_binary_op(el_mul); - swigreg_binary_op(el_div); - swigreg_binary_op(el_pow); - swigreg_binary_op(el_ldiv); - swigreg_binary_op(el_and); - swigreg_binary_op(el_or); - } - SWIGRUNTIME void SWIG_InstallOps(int tid) { - // here we assume that tid are conseq integers increasing from zero, and - // that our tid is the last one. might be better to have explicit string - // list of types we should bind to, and use lookup_type to resolve their tid. - - SWIG_InstallUnaryOps(tid); - SWIG_InstallBinaryOps(tid, tid); - for (int j = 0; j < tid; ++j) { - SWIG_InstallBinaryOps(j, tid); - SWIG_InstallBinaryOps(tid, j); - } - } - -SWIGRUNTIME octave_value SWIG_Octave_NewPointerObj(void *ptr, swig_type_info *type, int flags) { - int own = (flags &SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - - Swig::Director *d = Swig::get_rtdir(ptr); - if (d && d->swig_get_self()) - return d->swig_get_self()->as_value(); - return Swig::swig_value_ref(new octave_swig_type(ptr, type, own)); -} - -SWIGRUNTIME int SWIG_Octave_ConvertPtrAndOwn(octave_value ov, void **ptr, swig_type_info *type, int flags, int *own) { - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - if (!ov.is_defined() || - (ov.is_matrix_type() && ov.rows() == 0 && ov.columns() == 0) ) { - if (ptr) - *ptr = 0; - return SWIG_OK; - } - if (ov.type_id() != octave_swig_ref::static_type_id()) - return SWIG_ERROR; - octave_swig_ref *osr = static_cast < octave_swig_ref *>(ov.internal_rep()); - octave_swig_type *ost = osr->get_ptr(); - void *vptr = ost->cast(type, own, flags); - if (!vptr) - return SWIG_ERROR; - if (ptr) - *ptr = vptr; - return SWIG_OK; -} - -SWIGRUNTIME octave_value SWIG_Octave_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { - return new octave_swig_packed(type, (char *) ptr, sz); -} - -SWIGRUNTIME int SWIG_Octave_ConvertPacked(const octave_value &ov, void *ptr, size_t sz, swig_type_info *type) { - if (!ov.is_defined()) - return SWIG_ERROR; - if (ov.type_id() != octave_swig_packed::static_type_id()) - return SWIG_ERROR; - octave_swig_packed *ost = static_cast < octave_swig_packed *>(ov.internal_rep()); - return ost->copy(type, (char *) ptr, sz) ? SWIG_OK : SWIG_ERROR; -} - -void SWIG_Octave_SetConstant(octave_swig_type *module_ns, const std::string &name, const octave_value &ov) { - module_ns->assign(name, ov); -} - -SWIGRUNTIME swig_module_info *SWIG_Octave_GetModule(void *clientdata) { - octave_value ov = get_global_value("__SWIG_MODULE__" SWIG_TYPE_TABLE_NAME SWIG_RUNTIME_VERSION, true); - if (!ov.is_defined() || - ov.type_id() != octave_swig_packed::static_type_id()) - return 0; - const octave_swig_packed* osp = - static_cast < const octave_swig_packed *> (ov.internal_rep()); - swig_module_info *pointer = 0; - osp->copy(0, &pointer, sizeof(swig_module_info *)); - return pointer; -} - -SWIGRUNTIME void SWIG_Octave_SetModule(void *clientdata, swig_module_info *pointer) { - octave_value ov = new octave_swig_packed(0, &pointer, sizeof(swig_module_info *)); - const char *module_var = "__SWIG_MODULE__" SWIG_TYPE_TABLE_NAME SWIG_RUNTIME_VERSION; -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(module_var, true)); -#else - symbol_table::varref(module_var); - symbol_table::mark_global(module_var); -#endif - set_global_value(module_var, ov); -} - - - -#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) - -#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else - - - - #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -#define SWIGTYPE_p_Cv32suf swig_types[0] -#define SWIGTYPE_p_Cv64suf swig_types[1] -#define SWIGTYPE_p_CvAttrList swig_types[2] -#define SWIGTYPE_p_CvAvgComp swig_types[3] -#define SWIGTYPE_p_CvBox2D swig_types[4] -#define SWIGTYPE_p_CvCapture swig_types[5] -#define SWIGTYPE_p_CvChain swig_types[6] -#define SWIGTYPE_p_CvChainPtReader swig_types[7] -#define SWIGTYPE_p_CvConDensation swig_types[8] -#define SWIGTYPE_p_CvConnectedComp swig_types[9] -#define SWIGTYPE_p_CvContour swig_types[10] -#define SWIGTYPE_p_CvContourTree swig_types[11] -#define SWIGTYPE_p_CvConvexityDefect swig_types[12] -#define SWIGTYPE_p_CvFileNode swig_types[13] -#define SWIGTYPE_p_CvFileStorage swig_types[14] -#define SWIGTYPE_p_CvFilter swig_types[15] -#define SWIGTYPE_p_CvFont swig_types[16] -#define SWIGTYPE_p_CvGenericHash swig_types[17] -#define SWIGTYPE_p_CvGraph swig_types[18] -#define SWIGTYPE_p_CvGraphEdge swig_types[19] -#define SWIGTYPE_p_CvGraphScanner swig_types[20] -#define SWIGTYPE_p_CvGraphVtx swig_types[21] -#define SWIGTYPE_p_CvGraphVtx2D swig_types[22] -#define SWIGTYPE_p_CvHaarClassifier swig_types[23] -#define SWIGTYPE_p_CvHaarClassifierCascade swig_types[24] -#define SWIGTYPE_p_CvHaarFeature swig_types[25] -#define SWIGTYPE_p_CvHaarStageClassifier swig_types[26] -#define SWIGTYPE_p_CvHidHaarClassifierCascade swig_types[27] -#define SWIGTYPE_p_CvHistogram swig_types[28] -#define SWIGTYPE_p_CvHuMoments swig_types[29] -#define SWIGTYPE_p_CvKalman swig_types[30] -#define SWIGTYPE_p_CvLineIterator swig_types[31] -#define SWIGTYPE_p_CvMSERParams swig_types[32] -#define SWIGTYPE_p_CvMat swig_types[33] -#define SWIGTYPE_p_CvMatND swig_types[34] -#define SWIGTYPE_p_CvMatrix3 swig_types[35] -#define SWIGTYPE_p_CvMemBlock swig_types[36] -#define SWIGTYPE_p_CvMemStorage swig_types[37] -#define SWIGTYPE_p_CvMemStoragePos swig_types[38] -#define SWIGTYPE_p_CvModuleInfo swig_types[39] -#define SWIGTYPE_p_CvMoments swig_types[40] -#define SWIGTYPE_p_CvNArrayIterator swig_types[41] -#define SWIGTYPE_p_CvNextEdgeType swig_types[42] -#define SWIGTYPE_p_CvPOSITObject swig_types[43] -#define SWIGTYPE_p_CvPluginFuncInfo swig_types[44] -#define SWIGTYPE_p_CvPoint swig_types[45] -#define SWIGTYPE_p_CvPoint2D32f swig_types[46] -#define SWIGTYPE_p_CvPoint2D64f swig_types[47] -#define SWIGTYPE_p_CvPoint3D32f swig_types[48] -#define SWIGTYPE_p_CvPoint3D64f swig_types[49] -#define SWIGTYPE_p_CvQuadEdge2D swig_types[50] -#define SWIGTYPE_p_CvRNG_Wrapper swig_types[51] -#define SWIGTYPE_p_CvRect swig_types[52] -#define SWIGTYPE_p_CvSURFParams swig_types[53] -#define SWIGTYPE_p_CvSURFPoint swig_types[54] -#define SWIGTYPE_p_CvScalar swig_types[55] -#define SWIGTYPE_p_CvSeq swig_types[56] -#define SWIGTYPE_p_CvSeqBlock swig_types[57] -#define SWIGTYPE_p_CvSeqReader swig_types[58] -#define SWIGTYPE_p_CvSeqWriter swig_types[59] -#define SWIGTYPE_p_CvSet swig_types[60] -#define SWIGTYPE_p_CvSetElem swig_types[61] -#define SWIGTYPE_p_CvSize swig_types[62] -#define SWIGTYPE_p_CvSize2D32f swig_types[63] -#define SWIGTYPE_p_CvSlice swig_types[64] -#define SWIGTYPE_p_CvSparseMat swig_types[65] -#define SWIGTYPE_p_CvSparseMatIterator swig_types[66] -#define SWIGTYPE_p_CvSparseNode swig_types[67] -#define SWIGTYPE_p_CvStarDetectorParams swig_types[68] -#define SWIGTYPE_p_CvStarKeypoint swig_types[69] -#define SWIGTYPE_p_CvStereoBMState swig_types[70] -#define SWIGTYPE_p_CvStereoGCState swig_types[71] -#define SWIGTYPE_p_CvString swig_types[72] -#define SWIGTYPE_p_CvStringHashNode swig_types[73] -#define SWIGTYPE_p_CvSubdiv2D swig_types[74] -#define SWIGTYPE_p_CvSubdiv2DEdge_Wrapper swig_types[75] -#define SWIGTYPE_p_CvSubdiv2DPoint swig_types[76] -#define SWIGTYPE_p_CvSubdiv2DPointLocation swig_types[77] -#define SWIGTYPE_p_CvTermCriteria swig_types[78] -#define SWIGTYPE_p_CvTreeNodeIterator swig_types[79] -#define SWIGTYPE_p_CvTypeInfo swig_types[80] -#define SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t swig_types[81] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t swig_types[82] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint_t swig_types[83] -#define SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t swig_types[84] -#define SWIGTYPE_p_CvTypedSeqT_CvRect_t swig_types[85] -#define SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t swig_types[86] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t swig_types[87] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t swig_types[88] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t swig_types[89] -#define SWIGTYPE_p_CvVideoWriter swig_types[90] -#define SWIGTYPE_p_CvvImage swig_types[91] -#define SWIGTYPE_p__IplConvKernel swig_types[92] -#define SWIGTYPE_p__IplConvKernelFP swig_types[93] -#define SWIGTYPE_p__IplImage swig_types[94] -#define SWIGTYPE_p__IplROI swig_types[95] -#define SWIGTYPE_p__IplTileInfo swig_types[96] -#define SWIGTYPE_p_allocator_type swig_types[97] -#define SWIGTYPE_p_char swig_types[98] -#define SWIGTYPE_p_difference_type swig_types[99] -#define SWIGTYPE_p_f_int__void swig_types[100] -#define SWIGTYPE_p_f_int_int_int_int_p_void__void swig_types[101] -#define SWIGTYPE_p_f_int_p_void__void swig_types[102] -#define SWIGTYPE_p_int swig_types[103] -#define SWIGTYPE_p_int64_t swig_types[104] -#define SWIGTYPE_p_octave_value swig_types[105] -#define SWIGTYPE_p_p_CvCapture swig_types[106] -#define SWIGTYPE_p_p_CvVideoWriter swig_types[107] -#define SWIGTYPE_p_p_char swig_types[108] -#define SWIGTYPE_p_signed_char swig_types[109] -#define SWIGTYPE_p_size_t swig_types[110] -#define SWIGTYPE_p_size_type swig_types[111] -#define SWIGTYPE_p_uint64_t swig_types[112] -#define SWIGTYPE_p_unsigned_char swig_types[113] -#define SWIGTYPE_p_unsigned_short swig_types[114] -#define SWIGTYPE_p_value_type swig_types[115] -#define SWIGTYPE_p_void swig_types[116] -static swig_type_info *swig_types[118]; -static swig_module_info swig_module = {swig_types, 117, 0, 0, 0, 0}; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) -#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) - -/* -------- TYPES TABLE (END) -------- */ - - -#define SWIGVERSION 0x010340 -#define SWIG_VERSION SWIGVERSION - - -#define SWIG_as_voidptr(a) (void *)((const void *)(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a)) - - -#include - - -#include -#include -#include -#include "octhelpers.h" -#include "octcvseq.hpp" - - - - - static inline bool OctSwigObject_Check(const octave_value& ov) { - return ov.type_id()==octave_swig_ref::static_type_id(); - } - - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg); - static CvArr * OctSequence_to_CvArr( octave_value obj ); - - // convert a octave sequence/array/list object into a c-array -#define OctObject_AsArrayImpl(func, ctype, ptype) \ - int func(octave_value obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(OctNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = OctObject_As##ptype( obj ); \ - } \ - else if(OctList_Check(obj) || OctTuple_Check(obj)){ \ - int seqsize = OctSequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - error("OctObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - error("OctObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - error("OctObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(OctObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - error("could not convert to CvPoint"); - return cvPoint(0,0); - } - - static CvPoint2D32f OctObject_to_CvPoint2D32f(octave_value obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(OctObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - error("could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); - } - - static CvScalar OctObject_to_CvScalar(octave_value obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(OctObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); - } - - // if octave sequence type, convert to CvMat or CvMatND - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg){ - CvArr * cvarr; - *freearg = false; - - // check if OpenCV type - if ( OctSwigObject_Check(obj) ){ - SWIG_ConvertPtr(obj, &cvarr, 0, SWIG_POINTER_EXCEPTION); - } - else if (OctList_Check(obj) || OctTuple_Check(obj)){ - cvarr = OctSequence_to_CvArr( obj ); - *freearg = (cvarr != NULL); - } - else if (OctLong_Check(obj) && OctLong_AsLong(obj)==0){ - return NULL; - } - else { - SWIG_ConvertPtr(obj, (void**)&cvarr, 0, SWIG_POINTER_EXCEPTION); - } - return cvarr; - } - - static int OctObject_GetElemType(octave_value obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(OctTuple_Check(obj) || OctList_Check(obj)) return CV_MAKE_TYPE(CV_32F, OctSequence_Size( obj )); - if(OctLong_Check(obj)) return CV_32S; - return CV_32F; - } - - // Would like this to convert Octave lists to CvMat - // Also lists of CvPoints, CvScalars, CvMats? etc - static CvArr * OctSequence_to_CvArr( octave_value obj ){ - int dims[CV_MAX_DIM] = {1,1,1}; - int ndim=0; - int cvtype; - octave_value item; - - // figure out dimensions - for(item = obj; - (OctTuple_Check(item) || OctList_Check(item)); - item = OctSequence_GetItem(item, 0)) - { - dims[ndim] = OctSequence_Size( item ); - ndim++; - } - - if(ndim==0){ - error("Cannot convert an empty octave object to a CvArr"); - return NULL; - } - - cvtype = OctObject_GetElemType(item); - // collapse last dim into NCH if we found a single channel, but the last dim is <=3 - if(CV_MAT_CN(cvtype)==1 && dims[ndim-1]>1 && dims[ndim-1]<4){ - cvtype=CV_MAKE_TYPE(cvtype, dims[ndim-1]); - dims[ndim-1]=1; - ndim--; - } - - if(cvtype==-1){ - error("Could not determine OpenCV element type of Octave sequence"); - return NULL; - } - - // CvMat - if(ndim<=2){ - CvMat *m = cvCreateMat(dims[0], dims[1], cvtype); - for(int i=0; i 1 ){ - // double check size - assert((OctTuple_Check(rowobj) || OctList_Check(rowobj)) && - OctSequence_Size(rowobj) == dims[1]); - - for(int j=0; j 3"); - return NULL; - } - - - // Wrapper class - class CvRNG_Wrapper { - private: - CvRNG m_val; - public: - CvRNG_Wrapper( const CvRNG & val ) : - m_val(val) - { - } - CvRNG * ptr() { return &m_val; } - CvRNG & ref() { return m_val; } - bool operator==(const CvRNG_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvRNG_Wrapper & x){ - return m_val!=x.m_val; - } - }; - - -SWIGINTERNINLINE octave_value - SWIG_From_bool (bool value) -{ - return octave_value(value); -} - - - // Wrapper class - class CvSubdiv2DEdge_Wrapper { - private: - CvSubdiv2DEdge m_val; - public: - CvSubdiv2DEdge_Wrapper( const CvSubdiv2DEdge & val ) : - m_val(val) - { - } - CvSubdiv2DEdge * ptr() { return &m_val; } - CvSubdiv2DEdge & ref() { return m_val; } - bool operator==(const CvSubdiv2DEdge_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvSubdiv2DEdge_Wrapper & x){ - return m_val!=x.m_val; - } - }; - - - SWIGINTERN int SWIG_AsVal_unsigned_SS_long (const octave_value& ov, unsigned long* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (ov.is_double_type()||ov.is_single_type()) { - double v=ov.double_value(); - if (v<0) - return SWIG_OverflowError; - if (v!=floor(v)) - return SWIG_TypeError; - } - if (ov.is_int8_type()||ov.is_int16_type()|| - ov.is_int32_type()) { - long v=ov.long_value(); - if (v<0) - return SWIG_OverflowError; - } - if (ov.is_int64_type()) { - long long v=ov.int64_scalar_value().value(); - if (v<0) - return SWIG_OverflowError; - } - if (val) - *val = ov.ulong_value(); - return SWIG_OK; - } - - -SWIGINTERNINLINE int -SWIG_AsVal_size_t (octave_value obj, size_t *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = (size_t)(v); - return res; -} - - - // This encapsulates the octave callback and user_data for mouse callback - struct OctCvMouseCBData { - octave_value oct_func; - octave_value user_data; - }; - // This encapsulates the octave callback and user_data for mouse callback - // C helper function which is responsible for calling - // the Octave real trackbar callback function - static void icvOctOnMouse (int event, int x, int y, - int flags, OctCvMouseCBData * param) { - octave_value oct_func(param->oct_func); - if (!oct_func.is_function() && !oct_func.is_function_handle()) - return; - - octave_value_list args; - args.append(octave_value(event)); - args.append(octave_value(x)); - args.append(octave_value(y)); - args.append(octave_value(flags)); - args.append(param->user_data); - oct_func.subsref ("(", std::list(1, args), 0); - } - - - void cvSetMouseCallbackOct( const char* window_name, octave_value on_mouse, octave_value param = octave_value() ){ - OctCvMouseCBData * oct_callback = new OctCvMouseCBData; - oct_callback->oct_func = on_mouse; - oct_callback->user_data = param; - cvSetMouseCallback( window_name, (CvMouseCallback) icvOctOnMouse, (void *) oct_callback ); - } - - -SWIGINTERN int -SWIG_AsCharPtrAndSize(octave_value ov, char** cptr, size_t* psize, int *alloc) -{ - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - if (!ov.is_string()) - return SWIG_TypeError; - - std::string str=ov.string_value(); - size_t len=str.size(); - char* cstr=(char*)str.c_str(); - if (alloc) { - *cptr = (char*)(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); - *alloc = SWIG_NEWOBJ; - } else if (cptr) - *cptr = cstr; - if (psize) - *psize = len + 1; - return SWIG_OK; -} - - - - - - // C helper function which is responsible for calling - // the Octave real trackbar callback function - static void icvOctOnTrackbar( octave_value oct_cb_func, int pos) { - if (!oct_cb_func.is_function() && !oct_cb_func.is_function_handle()) - return; - - octave_value_list args; - args.append(octave_value(pos)); - oct_cb_func.subsref ("(", std::list(1, args), 0); - } - -#define ICV_OCT_MAX_CB 10 - - struct OctCvTrackbar { - CvTrackbarCallback cv_func; - octave_value oct_func; - octave_value oct_pos; - }; - - static int my_trackbar_cb_size=0; - extern OctCvTrackbar my_trackbar_cb_funcs[ICV_OCT_MAX_CB]; - - -static void icvOctTrackbarCB0(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[0].oct_func, pos); -} - - -static void icvOctTrackbarCB1(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[1].oct_func, pos); -} - - -static void icvOctTrackbarCB2(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[2].oct_func, pos); -} - - -static void icvOctTrackbarCB3(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[3].oct_func, pos); -} - - -static void icvOctTrackbarCB4(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[4].oct_func, pos); -} - - -static void icvOctTrackbarCB5(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[5].oct_func, pos); -} - - -static void icvOctTrackbarCB6(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[6].oct_func, pos); -} - - -static void icvOctTrackbarCB7(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[7].oct_func, pos); -} - - -static void icvOctTrackbarCB8(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[8].oct_func, pos); -} - - -static void icvOctTrackbarCB9(int pos){ - icvOctOnTrackbar(my_trackbar_cb_funcs[9].oct_func, pos); -} - - - OctCvTrackbar my_trackbar_cb_funcs[ICV_OCT_MAX_CB] = { - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB0, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB1, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB2, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB3, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB4, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB5, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB6, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB7, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB8, octave_value(), octave_value() } -/*@SWIG@*/, - /*@SWIG:highgui.i,129,%ICV_OCT_CB_TAB_ENTRY@*/ -{(CvTrackbarCallback) icvOctTrackbarCB9, octave_value(), octave_value() } -/*@SWIG@*/ - }; - - -#include "highgui.h" - - -namespace swig { - struct stop_iteration { - }; - - struct OctSwigIterator { - private: - octave_value _seq; - - protected: - OctSwigIterator(octave_value seq) : _seq(seq) - { - } - - public: - virtual ~OctSwigIterator() {} - - virtual octave_value value() const = 0; - - virtual OctSwigIterator *incr(size_t n = 1) = 0; - - virtual OctSwigIterator *decr(size_t n = 1) - { - throw stop_iteration(); - } - - virtual ptrdiff_t distance(const OctSwigIterator &x) const - { - throw std::invalid_argument("operation not supported"); - } - - virtual bool equal (const OctSwigIterator &x) const - { - throw std::invalid_argument("operation not supported"); - } - - virtual OctSwigIterator *copy() const = 0; - - octave_value next() - { - octave_value obj = value(); - incr(); - return obj; - } - - octave_value previous() - { - decr(); - return value(); - } - - OctSwigIterator *advance(ptrdiff_t n) - { - return (n > 0) ? incr(n) : decr(-n); - } - - bool operator == (const OctSwigIterator& x) const - { - return equal(x); - } - - bool operator != (const OctSwigIterator& x) const - { - return ! operator==(x); - } - - OctSwigIterator* operator ++ () { - incr(); - return this; - } - - OctSwigIterator* operator -- () { - decr(); - return this; - } - - OctSwigIterator* operator + (ptrdiff_t n) const - { - return copy()->advance(n); - } - - OctSwigIterator* operator - (ptrdiff_t n) const - { - return copy()->advance(-n); - } - - ptrdiff_t operator - (const OctSwigIterator& x) const - { - return x.distance(*this); - } - - static swig_type_info* descriptor() { - static int init = 0; - static swig_type_info* desc = 0; - if (!init) { - desc = SWIG_TypeQuery("swig::OctSwigIterator *"); - init = 1; - } - return desc; - } - }; -} - - -namespace swig { - template - struct noconst_traits { - typedef Type noconst_type; - }; - - template - struct noconst_traits { - typedef Type noconst_type; - }; - - /* - type categories - */ - struct pointer_category { }; - struct value_category { }; - - /* - General traits that provides type_name and type_info - */ - template struct traits { }; - - template - inline const char* type_name() { - return traits::noconst_type >::type_name(); - } - - template - struct traits_info { - static swig_type_info *type_query(std::string name) { - name += " *"; - return SWIG_TypeQuery(name.c_str()); - } - static swig_type_info *type_info() { - static swig_type_info *info = type_query(type_name()); - return info; - } - }; - - template - inline swig_type_info *type_info() { - return traits_info::type_info(); - } - - /* - Partial specialization for pointers - */ - template struct traits { - typedef pointer_category category; - static std::string make_ptr_name(const char* name) { - std::string ptrname = name; - ptrname += " *"; - return ptrname; - } - static const char* type_name() { - static std::string name = make_ptr_name(swig::type_name()); - return name.c_str(); - } - }; - - template - struct traits_as { }; - - template - struct traits_check { }; - -} - - -namespace swig { -// Traits that provides the from method - template struct traits_from_ptr { - static octave_value from(Type *val, int owner = 0) { - return SWIG_NewPointerObj(val, type_info(), owner); - } - }; - - template struct traits_from { - static octave_value from(const Type& val) { - return traits_from_ptr::from(new Type(val), 1); - } - }; - - template struct traits_from { - static octave_value from(Type* val) { - return traits_from_ptr::from(val, 0); - } - }; - - template struct traits_from { - static octave_value from(const Type* val) { - return traits_from_ptr::from(const_cast(val), 0); - } - }; - - - template - inline octave_value from(const Type& val) { - return traits_from::from(val); - } - - template - inline octave_value from_ptr(Type* val, int owner) { - return traits_from_ptr::from(val, owner); - } - - // Traits that provides the asval/as/check method - template - struct traits_asptr { - static int asptr(const octave_value& obj, Type **val) { - Type *p; - int res = SWIG_ConvertPtr(obj, (void**)&p, type_info(), 0); - if (SWIG_IsOK(res)) { - if (val) *val = p; - } - return res; - } - }; - - template - inline int asptr(const octave_value& obj, Type **vptr) { - return traits_asptr::asptr(obj, vptr); - } - - template - struct traits_asval { - static int asval(const octave_value& obj, Type *val) { - if (val) { - Type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (!SWIG_IsOK(res)) return res; - if (p) { - typedef typename noconst_traits::noconst_type noconst_type; - *(const_cast(val)) = *p; - if (SWIG_IsNewObj(res)){ - delete p; - res = SWIG_DelNewMask(res); - } - return res; - } else { - return SWIG_ERROR; - } - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template struct traits_asval { - static int asval(const octave_value& obj, Type **val) { - if (val) { - typedef typename noconst_traits::noconst_type noconst_type; - noconst_type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (SWIG_IsOK(res)) { - *(const_cast(val)) = p; - } - return res; - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template - inline int asval(const octave_value& obj, Type *val) { - return traits_asval::asval(obj, val); - } - - template - struct traits_as { - static Type as(const octave_value& obj, bool throw_error) { - Type v; - int res = asval(obj, &v); - if (!obj.is_defined() || !SWIG_IsOK(res)) { - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - } - return v; - } - }; - - template - struct traits_as { - static Type as(const octave_value& obj, bool throw_error) { - Type *v = 0; - int res = traits_asptr::asptr(obj, &v); - if (SWIG_IsOK(res) && v) { - if (SWIG_IsNewObj(res)) { - Type r(*v); - delete v; - return r; - } else { - return *v; - } - } else { - // Uninitialized return value, no Type() constructor required. - static Type *v_def = (Type*) malloc(sizeof(Type)); - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - memset(v_def,0,sizeof(Type)); - return *v_def; - } - } - }; - - template - struct traits_as { - static Type* as(const octave_value& obj, bool throw_error) { - Type *v = 0; - int res = traits_asptr::asptr(obj, &v); - if (SWIG_IsOK(res)) { - return v; - } else { - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - return 0; - } - } - }; - - template - inline Type as(const octave_value& obj, bool te = false) { - return traits_as::category>::as(obj, te); - } - - template - struct traits_check { - static bool check(const octave_value& obj) { - int res = asval(obj, (Type *)(0)); - return SWIG_IsOK(res) ? true : false; - } - }; - - template - struct traits_check { - static bool check(const octave_value& obj) { - int res = asptr(obj, (Type **)(0)); - return SWIG_IsOK(res) ? true : false; - } - }; - - template - inline bool check(const octave_value& obj) { - return traits_check::category>::check(obj); - } -} - - -#include - -namespace std { - template <> - struct less : public binary_function - { - bool - operator()(const octave_value& v, const octave_value& w) const - { - octave_value res = do_binary_op(octave_value::op_le,v,w); - return res.is_true(); - } - }; -} - -namespace swig { - inline size_t - check_index(ptrdiff_t i, size_t size, bool insert = false) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) - return (size_t) (i + size); - } else if ( (size_t) i < size ) { - return (size_t) i; - } else if (insert && ((size_t) i == size)) { - return size; - } - - throw std::out_of_range("index out of range"); - } - - inline size_t - slice_index(ptrdiff_t i, size_t size) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) { - return (size_t) (i + size); - } else { - throw std::out_of_range("index out of range"); - } - } else { - return ( (size_t) i < size ) ? ((size_t) i) : size; - } - } - - template - inline typename Sequence::iterator - getpos(Sequence* self, Difference i) { - typename Sequence::iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline typename Sequence::const_iterator - cgetpos(const Sequence* self, Difference i) { - typename Sequence::const_iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline Sequence* - getslice(const Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size); - typename Sequence::size_type jj = swig::slice_index(j, size); - - if (jj > ii) { - typename Sequence::const_iterator vb = self->begin(); - typename Sequence::const_iterator ve = self->begin(); - std::advance(vb,ii); - std::advance(ve,jj); - return new Sequence(vb, ve); - } else { - return new Sequence(); - } - } - - template - inline void - setslice(Sequence* self, Difference i, Difference j, const InputSeq& v) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj < ii) jj = ii; - size_t ssize = jj - ii; - if (ssize <= v.size()) { - typename Sequence::iterator sb = self->begin(); - typename InputSeq::const_iterator vmid = v.begin(); - std::advance(sb,ii); - std::advance(vmid, jj - ii); - self->insert(std::copy(v.begin(), vmid, sb), vmid, v.end()); - } else { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - self->insert(sb, v.begin(), v.end()); - } - } - - template - inline void - delslice(Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj > ii) { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - } - } -} - - -#if defined(__SUNPRO_CC) && defined(_RWSTD_VER) -# if !defined(SWIG_NO_STD_NOITERATOR_TRAITS_STL) -# define SWIG_STD_NOITERATOR_TRAITS_STL -# endif -#endif - -#if !defined(SWIG_STD_NOITERATOR_TRAITS_STL) -#include -#else -namespace std { - template - struct iterator_traits { - typedef ptrdiff_t difference_type; - typedef typename Iterator::value_type value_type; - }; - - template - struct iterator_traits<__reverse_bi_iterator > { - typedef Distance difference_type; - typedef T value_type; - }; - - template - struct iterator_traits { - typedef T value_type; - typedef ptrdiff_t difference_type; - }; - - template - inline typename iterator_traits<_InputIterator>::difference_type - distance(_InputIterator __first, _InputIterator __last) - { - typename iterator_traits<_InputIterator>::difference_type __n = 0; - while (__first != __last) { - ++__first; ++__n; - } - return __n; - } -} -#endif - - -namespace swig { - template - class OctSwigIterator_T : public OctSwigIterator - { - public: - typedef OutIterator out_iterator; - typedef typename std::iterator_traits::value_type value_type; - typedef OctSwigIterator_T self_type; - - OctSwigIterator_T(out_iterator curr, octave_value seq) - : OctSwigIterator(seq), current(curr) - { - } - - const out_iterator& get_current() const - { - return current; - } - - - bool equal (const OctSwigIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return (current == iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - ptrdiff_t distance(const OctSwigIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return std::distance(current, iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - protected: - out_iterator current; - }; - - template - struct from_oper - { - typedef const ValueType& argument_type; - typedef octave_value result_type; - result_type operator()(argument_type v) const - { - return swig::from(v); - } - }; - - template::value_type, - typename FromOper = from_oper > - class OctSwigIteratorOpen_T : public OctSwigIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef OctSwigIterator_T base; - typedef OctSwigIteratorOpen_T self_type; - - OctSwigIteratorOpen_T(out_iterator curr, octave_value seq) - : OctSwigIterator_T(curr, seq) - { - } - - octave_value value() const { - return from(static_cast(*(base::current))); - } - - OctSwigIterator *copy() const - { - return new self_type(*this); - } - - OctSwigIterator *incr(size_t n = 1) - { - while (n--) { - ++base::current; - } - return this; - } - - OctSwigIterator *decr(size_t n = 1) - { - while (n--) { - --base::current; - } - return this; - } - }; - - template::value_type, - typename FromOper = from_oper > - class OctSwigIteratorClosed_T : public OctSwigIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef OctSwigIterator_T base; - typedef OctSwigIteratorClosed_T self_type; - - OctSwigIteratorClosed_T(out_iterator curr, out_iterator first, out_iterator last, octave_value seq) - : OctSwigIterator_T(curr, seq), begin(first), end(last) - { - } - - octave_value value() const { - if (base::current == end) { - throw stop_iteration(); - } else { - return from(static_cast(*(base::current))); - } - } - - OctSwigIterator *copy() const - { - return new self_type(*this); - } - - OctSwigIterator *incr(size_t n = 1) - { - while (n--) { - if (base::current == end) { - throw stop_iteration(); - } else { - ++base::current; - } - } - return this; - } - - OctSwigIterator *decr(size_t n = 1) - { - while (n--) { - if (base::current == begin) { - throw stop_iteration(); - } else { - --base::current; - } - } - return this; - } - - private: - out_iterator begin; - out_iterator end; - }; - - template - inline OctSwigIterator* - make_output_iterator(const OutIter& current, const OutIter& begin,const OutIter& end, octave_value seq = octave_value()) - { - return new OctSwigIteratorClosed_T(current, begin, end, seq); - } - - template - inline OctSwigIterator* - make_output_iterator(const OutIter& current, octave_value seq = octave_value()) - { - return new OctSwigIteratorOpen_T(current, seq); - } -} - - -namespace swig -{ - template - struct OctSequence_Ref // * octave can't support these, because of how assignment works - { - OctSequence_Ref(const octave_value& seq, int index) - : _seq(seq), _index(index) - { - } - - operator T () const - { - // swig::SwigVar_PyObject item = OctSequence_GetItem(_seq, _index); - octave_value item; // * todo - try { - return swig::as(item, true); - } catch (std::exception& e) { - char msg[1024]; - sprintf(msg, "in sequence element %d ", _index); - if (!Octave_Error_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - SWIG_Octave_AddErrorMsg(msg); - SWIG_Octave_AddErrorMsg(e.what()); - throw; - } - } - - OctSequence_Ref& operator=(const T& v) - { - // OctSequence_SetItem(_seq, _index, swig::from(v)); - // * todo - return *this; - } - - private: - octave_value _seq; - int _index; - }; - - template - struct OctSequence_ArrowProxy - { - OctSequence_ArrowProxy(const T& x): m_value(x) {} - const T* operator->() const { return &m_value; } - operator const T*() const { return &m_value; } - T m_value; - }; - - template - struct OctSequence_InputIterator - { - typedef OctSequence_InputIterator self; - - typedef std::random_access_iterator_tag iterator_category; - typedef Reference reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - - OctSequence_InputIterator() - { - } - - OctSequence_InputIterator(const octave_value& seq, int index) - : _seq(seq), _index(index) - { - } - - reference operator*() const - { - return reference(_seq, _index); - } - - OctSequence_ArrowProxy - operator->() const { - return OctSequence_ArrowProxy(operator*()); - } - - bool operator==(const self& ri) const - { - return (_index == ri._index); - } - - bool operator!=(const self& ri) const - { - return !(operator==(ri)); - } - - self& operator ++ () - { - ++_index; - return *this; - } - - self& operator -- () - { - --_index; - return *this; - } - - self& operator += (difference_type n) - { - _index += n; - return *this; - } - - self operator +(difference_type n) const - { - return self(_seq, _index + n); - } - - self& operator -= (difference_type n) - { - _index -= n; - return *this; - } - - self operator -(difference_type n) const - { - return self(_seq, _index - n); - } - - difference_type operator - (const self& ri) const - { - return _index - ri._index; - } - - bool operator < (const self& ri) const - { - return _index < ri._index; - } - - reference - operator[](difference_type n) const - { - return reference(_seq, _index + n); - } - - private: - octave_value _seq; - difference_type _index; - }; - - template - struct OctSequence_Cont - { - typedef OctSequence_Ref reference; - typedef const OctSequence_Ref const_reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - typedef int size_type; - typedef const pointer const_pointer; - typedef OctSequence_InputIterator iterator; - typedef OctSequence_InputIterator const_iterator; - - OctSequence_Cont(const octave_value& seq) : _seq(seq) - { - // * assert that we have map type etc. - /* - if (!OctSequence_Check(seq)) { - throw std::invalid_argument("a sequence is expected"); - } - _seq = seq; - Py_INCREF(_seq); - */ - } - - ~OctSequence_Cont() - { - } - - size_type size() const - { - // return static_cast(OctSequence_Size(_seq)); - return 0; // * todo - } - - bool empty() const - { - return size() == 0; - } - - iterator begin() - { - return iterator(_seq, 0); - } - - const_iterator begin() const - { - return const_iterator(_seq, 0); - } - - iterator end() - { - return iterator(_seq, size()); - } - - const_iterator end() const - { - return const_iterator(_seq, size()); - } - - reference operator[](difference_type n) - { - return reference(_seq, n); - } - - const_reference operator[](difference_type n) const - { - return const_reference(_seq, n); - } - - bool check(bool set_err = true) const - { - int s = size(); - for (int i = 0; i < s; ++i) { - // swig::SwigVar_PyObject item = OctSequence_GetItem(_seq, i); - octave_value item; // * todo - if (!swig::check(item)) { - if (set_err) { - char msg[1024]; - sprintf(msg, "in sequence element %d", i); - SWIG_Error(SWIG_RuntimeError, msg); - } - return false; - } - } - return true; - } - - private: - octave_value _seq; - }; - -} - - -CvMat * cvLoadImageMat(const char* filename, int iscolor=CV_LOAD_IMAGE_COLOR ){ - return cvLoadImageM(filename, iscolor); -} - - -#include -#if !defined(SWIG_NO_LLONG_MAX) -# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) -# define LLONG_MAX __LONG_LONG_MAX__ -# define LLONG_MIN (-LLONG_MAX - 1LL) -# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -# endif -#endif - - - SWIGINTERN int SWIG_AsVal_long (const octave_value& ov, long* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (ov.is_double_type()||ov.is_single_type()) { - double v=ov.double_value(); - if (v!=floor(v)) - return SWIG_TypeError; - } - if (val) - *val = ov.long_value(); - return SWIG_OK; - } - - -SWIGINTERN int -SWIG_AsVal_int (octave_value obj, int *val) -{ - long v; - int res = SWIG_AsVal_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = (int)(v); - } - } - return res; -} - - -CvMat * cvRetrieveFrame__CvMat( CvCapture* capture ){ - IplImage * im = cvRetrieveFrame(capture); - if(im){ - CvMat * mat = (CvMat *)cvAlloc(sizeof(CvMat)); - mat = cvGetMat(im, mat); - return mat; - } - return false; -} - - -CvMat * cvQueryFrame__CvMat( CvCapture * capture ){ - IplImage * im = cvQueryFrame(capture); - if(im){ - CvMat * mat = (CvMat *)cvAlloc(sizeof(CvMat)); - mat = cvGetMat(im, mat); - return mat; - } - return false; -} - - - SWIGINTERNINLINE octave_value SWIG_From_long (long value) - { - return octave_value(value); - } - - -SWIGINTERNINLINE octave_value -SWIG_From_int (int value) -{ - return SWIG_From_long (value); -} - - -SWIGINTERN swig_type_info* -SWIG_pchar_descriptor(void) -{ - static int init = 0; - static swig_type_info* info = 0; - if (!init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; -} - - -SWIGINTERNINLINE octave_value -SWIG_FromCharPtrAndSize(const char* carray, size_t size) -{ - return std::string(carray,carray+size); -} - - -SWIGINTERNINLINE octave_value -SWIG_FromCharPtr(const char *cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); -} - - - SWIGINTERNINLINE octave_value SWIG_From_double (double value) - { - return octave_value(value); - } - - - SWIGINTERN int SWIG_AsVal_double (const octave_value& ov, double* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (val) - *val = ov.double_value(); - return SWIG_OK; - } - - -SWIGINTERN int -SWIG_AsCharArray(octave_value obj, char *val, size_t size) -{ - char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize; - if (csize <= size) { - if (val) { - if (csize) memcpy(val, cptr, csize*sizeof(char)); - if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) delete[] cptr; - } - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_char (octave_value obj, char *val) -{ - int res = SWIG_AsCharArray(obj, val, 1); - if (!SWIG_IsOK(res)) { - long v; - res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); - if (SWIG_IsOK(res)) { - if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { - if (val) *val = (char)(v); - } else { - res = SWIG_OverflowError; - } - } - } - return res; -} - -SWIGINTERN void delete_CvCapture(CvCapture *self){ CvCapture * dummy = self; cvReleaseCapture (& dummy); } -SWIGINTERN void delete_CvVideoWriter(CvVideoWriter *self){ CvVideoWriter * dummy = self; cvReleaseVideoWriter (& dummy); } - - -class ndim_iterator { - int nd; - int dims[CV_MAX_DIM]; - int step[CV_MAX_DIM]; - int curr[CV_MAX_DIM]; - uchar* _data; - int _type; - bool done; - public: - ndim_iterator() {} - ndim_iterator(CvMat* m) { - int c = CV_MAT_CN(m->type); - int elem_size = CV_ELEM_SIZE1(m->type); - nd = c == 1 ? 2 : 3; - dims[0] = m->rows; - dims[1] = m->cols; - dims[2] = c; - step[0] = m->step; - step[1] = c * elem_size; - step[2] = elem_size; - curr[0] = curr[1] = curr[2] = 0; - _data = m->data.ptr; - _type = m->type; - done = false; - } - ndim_iterator(CvMatND* m) { - int c = CV_MAT_CN(m->type); - int elem_size = CV_ELEM_SIZE1(m->type); - nd = m->dims + (c == 1 ? 0 : 1); - for (int j = 0; j < m->dims; ++j) { - dims[j] = m->dim[j].size; - step[j] = m->dim[j].step; - curr[j] = 0; - } - if (c > 1) { - dims[m->dims] = c; - step[m->dims] = elem_size; - curr[m->dims] = 0; - } - _data = m->data.ptr; - _type = m->type; - done = false; - } - ndim_iterator(IplImage* img) { - nd = img->nChannels == 1 ? 2 : 3; - dims[0] = img->height; - dims[1] = img->width; - dims[2] = img->nChannels; - - switch (img->depth) { - case IPL_DEPTH_8U: _type = CV_8U; break; - case IPL_DEPTH_8S: _type = CV_8S; break; - case IPL_DEPTH_16U: _type = CV_16U; break; - case IPL_DEPTH_16S: _type = CV_16S; break; - case IPL_DEPTH_32S: _type = CV_32S; break; - case IPL_DEPTH_32F: _type = CV_32F; break; - case IPL_DEPTH_1U: _type = CV_64F; break; - default: - error("unsupported image depth"); - return; - } - - int elem_size = CV_ELEM_SIZE1(_type); - step[0] = img->widthStep; - step[1] = img->nChannels * elem_size; - step[2] = elem_size; - curr[0] = curr[1] = curr[2] = 0; - _data = (uchar*)img->imageData; - done = false; - } - ndim_iterator(NDArray& nda) { - dim_vector d(nda.dims()); - nd = d.length(); - int last_step = sizeof(double); - for (int j = 0; j < d.length(); ++j) { - dims[j] = d(j); - step[j] = last_step; - last_step *= dims[j]; - curr[j] = 0; - } - _data = (uchar*)const_cast(nda.data()); - _type = CV_64F; - done = false; - } - - operator bool () const { - return !done; - } - uchar* data() { - return _data; - } - int type() const { - return _type; - } - ndim_iterator& operator++ () { - int curr_dim = 0; - for (;;) { - _data += step[curr_dim]; - if (++curr[curr_dim] < dims[curr_dim]) - break; - curr[curr_dim] = 0; - _data -= step[curr_dim] * dims[curr_dim]; - ++curr_dim; - if (curr_dim == nd) { - done = true; - break; - } - } - return *this; - } -}; - -template - void transpose_copy_typed(ndim_iterator src_it, ndim_iterator dst_it, - double scale) { - assert(sizeof(T1) == CV_ELEM_SIZE1(src_it.type())); - assert(sizeof(T2) == CV_ELEM_SIZE1(dst_it.type())); - if (scale == 1) { - while (src_it) { - *(T2*)dst_it.data() = (T2)*(T1*)src_it.data(); - ++src_it; - ++dst_it; - } - } else { - while (src_it) { - *(T2*)dst_it.data() = (T2)(scale * (*(T1*)src_it.data())); - ++src_it; - ++dst_it; - } - } -} - -template -void transpose_copy2(ndim_iterator src_it, ndim_iterator dst_it, - double scale) { - switch (CV_MAT_DEPTH(dst_it.type())) { - case CV_8U: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_8S: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_16U: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_16S: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_32S: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_32F: transpose_copy_typed(src_it,dst_it,scale); break; - case CV_64F: transpose_copy_typed(src_it,dst_it,scale); break; - default: - error("unsupported dest array type (supported types are CV_8U, CV_8S, " - "CV_16U, CV_16S, CV_32S, CV_32F, CV_64F)"); - } -} - -void transpose_copy(ndim_iterator src_it, ndim_iterator dst_it, - double scale = 1) { - switch (CV_MAT_DEPTH(src_it.type())) { - case CV_8U: transpose_copy2(src_it,dst_it,scale); break; - case CV_8S: transpose_copy2(src_it,dst_it,scale); break; - case CV_16U: transpose_copy2(src_it,dst_it,scale); break; - case CV_16S: transpose_copy2(src_it,dst_it,scale); break; - case CV_32S: transpose_copy2(src_it,dst_it,scale); break; - case CV_32F: transpose_copy2(src_it,dst_it,scale); break; - case CV_64F: transpose_copy2(src_it,dst_it,scale); break; - default: - error("unsupported source array type (supported types are CV_8U, CV_8S, " - "CV_16U, CV_16S, CV_32S, CV_32F, CV_64F)"); - } -} - -octave_value cv2mat(CvArr* arr) { - dim_vector d; - NDArray nda; - - if (CV_IS_MAT(arr)) { - // m x n x c - CvMat* m = (CvMat*)arr; - - int c = CV_MAT_CN(m->type); - if (c == 1) { - d.resize(2); - d(0) = m->rows; - d(1) = m->cols; - } else { - d.resize(3); - d(0) = m->rows; - d(1) = m->cols; - d(2) = c; - } - - nda = NDArray(d); - transpose_copy(m, nda); - } - else if (CV_IS_MATND(arr)) { - // m1 x m2 x ... x mn x c - CvMatND* m = (CvMatND*)arr; - - int c = CV_MAT_CN(m->type); - if (c == 1) { - d.resize(m->dims); - for (int j = 0; j < m->dims; ++j) - d(j) = m->dim[j].size; - } else { - d.resize(m->dims + 1); - for (int j = 0; j < m->dims; ++j) - d(j) = m->dim[j].size; - d(m->dims) = c; - } - - nda = NDArray(d); - transpose_copy(m, nda); - } - else if (CV_IS_IMAGE(arr)) { - // m x n x c - IplImage* img = (IplImage*)arr; - - if (img->nChannels == 1) { - d.resize(2); - d(0) = img->height; - d(1) = img->width; - } else { - d.resize(3); - d(0) = img->height; - d(1) = img->width; - d(2) = img->nChannels; - } - - nda = NDArray(d); - transpose_copy(img, nda); - } - else { - error("unsupported array type (supported types are CvMat, CvMatND, IplImage)"); - return octave_value(); - } - - return nda; -} - -octave_value mat2cv(const octave_value& ov, int type) { - NDArray nda(ov.array_value()); - if (error_state) - return 0; - - dim_vector d = ov.dims(); - assert(d.length() > 0); - - int nd = d.length(); - int last_dim = d(d.length() - 1); - int c = CV_MAT_CN(type); - if (c != 1 && c != last_dim) { - error("last dimension and channel must agree, or channel must equal one"); - return 0; - } - if (c > 1) - --nd; - - if (nd == 2) { - CvMat *m = cvCreateMat(d(0), d(1), type); - transpose_copy(nda, m); - return SWIG_NewPointerObj(m, SWIGTYPE_p_CvMat, SWIG_POINTER_OWN); - } - else { - int tmp[CV_MAX_DIM]; - for (int j = 0; j < nd; ++j) - tmp[j] = d(j); - CvMatND *m = cvCreateMatND(nd, tmp, type); - transpose_copy(nda, m); - return SWIG_NewPointerObj(m, SWIGTYPE_p_CvMatND, SWIG_POINTER_OWN); - } -} - -octave_value cv2im(CvArr* arr) { - if (!CV_IS_IMAGE(arr) && !CV_IS_MAT(arr)) { - error("input is not an OpenCV image or 2D matrix"); - return octave_value(); - } - - dim_vector d; - NDArray nda; - - if (CV_IS_MAT(arr)) { - // m x n x c - CvMat* m = (CvMat*)arr; - - int c = CV_MAT_CN(m->type); - if (c == 1) { - d.resize(2); - d(0) = m->rows; - d(1) = m->cols; - } else { - d.resize(3); - d(0) = m->rows; - d(1) = m->cols; - d(2) = c; - } - - nda = NDArray(d); - transpose_copy(m, nda, 1/256.0); - } - else if (CV_IS_IMAGE(arr)) { - // m x n x c - IplImage* img = (IplImage*)arr; - - if (img->nChannels == 1) { - d.resize(2); - d(0) = img->height; - d(1) = img->width; - } else { - d.resize(3); - d(0) = img->height; - d(1) = img->width; - d(2) = img->nChannels; - } - - nda = NDArray(d); - transpose_copy(img, nda, 1/256.0); - } - - return nda; -} - -CvMat* im2cv(const octave_value& ov, int depth) { - NDArray nda(ov.array_value()); - if (error_state) - return 0; - - dim_vector d = ov.dims(); - assert(d.length() > 0); - - if (d.length() != 2 && d.length() != 3 && - !(d.length() == 3 && d(2) <= 4)) { - error("input must be m x n or m x n x c matrix, where 1<=c<=4"); - return 0; - } - - int channels = d.length() == 2 ? 1 : d(2); - int type = CV_MAKETYPE(depth, channels); - - CvMat *m = cvCreateMat(d(0), d(1), type); - transpose_copy(nda, m, 256); - - return m; -} - - -const char* _wrap_CV_FOURCC_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CV_FOURCC (@var{c1}, @var{c2}, @var{c3}, @var{c4})\n\ -@var{c1} is of type char. @var{c2} is of type char. @var{c3} is of type char. @var{c4} is of type char. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvRetrieveFrame__Deprecated_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRetrieveFrame (@var{capture}, @var{streamIdx} = 0)\n\ -@var{capture} is of type CvCapture. @var{streamIdx} is of type int. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvQueryFrame__Deprecated_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvQueryFrame (@var{capture})\n\ -@var{capture} is of type CvCapture. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvvImage_GetImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = GetImage (@var{self})\n\ -@var{self} is of type CvvImage. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Width_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Width (@var{self})\n\ -@var{self} is of type CvvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetMouseCallbackOld_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetMouseCallback (@var{window_name}, @var{on_mouse}, @var{param} = nil)\n\ -@var{window_name} is of type char. @var{on_mouse} is of type CvMouseCallback. @var{param} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvDestroyAllWindows_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDestroyAllWindows ()\n\ -\n\ -@end deftypefn"; -const char* _wrap_cvDecodeImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvDecodeImage (@var{buf}, @var{iscolor} = 1)\n\ -@var{buf} is of type CvMat. @var{iscolor} is of type int. @var{retval} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvSaveImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSaveImage (@var{filename}, @var{image}, @var{params} = 0)\n\ -@var{filename} is of type char. @var{image} is of type CvArr. @var{params} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetWindowHandle_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetWindowHandle (@var{name})\n\ -@var{name} is of type char. @var{retval} is of type void. \n\ -@end deftypefn"; -const char* _wrap_cvEncodeImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvEncodeImage (@var{ext}, @var{image}, @var{params} = 0)\n\ -@var{ext} is of type char. @var{image} is of type CvArr. @var{params} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Fill_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} Fill (@var{self}, @var{color})\n\ -@var{self} is of type CvvImage. @var{color} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvNamedWindow_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvNamedWindow (@var{name}, @var{flags} = 1)\n\ -@var{name} is of type char. @var{flags} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_mat2cv_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{m1} = mat2cv (@var{m2}, @var{type})\n\ -Convert the Octave array @var{m2} into either a CvMat or a CvMatND of type\n\ -@var{type}.\n\ -@var{type} is one of CV_8UC(n), CV_8SC(n), CV_16UC(n), CV_16SC(n), CV_32SC(n), \n\ -CV_32FC(n), CV_64FC(n), where n indicates channel and is between 1 and 4.\n\ -If the dimension of @var{m2} is equal to 2 (not counting channels),\n\ -a CvMat is returned. Otherwise, a CvMatND is returned.\n\ -@end deftypefn\n\ -"; -const char* _wrap_CvvImage_Load_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Load (@var{self}, @var{filename})\n\ -@var{self} is of type CvvImage. @var{filename} is of type char. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_cvConvertImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvConvertImage (@var{src}, @var{dst}, @var{flags} = 0)\n\ -@var{src} is of type CvArr. @var{dst} is of type CvArr. @var{flags} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvInitSystem_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvInitSystem (@var{argc}, @var{argv})\n\ -@var{argc} is of type int. @var{argv} is of type char. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Save_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Save (@var{self}, @var{filename})\n\ -@var{self} is of type CvvImage. @var{filename} is of type char. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_cvLoadImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvLoadImageMat (@var{filename})\n\ -@var{filename} is of type char. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_CopyOf_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CopyOf (@var{self}, @var{img})\n\ -@var{self} is of type CvvImage. @var{img} is of type . \n\ -@end deftypefn"; -const char* _wrap_cvLoadImageM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvLoadImageM (@var{filename}, @var{iscolor} = 1)\n\ -@var{filename} is of type char. @var{iscolor} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_new_CvvImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = CvvImage ()\n\ -@var{retval} is of type CvvImage. \n\ -@end deftypefn"; -const char* _wrap_delete_CvvImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvvImage (@var{self})\n\ -@var{self} is of type CvvImage. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Bpp_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Bpp (@var{self})\n\ -@var{self} is of type CvvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateTrackbar2_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateTrackbar2 (@var{trackbar_name}, @var{window_name}, @var{value}, @var{count}, @var{on_change}, @var{userdata} = 0)\n\ -@var{trackbar_name} is of type char. @var{window_name} is of type char. @var{value} is of type int. @var{count} is of type int. @var{on_change} is of type CvTrackbarCallback2. @var{userdata} is of type void. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateVideoWriter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateVideoWriter (@var{filename}, @var{fourcc}, @var{fps}, @var{frame_size}, @var{is_color} = 1)\n\ -@var{filename} is of type char. @var{fourcc} is of type int. @var{fps} is of type double. @var{frame_size} is of type CvSize. @var{is_color} is of type int. @var{retval} is of type CvVideoWriter. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseVideoWriter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseVideoWriter (@var{writer})\n\ -@var{writer} is of type CvVideoWriter. \n\ -@end deftypefn"; -const char* _wrap_delete_CvVideoWriter_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvVideoWriter (@var{self})\n\ -@var{self} is of type CvVideoWriter. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Show_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} Show (@var{self}, @var{window})\n\ -@var{self} is of type CvvImage. @var{window} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvDestroyWindow_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvDestroyWindow (@var{name})\n\ -@var{name} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvMoveWindow_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvMoveWindow (@var{name}, @var{x}, @var{y})\n\ -@var{name} is of type char. @var{x} is of type int. @var{y} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvResizeWindow_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvResizeWindow (@var{name}, @var{width}, @var{height})\n\ -@var{name} is of type char. @var{width} is of type int. @var{height} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetCaptureDomain_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetCaptureDomain (@var{capture})\n\ -@var{capture} is of type CvCapture. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetWindowName_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetWindowName (@var{window_handle})\n\ -@var{window_handle} is of type void. @var{retval} is of type char. \n\ -@end deftypefn"; -const char* _wrap_cvStartWindowThread_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvStartWindowThread ()\n\ -@var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWaitKey_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvWaitKey (@var{delay} = 0)\n\ -@var{delay} is of type int. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvSetTrackbarPos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvSetTrackbarPos (@var{trackbar_name}, @var{window_name}, @var{pos})\n\ -@var{trackbar_name} is of type char. @var{window_name} is of type char. @var{pos} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvGetTrackbarPos_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetTrackbarPos (@var{trackbar_name}, @var{window_name})\n\ -@var{trackbar_name} is of type char. @var{window_name} is of type char. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cv2mat_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{m1} = cv2mat (@var{m2})\n\ -Convert the CvMat, CvMatND, or IplImage @var{m2} into an Octave real matrix @var{m1}.\n\ -The dimensions @var{m1} are those of @var{m2}, plus an addition dimension \n\ -if @var{m2} has more than one channel.\n\ -@end deftypefn\n\ -"; -const char* _wrap_cvQueryFrame_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvQueryFrame__CvMat (@var{capture})\n\ -@var{capture} is of type CvCapture. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvShowImage_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvShowImage (@var{name}, @var{image})\n\ -@var{name} is of type char. @var{image} is of type CvArr. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Height_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Height (@var{self})\n\ -@var{self} is of type CvvImage. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvDecodeImageM_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvDecodeImageM (@var{buf}, @var{iscolor} = 1)\n\ -@var{buf} is of type CvMat. @var{iscolor} is of type int. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvGetCaptureProperty_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGetCaptureProperty (@var{capture}, @var{property_id})\n\ -@var{capture} is of type CvCapture. @var{property_id} is of type int. @var{retval} is of type double. \n\ -@end deftypefn"; -const char* _wrap_cvSetCaptureProperty_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvSetCaptureProperty (@var{capture}, @var{property_id}, @var{value})\n\ -@var{capture} is of type CvCapture. @var{property_id} is of type int. @var{value} is of type double. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_LoadRect_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = LoadRect (@var{self}, @var{filename}, @var{desired_color}, @var{r})\n\ -@var{self} is of type CvvImage. @var{filename} is of type char. @var{desired_color} is of type int. @var{r} is of type CvRect. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_im2cv_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{I} = im2cv (@var{im}, @var{depth})\n\ -Convert the Octave image @var{im} into the OpenCV image @var{I} of depth\n\ -@var{depth}.\n\ -@var{im} is a real matrix of dimension height x width or \n\ -height x width x channels, with values within the interval [0,1].\n\ -@var{depth} must be one of 0, 1, 2, 3, 4, 5, 6.\n\ -@end deftypefn\n\ -"; -const char* _wrap_cvRetrieveFrame_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvRetrieveFrame__CvMat (@var{capture})\n\ -@var{capture} is of type CvCapture. @var{retval} is of type CvMat. \n\ -@end deftypefn"; -const char* _wrap_cvCreateTrackbar_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateTrackbar (@var{trackbar_name}, @var{window_name}, @var{value}, @var{count}, @var{on_change})\n\ -@var{trackbar_name} is of type char. @var{window_name} is of type char. @var{value} is of type int. @var{count} is of type int. @var{on_change} is of type CvTrackbarCallback. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvWriteFrame_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvWriteFrame (@var{writer}, @var{image})\n\ -@var{writer} is of type CvVideoWriter. @var{image} is of type . @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvCreateFileCapture_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateFileCapture (@var{filename})\n\ -@var{filename} is of type char. @var{retval} is of type CvCapture. \n\ -@end deftypefn"; -const char* _wrap_cvCreateCameraCapture_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvCreateCameraCapture (@var{index})\n\ -@var{index} is of type int. @var{retval} is of type CvCapture. \n\ -@end deftypefn"; -const char* _wrap_cvGrabFrame_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = cvGrabFrame (@var{capture})\n\ -@var{capture} is of type CvCapture. @var{retval} is of type int. \n\ -@end deftypefn"; -const char* _wrap_cvReleaseCapture_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} cvReleaseCapture (@var{capture})\n\ -@var{capture} is of type CvCapture. \n\ -@end deftypefn"; -const char* _wrap_delete_CvCapture_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvCapture (@var{self})\n\ -@var{self} is of type CvCapture. \n\ -@end deftypefn"; -const char* _wrap_cv2im_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{im} = cv2im (@var{I})\n\ -Convert the OpenCV image or 2D matrix @var{I} into an Octave image @var{im}.\n\ -@var{im} is a real matrix of dimension height x width or \n\ -height x width x channels, with values within the interval [0,1]).\n\ -@end deftypefn\n\ -"; -const char* _wrap_delete_CvRNG_Wrapper_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvRNG_Wrapper::~CvRNG_Wrapper (@var{self})\n\ -@var{self} is of type CvRNG_Wrapper. \n\ -@end deftypefn"; -const char* _wrap_delete_CvSubdiv2DEdge_Wrapper_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} CvSubdiv2DEdge_Wrapper::~CvSubdiv2DEdge_Wrapper (@var{self})\n\ -@var{self} is of type CvSubdiv2DEdge_Wrapper. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Create_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} @var{retval} = Create (@var{self}, @var{width}, @var{height}, @var{bits_per_pixel})\n\ -@var{self} is of type CvvImage. @var{width} is of type int. @var{height} is of type int. @var{bits_per_pixel} is of type int. @var{retval} is of type bool. \n\ -@end deftypefn"; -const char* _wrap_CvvImage_Destroy_texinfo = "-*- texinfo -*-\n\ -@deftypefn {Loadable Function} Destroy (@var{self})\n\ -@var{self} is of type CvvImage. \n\ -@end deftypefn"; - -static octave_value_list _wrap_new_CvRNG_Wrapper (const octave_value_list& args, int nargout) { - CvRNG *arg1 = 0 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG_Wrapper *result = 0 ; - - if (!SWIG_check_num_args("new_CvRNG_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_uint64_t, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - arg1 = (CvRNG *)(argp1); - result = (CvRNG_Wrapper *)new CvRNG_Wrapper((CvRNG const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRNG_Wrapper, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper_ptr (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRNG_Wrapper_ptr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ptr" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - result = (CvRNG *)(arg1)->ptr(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper_ref (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRNG_Wrapper_ref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ref" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - result = (CvRNG *) &(arg1)->ref(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper___eq__ (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRNG_Wrapper___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___eq__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = (CvRNG_Wrapper *)(argp2); - result = (bool)(arg1)->operator ==((CvRNG_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper___ne__ (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRNG_Wrapper___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___ne__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = (CvRNG_Wrapper *)(argp2); - result = (bool)(arg1)->operator !=((CvRNG_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvRNG_Wrapper (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvRNG_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvRNG_Wrapper_members[] = { -{"ptr",_wrap_CvRNG_Wrapper_ptr,0,0,0,0}, -{"ref",_wrap_CvRNG_Wrapper_ref,0,0,0,0}, -{"__eq__",_wrap_CvRNG_Wrapper___eq__,0,0,0,0}, -{"__ne__",_wrap_CvRNG_Wrapper___ne__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvRNG_Wrapper_base_names[] = {0}; -static const swig_type_info *swig_CvRNG_Wrapper_base[] = {0}; -static swig_octave_class _wrap_class_CvRNG_Wrapper = {"CvRNG_Wrapper", &SWIGTYPE_p_CvRNG_Wrapper,0,_wrap_new_CvRNG_Wrapper,0,_wrap_delete_CvRNG_Wrapper,swig_CvRNG_Wrapper_members,swig_CvRNG_Wrapper_base_names,swig_CvRNG_Wrapper_base }; - -static octave_value_list _wrap_new_CvSubdiv2DEdge_Wrapper (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge *arg1 = 0 ; - CvSubdiv2DEdge temp1 ; - size_t val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge_Wrapper *result = 0 ; - - if (!SWIG_check_num_args("new_CvSubdiv2DEdge_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge""'"); - } - temp1 = (CvSubdiv2DEdge)(val1); - arg1 = &temp1; - result = (CvSubdiv2DEdge_Wrapper *)new CvSubdiv2DEdge_Wrapper((CvSubdiv2DEdge const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper_ptr (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper_ptr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ptr" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - result = (CvSubdiv2DEdge *)(arg1)->ptr(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper_ref (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper_ref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ref" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - result = (CvSubdiv2DEdge *) &(arg1)->ref(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper___eq__ (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = (CvSubdiv2DEdge_Wrapper *)(argp2); - result = (bool)(arg1)->operator ==((CvSubdiv2DEdge_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper___ne__ (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = (CvSubdiv2DEdge_Wrapper *)(argp2); - result = (bool)(arg1)->operator !=((CvSubdiv2DEdge_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSubdiv2DEdge_Wrapper (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSubdiv2DEdge_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSubdiv2DEdge_Wrapper_members[] = { -{"ptr",_wrap_CvSubdiv2DEdge_Wrapper_ptr,0,0,0,0}, -{"ref",_wrap_CvSubdiv2DEdge_Wrapper_ref,0,0,0,0}, -{"__eq__",_wrap_CvSubdiv2DEdge_Wrapper___eq__,0,0,0,0}, -{"__ne__",_wrap_CvSubdiv2DEdge_Wrapper___ne__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSubdiv2DEdge_Wrapper_base_names[] = {0}; -static const swig_type_info *swig_CvSubdiv2DEdge_Wrapper_base[] = {0}; -static swig_octave_class _wrap_class_CvSubdiv2DEdge_Wrapper = {"CvSubdiv2DEdge_Wrapper", &SWIGTYPE_p_CvSubdiv2DEdge_Wrapper,0,_wrap_new_CvSubdiv2DEdge_Wrapper,0,_wrap_delete_CvSubdiv2DEdge_Wrapper,swig_CvSubdiv2DEdge_Wrapper_members,swig_CvSubdiv2DEdge_Wrapper_base_names,swig_CvSubdiv2DEdge_Wrapper_base }; - -static octave_value_list _wrap_cvSetMouseCallback__SWIG_0 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - octave_value arg2 ; - octave_value arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvSetMouseCallback",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetMouseCallback" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - arg2 = args(1); - arg3 = args(2); - cvSetMouseCallbackOct((char const *)arg1,arg2,arg3); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_cvSetMouseCallback__SWIG_1 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - octave_value arg2 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvSetMouseCallback",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetMouseCallback" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - arg2 = args(1); - cvSetMouseCallbackOct((char const *)arg1,arg2); - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_cvSetMouseCallback (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - return _wrap_cvSetMouseCallback__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (*argv[1]).is_defined(); - if (_v) { - _v = (*argv[2]).is_defined(); - if (_v) { - return _wrap_cvSetMouseCallback__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvLoadImage__SWIG_0 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - int arg2 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvLoadImage",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoadImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvLoadImage" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvMat *)cvLoadImageMat((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_cvLoadImage__SWIG_1 (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvLoadImage",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoadImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - { - try { - result = (CvMat *)cvLoadImageMat((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; -fail: - return _out; -} - - -static octave_value_list _wrap_cvLoadImage (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 1) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvLoadImage__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvLoadImage__SWIG_0(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_cvRetrieveFrame (const octave_value_list& args, int nargout) { - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvRetrieveFrame",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRetrieveFrame" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = (CvCapture *)(argp1); - { - try { - result = (CvMat *)cvRetrieveFrame__CvMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvQueryFrame (const octave_value_list& args, int nargout) { - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("cvQueryFrame",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvQueryFrame" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = (CvCapture *)(argp1); - { - try { - result = (CvMat *)cvQueryFrame__CvMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvInitSystem (const octave_value_list& args, int nargout) { - int arg1 ; - char **arg2 = (char **) 0 ; - int val1 ; - int ecode1 = 0 ; - void *vptr2 ; - char *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvInitSystem",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvInitSystem" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer2 = (char *) vptr2; - arg2=&buffer2; - } - { - try { - result = (int)cvInitSystem(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvStartWindowThread (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvStartWindowThread",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (int)cvStartWindowThread(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvNamedWindow (const octave_value_list& args, int nargout) { - char *arg1 = (char *) 0 ; - int arg2 = (int) 1 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("cvNamedWindow",args.length(),2,1,0)) { - SWIG_fail; - } - res1 = SWIG_AsCharPtrAndSize(args(0), &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNamedWindow" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = (char *)(buf1); - if (1Create(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Create__SWIG_1 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvvImage_Create",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Create" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvvImage_Create" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_Create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvvImage_Create" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - { - try { - result = (bool)(arg1)->Create(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Create (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_Create__SWIG_1(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_Create__SWIG_0(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvvImage_Load__SWIG_0 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvvImage_Load",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Load" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_Load" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (bool)(arg1)->Load((char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Load__SWIG_1 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvvImage_Load",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Load" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - result = (bool)(arg1)->Load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Load (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvvImage_Load__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_Load__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvvImage_LoadRect (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - CvRect arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvvImage_LoadRect",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_LoadRect" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_LoadRect" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_LoadRect" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvRect, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvvImage_LoadRect" "', argument " "4"" of type '" "CvRect""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvvImage_LoadRect" "', argument " "4"" of type '" "CvRect""'"); - } else { - arg4 = *((CvRect *)(argp4)); - } - } - { - try { - result = (bool)(arg1)->LoadRect((char const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Save (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvvImage_Save",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Save" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - result = (bool)(arg1)->Save((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_CopyOf__SWIG_0 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - CvvImage *arg2 = 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_CopyOf",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvvImage, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - arg2 = (CvvImage *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_CopyOf" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - (arg1)->CopyOf(*arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_CopyOf__SWIG_1 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - CvvImage *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_CopyOf",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvvImage, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - arg2 = (CvvImage *)(argp2); - { - try { - (arg1)->CopyOf(*arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_CopyOf__SWIG_2 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_CopyOf",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(args(1), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_CopyOf" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - (arg1)->CopyOf(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_CopyOf__SWIG_3 (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_CopyOf",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(args(1), (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - { - try { - (arg1)->CopyOf(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_CopyOf (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_1(args, nargout); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_3(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_2(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvvImage_GetImage (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - IplImage *result = 0 ; - - if (!SWIG_check_num_args("CvvImage_GetImage",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_GetImage" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - try { - result = (IplImage *)(arg1)->GetImage(); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Destroy (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_Destroy",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Destroy" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - try { - (arg1)->Destroy(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Width (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvvImage_Width",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Width" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - try { - result = (int)(arg1)->Width(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Height (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvvImage_Height",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Height" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - try { - result = (int)(arg1)->Height(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Bpp (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvvImage_Bpp",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Bpp" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - { - try { - result = (int)(arg1)->Bpp(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Fill (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_Fill",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Fill" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvvImage_Fill" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - (arg1)->Fill(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvvImage_Show (const octave_value_list& args, int nargout) { - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvvImage_Show",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Show" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = (CvvImage *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Show" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - (arg1)->Show((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static swig_octave_member swig_CvvImage_members[] = { -{"Create",_wrap_CvvImage_Create,0,0,0,0}, -{"Load",_wrap_CvvImage_Load,0,0,0,0}, -{"LoadRect",_wrap_CvvImage_LoadRect,0,0,0,0}, -{"Save",_wrap_CvvImage_Save,0,0,0,0}, -{"CopyOf",_wrap_CvvImage_CopyOf,0,0,0,0}, -{"GetImage",_wrap_CvvImage_GetImage,0,0,0,0}, -{"Destroy",_wrap_CvvImage_Destroy,0,0,0,0}, -{"Width",_wrap_CvvImage_Width,0,0,0,0}, -{"Height",_wrap_CvvImage_Height,0,0,0,0}, -{"Bpp",_wrap_CvvImage_Bpp,0,0,0,0}, -{"Fill",_wrap_CvvImage_Fill,0,0,0,0}, -{"Show",_wrap_CvvImage_Show,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvvImage_base_names[] = {0}; -static const swig_type_info *swig_CvvImage_base[] = {0}; -static swig_octave_class _wrap_class_CvvImage = {"CvvImage", &SWIGTYPE_p_CvvImage,0,_wrap_new_CvvImage,0,_wrap_delete_CvvImage,swig_CvvImage_members,swig_CvvImage_base_names,swig_CvvImage_base }; - -static octave_value_list _wrap_delete_CvCapture (const octave_value_list& args, int nargout) { - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvCapture",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvCapture, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvCapture" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = (CvCapture *)(argp1); - { - try { - delete_CvCapture(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvCapture_members[] = { -{0,0,0,0} -}; -static const char *swig_CvCapture_base_names[] = {0}; -static const swig_type_info *swig_CvCapture_base[] = {0}; -static swig_octave_class _wrap_class_CvCapture = {"CvCapture", &SWIGTYPE_p_CvCapture,0,0,0,_wrap_delete_CvCapture,swig_CvCapture_members,swig_CvCapture_base_names,swig_CvCapture_base }; - -static octave_value_list _wrap_delete_CvVideoWriter (const octave_value_list& args, int nargout) { - CvVideoWriter *arg1 = (CvVideoWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvVideoWriter",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVideoWriter, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvVideoWriter" "', argument " "1"" of type '" "CvVideoWriter *""'"); - } - arg1 = (CvVideoWriter *)(argp1); - { - try { - delete_CvVideoWriter(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvVideoWriter_members[] = { -{0,0,0,0} -}; -static const char *swig_CvVideoWriter_base_names[] = {0}; -static const swig_type_info *swig_CvVideoWriter_base[] = {0}; -static swig_octave_class _wrap_class_CvVideoWriter = {"CvVideoWriter", &SWIGTYPE_p_CvVideoWriter,0,0,0,_wrap_delete_CvVideoWriter,swig_CvVideoWriter_members,swig_CvVideoWriter_base_names,swig_CvVideoWriter_base }; - -static octave_value_list _wrap_cv2mat (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("cv2mat",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - try { - result = cv2mat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_mat2cv (const octave_value_list& args, int nargout) { - octave_value *arg1 = 0 ; - int arg2 ; - octave_value temp1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("mat2cv",args.length(),2,2,0)) { - SWIG_fail; - } - temp1 = (octave_value)(args(0)); - arg1 = &temp1; - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "mat2cv" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = mat2cv((octave_value const &)*arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cv2im (const octave_value_list& args, int nargout) { - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("cv2im",args.length(),1,1,0)) { - SWIG_fail; - } - { - arg1 = OctObject_to_CvArr(args(0), &freearg1); - } - { - try { - result = cv2im(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } -fail: - return _out; -} - - -static octave_value_list _wrap_im2cv (const octave_value_list& args, int nargout) { - octave_value *arg1 = 0 ; - int arg2 ; - octave_value temp1 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("im2cv",args.length(),2,2,0)) { - SWIG_fail; - } - temp1 = (octave_value)(args(0)); - arg1 = &temp1; - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "im2cv" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvMat *)im2cv((octave_value const &)*arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - - -static const struct swig_octave_member swig_globals[] = { -{"new_CvRNG_Wrapper",_wrap_new_CvRNG_Wrapper,0,0,2,0}, -{"CvRNG_Wrapper_ptr",_wrap_CvRNG_Wrapper_ptr,0,0,2,0}, -{"CvRNG_Wrapper_ref",_wrap_CvRNG_Wrapper_ref,0,0,2,0}, -{"CvRNG_Wrapper___eq__",_wrap_CvRNG_Wrapper___eq__,0,0,2,0}, -{"CvRNG_Wrapper___ne__",_wrap_CvRNG_Wrapper___ne__,0,0,2,0}, -{"delete_CvRNG_Wrapper",_wrap_delete_CvRNG_Wrapper,0,0,2,_wrap_delete_CvRNG_Wrapper_texinfo}, -{"new_CvSubdiv2DEdge_Wrapper",_wrap_new_CvSubdiv2DEdge_Wrapper,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper_ptr",_wrap_CvSubdiv2DEdge_Wrapper_ptr,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper_ref",_wrap_CvSubdiv2DEdge_Wrapper_ref,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper___eq__",_wrap_CvSubdiv2DEdge_Wrapper___eq__,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper___ne__",_wrap_CvSubdiv2DEdge_Wrapper___ne__,0,0,2,0}, -{"delete_CvSubdiv2DEdge_Wrapper",_wrap_delete_CvSubdiv2DEdge_Wrapper,0,0,2,_wrap_delete_CvSubdiv2DEdge_Wrapper_texinfo}, -{"cvSetMouseCallback",_wrap_cvSetMouseCallback,0,0,2,0}, -{"cvLoadImage",_wrap_cvLoadImage,0,0,2,_wrap_cvLoadImage_texinfo}, -{"cvRetrieveFrame",_wrap_cvRetrieveFrame,0,0,2,_wrap_cvRetrieveFrame_texinfo}, -{"cvQueryFrame",_wrap_cvQueryFrame,0,0,2,_wrap_cvQueryFrame_texinfo}, -{"cvInitSystem",_wrap_cvInitSystem,0,0,2,_wrap_cvInitSystem_texinfo}, -{"cvStartWindowThread",_wrap_cvStartWindowThread,0,0,2,_wrap_cvStartWindowThread_texinfo}, -{"cvNamedWindow",_wrap_cvNamedWindow,0,0,2,_wrap_cvNamedWindow_texinfo}, -{"cvShowImage",_wrap_cvShowImage,0,0,2,_wrap_cvShowImage_texinfo}, -{"cvResizeWindow",_wrap_cvResizeWindow,0,0,2,_wrap_cvResizeWindow_texinfo}, -{"cvMoveWindow",_wrap_cvMoveWindow,0,0,2,_wrap_cvMoveWindow_texinfo}, -{"cvDestroyWindow",_wrap_cvDestroyWindow,0,0,2,_wrap_cvDestroyWindow_texinfo}, -{"cvDestroyAllWindows",_wrap_cvDestroyAllWindows,0,0,2,_wrap_cvDestroyAllWindows_texinfo}, -{"cvGetWindowHandle",_wrap_cvGetWindowHandle,0,0,2,_wrap_cvGetWindowHandle_texinfo}, -{"cvGetWindowName",_wrap_cvGetWindowName,0,0,2,_wrap_cvGetWindowName_texinfo}, -{"cvCreateTrackbar",_wrap_cvCreateTrackbar,0,0,2,_wrap_cvCreateTrackbar_texinfo}, -{"cvCreateTrackbar2",_wrap_cvCreateTrackbar2,0,0,2,_wrap_cvCreateTrackbar2_texinfo}, -{"cvGetTrackbarPos",_wrap_cvGetTrackbarPos,0,0,2,_wrap_cvGetTrackbarPos_texinfo}, -{"cvSetTrackbarPos",_wrap_cvSetTrackbarPos,0,0,2,_wrap_cvSetTrackbarPos_texinfo}, -{"cvSetMouseCallbackOld",_wrap_cvSetMouseCallbackOld,0,0,2,_wrap_cvSetMouseCallbackOld_texinfo}, -{"cvLoadImageM",_wrap_cvLoadImageM,0,0,2,_wrap_cvLoadImageM_texinfo}, -{"cvSaveImage",_wrap_cvSaveImage,0,0,2,_wrap_cvSaveImage_texinfo}, -{"cvDecodeImage",_wrap_cvDecodeImage,0,0,2,_wrap_cvDecodeImage_texinfo}, -{"cvDecodeImageM",_wrap_cvDecodeImageM,0,0,2,_wrap_cvDecodeImageM_texinfo}, -{"cvEncodeImage",_wrap_cvEncodeImage,0,0,2,_wrap_cvEncodeImage_texinfo}, -{"cvConvertImage",_wrap_cvConvertImage,0,0,2,_wrap_cvConvertImage_texinfo}, -{"cvWaitKey",_wrap_cvWaitKey,0,0,2,_wrap_cvWaitKey_texinfo}, -{"cvCreateFileCapture",_wrap_cvCreateFileCapture,0,0,2,_wrap_cvCreateFileCapture_texinfo}, -{"cvCreateCameraCapture",_wrap_cvCreateCameraCapture,0,0,2,_wrap_cvCreateCameraCapture_texinfo}, -{"cvGrabFrame",_wrap_cvGrabFrame,0,0,2,_wrap_cvGrabFrame_texinfo}, -{"cvRetrieveFrame__Deprecated",_wrap_cvRetrieveFrame__Deprecated,0,0,2,_wrap_cvRetrieveFrame__Deprecated_texinfo}, -{"cvQueryFrame__Deprecated",_wrap_cvQueryFrame__Deprecated,0,0,2,_wrap_cvQueryFrame__Deprecated_texinfo}, -{"cvReleaseCapture",_wrap_cvReleaseCapture,0,0,2,_wrap_cvReleaseCapture_texinfo}, -{"cvGetCaptureProperty",_wrap_cvGetCaptureProperty,0,0,2,_wrap_cvGetCaptureProperty_texinfo}, -{"cvSetCaptureProperty",_wrap_cvSetCaptureProperty,0,0,2,_wrap_cvSetCaptureProperty_texinfo}, -{"cvGetCaptureDomain",_wrap_cvGetCaptureDomain,0,0,2,_wrap_cvGetCaptureDomain_texinfo}, -{"CV_FOURCC",_wrap_CV_FOURCC,0,0,2,_wrap_CV_FOURCC_texinfo}, -{"cvCreateVideoWriter",_wrap_cvCreateVideoWriter,0,0,2,_wrap_cvCreateVideoWriter_texinfo}, -{"cvWriteFrame",_wrap_cvWriteFrame,0,0,2,_wrap_cvWriteFrame_texinfo}, -{"cvReleaseVideoWriter",_wrap_cvReleaseVideoWriter,0,0,2,_wrap_cvReleaseVideoWriter_texinfo}, -{"new_CvvImage",_wrap_new_CvvImage,0,0,2,_wrap_new_CvvImage_texinfo}, -{"delete_CvvImage",_wrap_delete_CvvImage,0,0,2,_wrap_delete_CvvImage_texinfo}, -{"CvvImage_Create",_wrap_CvvImage_Create,0,0,2,_wrap_CvvImage_Create_texinfo}, -{"CvvImage_Load",_wrap_CvvImage_Load,0,0,2,_wrap_CvvImage_Load_texinfo}, -{"CvvImage_LoadRect",_wrap_CvvImage_LoadRect,0,0,2,_wrap_CvvImage_LoadRect_texinfo}, -{"CvvImage_Save",_wrap_CvvImage_Save,0,0,2,_wrap_CvvImage_Save_texinfo}, -{"CvvImage_CopyOf",_wrap_CvvImage_CopyOf,0,0,2,_wrap_CvvImage_CopyOf_texinfo}, -{"CvvImage_GetImage",_wrap_CvvImage_GetImage,0,0,2,_wrap_CvvImage_GetImage_texinfo}, -{"CvvImage_Destroy",_wrap_CvvImage_Destroy,0,0,2,_wrap_CvvImage_Destroy_texinfo}, -{"CvvImage_Width",_wrap_CvvImage_Width,0,0,2,_wrap_CvvImage_Width_texinfo}, -{"CvvImage_Height",_wrap_CvvImage_Height,0,0,2,_wrap_CvvImage_Height_texinfo}, -{"CvvImage_Bpp",_wrap_CvvImage_Bpp,0,0,2,_wrap_CvvImage_Bpp_texinfo}, -{"CvvImage_Fill",_wrap_CvvImage_Fill,0,0,2,_wrap_CvvImage_Fill_texinfo}, -{"CvvImage_Show",_wrap_CvvImage_Show,0,0,2,_wrap_CvvImage_Show_texinfo}, -{"delete_CvCapture",_wrap_delete_CvCapture,0,0,2,_wrap_delete_CvCapture_texinfo}, -{"delete_CvVideoWriter",_wrap_delete_CvVideoWriter,0,0,2,_wrap_delete_CvVideoWriter_texinfo}, -{"cv2mat",_wrap_cv2mat,0,0,2,_wrap_cv2mat_texinfo}, -{"mat2cv",_wrap_mat2cv,0,0,2,_wrap_mat2cv_texinfo}, -{"cv2im",_wrap_cv2im,0,0,2,_wrap_cv2im_texinfo}, -{"im2cv",_wrap_im2cv,0,0,2,_wrap_im2cv_texinfo}, -{0,0,0,0,0} -}; - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - -static void *_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< CvPoint,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvConnectedComp > *) x)); -} -static void *_p_CvTypedSeqT_CvRect_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvRect > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,3 > > *) x)); -} -static void *_p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvSeq * > *) x)); -} -static void *_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvQuadEdge2D > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint2D32f > *) x)); -} -static swig_type_info _swigt__p_Cv32suf = {"_p_Cv32suf", "Cv32suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv64suf = {"_p_Cv64suf", "Cv64suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAttrList = {"_p_CvAttrList", "CvAttrList *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAvgComp = {"_p_CvAvgComp", "CvAvgComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBox2D = {"_p_CvBox2D", "CvBox2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvCapture = {"_p_CvCapture", "CvCapture *", 0, 0, (void*)&_wrap_class_CvCapture, 0}; -static swig_type_info _swigt__p_CvChain = {"_p_CvChain", "CvChain *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChainPtReader = {"_p_CvChainPtReader", "CvChainPtReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConDensation = {"_p_CvConDensation", "CvConDensation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConnectedComp = {"_p_CvConnectedComp", "CvConnectedComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContour = {"_p_CvContour", "CvPoint2DSeq *|CvContour *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContourTree = {"_p_CvContourTree", "CvContourTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConvexityDefect = {"_p_CvConvexityDefect", "CvConvexityDefect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileNode = {"_p_CvFileNode", "CvFileNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileStorage = {"_p_CvFileStorage", "CvFileStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFilter = {"_p_CvFilter", "enum CvFilter *|CvFilter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFont = {"_p_CvFont", "CvFont *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGenericHash = {"_p_CvGenericHash", "CvGenericHash *|CvFileNodeHash *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraph = {"_p_CvGraph", "CvGraph *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphEdge = {"_p_CvGraphEdge", "CvGraphEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphScanner = {"_p_CvGraphScanner", "CvGraphScanner *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx = {"_p_CvGraphVtx", "CvGraphVtx *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx2D = {"_p_CvGraphVtx2D", "CvGraphVtx2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifier = {"_p_CvHaarClassifier", "CvHaarClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifierCascade = {"_p_CvHaarClassifierCascade", "CvHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarFeature = {"_p_CvHaarFeature", "CvHaarFeature *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarStageClassifier = {"_p_CvHaarStageClassifier", "CvHaarStageClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHidHaarClassifierCascade = {"_p_CvHidHaarClassifierCascade", "CvHidHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHistogram = {"_p_CvHistogram", "CvHistogram *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHuMoments = {"_p_CvHuMoments", "CvHuMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvKalman = {"_p_CvKalman", "CvKalman *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLineIterator = {"_p_CvLineIterator", "CvLineIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMSERParams = {"_p_CvMSERParams", "CvMSERParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMat = {"_p_CvMat", "CvMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND = {"_p_CvMatND", "CvMatND *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatrix3 = {"_p_CvMatrix3", "CvMatrix3 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemBlock = {"_p_CvMemBlock", "CvMemBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStorage = {"_p_CvMemStorage", "CvMemStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStoragePos = {"_p_CvMemStoragePos", "CvMemStoragePos *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvModuleInfo = {"_p_CvModuleInfo", "CvModuleInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMoments = {"_p_CvMoments", "CvMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNArrayIterator = {"_p_CvNArrayIterator", "CvNArrayIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNextEdgeType = {"_p_CvNextEdgeType", "enum CvNextEdgeType *|CvNextEdgeType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPOSITObject = {"_p_CvPOSITObject", "CvPOSITObject *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPluginFuncInfo = {"_p_CvPluginFuncInfo", "CvPluginFuncInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint = {"_p_CvPoint", "CvPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D32f = {"_p_CvPoint2D32f", "CvPoint2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D64f = {"_p_CvPoint2D64f", "CvPoint2D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D32f = {"_p_CvPoint3D32f", "CvPoint3D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D64f = {"_p_CvPoint3D64f", "CvPoint3D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvQuadEdge2D = {"_p_CvQuadEdge2D", "CvQuadEdge2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRNG_Wrapper = {"_p_CvRNG_Wrapper", "CvRNG_Wrapper *", 0, 0, (void*)&_wrap_class_CvRNG_Wrapper, 0}; -static swig_type_info _swigt__p_CvRect = {"_p_CvRect", "CvRect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFParams = {"_p_CvSURFParams", "CvSURFParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFPoint = {"_p_CvSURFPoint", "CvSURFPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvScalar = {"_p_CvScalar", "CvScalar *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeq = {"_p_CvSeq", "CvSeq *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t = {"_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t = {"_p_CvTypedSeqT_CvTupleT_float_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvRect_t = {"_p_CvTypedSeqT_CvRect_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint_t = {"_p_CvTypedSeqT_CvPoint_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvQuadEdge2D_t = {"_p_CvTypedSeqT_CvQuadEdge2D_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvSeq_p_t = {"_p_CvTypedSeqT_CvSeq_p_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint2D32f_t = {"_p_CvTypedSeqT_CvPoint2D32f_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t = {"_p_CvTypedSeqT_CvTupleT_float_3_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvConnectedComp_t = {"_p_CvTypedSeqT_CvConnectedComp_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvSeqBlock = {"_p_CvSeqBlock", "CvSeqBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqReader = {"_p_CvSeqReader", "CvSeqReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqWriter = {"_p_CvSeqWriter", "CvSeqWriter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSet = {"_p_CvSet", "CvSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSetElem = {"_p_CvSetElem", "CvSetElem *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize = {"_p_CvSize", "CvSize *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize2D32f = {"_p_CvSize2D32f", "CvSize2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSlice = {"_p_CvSlice", "CvSlice *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMat = {"_p_CvSparseMat", "CvSparseMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMatIterator = {"_p_CvSparseMatIterator", "CvSparseMatIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseNode = {"_p_CvSparseNode", "CvSparseNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarDetectorParams = {"_p_CvStarDetectorParams", "CvStarDetectorParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarKeypoint = {"_p_CvStarKeypoint", "CvStarKeypoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoBMState = {"_p_CvStereoBMState", "CvStereoBMState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoGCState = {"_p_CvStereoGCState", "CvStereoGCState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvString = {"_p_CvString", "CvString *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStringHashNode = {"_p_CvStringHashNode", "CvStringHashNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2D = {"_p_CvSubdiv2D", "CvSubdiv2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DEdge_Wrapper = {"_p_CvSubdiv2DEdge_Wrapper", "CvSubdiv2DEdge_Wrapper *", 0, 0, (void*)&_wrap_class_CvSubdiv2DEdge_Wrapper, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPoint = {"_p_CvSubdiv2DPoint", "CvSubdiv2DPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPointLocation = {"_p_CvSubdiv2DPointLocation", "enum CvSubdiv2DPointLocation *|CvSubdiv2DPointLocation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTermCriteria = {"_p_CvTermCriteria", "CvTermCriteria *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTreeNodeIterator = {"_p_CvTreeNodeIterator", "CvTreeNodeIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypeInfo = {"_p_CvTypeInfo", "CvTypeInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvVideoWriter = {"_p_CvVideoWriter", "CvVideoWriter *", 0, 0, (void*)&_wrap_class_CvVideoWriter, 0}; -static swig_type_info _swigt__p_CvvImage = {"_p_CvvImage", "CvvImage *|CImage *", 0, 0, (void*)&_wrap_class_CvvImage, 0}; -static swig_type_info _swigt__p__IplConvKernel = {"_p__IplConvKernel", "_IplConvKernel *|IplConvKernel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernelFP = {"_p__IplConvKernelFP", "_IplConvKernelFP *|IplConvKernelFP *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplImage = {"_p__IplImage", "_IplImage *|IplImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplROI = {"_p__IplROI", "_IplROI *|IplROI *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplTileInfo = {"_p__IplTileInfo", "_IplTileInfo *|IplTileInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_allocator_type = {"_p_allocator_type", "allocator_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_difference_type = {"_p_difference_type", "difference_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int__void = {"_p_f_int__void", "void (*)(int)|CvTrackbarCallback", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_int_int_int_p_void__void = {"_p_f_int_int_int_int_p_void__void", "void (*)(int,int,int,int,void *)|CvMouseCallback", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_p_void__void = {"_p_f_int_p_void__void", "CvTrackbarCallback2|void (*)(int,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int = {"_p_int", "CvHistType *|int *|CVStatus *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|int64 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_octave_value = {"_p_octave_value", "octave_value *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvCapture = {"_p_p_CvCapture", "CvCapture **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvVideoWriter = {"_p_p_CvVideoWriter", "CvVideoWriter **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "schar *|signed char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *|CvSubdiv2DEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_type = {"_p_size_type", "size_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uint64 *|CvRNG *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "uchar *|unsigned char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|ushort *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_value_type = {"_p_value_type", "value_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_void = {"_p_void", "CvArr *|void *", 0, 0, (void*)0, 0}; - -static swig_type_info *swig_type_initial[] = { - &_swigt__p_Cv32suf, - &_swigt__p_Cv64suf, - &_swigt__p_CvAttrList, - &_swigt__p_CvAvgComp, - &_swigt__p_CvBox2D, - &_swigt__p_CvCapture, - &_swigt__p_CvChain, - &_swigt__p_CvChainPtReader, - &_swigt__p_CvConDensation, - &_swigt__p_CvConnectedComp, - &_swigt__p_CvContour, - &_swigt__p_CvContourTree, - &_swigt__p_CvConvexityDefect, - &_swigt__p_CvFileNode, - &_swigt__p_CvFileStorage, - &_swigt__p_CvFilter, - &_swigt__p_CvFont, - &_swigt__p_CvGenericHash, - &_swigt__p_CvGraph, - &_swigt__p_CvGraphEdge, - &_swigt__p_CvGraphScanner, - &_swigt__p_CvGraphVtx, - &_swigt__p_CvGraphVtx2D, - &_swigt__p_CvHaarClassifier, - &_swigt__p_CvHaarClassifierCascade, - &_swigt__p_CvHaarFeature, - &_swigt__p_CvHaarStageClassifier, - &_swigt__p_CvHidHaarClassifierCascade, - &_swigt__p_CvHistogram, - &_swigt__p_CvHuMoments, - &_swigt__p_CvKalman, - &_swigt__p_CvLineIterator, - &_swigt__p_CvMSERParams, - &_swigt__p_CvMat, - &_swigt__p_CvMatND, - &_swigt__p_CvMatrix3, - &_swigt__p_CvMemBlock, - &_swigt__p_CvMemStorage, - &_swigt__p_CvMemStoragePos, - &_swigt__p_CvModuleInfo, - &_swigt__p_CvMoments, - &_swigt__p_CvNArrayIterator, - &_swigt__p_CvNextEdgeType, - &_swigt__p_CvPOSITObject, - &_swigt__p_CvPluginFuncInfo, - &_swigt__p_CvPoint, - &_swigt__p_CvPoint2D32f, - &_swigt__p_CvPoint2D64f, - &_swigt__p_CvPoint3D32f, - &_swigt__p_CvPoint3D64f, - &_swigt__p_CvQuadEdge2D, - &_swigt__p_CvRNG_Wrapper, - &_swigt__p_CvRect, - &_swigt__p_CvSURFParams, - &_swigt__p_CvSURFPoint, - &_swigt__p_CvScalar, - &_swigt__p_CvSeq, - &_swigt__p_CvSeqBlock, - &_swigt__p_CvSeqReader, - &_swigt__p_CvSeqWriter, - &_swigt__p_CvSet, - &_swigt__p_CvSetElem, - &_swigt__p_CvSize, - &_swigt__p_CvSize2D32f, - &_swigt__p_CvSlice, - &_swigt__p_CvSparseMat, - &_swigt__p_CvSparseMatIterator, - &_swigt__p_CvSparseNode, - &_swigt__p_CvStarDetectorParams, - &_swigt__p_CvStarKeypoint, - &_swigt__p_CvStereoBMState, - &_swigt__p_CvStereoGCState, - &_swigt__p_CvString, - &_swigt__p_CvStringHashNode, - &_swigt__p_CvSubdiv2D, - &_swigt__p_CvSubdiv2DEdge_Wrapper, - &_swigt__p_CvSubdiv2DPoint, - &_swigt__p_CvSubdiv2DPointLocation, - &_swigt__p_CvTermCriteria, - &_swigt__p_CvTreeNodeIterator, - &_swigt__p_CvTypeInfo, - &_swigt__p_CvTypedSeqT_CvConnectedComp_t, - &_swigt__p_CvTypedSeqT_CvPoint2D32f_t, - &_swigt__p_CvTypedSeqT_CvPoint_t, - &_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, - &_swigt__p_CvTypedSeqT_CvRect_t, - &_swigt__p_CvTypedSeqT_CvSeq_p_t, - &_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, - &_swigt__p_CvVideoWriter, - &_swigt__p_CvvImage, - &_swigt__p__IplConvKernel, - &_swigt__p__IplConvKernelFP, - &_swigt__p__IplImage, - &_swigt__p__IplROI, - &_swigt__p__IplTileInfo, - &_swigt__p_allocator_type, - &_swigt__p_char, - &_swigt__p_difference_type, - &_swigt__p_f_int__void, - &_swigt__p_f_int_int_int_int_p_void__void, - &_swigt__p_f_int_p_void__void, - &_swigt__p_int, - &_swigt__p_int64_t, - &_swigt__p_octave_value, - &_swigt__p_p_CvCapture, - &_swigt__p_p_CvVideoWriter, - &_swigt__p_p_char, - &_swigt__p_signed_char, - &_swigt__p_size_t, - &_swigt__p_size_type, - &_swigt__p_uint64_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_short, - &_swigt__p_value_type, - &_swigt__p_void, -}; - -static swig_cast_info _swigc__p_Cv32suf[] = { {&_swigt__p_Cv32suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv64suf[] = { {&_swigt__p_Cv64suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAttrList[] = { {&_swigt__p_CvAttrList, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAvgComp[] = { {&_swigt__p_CvAvgComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBox2D[] = { {&_swigt__p_CvBox2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvCapture[] = { {&_swigt__p_CvCapture, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChain[] = { {&_swigt__p_CvChain, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChainPtReader[] = { {&_swigt__p_CvChainPtReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConDensation[] = { {&_swigt__p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConnectedComp[] = { {&_swigt__p_CvConnectedComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContour[] = { {&_swigt__p_CvContour, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContourTree[] = { {&_swigt__p_CvContourTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConvexityDefect[] = { {&_swigt__p_CvConvexityDefect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode[] = { {&_swigt__p_CvFileNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileStorage[] = { {&_swigt__p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFilter[] = { {&_swigt__p_CvFilter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFont[] = { {&_swigt__p_CvFont, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGenericHash[] = { {&_swigt__p_CvGenericHash, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraph[] = { {&_swigt__p_CvGraph, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphEdge[] = { {&_swigt__p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphScanner[] = { {&_swigt__p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx[] = { {&_swigt__p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx2D[] = { {&_swigt__p_CvGraphVtx2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifier[] = { {&_swigt__p_CvHaarClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifierCascade[] = { {&_swigt__p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature[] = { {&_swigt__p_CvHaarFeature, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarStageClassifier[] = { {&_swigt__p_CvHaarStageClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHidHaarClassifierCascade[] = { {&_swigt__p_CvHidHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHistogram[] = { {&_swigt__p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHuMoments[] = { {&_swigt__p_CvHuMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKalman[] = { {&_swigt__p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLineIterator[] = { {&_swigt__p_CvLineIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMSERParams[] = { {&_swigt__p_CvMSERParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat[] = { {&_swigt__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND[] = { {&_swigt__p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix3[] = { {&_swigt__p_CvMatrix3, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemBlock[] = { {&_swigt__p_CvMemBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStorage[] = { {&_swigt__p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStoragePos[] = { {&_swigt__p_CvMemStoragePos, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModuleInfo[] = { {&_swigt__p_CvModuleInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMoments[] = { {&_swigt__p_CvMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNArrayIterator[] = { {&_swigt__p_CvNArrayIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNextEdgeType[] = { {&_swigt__p_CvNextEdgeType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPOSITObject[] = { {&_swigt__p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPluginFuncInfo[] = { {&_swigt__p_CvPluginFuncInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint[] = { {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D32f[] = { {&_swigt__p_CvPoint2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D64f[] = { {&_swigt__p_CvPoint2D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D32f[] = { {&_swigt__p_CvPoint3D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D64f[] = { {&_swigt__p_CvPoint3D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvQuadEdge2D[] = { {&_swigt__p_CvQuadEdge2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRNG_Wrapper[] = { {&_swigt__p_CvRNG_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRect[] = { {&_swigt__p_CvRect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFParams[] = { {&_swigt__p_CvSURFParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFPoint[] = { {&_swigt__p_CvSURFPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvScalar[] = { {&_swigt__p_CvScalar, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t[] = {{&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t[] = {{&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvRect_t[] = {{&_swigt__p_CvTypedSeqT_CvRect_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint_t[] = {{&_swigt__p_CvTypedSeqT_CvPoint_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvQuadEdge2D_t[] = {{&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvSeq_p_t[] = {{&_swigt__p_CvTypedSeqT_CvSeq_p_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint2D32f_t[] = {{&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t[] = {{&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvConnectedComp_t[] = {{&_swigt__p_CvTypedSeqT_CvConnectedComp_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeq[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, _p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, _p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvRect_t, _p_CvTypedSeqT_CvRect_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint_t, _p_CvTypedSeqT_CvPoint_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, _p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvSeq_p_t, _p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, _p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvSeq, 0, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, _p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvConnectedComp_t, _p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqBlock[] = { {&_swigt__p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqReader[] = { {&_swigt__p_CvSeqReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqWriter[] = { {&_swigt__p_CvSeqWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSet[] = { {&_swigt__p_CvSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSetElem[] = { {&_swigt__p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize[] = { {&_swigt__p_CvSize, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize2D32f[] = { {&_swigt__p_CvSize2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSlice[] = { {&_swigt__p_CvSlice, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMat[] = { {&_swigt__p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMatIterator[] = { {&_swigt__p_CvSparseMatIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseNode[] = { {&_swigt__p_CvSparseNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarDetectorParams[] = { {&_swigt__p_CvStarDetectorParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarKeypoint[] = { {&_swigt__p_CvStarKeypoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoBMState[] = { {&_swigt__p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoGCState[] = { {&_swigt__p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvString[] = { {&_swigt__p_CvString, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStringHashNode[] = { {&_swigt__p_CvStringHashNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2D[] = { {&_swigt__p_CvSubdiv2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DEdge_Wrapper[] = { {&_swigt__p_CvSubdiv2DEdge_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPoint[] = { {&_swigt__p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPointLocation[] = { {&_swigt__p_CvSubdiv2DPointLocation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTermCriteria[] = { {&_swigt__p_CvTermCriteria, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTreeNodeIterator[] = { {&_swigt__p_CvTreeNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypeInfo[] = { {&_swigt__p_CvTypeInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvVideoWriter[] = { {&_swigt__p_CvVideoWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvvImage[] = { {&_swigt__p_CvvImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernel[] = { {&_swigt__p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernelFP[] = { {&_swigt__p__IplConvKernelFP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplImage[] = { {&_swigt__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplROI[] = { {&_swigt__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplTileInfo[] = { {&_swigt__p__IplTileInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_allocator_type[] = { {&_swigt__p_allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_difference_type[] = { {&_swigt__p_difference_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int__void[] = { {&_swigt__p_f_int__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_int_int_int_p_void__void[] = { {&_swigt__p_f_int_int_int_int_p_void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_p_void__void[] = { {&_swigt__p_f_int_p_void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_octave_value[] = { {&_swigt__p_octave_value, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvCapture[] = { {&_swigt__p_p_CvCapture, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvVideoWriter[] = { {&_swigt__p_p_CvVideoWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_type[] = { {&_swigt__p_size_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_value_type[] = { {&_swigt__p_value_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; - -static swig_cast_info *swig_cast_initial[] = { - _swigc__p_Cv32suf, - _swigc__p_Cv64suf, - _swigc__p_CvAttrList, - _swigc__p_CvAvgComp, - _swigc__p_CvBox2D, - _swigc__p_CvCapture, - _swigc__p_CvChain, - _swigc__p_CvChainPtReader, - _swigc__p_CvConDensation, - _swigc__p_CvConnectedComp, - _swigc__p_CvContour, - _swigc__p_CvContourTree, - _swigc__p_CvConvexityDefect, - _swigc__p_CvFileNode, - _swigc__p_CvFileStorage, - _swigc__p_CvFilter, - _swigc__p_CvFont, - _swigc__p_CvGenericHash, - _swigc__p_CvGraph, - _swigc__p_CvGraphEdge, - _swigc__p_CvGraphScanner, - _swigc__p_CvGraphVtx, - _swigc__p_CvGraphVtx2D, - _swigc__p_CvHaarClassifier, - _swigc__p_CvHaarClassifierCascade, - _swigc__p_CvHaarFeature, - _swigc__p_CvHaarStageClassifier, - _swigc__p_CvHidHaarClassifierCascade, - _swigc__p_CvHistogram, - _swigc__p_CvHuMoments, - _swigc__p_CvKalman, - _swigc__p_CvLineIterator, - _swigc__p_CvMSERParams, - _swigc__p_CvMat, - _swigc__p_CvMatND, - _swigc__p_CvMatrix3, - _swigc__p_CvMemBlock, - _swigc__p_CvMemStorage, - _swigc__p_CvMemStoragePos, - _swigc__p_CvModuleInfo, - _swigc__p_CvMoments, - _swigc__p_CvNArrayIterator, - _swigc__p_CvNextEdgeType, - _swigc__p_CvPOSITObject, - _swigc__p_CvPluginFuncInfo, - _swigc__p_CvPoint, - _swigc__p_CvPoint2D32f, - _swigc__p_CvPoint2D64f, - _swigc__p_CvPoint3D32f, - _swigc__p_CvPoint3D64f, - _swigc__p_CvQuadEdge2D, - _swigc__p_CvRNG_Wrapper, - _swigc__p_CvRect, - _swigc__p_CvSURFParams, - _swigc__p_CvSURFPoint, - _swigc__p_CvScalar, - _swigc__p_CvSeq, - _swigc__p_CvSeqBlock, - _swigc__p_CvSeqReader, - _swigc__p_CvSeqWriter, - _swigc__p_CvSet, - _swigc__p_CvSetElem, - _swigc__p_CvSize, - _swigc__p_CvSize2D32f, - _swigc__p_CvSlice, - _swigc__p_CvSparseMat, - _swigc__p_CvSparseMatIterator, - _swigc__p_CvSparseNode, - _swigc__p_CvStarDetectorParams, - _swigc__p_CvStarKeypoint, - _swigc__p_CvStereoBMState, - _swigc__p_CvStereoGCState, - _swigc__p_CvString, - _swigc__p_CvStringHashNode, - _swigc__p_CvSubdiv2D, - _swigc__p_CvSubdiv2DEdge_Wrapper, - _swigc__p_CvSubdiv2DPoint, - _swigc__p_CvSubdiv2DPointLocation, - _swigc__p_CvTermCriteria, - _swigc__p_CvTreeNodeIterator, - _swigc__p_CvTypeInfo, - _swigc__p_CvTypedSeqT_CvConnectedComp_t, - _swigc__p_CvTypedSeqT_CvPoint2D32f_t, - _swigc__p_CvTypedSeqT_CvPoint_t, - _swigc__p_CvTypedSeqT_CvQuadEdge2D_t, - _swigc__p_CvTypedSeqT_CvRect_t, - _swigc__p_CvTypedSeqT_CvSeq_p_t, - _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t, - _swigc__p_CvVideoWriter, - _swigc__p_CvvImage, - _swigc__p__IplConvKernel, - _swigc__p__IplConvKernelFP, - _swigc__p__IplImage, - _swigc__p__IplROI, - _swigc__p__IplTileInfo, - _swigc__p_allocator_type, - _swigc__p_char, - _swigc__p_difference_type, - _swigc__p_f_int__void, - _swigc__p_f_int_int_int_int_p_void__void, - _swigc__p_f_int_p_void__void, - _swigc__p_int, - _swigc__p_int64_t, - _swigc__p_octave_value, - _swigc__p_p_CvCapture, - _swigc__p_p_CvVideoWriter, - _swigc__p_p_char, - _swigc__p_signed_char, - _swigc__p_size_t, - _swigc__p_size_type, - _swigc__p_uint64_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_short, - _swigc__p_value_type, - _swigc__p_void, -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -/* ----------------------------------------------------------------------------- - * Type initialization: - * This problem is tough by the requirement that no dynamic - * memory is used. Also, since swig_type_info structures store pointers to - * swig_cast_info structures and swig_cast_info structures store pointers back - * to swig_type_info structures, we need some lookup code at initialization. - * The idea is that swig generates all the structures that are needed. - * The runtime then collects these partially filled structures. - * The SWIG_InitializeModule function takes these initial arrays out of - * swig_module, and does all the lookup, filling in the swig_module.types - * array with the correct data and linking the correct swig_cast_info - * structures together. - * - * The generated swig_type_info structures are assigned staticly to an initial - * array. We just loop through that array, and handle each type individually. - * First we lookup if this type has been already loaded, and if so, use the - * loaded structure instead of the generated one. Then we have to fill in the - * cast linked list. The cast data is initially stored in something like a - * two-dimensional array. Each row corresponds to a type (there are the same - * number of rows as there are in the swig_type_initial array). Each entry in - * a column is one of the swig_cast_info structures for that type. - * The cast_initial array is actually an array of arrays, because each row has - * a variable number of columns. So to actually build the cast linked list, - * we find the array of casts associated with the type, and loop through it - * adding the casts to the list. The one last trick we need to do is making - * sure the type pointer in the swig_cast_info struct is correct. - * - * First off, we lookup the cast->type name to see if it is already loaded. - * There are three cases to handle: - * 1) If the cast->type has already been loaded AND the type we are adding - * casting info to has not been loaded (it is in this module), THEN we - * replace the cast->type pointer with the type pointer that has already - * been loaded. - * 2) If BOTH types (the one we are adding casting info to, and the - * cast->type) are loaded, THEN the cast info has already been loaded by - * the previous module so we just ignore it. - * 3) Finally, if cast->type has not already been loaded, then we add that - * swig_cast_info to the linked list (because the cast->type) pointer will - * be correct. - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* c-mode */ -#endif -#endif - -#if 0 -#define SWIGRUNTIME_DEBUG -#endif - - -SWIGRUNTIME void -SWIG_InitializeModule(void *clientdata) { - size_t i; - swig_module_info *module_head, *iter; - int found, init; - - clientdata = clientdata; - - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next==0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (!module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - module_head = &swig_module; - } else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - found=0; - iter=module_head; - do { - if (iter==&swig_module) { - found=1; - break; - } - iter=iter->next; - } while (iter!= module_head); - - /* if the is found in the list, then all is done and we may leave */ - if (found) return; - /* otherwise we must add out module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpeters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) return; - - /* Now work on filling in swig_module.types */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %d\n", swig_module.size); -#endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info *type = 0; - swig_type_info *ret; - swig_cast_info *cast; - -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); -#endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } else { - /* Check for casting already in the list */ - swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (!ocast) ret = 0; - } - } - - if (!ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; - } - swig_module.types[i] = 0; - -#ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info *cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n",j); - } - printf("**** SWIG_InitializeModule: Cast List ******\n"); -#endif -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientData(void) { - size_t i; - swig_cast_info *equiv; - static int init_run = 0; - - if (init_run) return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (!equiv->converter) { - if (equiv->type && !equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } - } - } -} - -#ifdef __cplusplus -#if 0 -{ /* c-mode */ -#endif -} -#endif - - - -static void SWIG_init_user(octave_swig_type* module_ns); - -DEFUN_DLD (SWIG_name,args,nargout,SWIG_name_d) { - static bool already_init=false; - if (already_init) - return octave_value_list(); - already_init=true; - - octave_swig_ref::register_type(); - octave_swig_packed::register_type(); - SWIG_InitializeModule(0); - SWIG_PropagateClientData(); - - install_builtin_function(swig_type,"swig_type",std::string()); - install_builtin_function(swig_typequery,"swig_typequery",std::string()); - install_builtin_function(swig_this,"swig_this",std::string()); - install_builtin_function(swig_subclass,"subclass",std::string()); - - bool global_option=true; // * swig cli option should control this default - for (int j=0;jassign(swig_globals[j].name,&swig_globals[j]); - - octave_swig_type* module_ns=new octave_swig_type(0, 0, 0, true); - module_ns->assign("cvar",Swig::swig_value_ref(cvar_ns)); - for (int j=0;swig_globals[j].name;++j) - if (swig_globals[j].method) - module_ns->assign(swig_globals[j].name,&swig_globals[j]); - - // * need better solution here; swig_type -> octave_class mapping is - // * really n-to-1, in some cases such as template partial spec, etc. - // * see failing tests. - for (int j=0;swig_types[j];++j) - if (swig_types[j]->clientdata) { - swig_octave_class* c=(swig_octave_class*)swig_types[j]->clientdata; - module_ns->assign(c->name, - Swig::swig_value_ref - (new octave_swig_type(0,swig_types[j]))); - } - - SWIG_init_user(module_ns); - - SWIG_InstallOps(octave_swig_ref::static_type_id()); - - // the incref is necessary so install_global doesn't destroy module_ns, - // as it would if it installed something with the same name as the module. - module_ns->incref(); - if (global_option) - module_ns->install_global(); - module_ns->decref(); - -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(SWIG_name_d,true)); -#else - symbol_table::varref(SWIG_name_d); - symbol_table::mark_global(SWIG_name_d); -#endif - set_global_value(SWIG_name_d,Swig::swig_value_ref(module_ns)); - -#if USE_OCTAVE_API_VERSION>=37 - mlock(); -#endif - - return octave_value_list(); -} - -// workaround bug in octave where installing global variable of custom type and then -// exiting without explicitly clearing the variable causes octave to segfault. -#if USE_OCTAVE_API_VERSION>=37 -struct oct_file_unload { - ~oct_file_unload() { - string_vector vars = symbol_table::global_variable_names(); - for (int i = 0; i < vars.length(); i++) - symbol_table::clear_global(vars[i]); - } -}; -static oct_file_unload __unload; -#endif - - -static void SWIG_init_user(octave_swig_type* module_ns) -{ - SWIG_Octave_SetConstant(module_ns,"CV_WINDOW_AUTOSIZE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_MOUSEMOVE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_LBUTTONDOWN",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_RBUTTONDOWN",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_MBUTTONDOWN",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_LBUTTONUP",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_RBUTTONUP",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_MBUTTONUP",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_LBUTTONDBLCLK",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_RBUTTONDBLCLK",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_MBUTTONDBLCLK",SWIG_From_int((int)(9))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_FLAG_LBUTTON",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_FLAG_RBUTTON",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_FLAG_MBUTTON",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_FLAG_CTRLKEY",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_FLAG_SHIFTKEY",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_EVENT_FLAG_ALTKEY",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_LOAD_IMAGE_UNCHANGED",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"CV_LOAD_IMAGE_GRAYSCALE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_LOAD_IMAGE_COLOR",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_LOAD_IMAGE_ANYDEPTH",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_LOAD_IMAGE_ANYCOLOR",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_IMWRITE_JPEG_QUALITY",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_IMWRITE_PNG_COMPRESSION",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_IMWRITE_PXM_BINARY",SWIG_From_int((int)(32))); - SWIG_Octave_SetConstant(module_ns,"CV_CVTIMG_FLIP",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CVTIMG_SWAP_RB",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_ANY",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_MIL",SWIG_From_int((int)(100))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_VFW",SWIG_From_int((int)(200))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_V4L",SWIG_From_int((int)(200))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_V4L2",SWIG_From_int((int)(200))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_FIREWARE",SWIG_From_int((int)(300))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_FIREWIRE",SWIG_From_int((int)(300))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_IEEE1394",SWIG_From_int((int)(300))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_DC1394",SWIG_From_int((int)(300))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_CMU1394",SWIG_From_int((int)(300))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_STEREO",SWIG_From_int((int)(400))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_TYZX",SWIG_From_int((int)(400))); - SWIG_Octave_SetConstant(module_ns,"CV_TYZX_LEFT",SWIG_From_int((int)(400))); - SWIG_Octave_SetConstant(module_ns,"CV_TYZX_RIGHT",SWIG_From_int((int)(401))); - SWIG_Octave_SetConstant(module_ns,"CV_TYZX_COLOR",SWIG_From_int((int)(402))); - SWIG_Octave_SetConstant(module_ns,"CV_TYZX_Z",SWIG_From_int((int)(403))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_QT",SWIG_From_int((int)(500))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_UNICAP",SWIG_From_int((int)(600))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_DSHOW",SWIG_From_int((int)(700))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_POS_MSEC",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_POS_FRAMES",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_POS_AVI_RATIO",SWIG_From_int((int)(2))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_FRAME_WIDTH",SWIG_From_int((int)(3))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_FRAME_HEIGHT",SWIG_From_int((int)(4))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_FPS",SWIG_From_int((int)(5))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_FOURCC",SWIG_From_int((int)(6))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_FRAME_COUNT",SWIG_From_int((int)(7))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_FORMAT",SWIG_From_int((int)(8))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_MODE",SWIG_From_int((int)(9))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_BRIGHTNESS",SWIG_From_int((int)(10))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_CONTRAST",SWIG_From_int((int)(11))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_SATURATION",SWIG_From_int((int)(12))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_HUE",SWIG_From_int((int)(13))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_GAIN",SWIG_From_int((int)(14))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_EXPOSURE",SWIG_From_int((int)(15))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_CONVERT_RGB",SWIG_From_int((int)(16))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_WHITE_BALANCE",SWIG_From_int((int)(17))); - SWIG_Octave_SetConstant(module_ns,"CV_CAP_PROP_RECTIFICATION",SWIG_From_int((int)(18))); - SWIG_Octave_SetConstant(module_ns,"CV_FOURCC_PROMPT",SWIG_From_int((int)(-1))); - SWIG_Octave_SetConstant(module_ns,"HG_AUTOSIZE",SWIG_From_int((int)(1))); -} - diff --git a/interfaces/swig/octave/imagedata.i b/interfaces/swig/octave/imagedata.i deleted file mode 100644 index f93f93c79..000000000 --- a/interfaces/swig/octave/imagedata.i +++ /dev/null @@ -1,152 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - -// 2006-08-29 Roman Stanchak -- converted to use CvMat rather than IplImage - - -%{ - -/// Accessor to convert a Octave string into the imageData. -void CvMat_imageData_set(CvMat * self, octave_value object) -{ - /* - char* oct_string = OctString_AsString(object); - int depth = CV_MAT_DEPTH(self->type); - int cn = CV_MAT_CN(self->type); - - if (depth == CV_8U && cn==3){ - // RGB case - // The data is reordered beause OpenCV uses BGR instead of RGB - - for (long line = 0; line < self->rows; ++line) - for (long pixel = 0; pixel < self->cols; ++pixel) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - long position = line*self->step + pixel*3; - long sourcepos = line*self->cols*3 + pixel*3; - self->data.ptr[position ] = oct_string[sourcepos+2]; - self->data.ptr[position+1] = oct_string[sourcepos+1]; - self->data.ptr[position+2] = oct_string[sourcepos ]; - } - } - else if (depth == CV_8U && cn==1) - { - // Grayscale 8bit case - - for (long line = 0; line < self->rows; ++line) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - memcpy - ( - self->data.ptr + line*self->step, - oct_string + line*self->cols, - self->step - ); - } - } - else if ( depth == CV_32F ) - { - // float (32bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*self->step, - oct_string + line*self->cols*sizeof(float), - self->step - ); - } - } - else if ( depth == CV_64F ) - { - // double (64bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*self->step, - oct_string + line*self->cols*sizeof(double), - self->step - ); - } - } - else - { - // make some noise - SendErrorToOctave (SWIG_TypeError, - "CvMat_imageData_set", - "cannot convert string data to this image format", - __FILE__, __LINE__, NULL); - } - */ -} - -/// Accessor to convert the imageData into a Octave string. -octave_value CvMat_imageData_get(CvMat * self) -{ - /* - if (!self->data.ptr) - { - OctErr_SetString(OctExc_TypeError, "Data pointer of CvMat is NULL"); - return NULL; - } - return OctString_FromStringAndSize((const char *)self->data.ptr, self->rows*self->step); - */ - return octave_value(); -} - -%} - -// add virtual member variable to CvMat -%extend CvMat { - octave_value imageData; -}; diff --git a/interfaces/swig/octave/ml.i b/interfaces/swig/octave/ml.i deleted file mode 100644 index 2e81d0f30..000000000 --- a/interfaces/swig/octave/ml.i +++ /dev/null @@ -1,98 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - -%module(package="opencv") ml - -// todo remove these.. -#pragma SWIG nowarn=312,362,303,365,366,367,368,370,371,372,451,454,503 - -%{ -#include -#include -#include -#include -#include "octhelpers.h" -#include "octcvseq.hpp" -%} - -// include octave-specific files -%include "./octtypemaps.i" -%include "exception.i" - -%import "../general/cv.i" - -%include "../general/memory.i" -%include "../general/typemaps.i" - -%newobject cvCreateCNNConvolutionLayer; -%newobject cvCreateCNNSubSamplingLayer; -%newobject cvCreateCNNFullConnectLayer; -%newobject cvCreateCNNetwork; -%newobject cvTrainCNNClassifier; - -%newobject cvCreateCrossValidationEstimateModel; - - -%extend CvEM -{ - octave_value get_covs() - { - CvMat ** pointers = const_cast (self->get_covs()); - int n = self->get_nclusters(); - - octave_value result = OctTuple_New(n); - for (int i=0; i class SwigValueWrapper { - struct SwigMovePointer { - T *ptr; - SwigMovePointer(T *p) : ptr(p) { } - ~SwigMovePointer() { delete ptr; } - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); -public: - SwigValueWrapper() : pointer(0) { } - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } - operator T&() const { return *pointer.ptr; } - T *operator&() { return pointer.ptr; } -}; - -template T SwigValueInit() { - return T(); -} -#endif - -/* ----------------------------------------------------------------------------- - * This section contains generic SWIG labels for method/variable - * declarations/attributes, and other compiler dependent labels. - * ----------------------------------------------------------------------------- */ - -/* template workaround for compilers that cannot correctly implement the C++ standard */ -#ifndef SWIGTEMPLATEDISAMBIGUATOR -# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -# define SWIGTEMPLATEDISAMBIGUATOR template -# elif defined(__HP_aCC) -/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ -/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -# define SWIGTEMPLATEDISAMBIGUATOR template -# else -# define SWIGTEMPLATEDISAMBIGUATOR -# endif -#endif - -/* inline attribute */ -#ifndef SWIGINLINE -# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -# else -# define SWIGINLINE -# endif -#endif - -/* attribute recognised by some compilers to avoid 'unused' warnings */ -#ifndef SWIGUNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -# elif defined(__ICC) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -#endif - -#ifndef SWIG_MSC_UNSUPPRESS_4505 -# if defined(_MSC_VER) -# pragma warning(disable : 4505) /* unreferenced local function has been removed */ -# endif -#endif - -#ifndef SWIGUNUSEDPARM -# ifdef __cplusplus -# define SWIGUNUSEDPARM(p) -# else -# define SWIGUNUSEDPARM(p) p SWIGUNUSED -# endif -#endif - -/* internal SWIG method */ -#ifndef SWIGINTERN -# define SWIGINTERN static SWIGUNUSED -#endif - -/* internal inline SWIG method */ -#ifndef SWIGINTERNINLINE -# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE -#endif - -/* exporting methods */ -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -# ifndef GCC_HASCLASSVISIBILITY -# define GCC_HASCLASSVISIBILITY -# endif -#endif - -#ifndef SWIGEXPORT -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if defined(STATIC_LINKED) -# define SWIGEXPORT -# else -# define SWIGEXPORT __declspec(dllexport) -# endif -# else -# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -# define SWIGEXPORT __attribute__ ((visibility("default"))) -# else -# define SWIGEXPORT -# endif -# endif -#endif - -/* calling conventions for Windows */ -#ifndef SWIGSTDCALL -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# define SWIGSTDCALL __stdcall -# else -# define SWIGSTDCALL -# endif -#endif - -/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) -# define _CRT_SECURE_NO_DEPRECATE -#endif - -/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) -# define _SCL_SECURE_NO_DEPRECATE -#endif - - - -#include -#include -#include -#include -#include - -/* ----------------------------------------------------------------------------- - * swigrun.swg - * - * This file contains generic C API SWIG runtime support for pointer - * type checking. - * ----------------------------------------------------------------------------- */ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "4" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -# define SWIG_QUOTE_STRING(x) #x -# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -# define SWIG_TYPE_TABLE_NAME -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the SWIG runtime code. - In 99.9% of the cases, SWIG just needs to declare them as 'static'. - - But only do this if strictly necessary, ie, if you have problems - with your compiler or suchlike. -*/ - -#ifndef SWIGRUNTIME -# define SWIGRUNTIME SWIGINTERN -#endif - -#ifndef SWIGRUNTIMEINLINE -# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -/* Generic buffer size */ -#ifndef SWIG_BUFFER_SIZE -# define SWIG_BUFFER_SIZE 1024 -#endif - -/* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 - -/* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 - - -/* - Flags/methods for returning states. - - The SWIG conversion methods, as ConvertPtr, return and integer - that tells if the conversion was successful or not. And if not, - an error code can be returned (see swigerrors.swg for the codes). - - Use the following macros/flags to set or process the returning - states. - - In old versions of SWIG, code such as the following was usually written: - - if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { - // success code - } else { - //fail code - } - - Now you can be more explicit: - - int res = SWIG_ConvertPtr(obj,vptr,ty.flags); - if (SWIG_IsOK(res)) { - // success code - } else { - // fail code - } - - which is the same really, but now you can also do - - Type *ptr; - int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); - if (SWIG_IsOK(res)) { - // success code - if (SWIG_IsNewObj(res) { - ... - delete *ptr; - } else { - ... - } - } else { - // fail code - } - - I.e., now SWIG_ConvertPtr can return new objects and you can - identify the case and take care of the deallocation. Of course that - also requires SWIG_ConvertPtr to return new result values, such as - - int SWIG_ConvertPtr(obj, ptr,...) { - if () { - if () { - *ptr = ; - return SWIG_NEWOBJ; - } else { - *ptr = ; - return SWIG_OLDOBJ; - } - } else { - return SWIG_BADOBJ; - } - } - - Of course, returning the plain '0(success)/-1(fail)' still works, but you can be - more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the - SWIG errors code. - - Finally, if the SWIG_CASTRANK_MODE is enabled, the result code - allows to return the 'cast rank', for example, if you have this - - int food(double) - int fooi(int); - - and you call - - food(1) // cast rank '1' (1 -> 1.0) - fooi(1) // cast rank '0' - - just use the SWIG_AddCast()/SWIG_CheckState() -*/ - -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) - -/* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) -/* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) -/* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) -/* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) -/* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) - -/* Cast-Rank Mode */ -#if defined(SWIG_CASTRANK_MODE) -# ifndef SWIG_TypeRank -# define SWIG_TypeRank unsigned long -# endif -# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -# define SWIG_MAXCASTRANK (2) -# endif -# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) -# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) { - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; -} -SWIGINTERNINLINE int SWIG_CheckState(int r) { - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; -} -#else /* no cast-rank mode */ -# define SWIG_AddCast -# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) -#endif - - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *, int *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -/* Structure to store information on one type */ -typedef struct swig_type_info { - const char *name; /* mangled name of this type */ - const char *str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info *cast; /* linked list of types that can cast into this type */ - void *clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ -} swig_type_info; - -/* Structure to store a type and conversion function used for casting */ -typedef struct swig_cast_info { - swig_type_info *type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info *next; /* pointer to next cast in linked list */ - struct swig_cast_info *prev; /* pointer to the previous cast */ -} swig_cast_info; - -/* Structure used to store module information - * Each module generates one structure like this, and the runtime collects - * all of these structures and stores them in a circularly linked list.*/ -typedef struct swig_module_info { - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info *next; /* Pointer to next element in circularly linked list */ - swig_type_info **type_initial; /* Array of initially generated type structures */ - swig_cast_info **cast_initial; /* Array of initially generated casting structures */ - void *clientdata; /* Language specific module data */ -} swig_module_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); -} - -/* - Check type equivalence in a name list like ||... - Return 0 if not equal, 1 if equal -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Check type equivalence in a name list like ||... - Return 0 if equal, -1 if nb < tb, 1 if nb > tb -*/ -SWIGRUNTIME int -SWIG_TypeCompare(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - - -/* - Check the typename -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (!type) return NULL; - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - swig_cast_info *cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - - while (cast) { - if (!cast->converter) { - swig_type_info *tc = cast->type; - if (!tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; - } -} -SWIGRUNTIME void -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; -} - -/* - Search for a swig_type_info structure only by mangled name - Search is a O(log #types) - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_MangledTypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - swig_module_info *iter = start; - do { - if (iter->size) { - register size_t l = 0; - register size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - register size_t i = (l + r) >> 1; - const char *iname = iter->types[i]->name; - if (iname) { - register int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } else if (compare < 0) { - if (i) { - r = i - 1; - } else { - break; - } - } else if (compare > 0) { - l = i + 1; - } - } else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; -} - -/* - Search for a swig_type_info structure for either a mangled name or a human readable name. - It first searches the mangled names of the types, which is a O(log #types) - If a type is not found it then searches the human readable names, which is O(#types). - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - /* STEP 1: Search the name field using binary search */ - swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info *iter = start; - do { - register size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } - - /* neither found a match */ - return 0; -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static const char hex[17] = "0123456789abcdef"; - register const unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register char d = *(c++); - register unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 - - - - -#if OCTAVE_API_VERSION_OPTION>0 -#define USE_OCTAVE_API_VERSION OCTAVE_API_VERSION_OPTION -#else - -#include -#ifdef OCTAVE_API_VERSION_N -#define USE_OCTAVE_API_VERSION OCTAVE_API_VERSION_N - -#else // Interim hack to distinguish between Octave 3.2 and earlier versions. - -#define ComplexLU __ignore -#include -#undef ComplexLU -#ifdef octave_Complex_LU_h -#define USE_OCTAVE_API_VERSION 36 -#else -#define USE_OCTAVE_API_VERSION 37 -#endif - -#endif - -#endif - -SWIGRUNTIME bool SWIG_check_num_args(const char *func_name, int num_args, int max_args, int min_args, int varargs) { - if (num_args > max_args && !varargs) - error("function %s takes at most %i arguments", func_name, max_args); - else if (num_args < min_args) - error("function %s requires at least %i arguments", func_name, min_args); - else - return true; - return false; -} - -SWIGRUNTIME octave_value_list *SWIG_Octave_AppendOutput(octave_value_list *ovl, const octave_value &ov) { - ovl->append(ov); - return ovl; -} - -SWIGRUNTIME octave_value SWIG_ErrorType(int code) { - switch (code) { - case SWIG_MemoryError: - return "SWIG_MemoryError"; - case SWIG_IOError: - return "SWIG_IOError"; - case SWIG_RuntimeError: - return "SWIG_RuntimeError"; - case SWIG_IndexError: - return "SWIG_IndexError"; - case SWIG_TypeError: - return "SWIG_TypeError"; - case SWIG_DivisionByZero: - return "SWIG_DivisionByZero"; - case SWIG_OverflowError: - return "SWIG_OverflowError"; - case SWIG_SyntaxError: - return "SWIG_SyntaxError"; - case SWIG_ValueError: - return "SWIG_ValueError"; - case SWIG_SystemError: - return "SWIG_SystemError"; - case SWIG_AttributeError: - return "SWIG_AttributeError"; - } - return "SWIG unknown error"; -} - -SWIGRUNTIME octave_value SWIG_Error(int code, const char *msg) { - octave_value type(SWIG_ErrorType(code)); - std::string r = msg; - r += " (" + type.string_value() + ")"; - error(r.c_str()); - return octave_value(r); -} - -#define SWIG_fail goto fail - -#define SWIG_Octave_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Octave_ConvertPtrAndOwn(obj, pptr, type, flags, own) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Octave_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Octave_NewPointerObj(ptr, type, flags) -#define swig_owntype int - -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Octave_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Octave_NewPackedObj(ptr, sz, type) - -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_ConvertPtr(obj, pptr, type, 0) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_NewPointerObj(ptr, type, 0) - -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Octave_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Octave_NewPackedObj(ptr, sz, type) - -#define SWIG_GetModule(clientdata) SWIG_Octave_GetModule(clientdata) -#define SWIG_SetModule(clientdata, pointer) SWIG_Octave_SetModule(clientdata,pointer); -#define SWIG_MODULE_CLIENTDATA_TYPE void* - -#define Octave_Error_Occurred() 0 -#define SWIG_Octave_AddErrorMsg(msg) {;} - -SWIGRUNTIME swig_module_info *SWIG_Octave_GetModule(void *clientdata); -SWIGRUNTIME void SWIG_Octave_SetModule(void *clientdata, swig_module_info *pointer); - -// For backward compatibility only -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) 0 - -// Runtime API implementation - -#include -#include -#include - -typedef octave_value_list(*octave_func) (const octave_value_list &, int); -class octave_swig_type; - -namespace Swig { - class Director; - - SWIGRUNTIME void swig_register_director(octave_swig_type *self, void *ptr, Director *d); - SWIGRUNTIME void swig_director_destroyed(octave_swig_type *self, Director *d); - SWIGRUNTIME void swig_director_set_self(Director *d, octave_swig_type *self); - - SWIGRUNTIME octave_base_value *swig_value_ref(octave_swig_type *ost); - SWIGRUNTIME octave_swig_type *swig_value_deref(octave_value ov); - SWIGRUNTIME octave_swig_type *swig_value_deref(const octave_base_value &ov); - - typedef std::map < void *, Director * > rtdir_map; - - SWIGINTERN rtdir_map* get_rtdir_map() { - static swig_module_info *module = 0; - if (!module) - module = SWIG_GetModule(0); - if (!module) - return 0; - if (!module->clientdata) - module->clientdata = new rtdir_map; - return (rtdir_map *) module->clientdata; - } - - SWIGINTERNINLINE void set_rtdir(void *vptr, Director *d) { - rtdir_map* rm = get_rtdir_map(); - if (rm) - (*rm)[vptr] = d; - } - - SWIGINTERNINLINE void erase_rtdir(void *vptr) { - rtdir_map* rm = get_rtdir_map(); - if (rm) - (*rm).erase(vptr); - } - - SWIGINTERNINLINE Director *get_rtdir(void *vptr) { - rtdir_map* rm = get_rtdir_map(); - if (!rm) - return 0; - rtdir_map::const_iterator pos = rm->find(vptr); - Director *rtdir = (pos != rm->end())? pos->second : 0; - return rtdir; - } -} - - struct swig_octave_member { - const char *name; - octave_func method; - octave_func get_method; - octave_func set_method; - int flags; // 1 static, 2 global - const char *doc; - bool is_static() const { - return flags &1; - } bool is_global() const { - return flags &2; - } - }; - - struct swig_octave_class { - const char *name; - swig_type_info **type; - int director; - octave_func constructor; - const char *constructor_doc; - octave_func destructor; - const swig_octave_member *members; - const char **base_names; - const swig_type_info **base; - }; - - // octave_swig_type plays the role of both the shadow class and the class - // representation within Octave, since there is no support for classes. - // - // These should really be decoupled, with the class support added to Octave - // and the shadow class given by an m-file script. That would dramatically - // reduce the runtime complexity, and be more in line w/ other modules. - - class octave_swig_type:public octave_base_value { - struct cpp_ptr { - void *ptr; - bool destroyed; - cpp_ptr(void *_ptr):ptr(_ptr), destroyed(false) { - }}; - typedef std::pair < const swig_type_info *, cpp_ptr > type_ptr_pair; - - mutable swig_module_info *module; - - const swig_type_info *construct_type; // type of special type object - std::vector < type_ptr_pair > types; // our c++ base classes - int own; // whether we call c++ destructors when we die - - typedef std::pair < const swig_octave_member *, octave_value > member_value_pair; - typedef std::map < std::string, member_value_pair > member_map; - member_map members; - bool always_static; - - const swig_octave_member *find_member(const swig_type_info *type, const std::string &name) { - if (!type->clientdata) - return 0; - swig_octave_class *c = (swig_octave_class *) type->clientdata; - const swig_octave_member *m; - for (m = c->members; m->name; ++m) - if (m->name == name) - return m; - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - return 0; - if ((m = find_member(c->base[j], name))) - return m; - } - return 0; - } - - member_value_pair *find_member(const std::string &name, bool insert_if_not_found) { - member_map::iterator it = members.find(name); - if (it != members.end()) - return &it->second; - const swig_octave_member *m; - for (unsigned int j = 0; j < types.size(); ++j) - if ((m = find_member(types[j].first, name))) - return &members.insert(std::make_pair(name, std::make_pair(m, octave_value()))).first->second; - if (!insert_if_not_found) - return 0; - return &members[name]; - } - - const swig_type_info *find_base(const std::string &name, const swig_type_info *base) { - if (!base) { - for (unsigned int j = 0; j < types.size(); ++j) { - assert(types[j].first->clientdata); - swig_octave_class *cj = (swig_octave_class *) types[j].first->clientdata; - if (cj->name == name) - return types[j].first; - } - return 0; - } - assert(base->clientdata); - swig_octave_class *c = (swig_octave_class *) base->clientdata; - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - return 0; - assert(c->base[j]->clientdata); - swig_octave_class *cj = (swig_octave_class *) c->base[j]->clientdata; - if (cj->name == name) - return c->base[j]; - } - return 0; - } - - void load_members(const swig_octave_class* c,member_map& out) const { - for (const swig_octave_member *m = c->members; m->name; ++m) { - if (out.find(m->name) == out.end()) - out.insert(std::make_pair(m->name, std::make_pair(m, octave_value()))); - } - for (int j = 0; c->base_names[j]; ++j) { - if (!c->base[j]) { - if (!module) - module = SWIG_GetModule(0); - assert(module); - c->base[j] = SWIG_MangledTypeQueryModule(module, module, c->base_names[j]); - } - if (!c->base[j]) - continue; - assert(c->base[j]->clientdata); - const swig_octave_class *cj = - (const swig_octave_class *) c->base[j]->clientdata; - load_members(cj,out); - } - } - - void load_members(member_map& out) const { - out=members; - for (unsigned int j = 0; j < types.size(); ++j) - if (types[j].first->clientdata) - load_members((const swig_octave_class *) types[j].first->clientdata, out); - } - - octave_value_list member_invoke(member_value_pair *m, const octave_value_list &args, int nargout) { - if (m->second.is_defined()) - return m->second.subsref("(", std::list < octave_value_list > (1, args), nargout); - else if (m->first && m->first->method) - return m->first->method(args, nargout); - error("member not defined or not invocable"); - return octave_value_list(); - } - - bool dispatch_unary_op(const std::string &symbol, octave_value &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() < 1) - return false; - ret = argout(0); - return true; - } - - bool dispatch_binary_op(const std::string &symbol, const octave_base_value &rhs, octave_value &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - args.append(make_value_hack(rhs)); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() < 1) - return false; - ret = argout(0); - return true; - } - - bool dispatch_index_op(const std::string &symbol, const octave_value_list &rhs, octave_value_list &ret) { - member_value_pair *m = find_member(symbol, false); - if (!m || m->first->is_static() || m->first->is_global()) - return false; - octave_value_list args; - args.append(as_value()); - args.append(rhs); - octave_value_list argout(member_invoke(m, args, 1)); - if (argout.length() >= 1) - ret = argout(0); - return true; - } - - octave_value_list member_deref(member_value_pair *m, const octave_value_list &args) { - if (m->second.is_defined()) - return m->second; - else if (m->first) { - if (m->first->get_method) - return m->first->get_method(args, 1); - else if (m->first->method) - return octave_value(new octave_builtin(m->first->method)); - } - error("undefined member"); - return octave_value_list(); - } - - static octave_value make_value_hack(const octave_base_value &x) { - ((octave_swig_type &) x).count++; - return octave_value((octave_base_value *) &x); - } - - octave_swig_type(const octave_swig_type &x); - octave_swig_type &operator=(const octave_swig_type &rhs); - public: - - octave_swig_type(void *_ptr = 0, const swig_type_info *_type = 0, int _own = 0, - bool _always_static = false) - : module(0), construct_type(_ptr ? 0 : _type), own(_own), - always_static(_always_static) { - if (_type || _ptr) - types.push_back(std::make_pair(_type, _ptr)); - if (_ptr) { - Swig::Director *d = Swig::get_rtdir(_ptr); - if (d) - Swig::swig_director_set_self(d, this); - } - } - - ~octave_swig_type() { - if (own) { - ++count; - for (unsigned int j = 0; j < types.size(); ++j) { - if (!types[j].first || !types[j].first->clientdata) - continue; - swig_octave_class *c = (swig_octave_class *) types[j].first->clientdata; - if (c->destructor && !types[j].second.destroyed && types[j].second.ptr) { - c->destructor(as_value(), 0); - } - } - } - for (unsigned int j = 0; j < types.size(); ++j) - Swig::erase_rtdir(types[j].second.ptr); - } - - octave_value as_value() { - ++count; - return Swig::swig_value_ref(this); - } - - void incref() { - ++count; - } - - void decref() { - if (!--count) - delete this; - } - - long swig_this() const { - if (!types.size()) - return (long) this; - return (long) types[0].second.ptr; - } - const char* help_text() const { - if (!types.size()) - return 0; - if (!types[0].first->clientdata) - return 0; - swig_octave_class *c = (swig_octave_class *) types[0].first->clientdata; - return c->constructor_doc; - } - - std::string swig_type_name() const { - // * need some way to manually name subclasses. - // * eg optional first arg to subclass(), or named_subclass() - std::string ret; - for (unsigned int j = 0; j < types.size(); ++j) { - if (j) - ret += "_"; - if (types[j].first->clientdata) { - swig_octave_class *c = (swig_octave_class *) types[j].first->clientdata; - ret += c->name; - } else - ret += types[j].first->name; - } - return ret; - } - - void merge(octave_swig_type &rhs) { - rhs.own = 0; - for (unsigned int j = 0; j < rhs.types.size(); ++j) { - assert(!rhs.types[j].second.destroyed); - Swig::Director *d = Swig::get_rtdir(rhs.types[j].second.ptr); - if (d) - Swig::swig_director_set_self(d, this); - } - types.insert(types.end(), rhs.types.begin(), rhs.types.end()); - members.insert(rhs.members.begin(), rhs.members.end()); - rhs.types.clear(); - rhs.members.clear(); - } - - void install_global() { - for (member_map::const_iterator it = members.begin(); it != members.end(); ++it) { - if (it->second.first && it->second.first->method) - install_builtin_function(it->second.first->method, it->first, - it->second.first->doc?it->second.first->doc:std::string()); - else if (it->second.second.is_defined()) { -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(it->first, true)); -#else - symbol_table::varref(it->first); - symbol_table::mark_global(it->first); -#endif - set_global_value(it->first, it->second.second); - -#if USE_OCTAVE_API_VERSION<37 - octave_swig_type *ost = Swig::swig_value_deref(it->second.second); - if (ost) { - const char* h = ost->help_text(); - if (h) { - symbol_record *sr = global_sym_tab->lookup (it->first, true); - sr->document(h); - } - } -#endif - } - } - } - - void *cast(swig_type_info *type, int *_own, int flags) { - if (_own) - *_own = own; - if (flags &SWIG_POINTER_DISOWN) - own = 0; - if (!type && types.size()) - return types[0].second.ptr; - for (unsigned int j = 0; j < types.size(); ++j) - if (type == types[j].first) - return types[j].second.ptr; - for (unsigned int j = 0; j < types.size(); ++j) { - swig_cast_info *tc = SWIG_TypeCheck(types[j].first->name, type); - if (!tc) - continue; - int newmemory = 0; - void *vptr = SWIG_TypeCast(tc, types[j].second.ptr, &newmemory); - assert(!newmemory); // newmemory handling not yet implemented - return vptr; - } - return 0; - } - - bool is_owned() const { - return own; - } - - void director_destroyed(Swig::Director *d) { - bool found = false; - for (unsigned int j = 0; j < types.size(); ++j) { - Swig::Director *dj = Swig::get_rtdir(types[j].second.ptr); - if (dj == d) { - types[j].second.destroyed = true; - found = true; - } - } - assert(found); - } - - void assign(const std::string &name, const octave_value &ov) { - members[name] = std::make_pair((const swig_octave_member *) 0, ov); - } - - void assign(const std::string &name, const swig_octave_member *m) { - members[name] = std::make_pair(m, octave_value()); - } - - octave_base_value *clone() const { - // pass-by-value is probably not desired, and is harder; - // requires calling copy constructors of contained types etc. - assert(0); - *(int *) 0 = 0; - return 0; - } - - octave_base_value *empty_clone() const { - return new octave_swig_type(); - } - - bool is_defined() const { - return true; - } - - virtual bool is_map() const { - return true; - } - - virtual octave_value subsref(const std::string &ops, const std::list < octave_value_list > &idx) { - octave_value_list ovl = subsref(ops, idx, 1); - return ovl.length()? ovl(0) : octave_value(); - } - - virtual octave_value_list subsref(const std::string &ops, const std::list < octave_value_list > &idx, int nargout) { - assert(ops.size() > 0); - assert(ops.size() == idx.size()); - - std::list < octave_value_list >::const_iterator idx_it = idx.begin(); - int skip = 0; - octave_value_list sub_ovl; - - // constructor invocation - if (ops[skip] == '(' && construct_type) { - assert(construct_type->clientdata); - swig_octave_class *c = (swig_octave_class *) construct_type->clientdata; - if (!c->constructor) { - error("cannot create instance"); - return octave_value_list(); - } - octave_value_list args; - if (c->director) - args.append(Swig::swig_value_ref(new octave_swig_type(this, 0, 0))); - args.append(*idx_it++); - ++skip; - sub_ovl = c->constructor(args, nargout); - } - // member dereference or invocation - else if (ops[skip] == '.') { - std::string subname; - const swig_type_info *base = 0; // eg, a.base.base_cpp_mem - for (;;) { - octave_value_list subname_ovl(*idx_it++); - ++skip; - assert(subname_ovl.length() == 1 && subname_ovl(0).is_string()); - subname = subname_ovl(0).string_value(); - - const swig_type_info *next_base = find_base(subname, base); - if (!next_base || skip >= (int) ops.size() || ops[skip] != '.') - break; - base = next_base; - } - - member_value_pair tmp, *m = &tmp; - if (!base || !(m->first = find_member(base, subname))) - m = find_member(subname, false); - if (!m) { - error("member not found"); - return octave_value_list(); - } - - octave_value_list args; - if (!always_static && - (!m->first || (!m->first->is_static() && !m->first->is_global()))) - args.append(as_value()); - if (skip < (int) ops.size() && ops[skip] == '(' && - ((m->first && m->first->method) || m->second.is_function() || - m->second.is_function_handle())) { - args.append(*idx_it++); - ++skip; - sub_ovl = member_invoke(m, args, nargout); - } else { - sub_ovl = member_deref(m, args); - } - } - // index operator - else { - if (ops[skip] == '(' || ops[skip] == '{') { - const char *op_name = ops[skip] == '(' ? "__paren__" : "__brace__"; - octave_value_list args; - args.append(*idx_it++); - ++skip; - if (!dispatch_index_op(op_name, args, sub_ovl)) { - error("error evaluating index operator"); - return octave_value_list(); - } - } else { - error("unsupported subsref"); - return octave_value_list(); - } - } - - if (skip >= (int) ops.size()) - return sub_ovl; - if (sub_ovl.length() < 1) { - error("bad subs ref"); - return octave_value_list(); - } - return sub_ovl(0).next_subsref(nargout, ops, idx, skip); - } - - octave_value subsasgn(const std::string &ops, const std::list < octave_value_list > &idx, const octave_value &rhs) { - assert(ops.size() > 0); - assert(ops.size() == idx.size()); - - std::list < octave_value_list >::const_iterator idx_it = idx.begin(); - int skip = 0; - - if (ops.size() > 1) { - std::list < octave_value_list >::const_iterator last = idx.end(); - --last; - std::list < octave_value_list > next_idx(idx.begin(), last); - octave_value next_ov = subsref(ops.substr(0, ops.size() - 1), next_idx); - next_ov.subsasgn(ops.substr(ops.size() - 1), std::list < octave_value_list > (1, *last), rhs); - } - - else if (ops[skip] == '(' || ops[skip] == '{') { - const char *op_name = ops[skip] == '(' ? "__paren_asgn__" : "__brace_asgn__"; - member_value_pair *m = find_member(op_name, false); - if (m) { - octave_value_list args; - args.append(as_value()); - args.append(*idx_it); - args.append(rhs); - member_invoke(m, args, 1); - } else - error("%s member not found", op_name); - } - - else if (ops[skip] == '.') { - octave_value_list subname_ovl(*idx_it++); - ++skip; - assert(subname_ovl.length() == 1 &&subname_ovl(0).is_string()); - std::string subname = subname_ovl(0).string_value(); - - member_value_pair *m = find_member(subname, true); - if (!m->first || !m->first->set_method) { - m->first = 0; - m->second = rhs; - } else if (m->first->set_method) { - octave_value_list args; - if (!m->first->is_static() && !m->first->is_global()) - args.append(as_value()); - args.append(rhs); - m->first->set_method(args, 1); - } else - error("member not assignable"); - } else - error("unsupported subsasgn"); - - return as_value(); - } - - virtual bool is_string() const { - octave_swig_type *nc_this = const_cast < octave_swig_type *>(this); - return !!nc_this->find_member("__str__", false); - } - - virtual std::string string_value(bool force = false) const { - octave_swig_type *nc_this = const_cast < octave_swig_type *>(this); - member_value_pair *m = nc_this->find_member("__str__", false); - if (!m) { - error("__str__ method not defined"); - return std::string(); - } - octave_value_list outarg = nc_this->member_invoke(m, octave_value_list(nc_this->as_value()), 1); - if (outarg.length() < 1 || !outarg(0).is_string()) { - error("__str__ method did not return a string"); - return std::string(); - } - return outarg(0).string_value(); - } - - virtual Octave_map map_value() const { - return Octave_map(); - } - - virtual string_vector map_keys() const { - member_map tmp; - load_members(tmp); - - string_vector keys(tmp.size()); - int k = 0; - for (member_map::iterator it = tmp.begin(); it != tmp.end(); ++it) - keys(k++) = it->first; - - return keys; - } - - virtual bool save_ascii (std::ostream& os) { - return true; - } - - virtual bool load_ascii (std::istream& is) { - return true; - } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) { - return true; - } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) { - return true; - } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) { - return true; - } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) { - return true; - } -#endif - - virtual octave_value convert_to_str(bool pad = false, bool force = false, char type = '"') const { - return string_value(); - } - - virtual octave_value convert_to_str_internal(bool pad, bool force, char type) const { - return string_value(); - } - - static bool dispatch_global_op(const std::string &symbol, const octave_value_list &args, octave_value &ret) { - // we assume that "op_"-prefixed functions are installed in global namespace - // (rather than any module namespace). - - octave_value fcn = get_global_value(symbol, true); - if (!fcn.is_function() && !fcn.is_function_handle()) - return false; - ret = fcn.subsref("(", std::list < octave_value_list > (1, args)); - return true; - } - - static octave_value dispatch_unary_op(const octave_base_value &x, const char *op_name) { - octave_swig_type *ost = Swig::swig_value_deref(x); - assert(ost); - - octave_value ret; - if (ost->dispatch_unary_op(std::string("__") + op_name + std::string("__"), ret)) - return ret; - std::string symbol = "op_" + ost->swig_type_name() + "_" + op_name; - octave_value_list args; - args.append(make_value_hack(x)); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - error("could not dispatch unary operator"); - return octave_value(); - } - - static octave_value dispatch_binary_op(const octave_base_value &lhs, const octave_base_value &rhs, const char *op_name) { - octave_swig_type *lhs_ost = Swig::swig_value_deref(lhs); - octave_swig_type *rhs_ost = Swig::swig_value_deref(rhs); - - octave_value ret; - if (lhs_ost && lhs_ost->dispatch_binary_op(std::string("__") + op_name + std::string("__"), rhs, ret)) - return ret; - - std::string symbol; - octave_value_list args; - args.append(make_value_hack(lhs)); - args.append(make_value_hack(rhs)); - - symbol = "op_"; - symbol += lhs_ost ? lhs_ost->swig_type_name() : lhs.type_name(); - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += rhs_ost ? rhs_ost->swig_type_name() : rhs.type_name(); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - symbol = "op_"; - symbol += lhs_ost ? lhs_ost->swig_type_name() : lhs.type_name(); - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += "any"; - if (dispatch_global_op(symbol, args, ret)) - return ret; - - symbol = "op_"; - symbol += "any"; - symbol += "_"; - symbol += op_name; - symbol += "_"; - symbol += rhs_ost ? rhs_ost->swig_type_name() : rhs.type_name(); - if (dispatch_global_op(symbol, args, ret)) - return ret; - - error("could not dispatch binary operator"); - return octave_value(); - } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const { - if (is_string()) { - os << string_value(); - return; - } - - member_map tmp; - load_members(tmp); - - os << "{" << std::endl; - for (unsigned int j = 0; j < types.size(); ++j) { - if (types[j].first->clientdata) { - const swig_octave_class *c = (const swig_octave_class *) types[j].first->clientdata; - os << " " << c->name << ", ptr = " << types[j].second.ptr << std::endl; - } else { - os << " " << types[j].first->name << ", ptr = " << types[j].second.ptr << std::endl; - } - } - for (member_map::const_iterator it = tmp.begin(); it != tmp.end(); ++it) { - if (it->second.first) { - const char *objtype = it->second.first->method ? "method" : "variable"; - const char *modifier = (it->second.first->flags &1) ? "static " : (it->second.first->flags &2) ? "global " : ""; - os << " " << it->second.first->name << " (" << modifier << objtype << ")" << std::endl; - assert(it->second.first->name == it->first); - } else { - os << " " << it->first << std::endl; - } - } - os << "}" << std::endl; - } - }; - - // Octave tries hard to preserve pass-by-value semantics. Eg, assignments - // will call clone() via make_unique() if there is more than one outstanding - // reference to the lhs, and forces the clone's reference count to 1 - // (so you can't just increment your own count and return this). - // - // One way to fix this (without modifying Octave) is to add a level of - // indirection such that clone copies ref-counted pointer and we keep - // pass-by-ref semantics (which are more natural/expected for C++ bindings). - // - // Supporting both pass-by-{ref,value} and toggling via %feature/option - // might be nice. - - class octave_swig_ref:public octave_base_value { - octave_swig_type *ptr; - public: - octave_swig_ref(octave_swig_type *_ptr = 0) - :ptr(_ptr) { } - - ~octave_swig_ref() - { if (ptr) ptr->decref(); } - - octave_swig_type *get_ptr() const - { return ptr; } - - octave_base_value *clone() const - { if (ptr) ptr->incref(); return new octave_swig_ref(ptr); } - - octave_base_value *empty_clone() const - { return new octave_swig_ref(0); } - - bool is_defined() const - { return ptr->is_defined(); } - - virtual bool is_map() const - { return ptr->is_map(); } - - virtual octave_value subsref(const std::string &ops, const std::list < octave_value_list > &idx) - { return ptr->subsref(ops, idx); } - - virtual octave_value_list subsref(const std::string &ops, const std::list < octave_value_list > &idx, int nargout) - { return ptr->subsref(ops, idx, nargout); } - - octave_value subsasgn(const std::string &ops, const std::list < octave_value_list > &idx, const octave_value &rhs) - { return ptr->subsasgn(ops, idx, rhs); } - - virtual bool is_string() const - { return ptr->is_string(); } - - virtual std::string string_value(bool force = false) const - { return ptr->string_value(force); } - - virtual Octave_map map_value() const - { return ptr->map_value(); } - - virtual string_vector map_keys() const - { return ptr->map_keys(); } - - virtual bool save_ascii (std::ostream& os) - { return ptr->save_ascii(os); } - - virtual bool load_ascii (std::istream& is) - { return ptr->load_ascii(is); } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) - { return ptr->save_binary(os, save_as_floats); } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) - { return ptr->load_binary(is, swap, fmt); } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) - { return ptr->save_hdf5(loc_id, name, save_as_floats); } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) - { return ptr->load_hdf5(loc_id, name, have_h5giterate_bug); } -#endif - - virtual octave_value convert_to_str(bool pad = false, bool force = false, char type = '"') const - { return ptr->convert_to_str(pad, force, type); } - - virtual octave_value convert_to_str_internal(bool pad, bool force, char type) const - { return ptr->convert_to_str_internal(pad, force, type); } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const - { return ptr->print(os, pr_as_read_syntax); } - - private: - DECLARE_OCTAVE_ALLOCATOR; - DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA; - }; - DEFINE_OCTAVE_ALLOCATOR(octave_swig_ref); - DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(octave_swig_ref, "swig_ref", "swig_ref"); - - class octave_swig_packed:public octave_base_value { - swig_type_info *type; - std::vector < char > buf; - public: - - octave_swig_packed(swig_type_info *_type = 0, const void *_buf = 0, size_t _buf_len = 0) - : type(_type), buf((const char*)_buf, (const char*)_buf + _buf_len) { - } - - bool copy(swig_type_info *outtype, void *ptr, size_t sz) const { - if (outtype && outtype != type) - return false; - assert(sz <= buf.size()); - std::copy(buf.begin(), buf.begin()+sz, (char*)ptr); - return true; - } - - octave_base_value *clone() const { - return new octave_swig_packed(*this); - } - - octave_base_value *empty_clone() const { - return new octave_swig_packed(); - } - - bool is_defined() const { - return true; - } - - void print(std::ostream &os, bool pr_as_read_syntax = false) const { - os << "swig packed type: name = " << (type ? type->name : std::string()) << ", len = " << buf.size() << std::endl; - } - - - virtual bool save_ascii (std::ostream& os) { - return true; - } - - virtual bool load_ascii (std::istream& is) { - return true; - } - - virtual bool save_binary (std::ostream& os, bool& save_as_floats) { - return true; - } - - virtual bool load_binary (std::istream& is, bool swap, - oct_mach_info::float_format fmt) { - return true; - } - -#if defined (HAVE_HDF5) - virtual bool - save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats) { - return true; - } - - virtual bool - load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug) { - return true; - } -#endif - - private: - DECLARE_OCTAVE_ALLOCATOR; - DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA; - }; - DEFINE_OCTAVE_ALLOCATOR(octave_swig_packed); - DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA(octave_swig_packed, "swig_packed", "swig_packed"); - - static octave_value_list octave_set_immutable(const octave_value_list &args, int nargout) { - error("attempt to set immutable member variable"); - return octave_value_list(); - } - - struct octave_value_ref { - const octave_value_list &ovl; - int j; - - octave_value_ref(const octave_value_list &_ovl, int _j) - :ovl(_ovl), j(_j) { } - - operator octave_value() const { - return ovl(j); - } - - octave_value operator*() const { - return ovl(j); - } - }; - - octave_value_list swig_subclass(const octave_value_list &args, int nargout) { - octave_swig_type *top = new octave_swig_type; - for (int j = 0; j < args.length(); ++j) { - if (args(j).type_id() == octave_swig_ref::static_type_id()) { - octave_swig_ref *osr = static_cast < octave_swig_ref *>(args(j).internal_rep()); - octave_swig_type *ost = osr->get_ptr(); - if (!ost->is_owned()) { - error("cannot subclass object not constructed on octave side"); - return octave_value_list(); - } - top->merge(*ost); - } else if (args(j).is_function_handle()) { - top->assign(args(j).fcn_handle_value()->fcn_name(), args(j)); - } else if (args(j).is_string()) { - if (j + 1 >= args.length()) { - error("member assignments must be of string,value form"); - return octave_value_list(); - } - top->assign(args(j).string_value(), args(j + 1)); - ++j; - } else { - error("invalid arguments to subclass"); - return octave_value_list(); - } - } - return octave_value(Swig::swig_value_ref(top)); - } - - octave_value_list swig_type(const octave_value_list &args, int nargout) { - if (args.length() != 1) { - error("swig_typeinfo must be called with only a single object"); - return octave_value_list(); - } - octave_swig_type *ost = Swig::swig_value_deref(args(0)); - if (!ost) { - error("object is not a swig_ref"); - return octave_value_list(); - } - return octave_value(ost->swig_type_name()); - } - - octave_value_list swig_typequery(const octave_value_list &args, int nargout) { - if (args.length() != 1 || !args(0).is_string()) { - error("swig_typeinfo must be called with single string argument"); - return octave_value_list(); - } - swig_module_info *module = SWIG_GetModule(0); - swig_type_info *type = SWIG_TypeQueryModule(module, module, args(0).string_value().c_str()); - if (!type) - return octave_value(""); - return octave_value(type->name); - } - - octave_value_list swig_this(const octave_value_list &args, int nargout) { - if (args.length() != 1) { - error("swig_typeinfo must be called with only a single object"); - return octave_value_list(); - } - if (args(0).is_matrix_type() && args(0).rows() == 0 && args(0).columns() == 0) - return octave_value(octave_uint64(0)); - octave_swig_type *ost = Swig::swig_value_deref(args(0)); - if (!ost) { - error("object is not a swig_ref"); - return octave_value_list(); - } - return octave_value(octave_uint64((unsigned long long) ost->swig_this())); - } - -#define SWIG_DIRECTORS - -namespace Swig { - class Director { - octave_swig_type *self; - bool disowned; - - Director(const Director &x); - Director &operator=(const Director &rhs); - public: - - Director(void *vptr):self(0), disowned(false) { - set_rtdir(vptr, this); - } - - ~Director() { - swig_director_destroyed(self, this); - if (disowned) - self->decref(); - } - - void swig_set_self(octave_swig_type *new_self) { - assert(!disowned); - self = new_self; - } - - octave_swig_type *swig_get_self() const { - return self; - } - - void swig_disown() { - if (disowned) - return; - disowned = true; - self->incref(); - } - }; - - struct DirectorTypeMismatchException { - static void raise(const char *msg) { - // ... todo - throw(DirectorTypeMismatchException()); - } - - static void raise(const octave_value &ov, const char *msg) { - // ... todo - raise(msg); - } - }; - struct DirectorPureVirtualException { - static void raise(const char *msg) { - // ... todo - throw(DirectorPureVirtualException()); - } - - static void raise(const octave_value &ov, const char *msg) { - // ... todo - raise(msg); - } - }; - -} - - SWIGRUNTIME void swig_acquire_ownership(void *vptr) { - // assert(0); - // ... todo - } - - SWIGRUNTIME void swig_acquire_ownership_array(void *vptr) { - // assert(0); - // ... todo - } - - SWIGRUNTIME void swig_acquire_ownership_obj(void *vptr, int own) { - // assert(0); - // ... todo - } - - namespace Swig { - SWIGRUNTIME void swig_director_destroyed(octave_swig_type *self, Director *d) { - self->director_destroyed(d); - } - - SWIGRUNTIME void swig_director_set_self(Director *d, octave_swig_type *self) { - d->swig_set_self(self); - } - - SWIGRUNTIME octave_base_value *swig_value_ref(octave_swig_type *ost) { - return new octave_swig_ref(ost); - } - - SWIGRUNTIME octave_swig_type *swig_value_deref(octave_value ov) { - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - return swig_value_deref(*ov.internal_rep()); - } - - SWIGRUNTIME octave_swig_type *swig_value_deref(const octave_base_value &ov) { - if (ov.type_id() != octave_swig_ref::static_type_id()) - return 0; - const octave_swig_ref *osr = static_cast < const octave_swig_ref *>(&ov); - return osr->get_ptr(); - } - - } - -#define swig_unary_op(name) \ -SWIGRUNTIME octave_value swig_unary_op_##name(const octave_base_value &x) { \ - return octave_swig_type::dispatch_unary_op(x,#name); \ -} -#define swig_binary_op(name) \ -SWIGRUNTIME octave_value swig_binary_op_##name(const octave_base_value&lhs,const octave_base_value &rhs) { \ - return octave_swig_type::dispatch_binary_op(lhs,rhs,#name); \ -} -#define swigreg_unary_op(name) \ -if (!octave_value_typeinfo::lookup_unary_op(octave_value::op_##name,tid)) \ -octave_value_typeinfo::register_unary_op(octave_value::op_##name,tid,swig_unary_op_##name); -#define swigreg_binary_op(name) \ -if (!octave_value_typeinfo::lookup_binary_op(octave_value::op_##name,tid1,tid2)) \ -octave_value_typeinfo::register_binary_op(octave_value::op_##name,tid1,tid2,swig_binary_op_##name); - - swig_unary_op(not); - swig_unary_op(uplus); - swig_unary_op(uminus); - swig_unary_op(transpose); - swig_unary_op(hermitian); - swig_unary_op(incr); - swig_unary_op(decr); - - swig_binary_op(add); - swig_binary_op(sub); - swig_binary_op(mul); - swig_binary_op(div); - swig_binary_op(pow); - swig_binary_op(ldiv); - swig_binary_op(lshift); - swig_binary_op(rshift); - swig_binary_op(lt); - swig_binary_op(le); - swig_binary_op(eq); - swig_binary_op(ge); - swig_binary_op(gt); - swig_binary_op(ne); - swig_binary_op(el_mul); - swig_binary_op(el_div); - swig_binary_op(el_pow); - swig_binary_op(el_ldiv); - swig_binary_op(el_and); - swig_binary_op(el_or); - - SWIGRUNTIME void SWIG_InstallUnaryOps(int tid) { - swigreg_unary_op(not); - swigreg_unary_op(uplus); - swigreg_unary_op(uminus); - swigreg_unary_op(transpose); - swigreg_unary_op(hermitian); - swigreg_unary_op(incr); - swigreg_unary_op(decr); - } - SWIGRUNTIME void SWIG_InstallBinaryOps(int tid1, int tid2) { - swigreg_binary_op(add); - swigreg_binary_op(sub); - swigreg_binary_op(mul); - swigreg_binary_op(div); - swigreg_binary_op(pow); - swigreg_binary_op(ldiv); - swigreg_binary_op(lshift); - swigreg_binary_op(rshift); - swigreg_binary_op(lt); - swigreg_binary_op(le); - swigreg_binary_op(eq); - swigreg_binary_op(ge); - swigreg_binary_op(gt); - swigreg_binary_op(ne); - swigreg_binary_op(el_mul); - swigreg_binary_op(el_div); - swigreg_binary_op(el_pow); - swigreg_binary_op(el_ldiv); - swigreg_binary_op(el_and); - swigreg_binary_op(el_or); - } - SWIGRUNTIME void SWIG_InstallOps(int tid) { - // here we assume that tid are conseq integers increasing from zero, and - // that our tid is the last one. might be better to have explicit string - // list of types we should bind to, and use lookup_type to resolve their tid. - - SWIG_InstallUnaryOps(tid); - SWIG_InstallBinaryOps(tid, tid); - for (int j = 0; j < tid; ++j) { - SWIG_InstallBinaryOps(j, tid); - SWIG_InstallBinaryOps(tid, j); - } - } - -SWIGRUNTIME octave_value SWIG_Octave_NewPointerObj(void *ptr, swig_type_info *type, int flags) { - int own = (flags &SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - - Swig::Director *d = Swig::get_rtdir(ptr); - if (d && d->swig_get_self()) - return d->swig_get_self()->as_value(); - return Swig::swig_value_ref(new octave_swig_type(ptr, type, own)); -} - -SWIGRUNTIME int SWIG_Octave_ConvertPtrAndOwn(octave_value ov, void **ptr, swig_type_info *type, int flags, int *own) { - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - if (!ov.is_defined() || - (ov.is_matrix_type() && ov.rows() == 0 && ov.columns() == 0) ) { - if (ptr) - *ptr = 0; - return SWIG_OK; - } - if (ov.type_id() != octave_swig_ref::static_type_id()) - return SWIG_ERROR; - octave_swig_ref *osr = static_cast < octave_swig_ref *>(ov.internal_rep()); - octave_swig_type *ost = osr->get_ptr(); - void *vptr = ost->cast(type, own, flags); - if (!vptr) - return SWIG_ERROR; - if (ptr) - *ptr = vptr; - return SWIG_OK; -} - -SWIGRUNTIME octave_value SWIG_Octave_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { - return new octave_swig_packed(type, (char *) ptr, sz); -} - -SWIGRUNTIME int SWIG_Octave_ConvertPacked(const octave_value &ov, void *ptr, size_t sz, swig_type_info *type) { - if (!ov.is_defined()) - return SWIG_ERROR; - if (ov.type_id() != octave_swig_packed::static_type_id()) - return SWIG_ERROR; - octave_swig_packed *ost = static_cast < octave_swig_packed *>(ov.internal_rep()); - return ost->copy(type, (char *) ptr, sz) ? SWIG_OK : SWIG_ERROR; -} - -void SWIG_Octave_SetConstant(octave_swig_type *module_ns, const std::string &name, const octave_value &ov) { - module_ns->assign(name, ov); -} - -SWIGRUNTIME swig_module_info *SWIG_Octave_GetModule(void *clientdata) { - octave_value ov = get_global_value("__SWIG_MODULE__" SWIG_TYPE_TABLE_NAME SWIG_RUNTIME_VERSION, true); - if (!ov.is_defined() || - ov.type_id() != octave_swig_packed::static_type_id()) - return 0; - const octave_swig_packed* osp = - static_cast < const octave_swig_packed *> (ov.internal_rep()); - swig_module_info *pointer = 0; - osp->copy(0, &pointer, sizeof(swig_module_info *)); - return pointer; -} - -SWIGRUNTIME void SWIG_Octave_SetModule(void *clientdata, swig_module_info *pointer) { - octave_value ov = new octave_swig_packed(0, &pointer, sizeof(swig_module_info *)); - const char *module_var = "__SWIG_MODULE__" SWIG_TYPE_TABLE_NAME SWIG_RUNTIME_VERSION; -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(module_var, true)); -#else - symbol_table::varref(module_var); - symbol_table::mark_global(module_var); -#endif - set_global_value(module_var, ov); -} - - - -#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) - -#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else - - - - #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -#define SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void swig_types[0] -#define SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float swig_types[1] -#define SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void swig_types[2] -#define SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool swig_types[3] -#define SWIGTYPE_p_Calc swig_types[4] -#define SWIGTYPE_p_CalcRho swig_types[5] -#define SWIGTYPE_p_Cv32suf swig_types[6] -#define SWIGTYPE_p_Cv64suf swig_types[7] -#define SWIGTYPE_p_CvANN_MLP swig_types[8] -#define SWIGTYPE_p_CvANN_MLP_TrainParams swig_types[9] -#define SWIGTYPE_p_CvAttrList swig_types[10] -#define SWIGTYPE_p_CvAvgComp swig_types[11] -#define SWIGTYPE_p_CvBoost swig_types[12] -#define SWIGTYPE_p_CvBoostParams swig_types[13] -#define SWIGTYPE_p_CvBoostTree swig_types[14] -#define SWIGTYPE_p_CvBox2D swig_types[15] -#define SWIGTYPE_p_CvChain swig_types[16] -#define SWIGTYPE_p_CvChainPtReader swig_types[17] -#define SWIGTYPE_p_CvConDensation swig_types[18] -#define SWIGTYPE_p_CvConnectedComp swig_types[19] -#define SWIGTYPE_p_CvContour swig_types[20] -#define SWIGTYPE_p_CvContourTree swig_types[21] -#define SWIGTYPE_p_CvConvexityDefect swig_types[22] -#define SWIGTYPE_p_CvDTree swig_types[23] -#define SWIGTYPE_p_CvDTreeNode swig_types[24] -#define SWIGTYPE_p_CvDTreeParams swig_types[25] -#define SWIGTYPE_p_CvDTreeSplit swig_types[26] -#define SWIGTYPE_p_CvDTreeTrainData swig_types[27] -#define SWIGTYPE_p_CvEM swig_types[28] -#define SWIGTYPE_p_CvEMParams swig_types[29] -#define SWIGTYPE_p_CvERTreeTrainData swig_types[30] -#define SWIGTYPE_p_CvERTrees swig_types[31] -#define SWIGTYPE_p_CvFileNode swig_types[32] -#define SWIGTYPE_p_CvFileStorage swig_types[33] -#define SWIGTYPE_p_CvFilter swig_types[34] -#define SWIGTYPE_p_CvFont swig_types[35] -#define SWIGTYPE_p_CvForestERTree swig_types[36] -#define SWIGTYPE_p_CvForestTree swig_types[37] -#define SWIGTYPE_p_CvGenericHash swig_types[38] -#define SWIGTYPE_p_CvGraph swig_types[39] -#define SWIGTYPE_p_CvGraphEdge swig_types[40] -#define SWIGTYPE_p_CvGraphScanner swig_types[41] -#define SWIGTYPE_p_CvGraphVtx swig_types[42] -#define SWIGTYPE_p_CvGraphVtx2D swig_types[43] -#define SWIGTYPE_p_CvHaarClassifier swig_types[44] -#define SWIGTYPE_p_CvHaarClassifierCascade swig_types[45] -#define SWIGTYPE_p_CvHaarFeature swig_types[46] -#define SWIGTYPE_p_CvHaarStageClassifier swig_types[47] -#define SWIGTYPE_p_CvHidHaarClassifierCascade swig_types[48] -#define SWIGTYPE_p_CvHistogram swig_types[49] -#define SWIGTYPE_p_CvHuMoments swig_types[50] -#define SWIGTYPE_p_CvKNearest swig_types[51] -#define SWIGTYPE_p_CvKalman swig_types[52] -#define SWIGTYPE_p_CvLineIterator swig_types[53] -#define SWIGTYPE_p_CvMLData swig_types[54] -#define SWIGTYPE_p_CvMSERParams swig_types[55] -#define SWIGTYPE_p_CvMat swig_types[56] -#define SWIGTYPE_p_CvMatND swig_types[57] -#define SWIGTYPE_p_CvMatrix3 swig_types[58] -#define SWIGTYPE_p_CvMemBlock swig_types[59] -#define SWIGTYPE_p_CvMemStorage swig_types[60] -#define SWIGTYPE_p_CvMemStoragePos swig_types[61] -#define SWIGTYPE_p_CvModuleInfo swig_types[62] -#define SWIGTYPE_p_CvMoments swig_types[63] -#define SWIGTYPE_p_CvNArrayIterator swig_types[64] -#define SWIGTYPE_p_CvNextEdgeType swig_types[65] -#define SWIGTYPE_p_CvNormalBayesClassifier swig_types[66] -#define SWIGTYPE_p_CvPOSITObject swig_types[67] -#define SWIGTYPE_p_CvPair16u32s swig_types[68] -#define SWIGTYPE_p_CvParamGrid swig_types[69] -#define SWIGTYPE_p_CvPluginFuncInfo swig_types[70] -#define SWIGTYPE_p_CvPoint swig_types[71] -#define SWIGTYPE_p_CvPoint2D32f swig_types[72] -#define SWIGTYPE_p_CvPoint2D64f swig_types[73] -#define SWIGTYPE_p_CvPoint3D32f swig_types[74] -#define SWIGTYPE_p_CvPoint3D64f swig_types[75] -#define SWIGTYPE_p_CvQuadEdge2D swig_types[76] -#define SWIGTYPE_p_CvRNG_Wrapper swig_types[77] -#define SWIGTYPE_p_CvRTParams swig_types[78] -#define SWIGTYPE_p_CvRTrees swig_types[79] -#define SWIGTYPE_p_CvRect swig_types[80] -#define SWIGTYPE_p_CvSURFParams swig_types[81] -#define SWIGTYPE_p_CvSURFPoint swig_types[82] -#define SWIGTYPE_p_CvSVM swig_types[83] -#define SWIGTYPE_p_CvSVMDecisionFunc swig_types[84] -#define SWIGTYPE_p_CvSVMKernel swig_types[85] -#define SWIGTYPE_p_CvSVMKernelRow swig_types[86] -#define SWIGTYPE_p_CvSVMParams swig_types[87] -#define SWIGTYPE_p_CvSVMSolutionInfo swig_types[88] -#define SWIGTYPE_p_CvSVMSolver swig_types[89] -#define SWIGTYPE_p_CvScalar swig_types[90] -#define SWIGTYPE_p_CvSeq swig_types[91] -#define SWIGTYPE_p_CvSeqBlock swig_types[92] -#define SWIGTYPE_p_CvSeqReader swig_types[93] -#define SWIGTYPE_p_CvSeqWriter swig_types[94] -#define SWIGTYPE_p_CvSet swig_types[95] -#define SWIGTYPE_p_CvSetElem swig_types[96] -#define SWIGTYPE_p_CvSize swig_types[97] -#define SWIGTYPE_p_CvSize2D32f swig_types[98] -#define SWIGTYPE_p_CvSlice swig_types[99] -#define SWIGTYPE_p_CvSparseMat swig_types[100] -#define SWIGTYPE_p_CvSparseMatIterator swig_types[101] -#define SWIGTYPE_p_CvSparseNode swig_types[102] -#define SWIGTYPE_p_CvStarDetectorParams swig_types[103] -#define SWIGTYPE_p_CvStarKeypoint swig_types[104] -#define SWIGTYPE_p_CvStatModel swig_types[105] -#define SWIGTYPE_p_CvStereoBMState swig_types[106] -#define SWIGTYPE_p_CvStereoGCState swig_types[107] -#define SWIGTYPE_p_CvString swig_types[108] -#define SWIGTYPE_p_CvStringHashNode swig_types[109] -#define SWIGTYPE_p_CvSubdiv2D swig_types[110] -#define SWIGTYPE_p_CvSubdiv2DEdge_Wrapper swig_types[111] -#define SWIGTYPE_p_CvSubdiv2DPoint swig_types[112] -#define SWIGTYPE_p_CvSubdiv2DPointLocation swig_types[113] -#define SWIGTYPE_p_CvTermCriteria swig_types[114] -#define SWIGTYPE_p_CvTrainTestSplit swig_types[115] -#define SWIGTYPE_p_CvTrainTestSplit_class_part swig_types[116] -#define SWIGTYPE_p_CvTrainTestSplit_train_sample_part swig_types[117] -#define SWIGTYPE_p_CvTreeNodeIterator swig_types[118] -#define SWIGTYPE_p_CvTypeInfo swig_types[119] -#define SWIGTYPE_p_CvVectors swig_types[120] -#define SWIGTYPE_p_CvVectors_data swig_types[121] -#define SWIGTYPE_p_GetRow swig_types[122] -#define SWIGTYPE_p_SelectWorkingSet swig_types[123] -#define SWIGTYPE_p__IplConvKernel swig_types[124] -#define SWIGTYPE_p__IplConvKernelFP swig_types[125] -#define SWIGTYPE_p__IplImage swig_types[126] -#define SWIGTYPE_p__IplROI swig_types[127] -#define SWIGTYPE_p__IplTileInfo swig_types[128] -#define SWIGTYPE_p_bool swig_types[129] -#define SWIGTYPE_p_char swig_types[130] -#define SWIGTYPE_p_double swig_types[131] -#define SWIGTYPE_p_float swig_types[132] -#define SWIGTYPE_p_int swig_types[133] -#define SWIGTYPE_p_int64_t swig_types[134] -#define SWIGTYPE_p_p_CvMat swig_types[135] -#define SWIGTYPE_p_p_double swig_types[136] -#define SWIGTYPE_p_p_float swig_types[137] -#define SWIGTYPE_p_p_int swig_types[138] -#define SWIGTYPE_p_p_unsigned_char swig_types[139] -#define SWIGTYPE_p_signed_char swig_types[140] -#define SWIGTYPE_p_size_t swig_types[141] -#define SWIGTYPE_p_uint64_t swig_types[142] -#define SWIGTYPE_p_unsigned_char swig_types[143] -#define SWIGTYPE_p_unsigned_short swig_types[144] -#define SWIGTYPE_p_vectorT_float_t swig_types[145] -#define SWIGTYPE_p_vectorT_vectorT_float_t_t swig_types[146] -#define SWIGTYPE_p_vectorT_vectorT_int_t_t swig_types[147] -#define SWIGTYPE_p_void swig_types[148] -static swig_type_info *swig_types[150]; -static swig_module_info swig_module = {swig_types, 149, 0, 0, 0, 0}; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) -#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) - -/* -------- TYPES TABLE (END) -------- */ - - -#define SWIGVERSION 0x010340 -#define SWIG_VERSION SWIGVERSION - - -#define SWIG_as_voidptr(a) (void *)((const void *)(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a)) - - -#include - - -#include -#include -#include -#include -#include "octhelpers.h" -#include "octcvseq.hpp" - - - - - static inline bool OctSwigObject_Check(const octave_value& ov) { - return ov.type_id()==octave_swig_ref::static_type_id(); - } - - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg); - static CvArr * OctSequence_to_CvArr( octave_value obj ); - - // convert a octave sequence/array/list object into a c-array -#define OctObject_AsArrayImpl(func, ctype, ptype) \ - int func(octave_value obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(OctNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = OctObject_As##ptype( obj ); \ - } \ - else if(OctList_Check(obj) || OctTuple_Check(obj)){ \ - int seqsize = OctSequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - error("OctObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - error("OctObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - error("OctObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(OctObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - error("could not convert to CvPoint"); - return cvPoint(0,0); - } - - static CvPoint2D32f OctObject_to_CvPoint2D32f(octave_value obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(OctObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - error("could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); - } - - static CvScalar OctObject_to_CvScalar(octave_value obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(OctObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); - } - - // if octave sequence type, convert to CvMat or CvMatND - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg){ - CvArr * cvarr; - *freearg = false; - - // check if OpenCV type - if ( OctSwigObject_Check(obj) ){ - SWIG_ConvertPtr(obj, &cvarr, 0, SWIG_POINTER_EXCEPTION); - } - else if (OctList_Check(obj) || OctTuple_Check(obj)){ - cvarr = OctSequence_to_CvArr( obj ); - *freearg = (cvarr != NULL); - } - else if (OctLong_Check(obj) && OctLong_AsLong(obj)==0){ - return NULL; - } - else { - SWIG_ConvertPtr(obj, (void**)&cvarr, 0, SWIG_POINTER_EXCEPTION); - } - return cvarr; - } - - static int OctObject_GetElemType(octave_value obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(OctTuple_Check(obj) || OctList_Check(obj)) return CV_MAKE_TYPE(CV_32F, OctSequence_Size( obj )); - if(OctLong_Check(obj)) return CV_32S; - return CV_32F; - } - - // Would like this to convert Octave lists to CvMat - // Also lists of CvPoints, CvScalars, CvMats? etc - static CvArr * OctSequence_to_CvArr( octave_value obj ){ - int dims[CV_MAX_DIM] = {1,1,1}; - int ndim=0; - int cvtype; - octave_value item; - - // figure out dimensions - for(item = obj; - (OctTuple_Check(item) || OctList_Check(item)); - item = OctSequence_GetItem(item, 0)) - { - dims[ndim] = OctSequence_Size( item ); - ndim++; - } - - if(ndim==0){ - error("Cannot convert an empty octave object to a CvArr"); - return NULL; - } - - cvtype = OctObject_GetElemType(item); - // collapse last dim into NCH if we found a single channel, but the last dim is <=3 - if(CV_MAT_CN(cvtype)==1 && dims[ndim-1]>1 && dims[ndim-1]<4){ - cvtype=CV_MAKE_TYPE(cvtype, dims[ndim-1]); - dims[ndim-1]=1; - ndim--; - } - - if(cvtype==-1){ - error("Could not determine OpenCV element type of Octave sequence"); - return NULL; - } - - // CvMat - if(ndim<=2){ - CvMat *m = cvCreateMat(dims[0], dims[1], cvtype); - for(int i=0; i 1 ){ - // double check size - assert((OctTuple_Check(rowobj) || OctList_Check(rowobj)) && - OctSequence_Size(rowobj) == dims[1]); - - for(int j=0; j 3"); - return NULL; - } - - - // Wrapper class - class CvRNG_Wrapper { - private: - CvRNG m_val; - public: - CvRNG_Wrapper( const CvRNG & val ) : - m_val(val) - { - } - CvRNG * ptr() { return &m_val; } - CvRNG & ref() { return m_val; } - bool operator==(const CvRNG_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvRNG_Wrapper & x){ - return m_val!=x.m_val; - } - }; - - -SWIGINTERNINLINE octave_value - SWIG_From_bool (bool value) -{ - return octave_value(value); -} - - - // Wrapper class - class CvSubdiv2DEdge_Wrapper { - private: - CvSubdiv2DEdge m_val; - public: - CvSubdiv2DEdge_Wrapper( const CvSubdiv2DEdge & val ) : - m_val(val) - { - } - CvSubdiv2DEdge * ptr() { return &m_val; } - CvSubdiv2DEdge & ref() { return m_val; } - bool operator==(const CvSubdiv2DEdge_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvSubdiv2DEdge_Wrapper & x){ - return m_val!=x.m_val; - } - }; - - - SWIGINTERN int SWIG_AsVal_unsigned_SS_long (const octave_value& ov, unsigned long* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (ov.is_double_type()||ov.is_single_type()) { - double v=ov.double_value(); - if (v<0) - return SWIG_OverflowError; - if (v!=floor(v)) - return SWIG_TypeError; - } - if (ov.is_int8_type()||ov.is_int16_type()|| - ov.is_int32_type()) { - long v=ov.long_value(); - if (v<0) - return SWIG_OverflowError; - } - if (ov.is_int64_type()) { - long long v=ov.int64_scalar_value().value(); - if (v<0) - return SWIG_OverflowError; - } - if (val) - *val = ov.ulong_value(); - return SWIG_OK; - } - - -SWIGINTERNINLINE int -SWIG_AsVal_size_t (octave_value obj, size_t *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = (size_t)(v); - return res; -} - - - SWIGINTERNINLINE octave_value SWIG_From_long (long value) - { - return octave_value(value); - } - - -SWIGINTERNINLINE octave_value -SWIG_From_int (int value) -{ - return SWIG_From_long (value); -} - - -#include -#if !defined(SWIG_NO_LLONG_MAX) -# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) -# define LLONG_MAX __LONG_LONG_MAX__ -# define LLONG_MIN (-LLONG_MAX - 1LL) -# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -# endif -#endif - - - SWIGINTERN int SWIG_AsVal_long (const octave_value& ov, long* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (ov.is_double_type()||ov.is_single_type()) { - double v=ov.double_value(); - if (v!=floor(v)) - return SWIG_TypeError; - } - if (val) - *val = ov.long_value(); - return SWIG_OK; - } - - -SWIGINTERN int -SWIG_AsVal_int (octave_value obj, int *val) -{ - long v; - int res = SWIG_AsVal_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = (int)(v); - } - } - return res; -} - - -typedef union { - uchar** ptr; - float** fl; - double** db; - } CvVectors_data; - - - -SWIGINTERN swig_type_info* -SWIG_pchar_descriptor(void) -{ - static int init = 0; - static swig_type_info* info = 0; - if (!init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; -} - - -SWIGINTERNINLINE octave_value -SWIG_FromCharPtrAndSize(const char* carray, size_t size) -{ - return std::string(carray,carray+size); -} - - -SWIGINTERNINLINE octave_value -SWIG_FromCharPtr(const char *cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); -} - - -SWIGINTERN int -SWIG_AsCharPtrAndSize(octave_value ov, char** cptr, size_t* psize, int *alloc) -{ - if (ov.is_cell() && ov.rows() == 1 && ov.columns() == 1) - ov = ov.cell_value()(0); - if (!ov.is_string()) - return SWIG_TypeError; - - std::string str=ov.string_value(); - size_t len=str.size(); - char* cstr=(char*)str.c_str(); - if (alloc) { - *cptr = (char*)(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); - *alloc = SWIG_NEWOBJ; - } else if (cptr) - *cptr = cstr; - if (psize) - *psize = len + 1; - return SWIG_OK; -} - - - - - - SWIGINTERN int SWIG_AsVal_double (const octave_value& ov, double* val) - { - if (!ov.is_scalar_type()) - return SWIG_TypeError; - if (ov.is_complex_scalar()) - return SWIG_TypeError; - if (val) - *val = ov.double_value(); - return SWIG_OK; - } - - - SWIGINTERNINLINE octave_value SWIG_From_double (double value) - { - return octave_value(value); - } - - -SWIGINTERN int -SWIG_AsVal_bool (const octave_value& ov, bool *val) -{ - if (!ov.is_bool_type()) - return SWIG_ERROR; - if (val) - *val = ov.bool_value(); - return SWIG_OK; -} - - -SWIGINTERNINLINE octave_value -SWIG_From_float (float value) -{ - return SWIG_From_double (value); -} - -SWIGINTERN octave_value CvEM_get_covs(CvEM *self){ - CvMat ** pointers = const_cast (self->get_covs()); - int n = self->get_nclusters(); - - octave_value result = OctTuple_New(n); - for (int i=0; i - - -SWIGINTERN int -SWIG_AsVal_float (octave_value obj, float *val) -{ - double v; - int res = SWIG_AsVal_double (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < -FLT_MAX || v > FLT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = (float)(v); - } - } - return res; -} - - -typedef union { - int *count; - float *portion; - } CvTrainTestSplit_class_part; - - - -typedef union { - int count; - float portion; - } CvTrainTestSplit_train_sample_part; - - - -SWIGINTERN int -SWIG_AsCharArray(octave_value obj, char *val, size_t size) -{ - char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize; - if (csize <= size) { - if (val) { - if (csize) memcpy(val, cptr, csize*sizeof(char)); - if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) delete[] cptr; - } - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_char (octave_value obj, char *val) -{ - int res = SWIG_AsCharArray(obj, val, 1); - if (!SWIG_IsOK(res)) { - long v; - res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); - if (SWIG_IsOK(res)) { - if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { - if (val) *val = (char)(v); - } else { - res = SWIG_OverflowError; - } - } - } - return res; -} - - -SWIGINTERNINLINE octave_value -SWIG_From_char (char c) -{ - return SWIG_FromCharPtrAndSize(&c,1); -} - - -static octave_value_list _wrap_new_CvRNG_Wrapper (const octave_value_list& args, int nargout) { - CvRNG *arg1 = 0 ; - void *argp1 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG_Wrapper *result = 0 ; - - if (!SWIG_check_num_args("new_CvRNG_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_uint64_t, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - arg1 = (CvRNG *)(argp1); - result = (CvRNG_Wrapper *)new CvRNG_Wrapper((CvRNG const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRNG_Wrapper, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper_ptr (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRNG_Wrapper_ptr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ptr" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - result = (CvRNG *)(arg1)->ptr(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper_ref (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRNG_Wrapper_ref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ref" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - result = (CvRNG *) &(arg1)->ref(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper___eq__ (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRNG_Wrapper___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___eq__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = (CvRNG_Wrapper *)(argp2); - result = (bool)(arg1)->operator ==((CvRNG_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRNG_Wrapper___ne__ (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRNG_Wrapper___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___ne__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = (CvRNG_Wrapper *)(argp2); - result = (bool)(arg1)->operator !=((CvRNG_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvRNG_Wrapper (const octave_value_list& args, int nargout) { - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvRNG_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = (CvRNG_Wrapper *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvRNG_Wrapper_members[] = { -{"ptr",_wrap_CvRNG_Wrapper_ptr,0,0,0,0}, -{"ref",_wrap_CvRNG_Wrapper_ref,0,0,0,0}, -{"__eq__",_wrap_CvRNG_Wrapper___eq__,0,0,0,0}, -{"__ne__",_wrap_CvRNG_Wrapper___ne__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvRNG_Wrapper_base_names[] = {0}; -static const swig_type_info *swig_CvRNG_Wrapper_base[] = {0}; -static swig_octave_class _wrap_class_CvRNG_Wrapper = {"CvRNG_Wrapper", &SWIGTYPE_p_CvRNG_Wrapper,0,_wrap_new_CvRNG_Wrapper,0,_wrap_delete_CvRNG_Wrapper,swig_CvRNG_Wrapper_members,swig_CvRNG_Wrapper_base_names,swig_CvRNG_Wrapper_base }; - -static octave_value_list _wrap_new_CvSubdiv2DEdge_Wrapper (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge *arg1 = 0 ; - CvSubdiv2DEdge temp1 ; - size_t val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge_Wrapper *result = 0 ; - - if (!SWIG_check_num_args("new_CvSubdiv2DEdge_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_size_t(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge""'"); - } - temp1 = (CvSubdiv2DEdge)(val1); - arg1 = &temp1; - result = (CvSubdiv2DEdge_Wrapper *)new CvSubdiv2DEdge_Wrapper((CvSubdiv2DEdge const &)*arg1); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper_ptr (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper_ptr",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ptr" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - result = (CvSubdiv2DEdge *)(arg1)->ptr(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper_ref (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSubdiv2DEdge *result = 0 ; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper_ref",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ref" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - result = (CvSubdiv2DEdge *) &(arg1)->ref(); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper___eq__ (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper___eq__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = (CvSubdiv2DEdge_Wrapper *)(argp2); - result = (bool)(arg1)->operator ==((CvSubdiv2DEdge_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSubdiv2DEdge_Wrapper___ne__ (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSubdiv2DEdge_Wrapper___ne__",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = (CvSubdiv2DEdge_Wrapper *)(argp2); - result = (bool)(arg1)->operator !=((CvSubdiv2DEdge_Wrapper const &)*arg2); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSubdiv2DEdge_Wrapper (const octave_value_list& args, int nargout) { - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSubdiv2DEdge_Wrapper",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = (CvSubdiv2DEdge_Wrapper *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSubdiv2DEdge_Wrapper_members[] = { -{"ptr",_wrap_CvSubdiv2DEdge_Wrapper_ptr,0,0,0,0}, -{"ref",_wrap_CvSubdiv2DEdge_Wrapper_ref,0,0,0,0}, -{"__eq__",_wrap_CvSubdiv2DEdge_Wrapper___eq__,0,0,0,0}, -{"__ne__",_wrap_CvSubdiv2DEdge_Wrapper___ne__,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSubdiv2DEdge_Wrapper_base_names[] = {0}; -static const swig_type_info *swig_CvSubdiv2DEdge_Wrapper_base[] = {0}; -static swig_octave_class _wrap_class_CvSubdiv2DEdge_Wrapper = {"CvSubdiv2DEdge_Wrapper", &SWIGTYPE_p_CvSubdiv2DEdge_Wrapper,0,_wrap_new_CvSubdiv2DEdge_Wrapper,0,_wrap_delete_CvSubdiv2DEdge_Wrapper,swig_CvSubdiv2DEdge_Wrapper_members,swig_CvSubdiv2DEdge_Wrapper_base_names,swig_CvSubdiv2DEdge_Wrapper_base }; - -static octave_value_list _wrap_CvVectors_type_set (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_type_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvVectors_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_type_get (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvVectors_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_type_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - result = (int) ((arg1)->type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_dims_set (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_dims_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_dims_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvVectors_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->dims = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_dims_get (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvVectors_dims_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_dims_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - result = (int) ((arg1)->dims); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_count_set (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_count_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvVectors_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_count_get (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvVectors_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_count_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_next_set (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - CvVectors *arg2 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_next_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvVectors, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvVectors_next_set" "', argument " "2"" of type '" "CvVectors *""'"); - } - arg2 = (CvVectors *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_next_get (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvVectors *result = 0 ; - - if (!SWIG_check_num_args("CvVectors_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_next_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - result = (CvVectors *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_data_get (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvVectors_data *result = 0 ; - - if (!SWIG_check_num_args("CvVectors_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - result = (CvVectors_data *)& ((arg1)->data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvVectors (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvVectors *result = 0 ; - - if (!SWIG_check_num_args("new_CvVectors",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvVectors *)new CvVectors(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvVectors (const octave_value_list& args, int nargout) { - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvVectors",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvVectors" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = (CvVectors *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvVectors_members[] = { -{"type",0,_wrap_CvVectors_type_get,_wrap_CvVectors_type_set,0,0}, -{"dims",0,_wrap_CvVectors_dims_get,_wrap_CvVectors_dims_set,0,0}, -{"count",0,_wrap_CvVectors_count_get,_wrap_CvVectors_count_set,0,0}, -{"next",0,_wrap_CvVectors_next_get,_wrap_CvVectors_next_set,0,0}, -{"data",0,_wrap_CvVectors_data_get,octave_set_immutable,0,0}, -{0,0,0,0} -}; -static const char *swig_CvVectors_base_names[] = {0}; -static const swig_type_info *swig_CvVectors_base[] = {0}; -static swig_octave_class _wrap_class_CvVectors = {"CvVectors", &SWIGTYPE_p_CvVectors,0,_wrap_new_CvVectors,0,_wrap_delete_CvVectors,swig_CvVectors_members,swig_CvVectors_base_names,swig_CvVectors_base }; - -static octave_value_list _wrap_CvVectors_data_ptr_set (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - uchar **arg2 = (uchar **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_data_ptr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_ptr_set" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvVectors_data_ptr_set" "', argument " "2"" of type '" "uchar **""'"); - } - arg2 = (uchar **)(argp2); - if (arg1) (arg1)->ptr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_data_ptr_get (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - uchar **result = 0 ; - - if (!SWIG_check_num_args("CvVectors_data_ptr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_ptr_get" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - result = (uchar **) ((arg1)->ptr); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_data_fl_set (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_data_fl_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_fl_set" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->fl = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_data_fl_get (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float **result = 0 ; - - if (!SWIG_check_num_args("CvVectors_data_fl_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_fl_get" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - result = (float **) ((arg1)->fl); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_data_db_set (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - double **arg2 = (double **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvVectors_data_db_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_db_set" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_double, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvVectors_data_db_set" "', argument " "2"" of type '" "double **""'"); - } - arg2 = (double **)(argp2); - if (arg1) (arg1)->db = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvVectors_data_db_get (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double **result = 0 ; - - if (!SWIG_check_num_args("CvVectors_data_db_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_db_get" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - result = (double **) ((arg1)->db); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvVectors_data (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvVectors_data *result = 0 ; - - if (!SWIG_check_num_args("new_CvVectors_data",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvVectors_data *)new CvVectors_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors_data, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvVectors_data (const octave_value_list& args, int nargout) { - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvVectors_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvVectors_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvVectors_data" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = (CvVectors_data *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvVectors_data_members[] = { -{"ptr",0,_wrap_CvVectors_data_ptr_get,_wrap_CvVectors_data_ptr_set,0,0}, -{"fl",0,_wrap_CvVectors_data_fl_get,_wrap_CvVectors_data_fl_set,0,0}, -{"db",0,_wrap_CvVectors_data_db_get,_wrap_CvVectors_data_db_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvVectors_data_base_names[] = {0}; -static const swig_type_info *swig_CvVectors_data_base[] = {0}; -static swig_octave_class _wrap_class_CvVectors_data = {"CvVectors_data", &SWIGTYPE_p_CvVectors_data,0,_wrap_new_CvVectors_data,0,_wrap_delete_CvVectors_data,swig_CvVectors_data_members,swig_CvVectors_data_base_names,swig_CvVectors_data_base }; - -static octave_value_list _wrap_new_CvStatModel (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvStatModel *result = 0 ; - - if (!SWIG_check_num_args("new_CvStatModel",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvStatModel *)new CvStatModel(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStatModel, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvStatModel (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvStatModel",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStatModel" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = (CvStatModel *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_clear (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_clear" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = (CvStatModel *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_save__SWIG_0 (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_save",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_save" "', argument " "1"" of type '" "CvStatModel const *""'"); - } - arg1 = (CvStatModel *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvStatModel const *)arg1)->save((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_save__SWIG_1 (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_save",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_save" "', argument " "1"" of type '" "CvStatModel const *""'"); - } - arg1 = (CvStatModel *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - ((CvStatModel const *)arg1)->save((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_save (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_save__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_save__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvStatModel_load__SWIG_0 (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_load",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_load" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = (CvStatModel *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - (arg1)->load((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_load__SWIG_1 (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_load",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_load" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = (CvStatModel *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - (arg1)->load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_load (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_load__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_load__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvStatModel_write (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_write" "', argument " "1"" of type '" "CvStatModel const *""'"); - } - arg1 = (CvStatModel *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvStatModel const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvStatModel_read (const octave_value_list& args, int nargout) { - CvStatModel *arg1 = (CvStatModel *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvStatModel_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_read" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = (CvStatModel *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvStatModel_members[] = { -{"clear",_wrap_CvStatModel_clear,0,0,0,0}, -{"save",_wrap_CvStatModel_save,0,0,0,0}, -{"load",_wrap_CvStatModel_load,0,0,0,0}, -{"write",_wrap_CvStatModel_write,0,0,0,0}, -{"read",_wrap_CvStatModel_read,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvStatModel_base_names[] = {0}; -static const swig_type_info *swig_CvStatModel_base[] = {0}; -static swig_octave_class _wrap_class_CvStatModel = {"CvStatModel", &SWIGTYPE_p_CvStatModel,0,_wrap_new_CvStatModel,0,_wrap_delete_CvStatModel,swig_CvStatModel_members,swig_CvStatModel_base_names,swig_CvStatModel_base }; - -static octave_value_list _wrap_new_CvParamGrid__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvParamGrid *result = 0 ; - - if (!SWIG_check_num_args("new_CvParamGrid",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvParamGrid *)new CvParamGrid(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvParamGrid, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvParamGrid__SWIG_1 (const octave_value_list& args, int nargout) { - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvParamGrid *result = 0 ; - - if (!SWIG_check_num_args("new_CvParamGrid",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_double(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvParamGrid" "', argument " "1"" of type '" "double""'"); - } - arg1 = (double)(val1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvParamGrid" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvParamGrid" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = (CvParamGrid *)new CvParamGrid(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvParamGrid, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvParamGrid (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 0) { - return _wrap_new_CvParamGrid__SWIG_0(args, nargout); - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvParamGrid__SWIG_1(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvParamGrid_check (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvParamGrid_check",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_check" "', argument " "1"" of type '" "CvParamGrid const *""'"); - } - arg1 = (CvParamGrid *)(argp1); - { - try { - result = (bool)((CvParamGrid const *)arg1)->check(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvParamGrid_min_val_set (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvParamGrid_min_val_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_min_val_set" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvParamGrid_min_val_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->min_val = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvParamGrid_min_val_get (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvParamGrid_min_val_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_min_val_get" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - result = (double) ((arg1)->min_val); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvParamGrid_max_val_set (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvParamGrid_max_val_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_max_val_set" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvParamGrid_max_val_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->max_val = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvParamGrid_max_val_get (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvParamGrid_max_val_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_max_val_get" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - result = (double) ((arg1)->max_val); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvParamGrid_step_set (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvParamGrid_step_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_step_set" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvParamGrid_step_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->step = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvParamGrid_step_get (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvParamGrid_step_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_step_get" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - result = (double) ((arg1)->step); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvParamGrid (const octave_value_list& args, int nargout) { - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvParamGrid",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvParamGrid, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvParamGrid" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = (CvParamGrid *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvParamGrid_members[] = { -{"check",_wrap_CvParamGrid_check,0,0,0,0}, -{"min_val",0,_wrap_CvParamGrid_min_val_get,_wrap_CvParamGrid_min_val_set,0,0}, -{"max_val",0,_wrap_CvParamGrid_max_val_get,_wrap_CvParamGrid_max_val_set,0,0}, -{"step",0,_wrap_CvParamGrid_step_get,_wrap_CvParamGrid_step_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvParamGrid_base_names[] = {0}; -static const swig_type_info *swig_CvParamGrid_base[] = {0}; -static swig_octave_class _wrap_class_CvParamGrid = {"CvParamGrid", &SWIGTYPE_p_CvParamGrid,0,_wrap_new_CvParamGrid,0,_wrap_delete_CvParamGrid,swig_CvParamGrid_members,swig_CvParamGrid_base_names,swig_CvParamGrid_base }; - -static octave_value_list _wrap_new_CvNormalBayesClassifier__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvNormalBayesClassifier *result = 0 ; - - if (!SWIG_check_num_args("new_CvNormalBayesClassifier",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvNormalBayesClassifier (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvNormalBayesClassifier",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvNormalBayesClassifier" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvNormalBayesClassifier__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvNormalBayesClassifier *result = 0 ; - - if (!SWIG_check_num_args("new_CvNormalBayesClassifier",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvNormalBayesClassifier" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvNormalBayesClassifier" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvNormalBayesClassifier" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvNormalBayesClassifier" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvNormalBayesClassifier__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvNormalBayesClassifier *result = 0 ; - - if (!SWIG_check_num_args("new_CvNormalBayesClassifier",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvNormalBayesClassifier" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvNormalBayesClassifier" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvNormalBayesClassifier" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvNormalBayesClassifier__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvNormalBayesClassifier *result = 0 ; - - if (!SWIG_check_num_args("new_CvNormalBayesClassifier",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvNormalBayesClassifier" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvNormalBayesClassifier" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvNormalBayesClassifier (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 0) { - return _wrap_new_CvNormalBayesClassifier__SWIG_0(args, nargout); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvNormalBayesClassifier__SWIG_3(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvNormalBayesClassifier__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvNormalBayesClassifier__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvNormalBayesClassifier_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvNormalBayesClassifier_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - ecode6 = SWIG_AsVal_bool(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvNormalBayesClassifier_train" "', argument " "6"" of type '" "bool""'"); - } - arg6 = (bool)(val6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvNormalBayesClassifier_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvNormalBayesClassifier_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvNormalBayesClassifier_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_3(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_1(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_predict__SWIG_0 (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_predict" "', argument " "1"" of type '" "CvNormalBayesClassifier const *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_predict" "', argument " "3"" of type '" "CvMat *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvNormalBayesClassifier const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_predict__SWIG_1 (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_predict",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_predict" "', argument " "1"" of type '" "CvNormalBayesClassifier const *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (float)((CvNormalBayesClassifier const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_predict (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_predict__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_predict__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_clear (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_clear" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_write (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_write" "', argument " "1"" of type '" "CvNormalBayesClassifier const *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvNormalBayesClassifier const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvNormalBayesClassifier_read (const octave_value_list& args, int nargout) { - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvNormalBayesClassifier_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_read" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = (CvNormalBayesClassifier *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvNormalBayesClassifier_members[] = { -{"train",_wrap_CvNormalBayesClassifier_train,0,0,0,0}, -{"predict",_wrap_CvNormalBayesClassifier_predict,0,0,0,0}, -{"clear",_wrap_CvNormalBayesClassifier_clear,0,0,0,0}, -{"write",_wrap_CvNormalBayesClassifier_write,0,0,0,0}, -{"read",_wrap_CvNormalBayesClassifier_read,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvNormalBayesClassifier_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvNormalBayesClassifier_base[] = {0,0}; -static swig_octave_class _wrap_class_CvNormalBayesClassifier = {"CvNormalBayesClassifier", &SWIGTYPE_p_CvNormalBayesClassifier,0,_wrap_new_CvNormalBayesClassifier,0,_wrap_delete_CvNormalBayesClassifier,swig_CvNormalBayesClassifier_members,swig_CvNormalBayesClassifier_base_names,swig_CvNormalBayesClassifier_base }; - -static octave_value_list _wrap_new_CvKNearest__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvKNearest *result = 0 ; - - if (!SWIG_check_num_args("new_CvKNearest",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvKNearest *)new CvKNearest(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvKNearest (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvKNearest",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvKNearest" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvKNearest__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool arg4 ; - int arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvKNearest *result = 0 ; - - if (!SWIG_check_num_args("new_CvKNearest",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvKNearest" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvKNearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvKNearest" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - ecode4 = SWIG_AsVal_bool(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvKNearest" "', argument " "4"" of type '" "bool""'"); - } - arg4 = (bool)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvKNearest" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvKNearest__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvKNearest *result = 0 ; - - if (!SWIG_check_num_args("new_CvKNearest",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvKNearest" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvKNearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvKNearest" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - ecode4 = SWIG_AsVal_bool(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvKNearest" "', argument " "4"" of type '" "bool""'"); - } - arg4 = (bool)(val4); - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvKNearest__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvKNearest *result = 0 ; - - if (!SWIG_check_num_args("new_CvKNearest",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvKNearest" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvKNearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvKNearest" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvKNearest__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvKNearest *result = 0 ; - - if (!SWIG_check_num_args("new_CvKNearest",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvKNearest" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvKNearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvKNearest (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 0) { - return _wrap_new_CvKNearest__SWIG_0(args, nargout); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvKNearest__SWIG_4(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvKNearest__SWIG_3(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvKNearest__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvKNearest__SWIG_1(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvKNearest_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool arg5 ; - int arg6 ; - bool arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvKNearest_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvKNearest_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvKNearest_train" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvKNearest_train" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - ecode7 = SWIG_AsVal_bool(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvKNearest_train" "', argument " "7"" of type '" "bool""'"); - } - arg7 = (bool)(val7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool arg5 ; - int arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvKNearest_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvKNearest_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvKNearest_train" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvKNearest_train" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvKNearest_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvKNearest_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvKNearest_train" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvKNearest_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvKNearest_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvKNearest_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvKNearest_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[7]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_train__SWIG_4(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_train__SWIG_3(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_train__SWIG_2(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvKNearest_find_nearest__SWIG_0 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - float **arg5 = (float **) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *vptr5 ; - float *buffer5 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvKNearest_find_nearest",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_find_nearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_find_nearest" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - if ((SWIG_ConvertPtr(args(4), &vptr5, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer5 = (float *) vptr5; - arg5=&buffer5; - } - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvKNearest_find_nearest" "', argument " "6"" of type '" "CvMat *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvKNearest_find_nearest" "', argument " "7"" of type '" "CvMat *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4,(float const **)arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_find_nearest__SWIG_1 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - float **arg5 = (float **) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *vptr5 ; - float *buffer5 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvKNearest_find_nearest",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_find_nearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_find_nearest" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - if ((SWIG_ConvertPtr(args(4), &vptr5, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer5 = (float *) vptr5; - arg5=&buffer5; - } - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvKNearest_find_nearest" "', argument " "6"" of type '" "CvMat *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4,(float const **)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_find_nearest__SWIG_2 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - float **arg5 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *vptr5 ; - float *buffer5 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvKNearest_find_nearest",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_find_nearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_find_nearest" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - if ((SWIG_ConvertPtr(args(4), &vptr5, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer5 = (float *) vptr5; - arg5=&buffer5; - } - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4,(float const **)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_find_nearest__SWIG_3 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvKNearest_find_nearest",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_find_nearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvKNearest_find_nearest" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_find_nearest__SWIG_4 (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvKNearest_find_nearest",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKNearest_find_nearest" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_find_nearest (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[7]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_4(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_3(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_2(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_1(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvKNearest_clear (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvKNearest_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_clear" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = (CvKNearest *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_get_max_k (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvKNearest_get_max_k",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_get_max_k" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - { - try { - result = (int)((CvKNearest const *)arg1)->get_max_k(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_get_var_count (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvKNearest_get_var_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_get_var_count" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - { - try { - result = (int)((CvKNearest const *)arg1)->get_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_get_sample_count (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvKNearest_get_sample_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_get_sample_count" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - { - try { - result = (int)((CvKNearest const *)arg1)->get_sample_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvKNearest_is_regression (const octave_value_list& args, int nargout) { - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvKNearest_is_regression",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_is_regression" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = (CvKNearest *)(argp1); - { - try { - result = (bool)((CvKNearest const *)arg1)->is_regression(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvKNearest_members[] = { -{"train",_wrap_CvKNearest_train,0,0,0,0}, -{"find_nearest",_wrap_CvKNearest_find_nearest,0,0,0,0}, -{"clear",_wrap_CvKNearest_clear,0,0,0,0}, -{"get_max_k",_wrap_CvKNearest_get_max_k,0,0,0,0}, -{"get_var_count",_wrap_CvKNearest_get_var_count,0,0,0,0}, -{"get_sample_count",_wrap_CvKNearest_get_sample_count,0,0,0,0}, -{"is_regression",_wrap_CvKNearest_is_regression,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvKNearest_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvKNearest_base[] = {0,0}; -static swig_octave_class _wrap_class_CvKNearest = {"CvKNearest", &SWIGTYPE_p_CvKNearest,0,_wrap_new_CvKNearest,0,_wrap_delete_CvKNearest,swig_CvKNearest_members,swig_CvKNearest_base_names,swig_CvKNearest_base }; - -static octave_value_list _wrap_new_CvSVMParams__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVMParams *)new CvSVMParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMParams__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - double arg3 ; - double arg4 ; - double arg5 ; - double arg6 ; - double arg7 ; - double arg8 ; - CvMat *arg9 = (CvMat *) 0 ; - CvTermCriteria arg10 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMParams",args.length(),10,10,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSVMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvSVMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvSVMParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvSVMParams" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_double(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvSVMParams" "', argument " "5"" of type '" "double""'"); - } - arg5 = (double)(val5); - ecode6 = SWIG_AsVal_double(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "new_CvSVMParams" "', argument " "6"" of type '" "double""'"); - } - arg6 = (double)(val6); - ecode7 = SWIG_AsVal_double(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvSVMParams" "', argument " "7"" of type '" "double""'"); - } - arg7 = (double)(val7); - ecode8 = SWIG_AsVal_double(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvSVMParams" "', argument " "8"" of type '" "double""'"); - } - arg8 = (double)(val8); - res9 = SWIG_ConvertPtr(args(8), &argp9,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "new_CvSVMParams" "', argument " "9"" of type '" "CvMat *""'"); - } - arg9 = (CvMat *)(argp9); - { - res10 = SWIG_ConvertPtr(args(9), &argp10, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "new_CvSVMParams" "', argument " "10"" of type '" "CvTermCriteria""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvSVMParams" "', argument " "10"" of type '" "CvTermCriteria""'"); - } else { - arg10 = *((CvTermCriteria *)(argp10)); - } - } - { - try { - result = (CvSVMParams *)new CvSVMParams(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMParams (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[10]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9) - }; - - if (argc == 0) { - return _wrap_new_CvSVMParams__SWIG_0(args, nargout); - } - if (argc == 10) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVMParams__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVMParams_svm_type_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_svm_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_svm_type_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_svm_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->svm_type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_svm_type_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMParams_svm_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_svm_type_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (int) ((arg1)->svm_type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_kernel_type_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_kernel_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_kernel_type_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_kernel_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->kernel_type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_kernel_type_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMParams_kernel_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_kernel_type_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (int) ((arg1)->kernel_type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_degree_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_degree_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_degree_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_degree_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->degree = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_degree_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMParams_degree_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_degree_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (double) ((arg1)->degree); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_gamma_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_gamma_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_gamma_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_gamma_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->gamma = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_gamma_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMParams_gamma_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_gamma_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (double) ((arg1)->gamma); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_coef0_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_coef0_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_coef0_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_coef0_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->coef0 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_coef0_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMParams_coef0_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_coef0_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (double) ((arg1)->coef0); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_C_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_C_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_C_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_C_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->C = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_C_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMParams_C_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_C_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (double) ((arg1)->C); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_nu_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_nu_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_nu_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_nu_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->nu = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_nu_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMParams_nu_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_nu_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (double) ((arg1)->nu); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_p_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_p_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_p_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_p_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->p = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_p_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMParams_p_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_p_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (double) ((arg1)->p); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_class_weights_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_class_weights_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_class_weights_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMParams_class_weights_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->class_weights = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_class_weights_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvSVMParams_class_weights_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_class_weights_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (CvMat *) ((arg1)->class_weights); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_term_crit_set (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMParams_term_crit_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_term_crit_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = (CvTermCriteria *)(argp2); - if (arg1) (arg1)->term_crit = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMParams_term_crit_get (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTermCriteria *result = 0 ; - - if (!SWIG_check_num_args("CvSVMParams_term_crit_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_term_crit_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVMParams (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVMParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMParams" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = (CvSVMParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVMParams_members[] = { -{"svm_type",0,_wrap_CvSVMParams_svm_type_get,_wrap_CvSVMParams_svm_type_set,0,0}, -{"kernel_type",0,_wrap_CvSVMParams_kernel_type_get,_wrap_CvSVMParams_kernel_type_set,0,0}, -{"degree",0,_wrap_CvSVMParams_degree_get,_wrap_CvSVMParams_degree_set,0,0}, -{"gamma",0,_wrap_CvSVMParams_gamma_get,_wrap_CvSVMParams_gamma_set,0,0}, -{"coef0",0,_wrap_CvSVMParams_coef0_get,_wrap_CvSVMParams_coef0_set,0,0}, -{"C",0,_wrap_CvSVMParams_C_get,_wrap_CvSVMParams_C_set,0,0}, -{"nu",0,_wrap_CvSVMParams_nu_get,_wrap_CvSVMParams_nu_set,0,0}, -{"p",0,_wrap_CvSVMParams_p_get,_wrap_CvSVMParams_p_set,0,0}, -{"class_weights",0,_wrap_CvSVMParams_class_weights_get,_wrap_CvSVMParams_class_weights_set,0,0}, -{"term_crit",0,_wrap_CvSVMParams_term_crit_get,_wrap_CvSVMParams_term_crit_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVMParams_base_names[] = {0}; -static const swig_type_info *swig_CvSVMParams_base[] = {0}; -static swig_octave_class _wrap_class_CvSVMParams = {"CvSVMParams", &SWIGTYPE_p_CvSVMParams,0,_wrap_new_CvSVMParams,0,_wrap_delete_CvSVMParams,swig_CvSVMParams_members,swig_CvSVMParams_base_names,swig_CvSVMParams_base }; - -static octave_value_list _wrap_new_CvSVMKernel__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernel *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMKernel",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVMKernel *)new CvSVMKernel(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernel, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMKernel__SWIG_1 (const octave_value_list& args, int nargout) { - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - CvSVMKernel::Calc arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernel *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMKernel",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvSVMKernel" "', argument " "1"" of type '" "CvSVMParams const *""'"); - } - arg1 = (CvSVMParams *)(argp1); - { - int res = SWIG_ConvertMember(args(1), SWIG_as_voidptr(&arg2), sizeof(CvSVMKernel::Calc),SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMKernel" "', argument " "2"" of type '" "CvSVMKernel::Calc""'"); - } - } - { - try { - result = (CvSVMKernel *)new CvSVMKernel((CvSVMParams const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernel, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMKernel (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 0) { - return _wrap_new_CvSVMKernel__SWIG_0(args, nargout); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVMKernel__SWIG_1(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVMKernel_create (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - CvSVMParams *arg2 = (CvSVMParams *) 0 ; - CvSVMKernel::Calc arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMKernel_create",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_create" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernel_create" "', argument " "2"" of type '" "CvSVMParams const *""'"); - } - arg2 = (CvSVMParams *)(argp2); - { - int res = SWIG_ConvertMember(args(2), SWIG_as_voidptr(&arg3), sizeof(CvSVMKernel::Calc),SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMKernel_create" "', argument " "3"" of type '" "CvSVMKernel::Calc""'"); - } - } - { - try { - result = (bool)(arg1)->create((CvSVMParams const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVMKernel (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVMKernel",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMKernel" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_clear (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_clear" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc" "', argument " "6"" of type '" "float *""'"); - } - arg6 = (float *)(argp6); - { - try { - (arg1)->calc(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_params_set (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - CvSVMParams *arg2 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_params_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_params_set" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernel_params_set" "', argument " "2"" of type '" "CvSVMParams const *""'"); - } - arg2 = (CvSVMParams *)(argp2); - if (arg1) (arg1)->params = (CvSVMParams const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_params_get (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMParams *result = 0 ; - - if (!SWIG_check_num_args("CvSVMKernel_params_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_params_get" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - result = (CvSVMParams *) ((arg1)->params); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_func_set (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - CvSVMKernel::Calc arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc_func_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_func_set" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - { - int res = SWIG_ConvertMember(args(1), SWIG_as_voidptr(&arg2), sizeof(CvSVMKernel::Calc),SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMKernel_calc_func_set" "', argument " "2"" of type '" "CvSVMKernel::Calc""'"); - } - } - if (arg1) (arg1)->calc_func = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_func_get (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernel::Calc result; - - if (!SWIG_check_num_args("CvSVMKernel_calc_func_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_func_get" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - result = (CvSVMKernel::Calc) ((arg1)->calc_func); - _outv = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMKernel::Calc), SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_non_rbf_base (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - double arg7 ; - double arg8 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc_non_rbf_base",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "6"" of type '" "float *""'"); - } - arg6 = (float *)(argp6); - ecode7 = SWIG_AsVal_double(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "7"" of type '" "double""'"); - } - arg7 = (double)(val7); - ecode8 = SWIG_AsVal_double(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "8"" of type '" "double""'"); - } - arg8 = (double)(val8); - { - try { - (arg1)->calc_non_rbf_base(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_linear (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc_linear",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_linear" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_linear" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_linear" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_linear" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_linear" "', argument " "6"" of type '" "float *""'"); - } - arg6 = (float *)(argp6); - { - try { - (arg1)->calc_linear(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_rbf (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc_rbf",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_rbf" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_rbf" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_rbf" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_rbf" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_rbf" "', argument " "6"" of type '" "float *""'"); - } - arg6 = (float *)(argp6); - { - try { - (arg1)->calc_rbf(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_poly (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc_poly",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_poly" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_poly" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_poly" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_poly" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_poly" "', argument " "6"" of type '" "float *""'"); - } - arg6 = (float *)(argp6); - { - try { - (arg1)->calc_poly(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernel_calc_sigmoid (const octave_value_list& args, int nargout) { - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernel_calc_sigmoid",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = (CvSVMKernel *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "6"" of type '" "float *""'"); - } - arg6 = (float *)(argp6); - { - try { - (arg1)->calc_sigmoid(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVMKernel_members[] = { -{"create",_wrap_CvSVMKernel_create,0,0,0,0}, -{"clear",_wrap_CvSVMKernel_clear,0,0,0,0}, -{"calc",_wrap_CvSVMKernel_calc,0,0,0,0}, -{"params",0,_wrap_CvSVMKernel_params_get,_wrap_CvSVMKernel_params_set,0,0}, -{"calc_func",0,_wrap_CvSVMKernel_calc_func_get,_wrap_CvSVMKernel_calc_func_set,0,0}, -{"calc_non_rbf_base",_wrap_CvSVMKernel_calc_non_rbf_base,0,0,0,0}, -{"calc_linear",_wrap_CvSVMKernel_calc_linear,0,0,0,0}, -{"calc_rbf",_wrap_CvSVMKernel_calc_rbf,0,0,0,0}, -{"calc_poly",_wrap_CvSVMKernel_calc_poly,0,0,0,0}, -{"calc_sigmoid",_wrap_CvSVMKernel_calc_sigmoid,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVMKernel_base_names[] = {0}; -static const swig_type_info *swig_CvSVMKernel_base[] = {0}; -static swig_octave_class _wrap_class_CvSVMKernel = {"CvSVMKernel", &SWIGTYPE_p_CvSVMKernel,0,_wrap_new_CvSVMKernel,0,_wrap_delete_CvSVMKernel,swig_CvSVMKernel_members,swig_CvSVMKernel_base_names,swig_CvSVMKernel_base }; - -static octave_value_list _wrap_CvSVMKernelRow_prev_set (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernelRow_prev_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_prev_set" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernelRow_prev_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = (CvSVMKernelRow *)(argp2); - if (arg1) (arg1)->prev = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernelRow_prev_get (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernelRow *result = 0 ; - - if (!SWIG_check_num_args("CvSVMKernelRow_prev_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_prev_get" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - result = (CvSVMKernelRow *) ((arg1)->prev); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernelRow_next_set (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernelRow_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_next_set" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernelRow_next_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = (CvSVMKernelRow *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernelRow_next_get (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernelRow *result = 0 ; - - if (!SWIG_check_num_args("CvSVMKernelRow_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_next_get" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - result = (CvSVMKernelRow *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernelRow_data_set (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMKernelRow_data_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_data_set" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernelRow_data_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->data = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMKernelRow_data_get (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVMKernelRow_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_data_get" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - result = (float *) ((arg1)->data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMKernelRow (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernelRow *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMKernelRow",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVMKernelRow *)new CvSVMKernelRow(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVMKernelRow (const octave_value_list& args, int nargout) { - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVMKernelRow",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMKernelRow" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = (CvSVMKernelRow *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVMKernelRow_members[] = { -{"prev",0,_wrap_CvSVMKernelRow_prev_get,_wrap_CvSVMKernelRow_prev_set,0,0}, -{"next",0,_wrap_CvSVMKernelRow_next_get,_wrap_CvSVMKernelRow_next_set,0,0}, -{"data",0,_wrap_CvSVMKernelRow_data_get,_wrap_CvSVMKernelRow_data_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVMKernelRow_base_names[] = {0}; -static const swig_type_info *swig_CvSVMKernelRow_base[] = {0}; -static swig_octave_class _wrap_class_CvSVMKernelRow = {"CvSVMKernelRow", &SWIGTYPE_p_CvSVMKernelRow,0,_wrap_new_CvSVMKernelRow,0,_wrap_delete_CvSVMKernelRow,swig_CvSVMKernelRow_members,swig_CvSVMKernelRow_base_names,swig_CvSVMKernelRow_base }; - -static octave_value_list _wrap_CvSVMSolutionInfo_obj_set (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_obj_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_obj_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_obj_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->obj = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_obj_get (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_obj_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_obj_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - result = (double) ((arg1)->obj); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_rho_set (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_rho_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_rho_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_rho_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rho = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_rho_get (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_rho_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_rho_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - result = (double) ((arg1)->rho); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_upper_bound_p_set (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_upper_bound_p_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_p_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_upper_bound_p_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->upper_bound_p = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_upper_bound_p_get (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_upper_bound_p_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_p_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - result = (double) ((arg1)->upper_bound_p); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_upper_bound_n_set (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_upper_bound_n_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_n_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_upper_bound_n_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->upper_bound_n = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_upper_bound_n_get (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_upper_bound_n_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_n_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - result = (double) ((arg1)->upper_bound_n); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_r_set (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_r_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_r_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_r_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->r = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolutionInfo_r_get (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMSolutionInfo_r_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_r_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - result = (double) ((arg1)->r); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMSolutionInfo (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMSolutionInfo *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMSolutionInfo",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVMSolutionInfo *)new CvSVMSolutionInfo(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMSolutionInfo, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVMSolutionInfo (const octave_value_list& args, int nargout) { - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVMSolutionInfo",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolutionInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMSolutionInfo" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = (CvSVMSolutionInfo *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVMSolutionInfo_members[] = { -{"obj",0,_wrap_CvSVMSolutionInfo_obj_get,_wrap_CvSVMSolutionInfo_obj_set,0,0}, -{"rho",0,_wrap_CvSVMSolutionInfo_rho_get,_wrap_CvSVMSolutionInfo_rho_set,0,0}, -{"upper_bound_p",0,_wrap_CvSVMSolutionInfo_upper_bound_p_get,_wrap_CvSVMSolutionInfo_upper_bound_p_set,0,0}, -{"upper_bound_n",0,_wrap_CvSVMSolutionInfo_upper_bound_n_get,_wrap_CvSVMSolutionInfo_upper_bound_n_set,0,0}, -{"r",0,_wrap_CvSVMSolutionInfo_r_get,_wrap_CvSVMSolutionInfo_r_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVMSolutionInfo_base_names[] = {0}; -static const swig_type_info *swig_CvSVMSolutionInfo_base[] = {0}; -static swig_octave_class _wrap_class_CvSVMSolutionInfo = {"CvSVMSolutionInfo", &SWIGTYPE_p_CvSVMSolutionInfo,0,_wrap_new_CvSVMSolutionInfo,0,_wrap_delete_CvSVMSolutionInfo,swig_CvSVMSolutionInfo_members,swig_CvSVMSolutionInfo_base_names,swig_CvSVMSolutionInfo_base }; - -static octave_value_list _wrap_new_CvSVMSolver__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMSolver *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMSolver",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVMSolver *)new CvSVMSolver(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMSolver, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMSolver__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - float **arg3 = (float **) 0 ; - schar *arg4 = (schar *) 0 ; - int arg5 ; - double *arg6 = (double *) 0 ; - double arg7 ; - double arg8 ; - CvMemStorage *arg9 = (CvMemStorage *) 0 ; - CvSVMKernel *arg10 = (CvSVMKernel *) 0 ; - CvSVMSolver::GetRow arg11 ; - CvSVMSolver::SelectWorkingSet arg12 ; - CvSVMSolver::CalcRho arg13 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - float *buffer3 ; - void *argp4 = 0 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - void *argp10 = 0 ; - int res10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMSolver *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMSolver",args.length(),13,13,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSVMSolver" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvSVMSolver" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - if ((SWIG_ConvertPtr(args(2), &vptr3, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer3 = (float *) vptr3; - arg3=&buffer3; - } - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvSVMSolver" "', argument " "4"" of type '" "schar *""'"); - } - arg4 = (schar *)(argp4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvSVMSolver" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvSVMSolver" "', argument " "6"" of type '" "double *""'"); - } - arg6 = (double *)(argp6); - ecode7 = SWIG_AsVal_double(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvSVMSolver" "', argument " "7"" of type '" "double""'"); - } - arg7 = (double)(val7); - ecode8 = SWIG_AsVal_double(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvSVMSolver" "', argument " "8"" of type '" "double""'"); - } - arg8 = (double)(val8); - res9 = SWIG_ConvertPtr(args(8), &argp9,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "new_CvSVMSolver" "', argument " "9"" of type '" "CvMemStorage *""'"); - } - arg9 = (CvMemStorage *)(argp9); - res10 = SWIG_ConvertPtr(args(9), &argp10,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "new_CvSVMSolver" "', argument " "10"" of type '" "CvSVMKernel *""'"); - } - arg10 = (CvSVMKernel *)(argp10); - { - int res = SWIG_ConvertMember(args(10), SWIG_as_voidptr(&arg11), sizeof(CvSVMSolver::GetRow),SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMSolver" "', argument " "11"" of type '" "CvSVMSolver::GetRow""'"); - } - } - { - int res = SWIG_ConvertMember(args(11), SWIG_as_voidptr(&arg12), sizeof(CvSVMSolver::SelectWorkingSet),SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMSolver" "', argument " "12"" of type '" "CvSVMSolver::SelectWorkingSet""'"); - } - } - { - int res = SWIG_ConvertMember(args(12), SWIG_as_voidptr(&arg13), sizeof(CvSVMSolver::CalcRho),SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMSolver" "', argument " "13"" of type '" "CvSVMSolver::CalcRho""'"); - } - } - { - try { - result = (CvSVMSolver *)new CvSVMSolver(arg1,arg2,(float const **)arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMSolver, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMSolver (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[13]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9),octave_value_ref(args,10),octave_value_ref(args,11),octave_value_ref(args,12) - }; - - if (argc == 0) { - return _wrap_new_CvSVMSolver__SWIG_0(args, nargout); - } - if (argc == 13) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_signed_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_double, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvSVMKernel, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[10], &vptr, SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[11], &vptr, SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[12], &vptr, SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVMSolver__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVMSolver_create (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - schar *arg5 = (schar *) 0 ; - int arg6 ; - double *arg7 = (double *) 0 ; - double arg8 ; - double arg9 ; - CvMemStorage *arg10 = (CvMemStorage *) 0 ; - CvSVMKernel *arg11 = (CvSVMKernel *) 0 ; - CvSVMSolver::GetRow arg12 ; - CvSVMSolver::SelectWorkingSet arg13 ; - CvSVMSolver::CalcRho arg14 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - double val8 ; - int ecode8 = 0 ; - double val9 ; - int ecode9 = 0 ; - void *argp10 = 0 ; - int res10 = 0 ; - void *argp11 = 0 ; - int res11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_create",args.length(),14,14,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_create" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_create" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_create" "', argument " "5"" of type '" "schar *""'"); - } - arg5 = (schar *)(argp5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvSVMSolver_create" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_create" "', argument " "7"" of type '" "double *""'"); - } - arg7 = (double *)(argp7); - ecode8 = SWIG_AsVal_double(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "CvSVMSolver_create" "', argument " "8"" of type '" "double""'"); - } - arg8 = (double)(val8); - ecode9 = SWIG_AsVal_double(args(8), &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "CvSVMSolver_create" "', argument " "9"" of type '" "double""'"); - } - arg9 = (double)(val9); - res10 = SWIG_ConvertPtr(args(9), &argp10,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVMSolver_create" "', argument " "10"" of type '" "CvMemStorage *""'"); - } - arg10 = (CvMemStorage *)(argp10); - res11 = SWIG_ConvertPtr(args(10), &argp11,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVMSolver_create" "', argument " "11"" of type '" "CvSVMKernel *""'"); - } - arg11 = (CvSVMKernel *)(argp11); - { - int res = SWIG_ConvertMember(args(11), SWIG_as_voidptr(&arg12), sizeof(CvSVMSolver::GetRow),SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_create" "', argument " "12"" of type '" "CvSVMSolver::GetRow""'"); - } - } - { - int res = SWIG_ConvertMember(args(12), SWIG_as_voidptr(&arg13), sizeof(CvSVMSolver::SelectWorkingSet),SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_create" "', argument " "13"" of type '" "CvSVMSolver::SelectWorkingSet""'"); - } - } - { - int res = SWIG_ConvertMember(args(13), SWIG_as_voidptr(&arg14), sizeof(CvSVMSolver::CalcRho),SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_create" "', argument " "14"" of type '" "CvSVMSolver::CalcRho""'"); - } - } - { - try { - result = (bool)(arg1)->create(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVMSolver (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVMSolver",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMSolver" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_clear (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_clear" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_solve_generic (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolutionInfo *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_solve_generic",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_generic" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_solve_generic" "', argument " "2"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_generic" "', argument " "2"" of type '" "CvSVMSolutionInfo &""'"); - } - arg2 = (CvSVMSolutionInfo *)(argp2); - { - try { - result = (bool)(arg1)->solve_generic(*arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_solve_c_svc (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - schar *arg5 = (schar *) 0 ; - double arg6 ; - double arg7 ; - CvMemStorage *arg8 = (CvMemStorage *) 0 ; - CvSVMKernel *arg9 = (CvSVMKernel *) 0 ; - double *arg10 = (double *) 0 ; - CvSVMSolutionInfo *arg11 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - void *argp10 = 0 ; - int res10 = 0 ; - void *argp11 = 0 ; - int res11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_solve_c_svc",args.length(),11,11,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "5"" of type '" "schar *""'"); - } - arg5 = (schar *)(argp5); - ecode6 = SWIG_AsVal_double(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "6"" of type '" "double""'"); - } - arg6 = (double)(val6); - ecode7 = SWIG_AsVal_double(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "7"" of type '" "double""'"); - } - arg7 = (double)(val7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "8"" of type '" "CvMemStorage *""'"); - } - arg8 = (CvMemStorage *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "9"" of type '" "CvSVMKernel *""'"); - } - arg9 = (CvSVMKernel *)(argp9); - res10 = SWIG_ConvertPtr(args(9), &argp10,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "10"" of type '" "double *""'"); - } - arg10 = (double *)(argp10); - res11 = SWIG_ConvertPtr(args(10), &argp11, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "11"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_c_svc" "', argument " "11"" of type '" "CvSVMSolutionInfo &""'"); - } - arg11 = (CvSVMSolutionInfo *)(argp11); - { - try { - result = (bool)(arg1)->solve_c_svc(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,arg8,arg9,arg10,*arg11); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_solve_nu_svc (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - schar *arg5 = (schar *) 0 ; - CvMemStorage *arg6 = (CvMemStorage *) 0 ; - CvSVMKernel *arg7 = (CvSVMKernel *) 0 ; - double *arg8 = (double *) 0 ; - CvSVMSolutionInfo *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_solve_nu_svc",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "5"" of type '" "schar *""'"); - } - arg5 = (schar *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "6"" of type '" "CvMemStorage *""'"); - } - arg6 = (CvMemStorage *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "7"" of type '" "CvSVMKernel *""'"); - } - arg7 = (CvSVMKernel *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "8"" of type '" "double *""'"); - } - arg8 = (double *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - arg9 = (CvSVMSolutionInfo *)(argp9); - { - try { - result = (bool)(arg1)->solve_nu_svc(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,arg8,*arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_solve_one_class (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - CvMemStorage *arg5 = (CvMemStorage *) 0 ; - CvSVMKernel *arg6 = (CvSVMKernel *) 0 ; - double *arg7 = (double *) 0 ; - CvSVMSolutionInfo *arg8 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_solve_one_class",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_one_class" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_one_class" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_one_class" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_one_class" "', argument " "5"" of type '" "CvMemStorage *""'"); - } - arg5 = (CvMemStorage *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_one_class" "', argument " "6"" of type '" "CvSVMKernel *""'"); - } - arg6 = (CvSVMKernel *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_one_class" "', argument " "7"" of type '" "double *""'"); - } - arg7 = (double *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_one_class" "', argument " "8"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_one_class" "', argument " "8"" of type '" "CvSVMSolutionInfo &""'"); - } - arg8 = (CvSVMSolutionInfo *)(argp8); - { - try { - result = (bool)(arg1)->solve_one_class(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,*arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_solve_eps_svr (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - CvMemStorage *arg6 = (CvMemStorage *) 0 ; - CvSVMKernel *arg7 = (CvSVMKernel *) 0 ; - double *arg8 = (double *) 0 ; - CvSVMSolutionInfo *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_solve_eps_svr",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "6"" of type '" "CvMemStorage *""'"); - } - arg6 = (CvMemStorage *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "7"" of type '" "CvSVMKernel *""'"); - } - arg7 = (CvSVMKernel *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "8"" of type '" "double *""'"); - } - arg8 = (double *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - arg9 = (CvSVMSolutionInfo *)(argp9); - { - try { - result = (bool)(arg1)->solve_eps_svr(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6,arg7,arg8,*arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_solve_nu_svr (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - CvMemStorage *arg6 = (CvMemStorage *) 0 ; - CvSVMKernel *arg7 = (CvSVMKernel *) 0 ; - double *arg8 = (double *) 0 ; - CvSVMSolutionInfo *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_solve_nu_svr",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = (float *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "6"" of type '" "CvMemStorage *""'"); - } - arg6 = (CvMemStorage *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "7"" of type '" "CvSVMKernel *""'"); - } - arg7 = (CvSVMKernel *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "8"" of type '" "double *""'"); - } - arg8 = (double *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - arg9 = (CvSVMSolutionInfo *)(argp9); - { - try { - result = (bool)(arg1)->solve_nu_svr(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6,arg7,arg8,*arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row_base (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - bool *arg3 = (bool *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_get_row_base",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_base" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_base" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_bool, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_base" "', argument " "3"" of type '" "bool *""'"); - } - arg3 = (bool *)(argp3); - { - try { - result = (float *)(arg1)->get_row_base(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_get_row",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - { - try { - result = (float *)(arg1)->get_row(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_sample_count_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_sample_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_sample_count_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->sample_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_sample_count_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMSolver_sample_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_sample_count_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (int) ((arg1)->sample_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_var_count_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_var_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_var_count_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->var_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_var_count_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMSolver_var_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_var_count_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (int) ((arg1)->var_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_cache_size_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_cache_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_size_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_cache_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->cache_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_cache_size_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMSolver_cache_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_size_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (int) ((arg1)->cache_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_cache_line_size_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_cache_line_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_line_size_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_cache_line_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->cache_line_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_cache_line_size_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMSolver_cache_line_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_line_size_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (int) ((arg1)->cache_line_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_samples_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_samples_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_samples_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - { - if ((SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->samples = (float const **)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_samples_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float **result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_samples_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_samples_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (float **) ((arg1)->samples); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_params_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMParams *arg2 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_params_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_params_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_params_set" "', argument " "2"" of type '" "CvSVMParams const *""'"); - } - arg2 = (CvSVMParams *)(argp2); - if (arg1) (arg1)->params = (CvSVMParams const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_params_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMParams *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_params_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_params_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMParams *) ((arg1)->params); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_storage_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_storage_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_storage_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_storage_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvMemStorage *) ((arg1)->storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_lru_list_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_lru_list_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_lru_list_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_lru_list_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = (CvSVMKernelRow *)(argp2); - if (arg1) (arg1)->lru_list = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_lru_list_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernelRow *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_lru_list_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_lru_list_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMKernelRow *)& ((arg1)->lru_list); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_rows_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_rows_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_rows_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_rows_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = (CvSVMKernelRow *)(argp2); - if (arg1) (arg1)->rows = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_rows_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernelRow *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_rows_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_rows_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMKernelRow *) ((arg1)->rows); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_alpha_count_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_alpha_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_count_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_alpha_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->alpha_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_alpha_count_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMSolver_alpha_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_count_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (int) ((arg1)->alpha_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_G_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_G_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_G_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_G_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->G = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_G_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_G_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_G_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (double *) ((arg1)->G); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_alpha_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_alpha_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_alpha_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->alpha = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_alpha_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_alpha_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (double *) ((arg1)->alpha); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_alpha_status_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_alpha_status_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_status_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_alpha_status_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->alpha_status = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_alpha_status_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_alpha_status_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_status_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (schar *) ((arg1)->alpha_status); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_y_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_y_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_y_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_y_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = (schar *)(argp2); - if (arg1) (arg1)->y = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_y_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - schar *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_y_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_y_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (schar *) ((arg1)->y); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_b_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_b_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_b_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_b_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->b = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_b_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_b_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_b_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (double *) ((arg1)->b); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_buf_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - float **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_buf_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_buf_set" "', argument " "2"" of type '" "float *[2]""'"); - } - arg2 = (float **)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->buf[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""buf""' of type '""float *[2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_buf_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float **result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_buf_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (float **)(float **) ((arg1)->buf); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_eps_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_eps_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_eps_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_eps_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->eps = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_eps_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMSolver_eps_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_eps_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (double) ((arg1)->eps); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_max_iter_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_max_iter_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_max_iter_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_max_iter_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->max_iter = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_max_iter_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMSolver_max_iter_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_max_iter_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (int) ((arg1)->max_iter); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_C_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_C_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_C_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_C_set" "', argument " "2"" of type '" "double [2]""'"); - } - arg2 = (double *)(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->C[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""C""' of type '""double [2]""'"); - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_C_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_C_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_C_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (double *)(double *) ((arg1)->C); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_kernel_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMKernel *arg2 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_kernel_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_kernel_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvSVMKernel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_kernel_set" "', argument " "2"" of type '" "CvSVMKernel *""'"); - } - arg2 = (CvSVMKernel *)(argp2); - if (arg1) (arg1)->kernel = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_kernel_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMKernel *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_kernel_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_kernel_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMKernel *) ((arg1)->kernel); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_select_working_set_func_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolver::SelectWorkingSet arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_select_working_set_func_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set_func_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - { - int res = SWIG_ConvertMember(args(1), SWIG_as_voidptr(&arg2), sizeof(CvSVMSolver::SelectWorkingSet),SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_select_working_set_func_set" "', argument " "2"" of type '" "CvSVMSolver::SelectWorkingSet""'"); - } - } - if (arg1) (arg1)->select_working_set_func = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_select_working_set_func_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMSolver::SelectWorkingSet result; - - if (!SWIG_check_num_args("CvSVMSolver_select_working_set_func_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set_func_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMSolver::SelectWorkingSet) ((arg1)->select_working_set_func); - _outv = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMSolver::SelectWorkingSet), SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_calc_rho_func_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolver::CalcRho arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_calc_rho_func_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho_func_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - { - int res = SWIG_ConvertMember(args(1), SWIG_as_voidptr(&arg2), sizeof(CvSVMSolver::CalcRho),SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_calc_rho_func_set" "', argument " "2"" of type '" "CvSVMSolver::CalcRho""'"); - } - } - if (arg1) (arg1)->calc_rho_func = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_calc_rho_func_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMSolver::CalcRho result; - - if (!SWIG_check_num_args("CvSVMSolver_calc_rho_func_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho_func_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMSolver::CalcRho) ((arg1)->calc_rho_func); - _outv = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMSolver::CalcRho), SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row_func_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolver::GetRow arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_get_row_func_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_func_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - { - int res = SWIG_ConvertMember(args(1), SWIG_as_voidptr(&arg2), sizeof(CvSVMSolver::GetRow),SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_get_row_func_set" "', argument " "2"" of type '" "CvSVMSolver::GetRow""'"); - } - } - if (arg1) (arg1)->get_row_func = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row_func_get (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMSolver::GetRow result; - - if (!SWIG_check_num_args("CvSVMSolver_get_row_func_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_func_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - result = (CvSVMSolver::GetRow) ((arg1)->get_row_func); - _outv = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMSolver::GetRow), SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_select_working_set (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int *arg2 = 0 ; - int *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_select_working_set",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_select_working_set" "', argument " "2"" of type '" "int &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set" "', argument " "2"" of type '" "int &""'"); - } - arg2 = (int *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_select_working_set" "', argument " "3"" of type '" "int &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set" "', argument " "3"" of type '" "int &""'"); - } - arg3 = (int *)(argp3); - { - try { - result = (bool)(arg1)->select_working_set(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_select_working_set_nu_svm (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int *arg2 = 0 ; - int *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVMSolver_select_working_set_nu_svm",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "2"" of type '" "int &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "2"" of type '" "int &""'"); - } - arg2 = (int *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "3"" of type '" "int &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "3"" of type '" "int &""'"); - } - arg3 = (int *)(argp3); - { - try { - result = (bool)(arg1)->select_working_set_nu_svm(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_calc_rho (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = 0 ; - double *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_calc_rho",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_calc_rho" "', argument " "2"" of type '" "double &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho" "', argument " "2"" of type '" "double &""'"); - } - arg2 = (double *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_calc_rho" "', argument " "3"" of type '" "double &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho" "', argument " "3"" of type '" "double &""'"); - } - arg3 = (double *)(argp3); - { - try { - (arg1)->calc_rho(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_calc_rho_nu_svm (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = 0 ; - double *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMSolver_calc_rho_nu_svm",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "2"" of type '" "double &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "2"" of type '" "double &""'"); - } - arg2 = (double *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "3"" of type '" "double &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "3"" of type '" "double &""'"); - } - arg3 = (double *)(argp3); - { - try { - (arg1)->calc_rho_nu_svm(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row_svc (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_get_row_svc",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_svc" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_svc" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_svc" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVMSolver_get_row_svc" "', argument " "4"" of type '" "float *""'"); - } - arg4 = (float *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvSVMSolver_get_row_svc" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - { - try { - result = (float *)(arg1)->get_row_svc(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row_one_class (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_get_row_one_class",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "4"" of type '" "float *""'"); - } - arg4 = (float *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - { - try { - result = (float *)(arg1)->get_row_one_class(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMSolver_get_row_svr (const octave_value_list& args, int nargout) { - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVMSolver_get_row_svr",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_svr" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = (CvSVMSolver *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_svr" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_svr" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVMSolver_get_row_svr" "', argument " "4"" of type '" "float *""'"); - } - arg4 = (float *)(argp4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvSVMSolver_get_row_svr" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - { - try { - result = (float *)(arg1)->get_row_svr(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVMSolver_members[] = { -{"create",_wrap_CvSVMSolver_create,0,0,0,0}, -{"clear",_wrap_CvSVMSolver_clear,0,0,0,0}, -{"solve_generic",_wrap_CvSVMSolver_solve_generic,0,0,0,0}, -{"solve_c_svc",_wrap_CvSVMSolver_solve_c_svc,0,0,0,0}, -{"solve_nu_svc",_wrap_CvSVMSolver_solve_nu_svc,0,0,0,0}, -{"solve_one_class",_wrap_CvSVMSolver_solve_one_class,0,0,0,0}, -{"solve_eps_svr",_wrap_CvSVMSolver_solve_eps_svr,0,0,0,0}, -{"solve_nu_svr",_wrap_CvSVMSolver_solve_nu_svr,0,0,0,0}, -{"get_row_base",_wrap_CvSVMSolver_get_row_base,0,0,0,0}, -{"get_row",_wrap_CvSVMSolver_get_row,0,0,0,0}, -{"sample_count",0,_wrap_CvSVMSolver_sample_count_get,_wrap_CvSVMSolver_sample_count_set,0,0}, -{"var_count",0,_wrap_CvSVMSolver_var_count_get,_wrap_CvSVMSolver_var_count_set,0,0}, -{"cache_size",0,_wrap_CvSVMSolver_cache_size_get,_wrap_CvSVMSolver_cache_size_set,0,0}, -{"cache_line_size",0,_wrap_CvSVMSolver_cache_line_size_get,_wrap_CvSVMSolver_cache_line_size_set,0,0}, -{"samples",0,_wrap_CvSVMSolver_samples_get,_wrap_CvSVMSolver_samples_set,0,0}, -{"params",0,_wrap_CvSVMSolver_params_get,_wrap_CvSVMSolver_params_set,0,0}, -{"storage",0,_wrap_CvSVMSolver_storage_get,_wrap_CvSVMSolver_storage_set,0,0}, -{"lru_list",0,_wrap_CvSVMSolver_lru_list_get,_wrap_CvSVMSolver_lru_list_set,0,0}, -{"rows",0,_wrap_CvSVMSolver_rows_get,_wrap_CvSVMSolver_rows_set,0,0}, -{"alpha_count",0,_wrap_CvSVMSolver_alpha_count_get,_wrap_CvSVMSolver_alpha_count_set,0,0}, -{"G",0,_wrap_CvSVMSolver_G_get,_wrap_CvSVMSolver_G_set,0,0}, -{"alpha",0,_wrap_CvSVMSolver_alpha_get,_wrap_CvSVMSolver_alpha_set,0,0}, -{"alpha_status",0,_wrap_CvSVMSolver_alpha_status_get,_wrap_CvSVMSolver_alpha_status_set,0,0}, -{"y",0,_wrap_CvSVMSolver_y_get,_wrap_CvSVMSolver_y_set,0,0}, -{"b",0,_wrap_CvSVMSolver_b_get,_wrap_CvSVMSolver_b_set,0,0}, -{"buf",0,_wrap_CvSVMSolver_buf_get,_wrap_CvSVMSolver_buf_set,0,0}, -{"eps",0,_wrap_CvSVMSolver_eps_get,_wrap_CvSVMSolver_eps_set,0,0}, -{"max_iter",0,_wrap_CvSVMSolver_max_iter_get,_wrap_CvSVMSolver_max_iter_set,0,0}, -{"C",0,_wrap_CvSVMSolver_C_get,_wrap_CvSVMSolver_C_set,0,0}, -{"kernel",0,_wrap_CvSVMSolver_kernel_get,_wrap_CvSVMSolver_kernel_set,0,0}, -{"select_working_set_func",0,_wrap_CvSVMSolver_select_working_set_func_get,_wrap_CvSVMSolver_select_working_set_func_set,0,0}, -{"calc_rho_func",0,_wrap_CvSVMSolver_calc_rho_func_get,_wrap_CvSVMSolver_calc_rho_func_set,0,0}, -{"get_row_func",0,_wrap_CvSVMSolver_get_row_func_get,_wrap_CvSVMSolver_get_row_func_set,0,0}, -{"select_working_set",_wrap_CvSVMSolver_select_working_set,0,0,0,0}, -{"select_working_set_nu_svm",_wrap_CvSVMSolver_select_working_set_nu_svm,0,0,0,0}, -{"calc_rho",_wrap_CvSVMSolver_calc_rho,0,0,0,0}, -{"calc_rho_nu_svm",_wrap_CvSVMSolver_calc_rho_nu_svm,0,0,0,0}, -{"get_row_svc",_wrap_CvSVMSolver_get_row_svc,0,0,0,0}, -{"get_row_one_class",_wrap_CvSVMSolver_get_row_one_class,0,0,0,0}, -{"get_row_svr",_wrap_CvSVMSolver_get_row_svr,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVMSolver_base_names[] = {0}; -static const swig_type_info *swig_CvSVMSolver_base[] = {0}; -static swig_octave_class _wrap_class_CvSVMSolver = {"CvSVMSolver", &SWIGTYPE_p_CvSVMSolver,0,_wrap_new_CvSVMSolver,0,_wrap_delete_CvSVMSolver,swig_CvSVMSolver_members,swig_CvSVMSolver_base_names,swig_CvSVMSolver_base }; - -static octave_value_list _wrap_CvSVMDecisionFunc_rho_set (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_rho_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_rho_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMDecisionFunc_rho_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rho = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_rho_get (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_rho_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_rho_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - result = (double) ((arg1)->rho); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_sv_count_set (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_sv_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_count_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMDecisionFunc_sv_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->sv_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_sv_count_get (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_sv_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_count_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - result = (int) ((arg1)->sv_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_alpha_set (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_alpha_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_alpha_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMDecisionFunc_alpha_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->alpha = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_alpha_get (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_alpha_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_alpha_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - result = (double *) ((arg1)->alpha); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_sv_index_set (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_sv_index_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_index_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMDecisionFunc_sv_index_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->sv_index = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVMDecisionFunc_sv_index_get (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvSVMDecisionFunc_sv_index_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_index_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - result = (int *) ((arg1)->sv_index); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVMDecisionFunc (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMDecisionFunc *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVMDecisionFunc",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVMDecisionFunc *)new CvSVMDecisionFunc(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMDecisionFunc, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVMDecisionFunc (const octave_value_list& args, int nargout) { - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVMDecisionFunc",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVMDecisionFunc, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMDecisionFunc" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = (CvSVMDecisionFunc *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVMDecisionFunc_members[] = { -{"rho",0,_wrap_CvSVMDecisionFunc_rho_get,_wrap_CvSVMDecisionFunc_rho_set,0,0}, -{"sv_count",0,_wrap_CvSVMDecisionFunc_sv_count_get,_wrap_CvSVMDecisionFunc_sv_count_set,0,0}, -{"alpha",0,_wrap_CvSVMDecisionFunc_alpha_get,_wrap_CvSVMDecisionFunc_alpha_set,0,0}, -{"sv_index",0,_wrap_CvSVMDecisionFunc_sv_index_get,_wrap_CvSVMDecisionFunc_sv_index_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVMDecisionFunc_base_names[] = {0}; -static const swig_type_info *swig_CvSVMDecisionFunc_base[] = {0}; -static swig_octave_class _wrap_class_CvSVMDecisionFunc = {"CvSVMDecisionFunc", &SWIGTYPE_p_CvSVMDecisionFunc,0,_wrap_new_CvSVMDecisionFunc,0,_wrap_delete_CvSVMDecisionFunc,swig_CvSVMDecisionFunc_members,swig_CvSVMDecisionFunc_base_names,swig_CvSVMDecisionFunc_base }; - -static octave_value_list _wrap_new_CvSVM__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVM *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVM",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvSVM *)new CvSVM(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvSVM (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvSVM",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVM" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVM__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSVMParams arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVM *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVM",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvSVM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvSVM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvSVM" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvSVM" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - res5 = SWIG_ConvertPtr(args(4), &argp5, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvSVM" "', argument " "5"" of type '" "CvSVMParams""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvSVM" "', argument " "5"" of type '" "CvSVMParams""'"); - } else { - arg5 = *((CvSVMParams *)(argp5)); - } - } - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVM__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVM *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVM",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvSVM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvSVM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvSVM" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvSVM" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVM__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVM *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVM",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvSVM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvSVM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvSVM" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVM__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVM *result = 0 ; - - if (!SWIG_check_num_args("new_CvSVM",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvSVM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvSVM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvSVM (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 0) { - return _wrap_new_CvSVM__SWIG_0(args, nargout); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_4(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_3(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_1(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVM_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_3(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_1(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_0 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - CvParamGrid arg11 ; - CvParamGrid arg12 ; - CvParamGrid arg13 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - void *argp11 ; - int res11 = 0 ; - void *argp12 ; - int res12 = 0 ; - void *argp13 ; - int res13 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),13,13,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - arg8 = *((CvParamGrid *)(argp8)); - } - } - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - arg9 = *((CvParamGrid *)(argp9)); - } - } - { - res10 = SWIG_ConvertPtr(args(9), &argp10, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - arg10 = *((CvParamGrid *)(argp10)); - } - } - { - res11 = SWIG_ConvertPtr(args(10), &argp11, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } else { - arg11 = *((CvParamGrid *)(argp11)); - } - } - { - res12 = SWIG_ConvertPtr(args(11), &argp12, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } - if (!argp12) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } else { - arg12 = *((CvParamGrid *)(argp12)); - } - } - { - res13 = SWIG_ConvertPtr(args(12), &argp13, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res13)) { - SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "CvSVM_train_auto" "', argument " "13"" of type '" "CvParamGrid""'"); - } - if (!argp13) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "13"" of type '" "CvParamGrid""'"); - } else { - arg13 = *((CvParamGrid *)(argp13)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_1 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - CvParamGrid arg11 ; - CvParamGrid arg12 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - void *argp11 ; - int res11 = 0 ; - void *argp12 ; - int res12 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),12,12,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - arg8 = *((CvParamGrid *)(argp8)); - } - } - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - arg9 = *((CvParamGrid *)(argp9)); - } - } - { - res10 = SWIG_ConvertPtr(args(9), &argp10, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - arg10 = *((CvParamGrid *)(argp10)); - } - } - { - res11 = SWIG_ConvertPtr(args(10), &argp11, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } else { - arg11 = *((CvParamGrid *)(argp11)); - } - } - { - res12 = SWIG_ConvertPtr(args(11), &argp12, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } - if (!argp12) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } else { - arg12 = *((CvParamGrid *)(argp12)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_2 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - CvParamGrid arg11 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - void *argp11 ; - int res11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),11,11,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - arg8 = *((CvParamGrid *)(argp8)); - } - } - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - arg9 = *((CvParamGrid *)(argp9)); - } - } - { - res10 = SWIG_ConvertPtr(args(9), &argp10, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - arg10 = *((CvParamGrid *)(argp10)); - } - } - { - res11 = SWIG_ConvertPtr(args(10), &argp11, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } else { - arg11 = *((CvParamGrid *)(argp11)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_3 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),10,10,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - arg8 = *((CvParamGrid *)(argp8)); - } - } - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - arg9 = *((CvParamGrid *)(argp9)); - } - } - { - res10 = SWIG_ConvertPtr(args(9), &argp10, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - arg10 = *((CvParamGrid *)(argp10)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_4 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - arg8 = *((CvParamGrid *)(argp8)); - } - } - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - arg9 = *((CvParamGrid *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_5 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvParamGrid, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - arg8 = *((CvParamGrid *)(argp8)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_6 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto__SWIG_7 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvSVM_train_auto",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_train_auto" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_train_auto" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVM_train_auto" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVM_train_auto" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvSVMParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - arg6 = *((CvSVMParams *)(argp6)); - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_train_auto (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[13]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9),octave_value_ref(args,10),octave_value_ref(args,11),octave_value_ref(args,12) - }; - - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_7(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_6(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_5(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_4(args, nargout); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - if (argc == 11) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[10], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 12) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[10], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[11], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 13) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[10], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[11], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[12], &vptr, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVM_predict__SWIG_0 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvSVM_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_predict" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_bool(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVM_predict" "', argument " "3"" of type '" "bool""'"); - } - arg3 = (bool)(val3); - { - try { - result = (float)((CvSVM const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_predict__SWIG_1 (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvSVM_predict",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_predict" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (float)((CvSVM const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_predict (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_predict__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvSVM_predict__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvSVM_get_support_vector_count (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVM_get_support_vector_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_support_vector_count" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - { - try { - result = (int)((CvSVM const *)arg1)->get_support_vector_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_get_support_vector (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvSVM_get_support_vector",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_support_vector" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVM_get_support_vector" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (float *)((CvSVM const *)arg1)->get_support_vector(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_get_params (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSVMParams result; - - if (!SWIG_check_num_args("CvSVM_get_params",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_params" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - { - try { - result = ((CvSVM const *)arg1)->get_params(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvSVMParams((const CvSVMParams&)(result))), SWIGTYPE_p_CvSVMParams, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_clear (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVM_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_clear" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_get_default_grid (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvParamGrid result; - - if (!SWIG_check_num_args("CvSVM_get_default_grid",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CvSVM_get_default_grid" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - try { - result = CvSVM::get_default_grid(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj((new CvParamGrid((const CvParamGrid&)(result))), SWIGTYPE_p_CvParamGrid, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_write (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVM_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_write" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvSVM const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_read (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvSVM_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_read" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = (CvSVM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvSVM_get_var_count (const octave_value_list& args, int nargout) { - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvSVM_get_var_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_var_count" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = (CvSVM *)(argp1); - { - try { - result = (int)((CvSVM const *)arg1)->get_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvSVM_members[] = { -{"train",_wrap_CvSVM_train,0,0,0,0}, -{"train_auto",_wrap_CvSVM_train_auto,0,0,0,0}, -{"predict",_wrap_CvSVM_predict,0,0,0,0}, -{"get_support_vector_count",_wrap_CvSVM_get_support_vector_count,0,0,0,0}, -{"get_support_vector",_wrap_CvSVM_get_support_vector,0,0,0,0}, -{"get_params",_wrap_CvSVM_get_params,0,0,0,0}, -{"clear",_wrap_CvSVM_clear,0,0,0,0}, -{"get_default_grid",_wrap_CvSVM_get_default_grid,0,0,1,0}, -{"write",_wrap_CvSVM_write,0,0,0,0}, -{"read",_wrap_CvSVM_read,0,0,0,0}, -{"get_var_count",_wrap_CvSVM_get_var_count,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvSVM_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvSVM_base[] = {0,0}; -static swig_octave_class _wrap_class_CvSVM = {"CvSVM", &SWIGTYPE_p_CvSVM,0,_wrap_new_CvSVM,0,_wrap_delete_CvSVM,swig_CvSVM_members,swig_CvSVM_base_names,swig_CvSVM_base }; - -static octave_value_list _wrap_new_CvEMParams__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvEMParams *)new CvEMParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat **arg8 = (CvMat **) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),8,8,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } else { - arg4 = *((CvTermCriteria *)(argp4)); - } - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvEMParams" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvEMParams" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvEMParams" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvEMParams" "', argument " "8"" of type '" "CvMat const **""'"); - } - arg8 = (CvMat **)(argp8); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const **)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_2 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),7,7,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } else { - arg4 = *((CvTermCriteria *)(argp4)); - } - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvEMParams" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvEMParams" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvEMParams" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_3 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),6,6,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } else { - arg4 = *((CvTermCriteria *)(argp4)); - } - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvEMParams" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvEMParams" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_4 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),5,5,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } else { - arg4 = *((CvTermCriteria *)(argp4)); - } - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvEMParams" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_5 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),4,4,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEMParams" "', argument " "4"" of type '" "CvTermCriteria""'"); - } else { - arg4 = *((CvTermCriteria *)(argp4)); - } - } - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_6 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),3,3,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_7 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),2,2,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams__SWIG_8 (const octave_value_list& args, int nargout) { - int arg1 ; - int val1 ; - int ecode1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEMParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvEMParams",args.length(),1,1,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - { - try { - result = (CvEMParams *)new CvEMParams(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEMParams (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[8]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7) - }; - - if (argc == 0) { - return _wrap_new_CvEMParams__SWIG_0(args, nargout); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvEMParams__SWIG_8(args, nargout); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvEMParams__SWIG_7(args, nargout); - } - } - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvEMParams__SWIG_6(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_5(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_4(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_3(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvEMParams_nclusters_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_nclusters_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_nclusters_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvEMParams_nclusters_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nclusters = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_nclusters_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvEMParams_nclusters_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_nclusters_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (int) ((arg1)->nclusters); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_cov_mat_type_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_cov_mat_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_cov_mat_type_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvEMParams_cov_mat_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->cov_mat_type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_cov_mat_type_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvEMParams_cov_mat_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_cov_mat_type_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (int) ((arg1)->cov_mat_type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_start_step_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_start_step_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_start_step_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvEMParams_start_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->start_step = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_start_step_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvEMParams_start_step_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_start_step_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (int) ((arg1)->start_step); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_probs_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_probs_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_probs_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_probs_set" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->probs = (CvMat const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_probs_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvEMParams_probs_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_probs_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (CvMat *) ((arg1)->probs); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_weights_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_weights_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_weights_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_weights_set" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->weights = (CvMat const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_weights_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvEMParams_weights_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_weights_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (CvMat *) ((arg1)->weights); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_means_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_means_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_means_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_means_set" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->means = (CvMat const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_means_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvEMParams_means_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_means_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (CvMat *) ((arg1)->means); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_covs_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat **arg2 = (CvMat **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_covs_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_covs_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_covs_set" "', argument " "2"" of type '" "CvMat const **""'"); - } - arg2 = (CvMat **)(argp2); - if (arg1) (arg1)->covs = (CvMat const **)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_covs_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat **result = 0 ; - - if (!SWIG_check_num_args("CvEMParams_covs_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_covs_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (CvMat **) ((arg1)->covs); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_term_crit_set (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEMParams_term_crit_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_term_crit_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = (CvTermCriteria *)(argp2); - if (arg1) (arg1)->term_crit = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEMParams_term_crit_get (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTermCriteria *result = 0 ; - - if (!SWIG_check_num_args("CvEMParams_term_crit_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_term_crit_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvEMParams (const octave_value_list& args, int nargout) { - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvEMParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvEMParams" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = (CvEMParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvEMParams_members[] = { -{"nclusters",0,_wrap_CvEMParams_nclusters_get,_wrap_CvEMParams_nclusters_set,0,0}, -{"cov_mat_type",0,_wrap_CvEMParams_cov_mat_type_get,_wrap_CvEMParams_cov_mat_type_set,0,0}, -{"start_step",0,_wrap_CvEMParams_start_step_get,_wrap_CvEMParams_start_step_set,0,0}, -{"probs",0,_wrap_CvEMParams_probs_get,_wrap_CvEMParams_probs_set,0,0}, -{"weights",0,_wrap_CvEMParams_weights_get,_wrap_CvEMParams_weights_set,0,0}, -{"means",0,_wrap_CvEMParams_means_get,_wrap_CvEMParams_means_set,0,0}, -{"covs",0,_wrap_CvEMParams_covs_get,_wrap_CvEMParams_covs_set,0,0}, -{"term_crit",0,_wrap_CvEMParams_term_crit_get,_wrap_CvEMParams_term_crit_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvEMParams_base_names[] = {0}; -static const swig_type_info *swig_CvEMParams_base[] = {0}; -static swig_octave_class _wrap_class_CvEMParams = {"CvEMParams", &SWIGTYPE_p_CvEMParams,0,_wrap_new_CvEMParams,0,_wrap_delete_CvEMParams,swig_CvEMParams_members,swig_CvEMParams_base_names,swig_CvEMParams_base }; - -static octave_value_list _wrap_new_CvEM__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEM *result = 0 ; - - if (!SWIG_check_num_args("new_CvEM",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvEM *)new CvEM(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEM__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvEMParams arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEM *result = 0 ; - - if (!SWIG_check_num_args("new_CvEM",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvEM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvEM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvEMParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } else { - arg3 = *((CvEMParams *)(argp3)); - } - } - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvEM" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1,(CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEM__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvEMParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEM *result = 0 ; - - if (!SWIG_check_num_args("new_CvEM",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvEM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvEM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvEMParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } else { - arg3 = *((CvEMParams *)(argp3)); - } - } - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1,(CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEM__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEM *result = 0 ; - - if (!SWIG_check_num_args("new_CvEM",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvEM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvEM" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEM__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvEM *result = 0 ; - - if (!SWIG_check_num_args("new_CvEM",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvEM" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvEM (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 0) { - return _wrap_new_CvEM__SWIG_0(args, nargout); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_4(args, nargout); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_3(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvEM (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvEM",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvEM" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvEMParams arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvEM_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvEM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvEMParams, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } else { - arg4 = *((CvEMParams *)(argp4)); - } - } - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvEM_train" "', argument " "5"" of type '" "CvMat *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvEMParams arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvEM_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvEM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - res4 = SWIG_ConvertPtr(args(3), &argp4, SWIGTYPE_p_CvEMParams, 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } else { - arg4 = *((CvEMParams *)(argp4)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvEM_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvEM_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvEM_train",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEM_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_3(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_1(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_0(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvEM_predict (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvEM_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_predict" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = (CvEM *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEM_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvEM_predict" "', argument " "3"" of type '" "CvMat *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvEM const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_clear (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvEM_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_clear" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_get_nclusters (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvEM_get_nclusters",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_nclusters" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - result = (int)((CvEM const *)arg1)->get_nclusters(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_get_means (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvEM_get_means",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_means" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - result = (CvMat *)((CvEM const *)arg1)->get_means(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_get_weights (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvEM_get_weights",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_weights" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - result = (CvMat *)((CvEM const *)arg1)->get_weights(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_get_probs (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvEM_get_probs",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_probs" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - result = (CvMat *)((CvEM const *)arg1)->get_probs(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_get_log_likelihood (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvEM_get_log_likelihood",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_log_likelihood" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - result = (double)((CvEM const *)arg1)->get_log_likelihood(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvEM_get_covs (const octave_value_list& args, int nargout) { - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - octave_value result; - - if (!SWIG_check_num_args("CvEM_get_covs",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_covs" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = (CvEM *)(argp1); - { - try { - result = CvEM_get_covs(arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = result; - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvEM_members[] = { -{"train",_wrap_CvEM_train,0,0,0,0}, -{"predict",_wrap_CvEM_predict,0,0,0,0}, -{"clear",_wrap_CvEM_clear,0,0,0,0}, -{"get_nclusters",_wrap_CvEM_get_nclusters,0,0,0,0}, -{"get_means",_wrap_CvEM_get_means,0,0,0,0}, -{"get_weights",_wrap_CvEM_get_weights,0,0,0,0}, -{"get_probs",_wrap_CvEM_get_probs,0,0,0,0}, -{"get_log_likelihood",_wrap_CvEM_get_log_likelihood,0,0,0,0}, -{"get_covs",_wrap_CvEM_get_covs,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvEM_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvEM_base[] = {0,0}; -static swig_octave_class _wrap_class_CvEM = {"CvEM", &SWIGTYPE_p_CvEM,0,_wrap_new_CvEM,0,_wrap_delete_CvEM,swig_CvEM_members,swig_CvEM_base_names,swig_CvEM_base }; - -static octave_value_list _wrap_CvPair16u32s_u_set (const octave_value_list& args, int nargout) { - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - unsigned short *arg2 = (unsigned short *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPair16u32s_u_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_u_set" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = (CvPair16u32s *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_unsigned_short, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPair16u32s_u_set" "', argument " "2"" of type '" "unsigned short *""'"); - } - arg2 = (unsigned short *)(argp2); - if (arg1) (arg1)->u = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPair16u32s_u_get (const octave_value_list& args, int nargout) { - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - unsigned short *result = 0 ; - - if (!SWIG_check_num_args("CvPair16u32s_u_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_u_get" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = (CvPair16u32s *)(argp1); - result = (unsigned short *) ((arg1)->u); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_short, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPair16u32s_i_set (const octave_value_list& args, int nargout) { - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvPair16u32s_i_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_i_set" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = (CvPair16u32s *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPair16u32s_i_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->i = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvPair16u32s_i_get (const octave_value_list& args, int nargout) { - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvPair16u32s_i_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_i_get" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = (CvPair16u32s *)(argp1); - result = (int *) ((arg1)->i); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvPair16u32s (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvPair16u32s *result = 0 ; - - if (!SWIG_check_num_args("new_CvPair16u32s",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvPair16u32s *)new CvPair16u32s(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPair16u32s, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvPair16u32s (const octave_value_list& args, int nargout) { - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvPair16u32s",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvPair16u32s, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPair16u32s" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = (CvPair16u32s *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvPair16u32s_members[] = { -{"u",0,_wrap_CvPair16u32s_u_get,_wrap_CvPair16u32s_u_set,0,0}, -{"i",0,_wrap_CvPair16u32s_i_get,_wrap_CvPair16u32s_i_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvPair16u32s_base_names[] = {0}; -static const swig_type_info *swig_CvPair16u32s_base[] = {0}; -static swig_octave_class _wrap_class_CvPair16u32s = {"CvPair16u32s", &SWIGTYPE_p_CvPair16u32s,0,_wrap_new_CvPair16u32s,0,_wrap_delete_CvPair16u32s,swig_CvPair16u32s_members,swig_CvPair16u32s_base_names,swig_CvPair16u32s_base }; - -static octave_value_list _wrap_CvDTreeSplit_var_idx_set (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeSplit_var_idx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_var_idx_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_var_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->var_idx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_var_idx_get (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeSplit_var_idx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_var_idx_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - result = (int) ((arg1)->var_idx); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_condensed_idx_set (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeSplit_condensed_idx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_condensed_idx_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_condensed_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->condensed_idx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_condensed_idx_get (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeSplit_condensed_idx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_condensed_idx_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - result = (int) ((arg1)->condensed_idx); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_inversed_set (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeSplit_inversed_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_inversed_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_inversed_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->inversed = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_inversed_get (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeSplit_inversed_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_inversed_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - result = (int) ((arg1)->inversed); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_quality_set (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeSplit_quality_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_quality_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_quality_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->quality = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_quality_get (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvDTreeSplit_quality_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_quality_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - result = (float) ((arg1)->quality); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_next_set (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - CvDTreeSplit *arg2 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeSplit_next_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_next_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeSplit_next_set" "', argument " "2"" of type '" "CvDTreeSplit *""'"); - } - arg2 = (CvDTreeSplit *)(argp2); - if (arg1) (arg1)->next = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeSplit_next_get (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeSplit *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeSplit_next_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_next_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - result = (CvDTreeSplit *) ((arg1)->next); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeSplit (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeSplit *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeSplit",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvDTreeSplit *)new CvDTreeSplit(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvDTreeSplit (const octave_value_list& args, int nargout) { - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvDTreeSplit",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeSplit" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = (CvDTreeSplit *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvDTreeSplit_members[] = { -{"var_idx",0,_wrap_CvDTreeSplit_var_idx_get,_wrap_CvDTreeSplit_var_idx_set,0,0}, -{"condensed_idx",0,_wrap_CvDTreeSplit_condensed_idx_get,_wrap_CvDTreeSplit_condensed_idx_set,0,0}, -{"inversed",0,_wrap_CvDTreeSplit_inversed_get,_wrap_CvDTreeSplit_inversed_set,0,0}, -{"quality",0,_wrap_CvDTreeSplit_quality_get,_wrap_CvDTreeSplit_quality_set,0,0}, -{"next",0,_wrap_CvDTreeSplit_next_get,_wrap_CvDTreeSplit_next_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvDTreeSplit_base_names[] = {0}; -static const swig_type_info *swig_CvDTreeSplit_base[] = {0}; -static swig_octave_class _wrap_class_CvDTreeSplit = {"CvDTreeSplit", &SWIGTYPE_p_CvDTreeSplit,0,_wrap_new_CvDTreeSplit,0,_wrap_delete_CvDTreeSplit,swig_CvDTreeSplit_members,swig_CvDTreeSplit_base_names,swig_CvDTreeSplit_base }; - -static octave_value_list _wrap_CvDTreeNode_class_idx_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_class_idx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_class_idx_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_class_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->class_idx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_class_idx_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_class_idx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_class_idx_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->class_idx); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_Tn_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_Tn_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_Tn_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_Tn_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->Tn = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_Tn_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_Tn_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_Tn_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->Tn); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_value_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_value_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_value_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_value_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->value = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_value_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvDTreeNode_value_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_value_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double) ((arg1)->value); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_parent_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_parent_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_parent_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_parent_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - if (arg1) (arg1)->parent = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_parent_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_parent_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_parent_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (CvDTreeNode *) ((arg1)->parent); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_left_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_left_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_left_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_left_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - if (arg1) (arg1)->left = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_left_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_left_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_left_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (CvDTreeNode *) ((arg1)->left); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_right_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_right_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_right_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_right_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - if (arg1) (arg1)->right = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_right_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_right_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_right_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (CvDTreeNode *) ((arg1)->right); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_split_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeSplit *arg2 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_split_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_split_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_split_set" "', argument " "2"" of type '" "CvDTreeSplit *""'"); - } - arg2 = (CvDTreeSplit *)(argp2); - if (arg1) (arg1)->split = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_split_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeSplit *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_split_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_split_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (CvDTreeSplit *) ((arg1)->split); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_sample_count_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_sample_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_sample_count_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->sample_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_sample_count_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_sample_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_sample_count_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->sample_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_depth_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_depth_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_depth_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->depth = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_depth_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_depth_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_depth_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->depth); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_num_valid_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_num_valid_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_num_valid_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_num_valid_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->num_valid = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_num_valid_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_num_valid_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_num_valid_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int *) ((arg1)->num_valid); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_offset_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_offset_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_offset_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_offset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->offset = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_offset_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_offset_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_offset_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->offset); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_buf_idx_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_buf_idx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_buf_idx_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_buf_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->buf_idx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_buf_idx_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_buf_idx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_buf_idx_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->buf_idx); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_maxlr_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_maxlr_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_maxlr_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_maxlr_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->maxlr = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_maxlr_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvDTreeNode_maxlr_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_maxlr_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double) ((arg1)->maxlr); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_complexity_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_complexity_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_complexity_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_complexity_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->complexity = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_complexity_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_complexity_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_complexity_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int) ((arg1)->complexity); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_alpha_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_alpha_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_alpha_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_alpha_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->alpha = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_alpha_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvDTreeNode_alpha_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_alpha_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double) ((arg1)->alpha); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_node_risk_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_node_risk_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_node_risk_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_node_risk_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->node_risk = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_node_risk_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvDTreeNode_node_risk_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_node_risk_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double) ((arg1)->node_risk); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_tree_risk_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_tree_risk_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_risk_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_tree_risk_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->tree_risk = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_tree_risk_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvDTreeNode_tree_risk_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_risk_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double) ((arg1)->tree_risk); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_tree_error_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_tree_error_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_error_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_tree_error_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->tree_error = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_tree_error_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvDTreeNode_tree_error_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_error_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double) ((arg1)->tree_error); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_cv_Tn_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_cv_Tn_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_Tn_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_cv_Tn_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->cv_Tn = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_cv_Tn_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_cv_Tn_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_Tn_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (int *) ((arg1)->cv_Tn); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_cv_node_risk_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_cv_node_risk_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_risk_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_cv_node_risk_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->cv_node_risk = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_cv_node_risk_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_cv_node_risk_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_risk_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double *) ((arg1)->cv_node_risk); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_cv_node_error_set (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_cv_node_error_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_error_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_cv_node_error_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = (double *)(argp2); - if (arg1) (arg1)->cv_node_error = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_cv_node_error_get (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeNode_cv_node_error_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_error_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - result = (double *) ((arg1)->cv_node_error); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_get_num_valid (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeNode_get_num_valid",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_get_num_valid" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_get_num_valid" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (int)(arg1)->get_num_valid(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeNode_set_num_valid (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeNode_set_num_valid",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_set_num_valid" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_set_num_valid" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeNode_set_num_valid" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - (arg1)->set_num_valid(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeNode (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeNode",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvDTreeNode *)new CvDTreeNode(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvDTreeNode (const octave_value_list& args, int nargout) { - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvDTreeNode",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeNode" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = (CvDTreeNode *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvDTreeNode_members[] = { -{"class_idx",0,_wrap_CvDTreeNode_class_idx_get,_wrap_CvDTreeNode_class_idx_set,0,0}, -{"Tn",0,_wrap_CvDTreeNode_Tn_get,_wrap_CvDTreeNode_Tn_set,0,0}, -{"value",0,_wrap_CvDTreeNode_value_get,_wrap_CvDTreeNode_value_set,0,0}, -{"parent",0,_wrap_CvDTreeNode_parent_get,_wrap_CvDTreeNode_parent_set,0,0}, -{"left",0,_wrap_CvDTreeNode_left_get,_wrap_CvDTreeNode_left_set,0,0}, -{"right",0,_wrap_CvDTreeNode_right_get,_wrap_CvDTreeNode_right_set,0,0}, -{"split",0,_wrap_CvDTreeNode_split_get,_wrap_CvDTreeNode_split_set,0,0}, -{"sample_count",0,_wrap_CvDTreeNode_sample_count_get,_wrap_CvDTreeNode_sample_count_set,0,0}, -{"depth",0,_wrap_CvDTreeNode_depth_get,_wrap_CvDTreeNode_depth_set,0,0}, -{"num_valid",0,_wrap_CvDTreeNode_num_valid_get,_wrap_CvDTreeNode_num_valid_set,0,0}, -{"offset",0,_wrap_CvDTreeNode_offset_get,_wrap_CvDTreeNode_offset_set,0,0}, -{"buf_idx",0,_wrap_CvDTreeNode_buf_idx_get,_wrap_CvDTreeNode_buf_idx_set,0,0}, -{"maxlr",0,_wrap_CvDTreeNode_maxlr_get,_wrap_CvDTreeNode_maxlr_set,0,0}, -{"complexity",0,_wrap_CvDTreeNode_complexity_get,_wrap_CvDTreeNode_complexity_set,0,0}, -{"alpha",0,_wrap_CvDTreeNode_alpha_get,_wrap_CvDTreeNode_alpha_set,0,0}, -{"node_risk",0,_wrap_CvDTreeNode_node_risk_get,_wrap_CvDTreeNode_node_risk_set,0,0}, -{"tree_risk",0,_wrap_CvDTreeNode_tree_risk_get,_wrap_CvDTreeNode_tree_risk_set,0,0}, -{"tree_error",0,_wrap_CvDTreeNode_tree_error_get,_wrap_CvDTreeNode_tree_error_set,0,0}, -{"cv_Tn",0,_wrap_CvDTreeNode_cv_Tn_get,_wrap_CvDTreeNode_cv_Tn_set,0,0}, -{"cv_node_risk",0,_wrap_CvDTreeNode_cv_node_risk_get,_wrap_CvDTreeNode_cv_node_risk_set,0,0}, -{"cv_node_error",0,_wrap_CvDTreeNode_cv_node_error_get,_wrap_CvDTreeNode_cv_node_error_set,0,0}, -{"get_num_valid",_wrap_CvDTreeNode_get_num_valid,0,0,0,0}, -{"set_num_valid",_wrap_CvDTreeNode_set_num_valid,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvDTreeNode_base_names[] = {0}; -static const swig_type_info *swig_CvDTreeNode_base[] = {0}; -static swig_octave_class _wrap_class_CvDTreeNode = {"CvDTreeNode", &SWIGTYPE_p_CvDTreeNode,0,_wrap_new_CvDTreeNode,0,_wrap_delete_CvDTreeNode,swig_CvDTreeNode_members,swig_CvDTreeNode_base_names,swig_CvDTreeNode_base }; - -static octave_value_list _wrap_CvDTreeParams_max_categories_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_max_categories_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_categories_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_max_categories_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->max_categories = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_max_categories_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeParams_max_categories_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_categories_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (int) ((arg1)->max_categories); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_max_depth_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_max_depth_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_depth_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_max_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->max_depth = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_max_depth_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeParams_max_depth_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_depth_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (int) ((arg1)->max_depth); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_min_sample_count_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_min_sample_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_min_sample_count_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_min_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->min_sample_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_min_sample_count_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeParams_min_sample_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_min_sample_count_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (int) ((arg1)->min_sample_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_cv_folds_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_cv_folds_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_cv_folds_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_cv_folds_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->cv_folds = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_cv_folds_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeParams_cv_folds_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_cv_folds_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (int) ((arg1)->cv_folds); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_use_surrogates_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_use_surrogates_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_surrogates_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_use_surrogates_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->use_surrogates = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_use_surrogates_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeParams_use_surrogates_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_surrogates_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (bool) ((arg1)->use_surrogates); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_use_1se_rule_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_use_1se_rule_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_1se_rule_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_use_1se_rule_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->use_1se_rule = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_use_1se_rule_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeParams_use_1se_rule_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_1se_rule_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (bool) ((arg1)->use_1se_rule); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_truncate_pruned_tree_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_truncate_pruned_tree_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_truncate_pruned_tree_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_truncate_pruned_tree_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->truncate_pruned_tree = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_truncate_pruned_tree_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeParams_truncate_pruned_tree_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_truncate_pruned_tree_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (bool) ((arg1)->truncate_pruned_tree); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_regression_accuracy_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_regression_accuracy_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_regression_accuracy_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_regression_accuracy_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->regression_accuracy = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_regression_accuracy_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvDTreeParams_regression_accuracy_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_regression_accuracy_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (float) ((arg1)->regression_accuracy); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_priors_set (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeParams_priors_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_priors_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeParams_priors_set" "', argument " "2"" of type '" "float const *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->priors = (float const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeParams_priors_get (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeParams_priors_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_priors_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - result = (float *) ((arg1)->priors); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeParams__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvDTreeParams *)new CvDTreeParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeParams__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - float arg3 ; - bool arg4 ; - int arg5 ; - int arg6 ; - bool arg7 ; - bool arg8 ; - float *arg9 = (float *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - bool val8 ; - int ecode8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeParams",args.length(),9,9,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvDTreeParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvDTreeParams" "', argument " "3"" of type '" "float""'"); - } - arg3 = (float)(val3); - ecode4 = SWIG_AsVal_bool(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvDTreeParams" "', argument " "4"" of type '" "bool""'"); - } - arg4 = (bool)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvDTreeParams" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - ecode6 = SWIG_AsVal_int(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "new_CvDTreeParams" "', argument " "6"" of type '" "int""'"); - } - arg6 = (int)(val6); - ecode7 = SWIG_AsVal_bool(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvDTreeParams" "', argument " "7"" of type '" "bool""'"); - } - arg7 = (bool)(val7); - ecode8 = SWIG_AsVal_bool(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvDTreeParams" "', argument " "8"" of type '" "bool""'"); - } - arg8 = (bool)(val8); - res9 = SWIG_ConvertPtr(args(8), &argp9,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "new_CvDTreeParams" "', argument " "9"" of type '" "float const *""'"); - } - arg9 = (float *)(argp9); - { - try { - result = (CvDTreeParams *)new CvDTreeParams(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(float const *)arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeParams (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[9]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8) - }; - - if (argc == 0) { - return _wrap_new_CvDTreeParams__SWIG_0(args, nargout); - } - if (argc == 9) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeParams__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvDTreeParams (const octave_value_list& args, int nargout) { - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvDTreeParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeParams" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = (CvDTreeParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvDTreeParams_members[] = { -{"max_categories",0,_wrap_CvDTreeParams_max_categories_get,_wrap_CvDTreeParams_max_categories_set,0,0}, -{"max_depth",0,_wrap_CvDTreeParams_max_depth_get,_wrap_CvDTreeParams_max_depth_set,0,0}, -{"min_sample_count",0,_wrap_CvDTreeParams_min_sample_count_get,_wrap_CvDTreeParams_min_sample_count_set,0,0}, -{"cv_folds",0,_wrap_CvDTreeParams_cv_folds_get,_wrap_CvDTreeParams_cv_folds_set,0,0}, -{"use_surrogates",0,_wrap_CvDTreeParams_use_surrogates_get,_wrap_CvDTreeParams_use_surrogates_set,0,0}, -{"use_1se_rule",0,_wrap_CvDTreeParams_use_1se_rule_get,_wrap_CvDTreeParams_use_1se_rule_set,0,0}, -{"truncate_pruned_tree",0,_wrap_CvDTreeParams_truncate_pruned_tree_get,_wrap_CvDTreeParams_truncate_pruned_tree_set,0,0}, -{"regression_accuracy",0,_wrap_CvDTreeParams_regression_accuracy_get,_wrap_CvDTreeParams_regression_accuracy_set,0,0}, -{"priors",0,_wrap_CvDTreeParams_priors_get,_wrap_CvDTreeParams_priors_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvDTreeParams_base_names[] = {0}; -static const swig_type_info *swig_CvDTreeParams_base[] = {0}; -static swig_octave_class _wrap_class_CvDTreeParams = {"CvDTreeParams", &SWIGTYPE_p_CvDTreeParams,0,_wrap_new_CvDTreeParams,0,_wrap_delete_CvDTreeParams,swig_CvDTreeParams_members,swig_CvDTreeParams_base_names,swig_CvDTreeParams_base }; - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvDTreeParams *arg8 = 0 ; - bool arg9 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 ; - int res8 = 0 ; - bool val9 ; - int ecode9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),10,10,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvDTreeTrainData" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvDTreeTrainData" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvDTreeTrainData" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - arg8 = (CvDTreeParams *)(argp8); - ecode9 = SWIG_AsVal_bool(args(8), &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "new_CvDTreeTrainData" "', argument " "9"" of type '" "bool""'"); - } - arg9 = (bool)(val9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "new_CvDTreeTrainData" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvDTreeParams const &)*arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvDTreeParams *arg8 = 0 ; - bool arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 ; - int res8 = 0 ; - bool val9 ; - int ecode9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvDTreeTrainData" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvDTreeTrainData" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvDTreeTrainData" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - arg8 = (CvDTreeParams *)(argp8); - ecode9 = SWIG_AsVal_bool(args(8), &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "new_CvDTreeTrainData" "', argument " "9"" of type '" "bool""'"); - } - arg9 = (bool)(val9); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvDTreeParams const &)*arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvDTreeParams *arg8 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvDTreeTrainData" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvDTreeTrainData" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvDTreeTrainData" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - arg8 = (CvDTreeParams *)(argp8); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvDTreeParams const &)*arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvDTreeTrainData" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvDTreeTrainData" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvDTreeTrainData" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_5 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvDTreeTrainData" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvDTreeTrainData" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_6 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvDTreeTrainData" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_7 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvDTreeTrainData" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData__SWIG_8 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTreeTrainData",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvDTreeTrainData" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvDTreeTrainData" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvDTreeTrainData (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[10]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9) - }; - - if (argc == 0) { - return _wrap_new_CvDTreeTrainData__SWIG_0(args, nargout); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_8(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_7(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_6(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_5(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_4(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[8], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[8], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvDTreeTrainData (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvDTreeTrainData",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeTrainData" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - bool arg12 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - bool val12 ; - int ecode12 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),12,12,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvDTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - ecode11 = SWIG_AsVal_bool(args(10), &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvDTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = (bool)(val11); - ecode12 = SWIG_AsVal_bool(args(11), &val12); - if (!SWIG_IsOK(ecode12)) { - SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "CvDTreeTrainData_set_data" "', argument " "12"" of type '" "bool""'"); - } - arg12 = (bool)(val12); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),11,11,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvDTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - ecode11 = SWIG_AsVal_bool(args(10), &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvDTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = (bool)(val11); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_2 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),10,10,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvDTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_3 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_4 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_5 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_6 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_7 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data__SWIG_8 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_data",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_data (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[12]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9),octave_value_ref(args,10),octave_value_ref(args,11) - }; - - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_8(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_7(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_6(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_5(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_4(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - if (argc == 11) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 12) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[11], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTreeTrainData_do_responses_copy (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_do_responses_copy",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_do_responses_copy" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - (arg1)->do_responses_copy(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_vectors__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_vectors",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = (uchar *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = (float *)(argp5); - ecode6 = SWIG_AsVal_bool(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "6"" of type '" "bool""'"); - } - arg6 = (bool)(val6); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_vectors__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_vectors",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = (uchar *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = (float *)(argp5); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_vectors (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_get_vectors__SWIG_1(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_get_vectors__SWIG_0(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTreeTrainData_subsample_data (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_subsample_data",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_subsample_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_subsample_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvDTreeNode *)(arg1)->subsample_data((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_write_params (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_write_params",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_write_params" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_write_params" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - { - try { - ((CvDTreeTrainData const *)arg1)->write_params(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_read_params (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_read_params",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_read_params" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_read_params" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_read_params" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read_params(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_clear (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_clear" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_num_classes (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_num_classes",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_num_classes" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (int)((CvDTreeTrainData const *)arg1)->get_num_classes(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_var_type (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_var_type",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_var_type" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_get_var_type" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (int)((CvDTreeTrainData const *)arg1)->get_var_type(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_work_var_count (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_work_var_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_work_var_count" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (int)((CvDTreeTrainData const *)arg1)->get_work_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_ord_responses (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - float *arg3 = (float *) 0 ; - float **arg4 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *vptr4 ; - float *buffer4 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_ord_responses",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_ord_responses" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_ord_responses" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_ord_responses" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - { - if ((SWIG_ConvertPtr(args(3), &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - { - try { - (arg1)->get_ord_responses(arg2,arg3,(float const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_class_labels (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_class_labels",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "3"" of type '" "int *""'"); - } - arg3 = (int *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = (int **)(argp4); - { - try { - (arg1)->get_class_labels(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_cv_labels (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_cv_labels",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "3"" of type '" "int *""'"); - } - arg3 = (int *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = (int **)(argp4); - { - try { - (arg1)->get_cv_labels(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_sample_indices (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_sample_indices",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "3"" of type '" "int *""'"); - } - arg3 = (int *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = (int **)(argp4); - { - try { - (arg1)->get_sample_indices(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_cat_var_data (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - int *arg4 = (int *) 0 ; - int **arg5 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_cat_var_data",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "4"" of type '" "int *""'"); - } - arg4 = (int *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "5"" of type '" "int const **""'"); - } - arg5 = (int **)(argp5); - { - try { - result = (int)(arg1)->get_cat_var_data(arg2,arg3,arg4,(int const **)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_ord_var_data (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - float *arg4 = (float *) 0 ; - int *arg5 = (int *) 0 ; - float **arg6 = (float **) 0 ; - int **arg7 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *vptr6 ; - float *buffer6 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_ord_var_data",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "4"" of type '" "float *""'"); - } - arg4 = (float *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "5"" of type '" "int *""'"); - } - arg5 = (int *)(argp5); - { - if ((SWIG_ConvertPtr(args(5), &vptr6, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer6 = (float *) vptr6; - arg6=&buffer6; - } - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "7"" of type '" "int const **""'"); - } - arg7 = (int **)(argp7); - { - try { - result = (int)(arg1)->get_ord_var_data(arg2,arg3,arg4,arg5,(float const **)arg6,(int const **)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_child_buf_idx (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_child_buf_idx",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_child_buf_idx" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_child_buf_idx" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - { - try { - result = (int)(arg1)->get_child_buf_idx(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_set_params (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeParams *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeTrainData_set_params",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_params" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_params" "', argument " "2"" of type '" "CvDTreeParams const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_params" "', argument " "2"" of type '" "CvDTreeParams const &""'"); - } - arg2 = (CvDTreeParams *)(argp2); - { - try { - result = (bool)(arg1)->set_params((CvDTreeParams const &)*arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_new_node (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - int arg4 ; - int arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_new_node",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_new_node" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_new_node" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_new_node" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvDTreeTrainData_new_node" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvDTreeTrainData_new_node" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - { - try { - result = (CvDTreeNode *)(arg1)->new_node(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_new_split_ord (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - float arg3 ; - int arg4 ; - int arg5 ; - float arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - float val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeSplit *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_new_split_ord",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "3"" of type '" "float""'"); - } - arg3 = (float)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - ecode6 = SWIG_AsVal_float(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "6"" of type '" "float""'"); - } - arg6 = (float)(val6); - { - try { - result = (CvDTreeSplit *)(arg1)->new_split_ord(arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_new_split_cat (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - float arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeSplit *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_new_split_cat",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_new_split_cat" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_new_split_cat" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_new_split_cat" "', argument " "3"" of type '" "float""'"); - } - arg3 = (float)(val3); - { - try { - result = (CvDTreeSplit *)(arg1)->new_split_cat(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_free_node_data (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_free_node_data",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_free_node_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_free_node_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - { - try { - (arg1)->free_node_data(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_free_train_data (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_free_train_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_free_train_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - (arg1)->free_train_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_free_node (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_free_node",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_free_node" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_free_node" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - { - try { - (arg1)->free_node(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_pred_float_buf (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_pred_float_buf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_pred_float_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (float *)(arg1)->get_pred_float_buf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_pred_int_buf (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_pred_int_buf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_pred_int_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (int *)(arg1)->get_pred_int_buf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_resp_float_buf (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_resp_float_buf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_resp_float_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (float *)(arg1)->get_resp_float_buf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_resp_int_buf (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_resp_int_buf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_resp_int_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (int *)(arg1)->get_resp_int_buf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_cv_lables_buf (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_cv_lables_buf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_cv_lables_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (int *)(arg1)->get_cv_lables_buf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_get_sample_idx_buf (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_get_sample_idx_buf",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_sample_idx_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - try { - result = (int *)(arg1)->get_sample_idx_buf(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_pred_float_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< float > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_pred_float_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_float_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_vectorT_vectorT_float_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_pred_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_pred_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } else { - arg2 = *((vector< vector< float > > *)(argp2)); - } - } - if (arg1) (arg1)->pred_float_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_pred_float_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - vector< vector< float > > result; - - if (!SWIG_check_num_args("CvDTreeTrainData_pred_float_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_float_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->pred_float_buf); - _outv = SWIG_NewPointerObj((new vector< vector< float > >((const vector< vector< float > >&)(result))), SWIGTYPE_p_vectorT_vectorT_float_t_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_pred_int_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_pred_int_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_int_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_pred_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_pred_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - arg2 = *((vector< vector< int > > *)(argp2)); - } - } - if (arg1) (arg1)->pred_int_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_pred_int_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - vector< vector< int > > result; - - if (!SWIG_check_num_args("CvDTreeTrainData_pred_int_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_int_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->pred_int_buf); - _outv = SWIG_NewPointerObj((new vector< vector< int > >((const vector< vector< int > >&)(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_resp_float_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< float > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_resp_float_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_float_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_vectorT_vectorT_float_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_resp_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_resp_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } else { - arg2 = *((vector< vector< float > > *)(argp2)); - } - } - if (arg1) (arg1)->resp_float_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_resp_float_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - vector< vector< float > > result; - - if (!SWIG_check_num_args("CvDTreeTrainData_resp_float_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_float_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->resp_float_buf); - _outv = SWIG_NewPointerObj((new vector< vector< float > >((const vector< vector< float > >&)(result))), SWIGTYPE_p_vectorT_vectorT_float_t_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_resp_int_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_resp_int_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_int_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_resp_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_resp_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - arg2 = *((vector< vector< int > > *)(argp2)); - } - } - if (arg1) (arg1)->resp_int_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_resp_int_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - vector< vector< int > > result; - - if (!SWIG_check_num_args("CvDTreeTrainData_resp_int_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_int_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->resp_int_buf); - _outv = SWIG_NewPointerObj((new vector< vector< int > >((const vector< vector< int > >&)(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cv_lables_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_cv_lables_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_lables_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_cv_lables_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_cv_lables_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - arg2 = *((vector< vector< int > > *)(argp2)); - } - } - if (arg1) (arg1)->cv_lables_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cv_lables_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - vector< vector< int > > result; - - if (!SWIG_check_num_args("CvDTreeTrainData_cv_lables_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_lables_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->cv_lables_buf); - _outv = SWIG_NewPointerObj((new vector< vector< int > >((const vector< vector< int > >&)(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_sample_idx_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_sample_idx_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_idx_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_sample_idx_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_sample_idx_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - arg2 = *((vector< vector< int > > *)(argp2)); - } - } - if (arg1) (arg1)->sample_idx_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_sample_idx_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - vector< vector< int > > result; - - if (!SWIG_check_num_args("CvDTreeTrainData_sample_idx_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_idx_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->sample_idx_buf); - _outv = SWIG_NewPointerObj((new vector< vector< int > >((const vector< vector< int > >&)(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_sample_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_sample_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->sample_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_sample_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_sample_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->sample_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_all_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_all_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_all_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_var_all_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->var_all = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_all_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_all_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_all_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->var_all); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->var_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->var_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_max_c_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_max_c_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_max_c_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_max_c_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->max_c_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_max_c_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_max_c_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_max_c_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->max_c_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_ord_var_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_ord_var_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_ord_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_ord_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->ord_var_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_ord_var_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_ord_var_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_ord_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->ord_var_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_var_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_var_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_cat_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->cat_var_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_var_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_var_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->cat_var_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_work_var_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_work_var_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_work_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_work_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->work_var_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_work_var_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_work_var_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_work_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->work_var_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_have_labels_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_have_labels_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_labels_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_have_labels_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->have_labels = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_have_labels_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeTrainData_have_labels_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_labels_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (bool) ((arg1)->have_labels); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_have_priors_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_have_priors_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_priors_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_have_priors_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->have_priors = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_have_priors_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeTrainData_have_priors_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_priors_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (bool) ((arg1)->have_priors); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_is_classifier_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_is_classifier_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_classifier_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_is_classifier_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->is_classifier = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_is_classifier_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeTrainData_is_classifier_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_classifier_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (bool) ((arg1)->is_classifier); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_tflag_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_tflag_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tflag_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_tflag_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->tflag = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_tflag_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_tflag_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tflag_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->tflag); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_train_data_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_train_data_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_train_data_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_train_data_set" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->train_data = (CvMat const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_train_data_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_train_data_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_train_data_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->train_data); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_responses_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_responses_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_responses_set" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->responses = (CvMat const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_responses_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_responses_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->responses); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_responses_copy_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_responses_copy_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_copy_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_responses_copy_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->responses_copy = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_responses_copy_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_responses_copy_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_copy_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->responses_copy); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_buf_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_buf_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_buf_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->buf_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_buf_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_buf_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->buf_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_buf_size_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_buf_size_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_size_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_buf_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->buf_size = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_buf_size_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_buf_size_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_size_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->buf_size); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_shared_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_shared_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_shared_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_shared_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->shared = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_shared_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTreeTrainData_shared_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_shared_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (bool) ((arg1)->shared); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_is_buf_16u_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_is_buf_16u_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_buf_16u_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_is_buf_16u_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->is_buf_16u = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_is_buf_16u_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTreeTrainData_is_buf_16u_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_buf_16u_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (int) ((arg1)->is_buf_16u); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_count_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_cat_count_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->cat_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_count_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->cat_count); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_ofs_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_ofs_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_ofs_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_cat_ofs_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->cat_ofs = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_ofs_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_ofs_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_ofs_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->cat_ofs); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_map_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_map_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_map_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_cat_map_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->cat_map = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cat_map_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_cat_map_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_map_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->cat_map); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_counts_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_counts_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_counts_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_counts_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->counts = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_counts_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_counts_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_counts_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->counts); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_buf_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->buf); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_direction_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_direction_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_direction_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_direction_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->direction = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_direction_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_direction_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_direction_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->direction); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_split_buf_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_split_buf_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_split_buf_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->split_buf = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_split_buf_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_split_buf_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->split_buf); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_idx_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_idx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_idx_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_var_idx_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->var_idx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_idx_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_idx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_idx_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->var_idx); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_type_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_type_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_var_type_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->var_type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_var_type_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_var_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_type_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->var_type); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_priors_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_priors_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_priors_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->priors = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_priors_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_priors_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->priors); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_priors_mult_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_priors_mult_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_mult_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_priors_mult_set" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->priors_mult = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_priors_mult_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_priors_mult_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_mult_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->priors_mult); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_params_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeParams *arg2 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_params_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_params_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_params_set" "', argument " "2"" of type '" "CvDTreeParams *""'"); - } - arg2 = (CvDTreeParams *)(argp2); - if (arg1) (arg1)->params = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_params_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeParams *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_params_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_params_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvDTreeParams *)& ((arg1)->params); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_tree_storage_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_tree_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tree_storage_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_tree_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->tree_storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_tree_storage_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_tree_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tree_storage_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMemStorage *) ((arg1)->tree_storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_temp_storage_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_temp_storage_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_temp_storage_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_temp_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = (CvMemStorage *)(argp2); - if (arg1) (arg1)->temp_storage = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_temp_storage_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMemStorage *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_temp_storage_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_temp_storage_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvMemStorage *) ((arg1)->temp_storage); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_data_root_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_data_root_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_data_root_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_data_root_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - if (arg1) (arg1)->data_root = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_data_root_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_data_root_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_data_root_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvDTreeNode *) ((arg1)->data_root); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_node_heap_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_node_heap_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_node_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->node_heap = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_node_heap_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_node_heap_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_node_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvSet *) ((arg1)->node_heap); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_split_heap_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_split_heap_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->split_heap = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_split_heap_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_split_heap_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvSet *) ((arg1)->split_heap); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cv_heap_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_cv_heap_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->cv_heap = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_cv_heap_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_cv_heap_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvSet *) ((arg1)->cv_heap); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_nv_heap_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_nv_heap_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_nv_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - if( SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(args(1), &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->nv_heap = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_nv_heap_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSet *result = 0 ; - - if (!SWIG_check_num_args("CvDTreeTrainData_nv_heap_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_nv_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = (CvSet *) ((arg1)->nv_heap); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_rng_set (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvRNG arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - CvRNG_Wrapper *wrapper2 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTreeTrainData_rng_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_rng_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - { - if(SWIG_ConvertPtr(args(1), &vptr2, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Octave object to C value"); - SWIG_fail; - } - wrapper2 = (CvRNG_Wrapper *) vptr2; - arg2 = wrapper2->ref(); - } - if (arg1) (arg1)->rng = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTreeTrainData_rng_get (const octave_value_list& args, int nargout) { - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG result; - - if (!SWIG_check_num_args("CvDTreeTrainData_rng_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_rng_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = (CvDTreeTrainData *)(argp1); - result = ((arg1)->rng); - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( result ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvDTreeTrainData_members[] = { -{"set_data",_wrap_CvDTreeTrainData_set_data,0,0,0,0}, -{"do_responses_copy",_wrap_CvDTreeTrainData_do_responses_copy,0,0,0,0}, -{"get_vectors",_wrap_CvDTreeTrainData_get_vectors,0,0,0,0}, -{"subsample_data",_wrap_CvDTreeTrainData_subsample_data,0,0,0,0}, -{"write_params",_wrap_CvDTreeTrainData_write_params,0,0,0,0}, -{"read_params",_wrap_CvDTreeTrainData_read_params,0,0,0,0}, -{"clear",_wrap_CvDTreeTrainData_clear,0,0,0,0}, -{"get_num_classes",_wrap_CvDTreeTrainData_get_num_classes,0,0,0,0}, -{"get_var_type",_wrap_CvDTreeTrainData_get_var_type,0,0,0,0}, -{"get_work_var_count",_wrap_CvDTreeTrainData_get_work_var_count,0,0,0,0}, -{"get_ord_responses",_wrap_CvDTreeTrainData_get_ord_responses,0,0,0,0}, -{"get_class_labels",_wrap_CvDTreeTrainData_get_class_labels,0,0,0,0}, -{"get_cv_labels",_wrap_CvDTreeTrainData_get_cv_labels,0,0,0,0}, -{"get_sample_indices",_wrap_CvDTreeTrainData_get_sample_indices,0,0,0,0}, -{"get_cat_var_data",_wrap_CvDTreeTrainData_get_cat_var_data,0,0,0,0}, -{"get_ord_var_data",_wrap_CvDTreeTrainData_get_ord_var_data,0,0,0,0}, -{"get_child_buf_idx",_wrap_CvDTreeTrainData_get_child_buf_idx,0,0,0,0}, -{"set_params",_wrap_CvDTreeTrainData_set_params,0,0,0,0}, -{"new_node",_wrap_CvDTreeTrainData_new_node,0,0,0,0}, -{"new_split_ord",_wrap_CvDTreeTrainData_new_split_ord,0,0,0,0}, -{"new_split_cat",_wrap_CvDTreeTrainData_new_split_cat,0,0,0,0}, -{"free_node_data",_wrap_CvDTreeTrainData_free_node_data,0,0,0,0}, -{"free_train_data",_wrap_CvDTreeTrainData_free_train_data,0,0,0,0}, -{"free_node",_wrap_CvDTreeTrainData_free_node,0,0,0,0}, -{"get_pred_float_buf",_wrap_CvDTreeTrainData_get_pred_float_buf,0,0,0,0}, -{"get_pred_int_buf",_wrap_CvDTreeTrainData_get_pred_int_buf,0,0,0,0}, -{"get_resp_float_buf",_wrap_CvDTreeTrainData_get_resp_float_buf,0,0,0,0}, -{"get_resp_int_buf",_wrap_CvDTreeTrainData_get_resp_int_buf,0,0,0,0}, -{"get_cv_lables_buf",_wrap_CvDTreeTrainData_get_cv_lables_buf,0,0,0,0}, -{"get_sample_idx_buf",_wrap_CvDTreeTrainData_get_sample_idx_buf,0,0,0,0}, -{"pred_float_buf",0,_wrap_CvDTreeTrainData_pred_float_buf_get,_wrap_CvDTreeTrainData_pred_float_buf_set,0,0}, -{"pred_int_buf",0,_wrap_CvDTreeTrainData_pred_int_buf_get,_wrap_CvDTreeTrainData_pred_int_buf_set,0,0}, -{"resp_float_buf",0,_wrap_CvDTreeTrainData_resp_float_buf_get,_wrap_CvDTreeTrainData_resp_float_buf_set,0,0}, -{"resp_int_buf",0,_wrap_CvDTreeTrainData_resp_int_buf_get,_wrap_CvDTreeTrainData_resp_int_buf_set,0,0}, -{"cv_lables_buf",0,_wrap_CvDTreeTrainData_cv_lables_buf_get,_wrap_CvDTreeTrainData_cv_lables_buf_set,0,0}, -{"sample_idx_buf",0,_wrap_CvDTreeTrainData_sample_idx_buf_get,_wrap_CvDTreeTrainData_sample_idx_buf_set,0,0}, -{"sample_count",0,_wrap_CvDTreeTrainData_sample_count_get,_wrap_CvDTreeTrainData_sample_count_set,0,0}, -{"var_all",0,_wrap_CvDTreeTrainData_var_all_get,_wrap_CvDTreeTrainData_var_all_set,0,0}, -{"var_count",0,_wrap_CvDTreeTrainData_var_count_get,_wrap_CvDTreeTrainData_var_count_set,0,0}, -{"max_c_count",0,_wrap_CvDTreeTrainData_max_c_count_get,_wrap_CvDTreeTrainData_max_c_count_set,0,0}, -{"ord_var_count",0,_wrap_CvDTreeTrainData_ord_var_count_get,_wrap_CvDTreeTrainData_ord_var_count_set,0,0}, -{"cat_var_count",0,_wrap_CvDTreeTrainData_cat_var_count_get,_wrap_CvDTreeTrainData_cat_var_count_set,0,0}, -{"work_var_count",0,_wrap_CvDTreeTrainData_work_var_count_get,_wrap_CvDTreeTrainData_work_var_count_set,0,0}, -{"have_labels",0,_wrap_CvDTreeTrainData_have_labels_get,_wrap_CvDTreeTrainData_have_labels_set,0,0}, -{"have_priors",0,_wrap_CvDTreeTrainData_have_priors_get,_wrap_CvDTreeTrainData_have_priors_set,0,0}, -{"is_classifier",0,_wrap_CvDTreeTrainData_is_classifier_get,_wrap_CvDTreeTrainData_is_classifier_set,0,0}, -{"tflag",0,_wrap_CvDTreeTrainData_tflag_get,_wrap_CvDTreeTrainData_tflag_set,0,0}, -{"train_data",0,_wrap_CvDTreeTrainData_train_data_get,_wrap_CvDTreeTrainData_train_data_set,0,0}, -{"responses",0,_wrap_CvDTreeTrainData_responses_get,_wrap_CvDTreeTrainData_responses_set,0,0}, -{"responses_copy",0,_wrap_CvDTreeTrainData_responses_copy_get,_wrap_CvDTreeTrainData_responses_copy_set,0,0}, -{"buf_count",0,_wrap_CvDTreeTrainData_buf_count_get,_wrap_CvDTreeTrainData_buf_count_set,0,0}, -{"buf_size",0,_wrap_CvDTreeTrainData_buf_size_get,_wrap_CvDTreeTrainData_buf_size_set,0,0}, -{"shared",0,_wrap_CvDTreeTrainData_shared_get,_wrap_CvDTreeTrainData_shared_set,0,0}, -{"is_buf_16u",0,_wrap_CvDTreeTrainData_is_buf_16u_get,_wrap_CvDTreeTrainData_is_buf_16u_set,0,0}, -{"cat_count",0,_wrap_CvDTreeTrainData_cat_count_get,_wrap_CvDTreeTrainData_cat_count_set,0,0}, -{"cat_ofs",0,_wrap_CvDTreeTrainData_cat_ofs_get,_wrap_CvDTreeTrainData_cat_ofs_set,0,0}, -{"cat_map",0,_wrap_CvDTreeTrainData_cat_map_get,_wrap_CvDTreeTrainData_cat_map_set,0,0}, -{"counts",0,_wrap_CvDTreeTrainData_counts_get,_wrap_CvDTreeTrainData_counts_set,0,0}, -{"buf",0,_wrap_CvDTreeTrainData_buf_get,_wrap_CvDTreeTrainData_buf_set,0,0}, -{"direction",0,_wrap_CvDTreeTrainData_direction_get,_wrap_CvDTreeTrainData_direction_set,0,0}, -{"split_buf",0,_wrap_CvDTreeTrainData_split_buf_get,_wrap_CvDTreeTrainData_split_buf_set,0,0}, -{"var_idx",0,_wrap_CvDTreeTrainData_var_idx_get,_wrap_CvDTreeTrainData_var_idx_set,0,0}, -{"var_type",0,_wrap_CvDTreeTrainData_var_type_get,_wrap_CvDTreeTrainData_var_type_set,0,0}, -{"priors",0,_wrap_CvDTreeTrainData_priors_get,_wrap_CvDTreeTrainData_priors_set,0,0}, -{"priors_mult",0,_wrap_CvDTreeTrainData_priors_mult_get,_wrap_CvDTreeTrainData_priors_mult_set,0,0}, -{"params",0,_wrap_CvDTreeTrainData_params_get,_wrap_CvDTreeTrainData_params_set,0,0}, -{"tree_storage",0,_wrap_CvDTreeTrainData_tree_storage_get,_wrap_CvDTreeTrainData_tree_storage_set,0,0}, -{"temp_storage",0,_wrap_CvDTreeTrainData_temp_storage_get,_wrap_CvDTreeTrainData_temp_storage_set,0,0}, -{"data_root",0,_wrap_CvDTreeTrainData_data_root_get,_wrap_CvDTreeTrainData_data_root_set,0,0}, -{"node_heap",0,_wrap_CvDTreeTrainData_node_heap_get,_wrap_CvDTreeTrainData_node_heap_set,0,0}, -{"split_heap",0,_wrap_CvDTreeTrainData_split_heap_get,_wrap_CvDTreeTrainData_split_heap_set,0,0}, -{"cv_heap",0,_wrap_CvDTreeTrainData_cv_heap_get,_wrap_CvDTreeTrainData_cv_heap_set,0,0}, -{"nv_heap",0,_wrap_CvDTreeTrainData_nv_heap_get,_wrap_CvDTreeTrainData_nv_heap_set,0,0}, -{"rng",0,_wrap_CvDTreeTrainData_rng_get,_wrap_CvDTreeTrainData_rng_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvDTreeTrainData_base_names[] = {0}; -static const swig_type_info *swig_CvDTreeTrainData_base[] = {0}; -static swig_octave_class _wrap_class_CvDTreeTrainData = {"CvDTreeTrainData", &SWIGTYPE_p_CvDTreeTrainData,0,_wrap_new_CvDTreeTrainData,0,_wrap_delete_CvDTreeTrainData,swig_CvDTreeTrainData_members,swig_CvDTreeTrainData_base_names,swig_CvDTreeTrainData_base }; - -static octave_value_list _wrap_new_CvDTree (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTree *result = 0 ; - - if (!SWIG_check_num_args("new_CvDTree",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvDTree *)new CvDTree(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTree, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvDTree (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvDTree",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTree" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTree_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } else { - arg9 = *((CvDTreeParams *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvDTree_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvDTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_5 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_6 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvDTreeParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "CvDTreeParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTree_train" "', argument " "3"" of type '" "CvDTreeParams""'"); - } else { - arg3 = *((CvDTreeParams *)(argp3)); - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_7 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_calc_error__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - vector< float > *arg4 = (vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvDTree_calc_error",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_calc_error" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_vectorT_float_t, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_calc_error" "', argument " "4"" of type '" "vector< float > *""'"); - } - arg4 = (vector< float > *)(argp4); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_calc_error__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvDTree_calc_error",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_calc_error" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_calc_error (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTree_calc_error__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_vectorT_float_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_calc_error__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTree_train__SWIG_8 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvDTree_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = (CvDTreeTrainData *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[9]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_7(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_6(args, nargout); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_8(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_5(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_4(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_3(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTree_predict__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTree_predict",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_predict" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - ecode4 = SWIG_AsVal_bool(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvDTree_predict" "', argument " "4"" of type '" "bool""'"); - } - arg4 = (bool)(val4); - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_predict__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTree_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_predict" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_predict__SWIG_2 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTree_predict",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_predict" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_predict (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_predict__SWIG_2(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_predict__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTree_predict__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTree_get_var_importance (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvDTree_get_var_importance",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_var_importance" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_importance(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_clear (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTree_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_clear" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_read__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTree_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_read" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_write__SWIG_0 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTree_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_write" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvDTree const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_read__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvDTreeTrainData *arg4 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTree_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_read" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_read" "', argument " "4"" of type '" "CvDTreeTrainData *""'"); - } - arg4 = (CvDTreeTrainData *)(argp4); - { - try { - (arg1)->read(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_read (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_read__SWIG_0(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_read__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTree_write__SWIG_1 (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTree_write",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_write" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - { - try { - ((CvDTree const *)arg1)->write(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_write (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_write__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_write__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvDTree_get_root (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvDTree_get_root",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_root" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->get_root(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_get_pruned_tree_idx (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTree_get_pruned_tree_idx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_pruned_tree_idx" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = (CvDTree *)(argp1); - { - try { - result = (int)((CvDTree const *)arg1)->get_pruned_tree_idx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_get_data (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("CvDTree_get_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_data" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - { - try { - result = (CvDTreeTrainData *)(arg1)->get_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_pruned_tree_idx_set (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvDTree_pruned_tree_idx_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_pruned_tree_idx_set" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTree_pruned_tree_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->pruned_tree_idx = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvDTree_pruned_tree_idx_get (const octave_value_list& args, int nargout) { - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvDTree_pruned_tree_idx_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_pruned_tree_idx_get" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = (CvDTree *)(argp1); - result = (int) ((arg1)->pruned_tree_idx); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvDTree_members[] = { -{"calc_error",_wrap_CvDTree_calc_error,0,0,0,0}, -{"train",_wrap_CvDTree_train,0,0,0,0}, -{"predict",_wrap_CvDTree_predict,0,0,0,0}, -{"get_var_importance",_wrap_CvDTree_get_var_importance,0,0,0,0}, -{"clear",_wrap_CvDTree_clear,0,0,0,0}, -{"read",_wrap_CvDTree_read,0,0,0,0}, -{"write",_wrap_CvDTree_write,0,0,0,0}, -{"get_root",_wrap_CvDTree_get_root,0,0,0,0}, -{"get_pruned_tree_idx",_wrap_CvDTree_get_pruned_tree_idx,0,0,0,0}, -{"get_data",_wrap_CvDTree_get_data,0,0,0,0}, -{"pruned_tree_idx",0,_wrap_CvDTree_pruned_tree_idx_get,_wrap_CvDTree_pruned_tree_idx_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvDTree_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvDTree_base[] = {0,0}; -static swig_octave_class _wrap_class_CvDTree = {"CvDTree", &SWIGTYPE_p_CvDTree,0,_wrap_new_CvDTree,0,_wrap_delete_CvDTree,swig_CvDTree_members,swig_CvDTree_base_names,swig_CvDTree_base }; - -static octave_value_list _wrap_new_CvForestTree (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvForestTree *result = 0 ; - - if (!SWIG_check_num_args("new_CvForestTree",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvForestTree *)new CvForestTree(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvForestTree, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvForestTree (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvForestTree",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvForestTree" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvRTrees *arg4 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = (CvDTreeTrainData *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvRTrees *""'"); - } - arg4 = (CvRTrees *)(argp4); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_get_var_count (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvForestTree_get_var_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_get_var_count" "', argument " "1"" of type '" "CvForestTree const *""'"); - } - arg1 = (CvForestTree *)(argp1); - { - try { - result = (int)((CvForestTree const *)arg1)->get_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_read__SWIG_0 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvRTrees *arg4 = (CvRTrees *) 0 ; - CvDTreeTrainData *arg5 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvForestTree_read",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_read" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_read" "', argument " "4"" of type '" "CvRTrees *""'"); - } - arg4 = (CvRTrees *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_read" "', argument " "5"" of type '" "CvDTreeTrainData *""'"); - } - arg5 = (CvDTreeTrainData *)(argp5); - { - try { - (arg1)->read(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvForestTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvForestTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvForestTree_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvForestTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvForestTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } else { - arg9 = *((CvDTreeParams *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvForestTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvForestTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvForestTree_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvForestTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvForestTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvForestTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_5 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_6 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train__SWIG_7 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvForestTree_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = (CvDTreeTrainData *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[9]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_7(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_6(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_0(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_5(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_4(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvForestTree_read__SWIG_1 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvForestTree_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_read" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_read__SWIG_2 (const octave_value_list& args, int nargout) { - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvDTreeTrainData *arg4 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvForestTree_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_read" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = (CvForestTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_read" "', argument " "4"" of type '" "CvDTreeTrainData *""'"); - } - arg4 = (CvDTreeTrainData *)(argp4); - { - try { - (arg1)->read(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvForestTree_read (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_read__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_read__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_read__SWIG_0(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static swig_octave_member swig_CvForestTree_members[] = { -{"get_var_count",_wrap_CvForestTree_get_var_count,0,0,0,0}, -{"train",_wrap_CvForestTree_train,0,0,0,0}, -{"read",_wrap_CvForestTree_read,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvForestTree_base_names[] = {"_p_CvDTree",0}; -static const swig_type_info *swig_CvForestTree_base[] = {0,0}; -static swig_octave_class _wrap_class_CvForestTree = {"CvForestTree", &SWIGTYPE_p_CvForestTree,0,_wrap_new_CvForestTree,0,_wrap_delete_CvForestTree,swig_CvForestTree_members,swig_CvForestTree_base_names,swig_CvForestTree_base }; - -static octave_value_list _wrap_CvRTParams_calc_var_importance_set (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRTParams_calc_var_importance_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_calc_var_importance_set" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRTParams_calc_var_importance_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->calc_var_importance = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTParams_calc_var_importance_get (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTParams_calc_var_importance_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_calc_var_importance_get" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - result = (bool) ((arg1)->calc_var_importance); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTParams_nactive_vars_set (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRTParams_nactive_vars_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_nactive_vars_set" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRTParams_nactive_vars_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->nactive_vars = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTParams_nactive_vars_get (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvRTParams_nactive_vars_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_nactive_vars_get" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - result = (int) ((arg1)->nactive_vars); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTParams_term_crit_set (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRTParams_term_crit_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_term_crit_set" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = (CvTermCriteria *)(argp2); - if (arg1) (arg1)->term_crit = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTParams_term_crit_get (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTermCriteria *result = 0 ; - - if (!SWIG_check_num_args("CvRTParams_term_crit_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_term_crit_get" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvRTParams__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRTParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvRTParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvRTParams *)new CvRTParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRTParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvRTParams__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - float arg3 ; - bool arg4 ; - int arg5 ; - float *arg6 = (float *) 0 ; - bool arg7 ; - int arg8 ; - int arg9 ; - float arg10 ; - int arg11 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - int val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - float val10 ; - int ecode10 = 0 ; - int val11 ; - int ecode11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRTParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvRTParams",args.length(),11,11,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvRTParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvRTParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_float(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvRTParams" "', argument " "3"" of type '" "float""'"); - } - arg3 = (float)(val3); - ecode4 = SWIG_AsVal_bool(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvRTParams" "', argument " "4"" of type '" "bool""'"); - } - arg4 = (bool)(val4); - ecode5 = SWIG_AsVal_int(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvRTParams" "', argument " "5"" of type '" "int""'"); - } - arg5 = (int)(val5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvRTParams" "', argument " "6"" of type '" "float const *""'"); - } - arg6 = (float *)(argp6); - ecode7 = SWIG_AsVal_bool(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvRTParams" "', argument " "7"" of type '" "bool""'"); - } - arg7 = (bool)(val7); - ecode8 = SWIG_AsVal_int(args(7), &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvRTParams" "', argument " "8"" of type '" "int""'"); - } - arg8 = (int)(val8); - ecode9 = SWIG_AsVal_int(args(8), &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "new_CvRTParams" "', argument " "9"" of type '" "int""'"); - } - arg9 = (int)(val9); - ecode10 = SWIG_AsVal_float(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "new_CvRTParams" "', argument " "10"" of type '" "float""'"); - } - arg10 = (float)(val10); - ecode11 = SWIG_AsVal_int(args(10), &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "new_CvRTParams" "', argument " "11"" of type '" "int""'"); - } - arg11 = (int)(val11); - { - try { - result = (CvRTParams *)new CvRTParams(arg1,arg2,arg3,arg4,arg5,(float const *)arg6,arg7,arg8,arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRTParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvRTParams (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[11]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9),octave_value_ref(args,10) - }; - - if (argc == 0) { - return _wrap_new_CvRTParams__SWIG_0(args, nargout); - } - if (argc == 11) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[8], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvRTParams__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvRTParams (const octave_value_list& args, int nargout) { - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvRTParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRTParams" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = (CvRTParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvRTParams_members[] = { -{"calc_var_importance",0,_wrap_CvRTParams_calc_var_importance_get,_wrap_CvRTParams_calc_var_importance_set,0,0}, -{"nactive_vars",0,_wrap_CvRTParams_nactive_vars_get,_wrap_CvRTParams_nactive_vars_set,0,0}, -{"term_crit",0,_wrap_CvRTParams_term_crit_get,_wrap_CvRTParams_term_crit_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvRTParams_base_names[] = {"_p_CvDTreeParams",0}; -static const swig_type_info *swig_CvRTParams_base[] = {0,0}; -static swig_octave_class _wrap_class_CvRTParams = {"CvRTParams", &SWIGTYPE_p_CvRTParams,0,_wrap_new_CvRTParams,0,_wrap_delete_CvRTParams,swig_CvRTParams_members,swig_CvRTParams_base_names,swig_CvRTParams_base }; - -static octave_value_list _wrap_new_CvRTrees (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRTrees *result = 0 ; - - if (!SWIG_check_num_args("new_CvRTrees",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvRTrees *)new CvRTrees(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRTrees, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvRTrees (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvRTrees",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRTrees" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvRTParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvRTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvRTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvRTrees_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvRTrees_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvRTParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvRTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } else { - arg9 = *((CvRTParams *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvRTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvRTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvRTrees_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvRTrees_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvRTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvRTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvRTrees_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvRTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvRTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvRTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_5 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_6 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvRTParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvRTParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } else { - arg3 = *((CvRTParams *)(argp3)); - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train__SWIG_7 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvRTrees_train",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[9]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_7(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_6(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_5(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_4(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_3(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvRTrees_predict__SWIG_0 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvRTrees const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_predict__SWIG_1 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_predict",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (float)((CvRTrees const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_predict (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvRTrees_predict_prob__SWIG_0 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_predict_prob",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict_prob" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_predict_prob" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_predict_prob" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvRTrees const *)arg1)->predict_prob((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_predict_prob__SWIG_1 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_predict_prob",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict_prob" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_predict_prob" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (float)((CvRTrees const *)arg1)->predict_prob((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_predict_prob (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[3]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict_prob__SWIG_1(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict_prob__SWIG_0(args, nargout); - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvRTrees_clear (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRTrees_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_clear" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_var_importance (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvRTrees_get_var_importance",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_var_importance" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_importance(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_proximity__SWIG_0 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_get_proximity",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_proximity" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_get_proximity" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_get_proximity" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_get_proximity" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvRTrees_get_proximity" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (float)((CvRTrees const *)arg1)->get_proximity((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_proximity__SWIG_1 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_get_proximity",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_proximity" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_get_proximity" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_get_proximity" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_get_proximity" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (float)((CvRTrees const *)arg1)->get_proximity((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_proximity__SWIG_2 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_get_proximity",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_proximity" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_get_proximity" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_get_proximity" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvRTrees const *)arg1)->get_proximity((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_proximity (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_get_proximity__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_get_proximity__SWIG_1(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_get_proximity__SWIG_0(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvRTrees_calc_error__SWIG_0 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - vector< float > *arg4 = (vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_calc_error",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_calc_error" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_vectorT_float_t, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_calc_error" "', argument " "4"" of type '" "vector< float > *""'"); - } - arg4 = (vector< float > *)(argp4); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_calc_error__SWIG_1 (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_calc_error",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_calc_error" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_calc_error (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvRTrees_calc_error__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_vectorT_float_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_calc_error__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvRTrees_get_train_error (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvRTrees_get_train_error",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_train_error" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - result = (float)(arg1)->get_train_error(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_read (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRTrees_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_read" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_write (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvRTrees_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_write" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvRTrees const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_active_var_mask (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvRTrees_get_active_var_mask",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_active_var_mask" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_active_var_mask(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_rng (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvRNG *result = 0 ; - - if (!SWIG_check_num_args("CvRTrees_get_rng",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_rng" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - result = (CvRNG *)(arg1)->get_rng(); - } - catch (...) - { - SWIG_fail; - } - } - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( *(result) ); - _outv = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_tree_count (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvRTrees_get_tree_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_tree_count" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - { - try { - result = (int)((CvRTrees const *)arg1)->get_tree_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvRTrees_get_tree (const octave_value_list& args, int nargout) { - CvRTrees *arg1 = (CvRTrees *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvForestTree *result = 0 ; - - if (!SWIG_check_num_args("CvRTrees_get_tree",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_tree" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = (CvRTrees *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRTrees_get_tree" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvForestTree *)((CvRTrees const *)arg1)->get_tree(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvRTrees_members[] = { -{"train",_wrap_CvRTrees_train,0,0,0,0}, -{"predict",_wrap_CvRTrees_predict,0,0,0,0}, -{"predict_prob",_wrap_CvRTrees_predict_prob,0,0,0,0}, -{"clear",_wrap_CvRTrees_clear,0,0,0,0}, -{"get_var_importance",_wrap_CvRTrees_get_var_importance,0,0,0,0}, -{"get_proximity",_wrap_CvRTrees_get_proximity,0,0,0,0}, -{"calc_error",_wrap_CvRTrees_calc_error,0,0,0,0}, -{"get_train_error",_wrap_CvRTrees_get_train_error,0,0,0,0}, -{"read",_wrap_CvRTrees_read,0,0,0,0}, -{"write",_wrap_CvRTrees_write,0,0,0,0}, -{"get_active_var_mask",_wrap_CvRTrees_get_active_var_mask,0,0,0,0}, -{"get_rng",_wrap_CvRTrees_get_rng,0,0,0,0}, -{"get_tree_count",_wrap_CvRTrees_get_tree_count,0,0,0,0}, -{"get_tree",_wrap_CvRTrees_get_tree,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvRTrees_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvRTrees_base[] = {0,0}; -static swig_octave_class _wrap_class_CvRTrees = {"CvRTrees", &SWIGTYPE_p_CvRTrees,0,_wrap_new_CvRTrees,0,_wrap_delete_CvRTrees,swig_CvRTrees_members,swig_CvRTrees_base_names,swig_CvRTrees_base }; - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_0 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - bool arg12 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - bool val12 ; - int ecode12 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),12,12,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvERTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - ecode11 = SWIG_AsVal_bool(args(10), &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvERTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = (bool)(val11); - ecode12 = SWIG_AsVal_bool(args(11), &val12); - if (!SWIG_IsOK(ecode12)) { - SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "CvERTreeTrainData_set_data" "', argument " "12"" of type '" "bool""'"); - } - arg12 = (bool)(val12); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_1 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),11,11,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvERTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - ecode11 = SWIG_AsVal_bool(args(10), &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvERTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = (bool)(val11); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_2 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),10,10,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvERTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_3 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = (CvDTreeParams *)(argp9); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_4 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTreeTrainData_set_data" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_5 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_set_data" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_6 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTreeTrainData_set_data" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_7 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_set_data" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data__SWIG_8 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_set_data",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_set_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_set_data" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_set_data (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[12]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9),octave_value_ref(args,10),octave_value_ref(args,11) - }; - - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_8(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_7(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_6(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_5(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_4(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - if (argc == 11) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 12) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[11], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_ord_var_data (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - float *arg4 = (float *) 0 ; - int *arg5 = (int *) 0 ; - float **arg6 = (float **) 0 ; - int **arg7 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *vptr6 ; - float *buffer6 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvERTreeTrainData_get_ord_var_data",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "4"" of type '" "float *""'"); - } - arg4 = (float *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "5"" of type '" "int *""'"); - } - arg5 = (int *)(argp5); - { - if ((SWIG_ConvertPtr(args(5), &vptr6, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer6 = (float *) vptr6; - arg6=&buffer6; - } - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "7"" of type '" "int const **""'"); - } - arg7 = (int **)(argp7); - { - try { - result = (int)(arg1)->get_ord_var_data(arg2,arg3,arg4,arg5,(float const **)arg6,(int const **)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_sample_indices (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_get_sample_indices",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "3"" of type '" "int *""'"); - } - arg3 = (int *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = (int **)(argp4); - { - try { - (arg1)->get_sample_indices(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_cv_labels (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_get_cv_labels",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "3"" of type '" "int *""'"); - } - arg3 = (int *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = (int **)(argp4); - { - try { - (arg1)->get_cv_labels(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_cat_var_data (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - int *arg4 = (int *) 0 ; - int **arg5 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvERTreeTrainData_get_cat_var_data",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = (CvDTreeNode *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "4"" of type '" "int *""'"); - } - arg4 = (int *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "5"" of type '" "int const **""'"); - } - arg5 = (int **)(argp5); - { - try { - result = (int)(arg1)->get_cat_var_data(arg2,arg3,arg4,(int const **)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_vectors__SWIG_0 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_get_vectors",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = (uchar *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = (float *)(argp5); - ecode6 = SWIG_AsVal_bool(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "6"" of type '" "bool""'"); - } - arg6 = (bool)(val6); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_vectors__SWIG_1 (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_get_vectors",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = (float *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = (uchar *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = (float *)(argp5); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_get_vectors (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_get_vectors__SWIG_1(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_get_vectors__SWIG_0(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvERTreeTrainData_subsample_data (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeNode *result = 0 ; - - if (!SWIG_check_num_args("CvERTreeTrainData_subsample_data",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_subsample_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_subsample_data" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (CvDTreeNode *)(arg1)->subsample_data((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_missing_mask_set (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvERTreeTrainData_missing_mask_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_missing_mask_set" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_missing_mask_set" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - if (arg1) (arg1)->missing_mask = (CvMat const *)arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTreeTrainData_missing_mask_get (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvERTreeTrainData_missing_mask_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_missing_mask_get" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - result = (CvMat *) ((arg1)->missing_mask); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvERTreeTrainData (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvERTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("new_CvERTreeTrainData",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvERTreeTrainData *)new CvERTreeTrainData(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvERTreeTrainData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvERTreeTrainData (const octave_value_list& args, int nargout) { - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvERTreeTrainData",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTreeTrainData, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvERTreeTrainData" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = (CvERTreeTrainData *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvERTreeTrainData_members[] = { -{"set_data",_wrap_CvERTreeTrainData_set_data,0,0,0,0}, -{"get_ord_var_data",_wrap_CvERTreeTrainData_get_ord_var_data,0,0,0,0}, -{"get_sample_indices",_wrap_CvERTreeTrainData_get_sample_indices,0,0,0,0}, -{"get_cv_labels",_wrap_CvERTreeTrainData_get_cv_labels,0,0,0,0}, -{"get_cat_var_data",_wrap_CvERTreeTrainData_get_cat_var_data,0,0,0,0}, -{"get_vectors",_wrap_CvERTreeTrainData_get_vectors,0,0,0,0}, -{"subsample_data",_wrap_CvERTreeTrainData_subsample_data,0,0,0,0}, -{"missing_mask",0,_wrap_CvERTreeTrainData_missing_mask_get,_wrap_CvERTreeTrainData_missing_mask_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvERTreeTrainData_base_names[] = {"_p_CvDTreeTrainData",0}; -static const swig_type_info *swig_CvERTreeTrainData_base[] = {0,0}; -static swig_octave_class _wrap_class_CvERTreeTrainData = {"CvERTreeTrainData", &SWIGTYPE_p_CvERTreeTrainData,0,_wrap_new_CvERTreeTrainData,0,_wrap_delete_CvERTreeTrainData,swig_CvERTreeTrainData_members,swig_CvERTreeTrainData_base_names,swig_CvERTreeTrainData_base }; - -static octave_value_list _wrap_new_CvForestERTree (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvForestERTree *result = 0 ; - - if (!SWIG_check_num_args("new_CvForestERTree",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvForestERTree *)new CvForestERTree(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvForestERTree, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvForestERTree (const octave_value_list& args, int nargout) { - CvForestERTree *arg1 = (CvForestERTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvForestERTree",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvForestERTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvForestERTree" "', argument " "1"" of type '" "CvForestERTree *""'"); - } - arg1 = (CvForestERTree *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvForestERTree_members[] = { -{0,0,0,0} -}; -static const char *swig_CvForestERTree_base_names[] = {"_p_CvForestTree",0}; -static const swig_type_info *swig_CvForestERTree_base[] = {0,0}; -static swig_octave_class _wrap_class_CvForestERTree = {"CvForestERTree", &SWIGTYPE_p_CvForestERTree,0,_wrap_new_CvForestERTree,0,_wrap_delete_CvForestERTree,swig_CvForestERTree_members,swig_CvForestERTree_base_names,swig_CvForestERTree_base }; - -static octave_value_list _wrap_new_CvERTrees (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvERTrees *result = 0 ; - - if (!SWIG_check_num_args("new_CvERTrees",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvERTrees *)new CvERTrees(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvERTrees, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvERTrees (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvERTrees",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvERTrees" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvRTParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTrees_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTrees_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvRTParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } else { - arg9 = *((CvRTParams *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTrees_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvERTrees_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTrees_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvERTrees_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTrees_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_5 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTrees_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_6 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvRTParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvRTParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } else { - arg3 = *((CvRTParams *)(argp3)); - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train__SWIG_7 (const octave_value_list& args, int nargout) { - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvERTrees_train",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = (CvERTrees *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvERTrees_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[9]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_7(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_6(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_5(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_4(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_3(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static swig_octave_member swig_CvERTrees_members[] = { -{"train",_wrap_CvERTrees_train,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvERTrees_base_names[] = {"_p_CvRTrees",0}; -static const swig_type_info *swig_CvERTrees_base[] = {0,0}; -static swig_octave_class _wrap_class_CvERTrees = {"CvERTrees", &SWIGTYPE_p_CvERTrees,0,_wrap_new_CvERTrees,0,_wrap_delete_CvERTrees,swig_CvERTrees_members,swig_CvERTrees_base_names,swig_CvERTrees_base }; - -static octave_value_list _wrap_CvBoostParams_boost_type_set (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostParams_boost_type_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_boost_type_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_boost_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->boost_type = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_boost_type_get (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvBoostParams_boost_type_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_boost_type_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - result = (int) ((arg1)->boost_type); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_weak_count_set (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostParams_weak_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weak_count_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_weak_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->weak_count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_weak_count_get (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvBoostParams_weak_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weak_count_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - result = (int) ((arg1)->weak_count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_split_criteria_set (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostParams_split_criteria_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_split_criteria_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_split_criteria_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->split_criteria = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_split_criteria_get (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvBoostParams_split_criteria_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_split_criteria_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - result = (int) ((arg1)->split_criteria); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_weight_trim_rate_set (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostParams_weight_trim_rate_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weight_trim_rate_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_weight_trim_rate_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->weight_trim_rate = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostParams_weight_trim_rate_get (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvBoostParams_weight_trim_rate_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weight_trim_rate_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - result = (double) ((arg1)->weight_trim_rate); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoostParams__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoostParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoostParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvBoostParams *)new CvBoostParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoostParams__SWIG_1 (const octave_value_list& args, int nargout) { - int arg1 ; - int arg2 ; - double arg3 ; - int arg4 ; - bool arg5 ; - float *arg6 = (float *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoostParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoostParams",args.length(),6,6,0)) { - SWIG_fail; - } - ecode1 = SWIG_AsVal_int(args(0), &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvBoostParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = (int)(val1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoostParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvBoostParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvBoostParams" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - ecode5 = SWIG_AsVal_bool(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvBoostParams" "', argument " "5"" of type '" "bool""'"); - } - arg5 = (bool)(val5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvBoostParams" "', argument " "6"" of type '" "float const *""'"); - } - arg6 = (float *)(argp6); - { - try { - result = (CvBoostParams *)new CvBoostParams(arg1,arg2,arg3,arg4,arg5,(float const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoostParams (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[6]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5) - }; - - if (argc == 0) { - return _wrap_new_CvBoostParams__SWIG_0(args, nargout); - } - if (argc == 6) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoostParams__SWIG_1(args, nargout); - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvBoostParams (const octave_value_list& args, int nargout) { - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvBoostParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBoostParams" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = (CvBoostParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvBoostParams_members[] = { -{"boost_type",0,_wrap_CvBoostParams_boost_type_get,_wrap_CvBoostParams_boost_type_set,0,0}, -{"weak_count",0,_wrap_CvBoostParams_weak_count_get,_wrap_CvBoostParams_weak_count_set,0,0}, -{"split_criteria",0,_wrap_CvBoostParams_split_criteria_get,_wrap_CvBoostParams_split_criteria_set,0,0}, -{"weight_trim_rate",0,_wrap_CvBoostParams_weight_trim_rate_get,_wrap_CvBoostParams_weight_trim_rate_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvBoostParams_base_names[] = {"_p_CvDTreeParams",0}; -static const swig_type_info *swig_CvBoostParams_base[] = {0,0}; -static swig_octave_class _wrap_class_CvBoostParams = {"CvBoostParams", &SWIGTYPE_p_CvBoostParams,0,_wrap_new_CvBoostParams,0,_wrap_delete_CvBoostParams,swig_CvBoostParams_members,swig_CvBoostParams_base_names,swig_CvBoostParams_base }; - -static octave_value_list _wrap_new_CvBoostTree (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoostTree *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoostTree",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvBoostTree *)new CvBoostTree(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostTree, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvBoostTree (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvBoostTree",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBoostTree" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvBoost *arg4 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = (CvDTreeTrainData *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvBoost *""'"); - } - arg4 = (CvBoost *)(argp4); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_scale (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostTree_scale",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_scale" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostTree_scale" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - { - try { - (arg1)->scale(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_read__SWIG_0 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvBoost *arg4 = (CvBoost *) 0 ; - CvDTreeTrainData *arg5 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostTree_read",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_read" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_read" "', argument " "4"" of type '" "CvBoost *""'"); - } - arg4 = (CvBoost *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_read" "', argument " "5"" of type '" "CvDTreeTrainData *""'"); - } - arg5 = (CvDTreeTrainData *)(argp5); - { - try { - (arg1)->read(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_clear (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostTree_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_clear" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoostTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoostTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvBoostTree_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvDTreeParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvBoostTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoostTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } else { - arg9 = *((CvDTreeParams *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoostTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoostTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvBoostTree_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoostTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoostTree_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoostTree_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_5 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_6 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train__SWIG_7 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoostTree_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = (CvDTreeTrainData *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[9]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_7(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_6(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_0(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_5(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_4(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvBoostTree_read__SWIG_1 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostTree_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_read" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_read__SWIG_2 (const octave_value_list& args, int nargout) { - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvDTreeTrainData *arg4 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoostTree_read",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_read" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = (CvBoostTree *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_read" "', argument " "4"" of type '" "CvDTreeTrainData *""'"); - } - arg4 = (CvDTreeTrainData *)(argp4); - { - try { - (arg1)->read(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoostTree_read (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_read__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_read__SWIG_2(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_read__SWIG_0(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static swig_octave_member swig_CvBoostTree_members[] = { -{"scale",_wrap_CvBoostTree_scale,0,0,0,0}, -{"clear",_wrap_CvBoostTree_clear,0,0,0,0}, -{"train",_wrap_CvBoostTree_train,0,0,0,0}, -{"read",_wrap_CvBoostTree_read,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvBoostTree_base_names[] = {"_p_CvDTree",0}; -static const swig_type_info *swig_CvBoostTree_base[] = {0,0}; -static swig_octave_class _wrap_class_CvBoostTree = {"CvBoostTree", &SWIGTYPE_p_CvBoostTree,0,_wrap_new_CvBoostTree,0,_wrap_delete_CvBoostTree,swig_CvBoostTree_members,swig_CvBoostTree_base_names,swig_CvBoostTree_base }; - -static octave_value_list _wrap_new_CvBoost__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvBoost *)new CvBoost(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvBoost (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvBoost",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBoost" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvBoostParams arg8 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvBoost" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvBoost" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvBoost" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvBoost" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvBoost" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvBoost" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - res8 = SWIG_ConvertPtr(args(7), &argp8, SWIGTYPE_p_CvBoostParams, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvBoost" "', argument " "8"" of type '" "CvBoostParams""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvBoost" "', argument " "8"" of type '" "CvBoostParams""'"); - } else { - arg8 = *((CvBoostParams *)(argp8)); - } - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvBoost" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvBoost" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvBoost" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvBoost" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvBoost" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "new_CvBoost" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvBoost" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvBoost" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvBoost" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvBoost" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvBoost" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvBoost" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvBoost" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvBoost" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvBoost" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost__SWIG_5 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvBoost" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvBoost" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvBoost" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost__SWIG_6 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoost *result = 0 ; - - if (!SWIG_check_num_args("new_CvBoost",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvBoost" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvBoost" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvBoost (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[8]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7) - }; - - if (argc == 0) { - return _wrap_new_CvBoost__SWIG_0(args, nargout); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_6(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_5(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_4(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_3(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvBoostParams arg9 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),10,10,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoost_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoost_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvBoost_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvBoostParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } else { - arg9 = *((CvBoostParams *)(argp9)); - } - } - ecode10 = SWIG_AsVal_bool(args(9), &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvBoost_train" "', argument " "10"" of type '" "bool""'"); - } - arg10 = (bool)(val10); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvBoostParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),9,9,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoost_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoost_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvBoost_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - res9 = SWIG_ConvertPtr(args(8), &argp9, SWIGTYPE_p_CvBoostParams, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } else { - arg9 = *((CvBoostParams *)(argp9)); - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),8,8,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoost_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoost_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - res8 = SWIG_ConvertPtr(args(7), &argp8,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvBoost_train" "', argument " "8"" of type '" "CvMat const *""'"); - } - arg8 = (CvMat *)(argp8); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoost_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - res7 = SWIG_ConvertPtr(args(6), &argp7,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvBoost_train" "', argument " "7"" of type '" "CvMat const *""'"); - } - arg7 = (CvMat *)(argp7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_4 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - res6 = SWIG_ConvertPtr(args(5), &argp6,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvBoost_train" "', argument " "6"" of type '" "CvMat const *""'"); - } - arg6 = (CvMat *)(argp6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_5 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_6 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_7 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvBoostParams arg3 ; - bool arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvBoostParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } else { - arg3 = *((CvBoostParams *)(argp3)); - } - } - ecode4 = SWIG_AsVal_bool(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "bool""'"); - } - arg4 = (bool)(val4); - { - try { - result = (bool)(arg1)->train(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_8 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvBoostParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - res3 = SWIG_ConvertPtr(args(2), &argp3, SWIGTYPE_p_CvBoostParams, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } else { - arg3 = *((CvBoostParams *)(argp3)); - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train__SWIG_9 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvBoost_train",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[10]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6),octave_value_ref(args,7),octave_value_ref(args,8),octave_value_ref(args,9) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_9(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_8(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_6(args, nargout); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_train__SWIG_7(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_5(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_4(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_3(args, nargout); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_2(args, nargout); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvBoost_predict__SWIG_0 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSlice arg5 ; - bool arg6 ; - bool arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_predict",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_predict" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - res5 = SWIG_ConvertPtr(args(4), &argp5, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_predict" "', argument " "5"" of type '" "CvSlice""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_predict" "', argument " "5"" of type '" "CvSlice""'"); - } else { - arg5 = *((CvSlice *)(argp5)); - } - } - ecode6 = SWIG_AsVal_bool(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvBoost_predict" "', argument " "6"" of type '" "bool""'"); - } - arg6 = (bool)(val6); - ecode7 = SWIG_AsVal_bool(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvBoost_predict" "', argument " "7"" of type '" "bool""'"); - } - arg7 = (bool)(val7); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_predict__SWIG_1 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSlice arg5 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_predict",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_predict" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - res5 = SWIG_ConvertPtr(args(4), &argp5, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_predict" "', argument " "5"" of type '" "CvSlice""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_predict" "', argument " "5"" of type '" "CvSlice""'"); - } else { - arg5 = *((CvSlice *)(argp5)); - } - } - ecode6 = SWIG_AsVal_bool(args(5), &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvBoost_predict" "', argument " "6"" of type '" "bool""'"); - } - arg6 = (bool)(val6); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_predict__SWIG_2 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSlice arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_predict",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_predict" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - res5 = SWIG_ConvertPtr(args(4), &argp5, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoost_predict" "', argument " "5"" of type '" "CvSlice""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_predict" "', argument " "5"" of type '" "CvSlice""'"); - } else { - arg5 = *((CvSlice *)(argp5)); - } - } - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_predict__SWIG_3 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_predict",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_predict" "', argument " "4"" of type '" "CvMat *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_predict__SWIG_4 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_predict" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_predict__SWIG_5 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_predict",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_predict (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[7]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_5(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_4(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_3(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_2(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_predict__SWIG_1(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_predict__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvBoost_calc_error__SWIG_0 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - vector< float > *arg4 = (vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_calc_error",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_calc_error" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_vectorT_float_t, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_calc_error" "', argument " "4"" of type '" "vector< float > *""'"); - } - arg4 = (vector< float > *)(argp4); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_calc_error__SWIG_1 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvBoost_calc_error",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_calc_error" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = (CvMLData *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_calc_error (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_calc_error__SWIG_1(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_vectorT_float_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_calc_error__SWIG_0(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvBoost_prune (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvSlice arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoost_prune",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_prune" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - res2 = SWIG_ConvertPtr(args(1), &argp2, SWIGTYPE_p_CvSlice, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_prune" "', argument " "2"" of type '" "CvSlice""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_prune" "', argument " "2"" of type '" "CvSlice""'"); - } else { - arg2 = *((CvSlice *)(argp2)); - } - } - { - try { - (arg1)->prune(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_clear (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoost_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_clear" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_write (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoost_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_write" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvBoost const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_read (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvBoost_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_read" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_active_vars__SWIG_0 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_active_vars",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_active_vars" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoost_get_active_vars" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - { - try { - result = (CvMat *)(arg1)->get_active_vars(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_active_vars__SWIG_1 (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_active_vars",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_active_vars" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_active_vars(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_active_vars (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[2]={ - octave_value_ref(args,0),octave_value_ref(args,1) - }; - - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_get_active_vars__SWIG_1(args, nargout); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_get_active_vars__SWIG_0(args, nargout); - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvBoost_get_weak_predictors (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvSeq *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_weak_predictors",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_weak_predictors" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvSeq *)(arg1)->get_weak_predictors(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_weights (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_weights",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_weights" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_weights(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_subtree_weights (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_subtree_weights",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_subtree_weights" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_subtree_weights(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_weak_response (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_weak_response",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_weak_response" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_weak_response(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_params (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvBoostParams *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_params",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_params" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvBoostParams *) &((CvBoost const *)arg1)->get_params(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvBoost_get_data (const octave_value_list& args, int nargout) { - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvDTreeTrainData *result = 0 ; - - if (!SWIG_check_num_args("CvBoost_get_data",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_data" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = (CvBoost *)(argp1); - { - try { - result = (CvDTreeTrainData *)((CvBoost const *)arg1)->get_data(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvBoost_members[] = { -{"train",_wrap_CvBoost_train,0,0,0,0}, -{"predict",_wrap_CvBoost_predict,0,0,0,0}, -{"calc_error",_wrap_CvBoost_calc_error,0,0,0,0}, -{"prune",_wrap_CvBoost_prune,0,0,0,0}, -{"clear",_wrap_CvBoost_clear,0,0,0,0}, -{"write",_wrap_CvBoost_write,0,0,0,0}, -{"read",_wrap_CvBoost_read,0,0,0,0}, -{"get_active_vars",_wrap_CvBoost_get_active_vars,0,0,0,0}, -{"get_weak_predictors",_wrap_CvBoost_get_weak_predictors,0,0,0,0}, -{"get_weights",_wrap_CvBoost_get_weights,0,0,0,0}, -{"get_subtree_weights",_wrap_CvBoost_get_subtree_weights,0,0,0,0}, -{"get_weak_response",_wrap_CvBoost_get_weak_response,0,0,0,0}, -{"get_params",_wrap_CvBoost_get_params,0,0,0,0}, -{"get_data",_wrap_CvBoost_get_data,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvBoost_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvBoost_base[] = {0,0}; -static swig_octave_class _wrap_class_CvBoost = {"CvBoost", &SWIGTYPE_p_CvBoost,0,_wrap_new_CvBoost,0,_wrap_delete_CvBoost,swig_CvBoost_members,swig_CvBoost_base_names,swig_CvBoost_base }; - -static octave_value_list _wrap_new_CvANN_MLP_TrainParams__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP_TrainParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP_TrainParams",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvANN_MLP_TrainParams *)new CvANN_MLP_TrainParams(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP_TrainParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP_TrainParams__SWIG_1 (const octave_value_list& args, int nargout) { - CvTermCriteria arg1 ; - int arg2 ; - double arg3 ; - double arg4 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP_TrainParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP_TrainParams",args.length(),4,4,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "1"" of type '" "CvTermCriteria""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvANN_MLP_TrainParams" "', argument " "1"" of type '" "CvTermCriteria""'"); - } else { - arg1 = *((CvTermCriteria *)(argp1)); - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - { - try { - result = (CvANN_MLP_TrainParams *)new CvANN_MLP_TrainParams(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP_TrainParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP_TrainParams__SWIG_2 (const octave_value_list& args, int nargout) { - CvTermCriteria arg1 ; - int arg2 ; - double arg3 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP_TrainParams *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP_TrainParams",args.length(),3,3,0)) { - SWIG_fail; - } - { - res1 = SWIG_ConvertPtr(args(0), &argp1, SWIGTYPE_p_CvTermCriteria, 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "1"" of type '" "CvTermCriteria""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvANN_MLP_TrainParams" "', argument " "1"" of type '" "CvTermCriteria""'"); - } else { - arg1 = *((CvTermCriteria *)(argp1)); - } - } - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = (CvANN_MLP_TrainParams *)new CvANN_MLP_TrainParams(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP_TrainParams, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP_TrainParams (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 0) { - return _wrap_new_CvANN_MLP_TrainParams__SWIG_0(args, nargout); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP_TrainParams__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP_TrainParams__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvANN_MLP_TrainParams (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvANN_MLP_TrainParams",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvANN_MLP_TrainParams" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_term_crit_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_term_crit_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_term_crit_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_TrainParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = (CvTermCriteria *)(argp2); - if (arg1) (arg1)->term_crit = *arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_term_crit_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTermCriteria *result = 0 ; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_term_crit_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_term_crit_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_train_method_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_train_method_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_train_method_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_train_method_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->train_method = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_train_method_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_train_method_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_train_method_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (int) ((arg1)->train_method); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_bp_dw_scale_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_bp_dw_scale_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_dw_scale_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_bp_dw_scale_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->bp_dw_scale = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_bp_dw_scale_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_bp_dw_scale_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_dw_scale_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->bp_dw_scale); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_bp_moment_scale_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_bp_moment_scale_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_moment_scale_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_bp_moment_scale_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->bp_moment_scale = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_bp_moment_scale_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_bp_moment_scale_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_moment_scale_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->bp_moment_scale); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw0_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw0_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw0_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw0_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rp_dw0 = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw0_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw0_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw0_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->rp_dw0); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_plus_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_plus_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_plus_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_plus_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rp_dw_plus = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_plus_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_plus_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_plus_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->rp_dw_plus); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_minus_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_minus_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_minus_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_minus_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rp_dw_minus = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_minus_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_minus_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_minus_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->rp_dw_minus); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_min_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_min_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_min_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_min_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rp_dw_min = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_min_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_min_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_min_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->rp_dw_min); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_max_set (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_max_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_max_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - ecode2 = SWIG_AsVal_double(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_max_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = (double)(val2); - if (arg1) (arg1)->rp_dw_max = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_TrainParams_rp_dw_max_get (const octave_value_list& args, int nargout) { - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double result; - - if (!SWIG_check_num_args("CvANN_MLP_TrainParams_rp_dw_max_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_max_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = (CvANN_MLP_TrainParams *)(argp1); - result = (double) ((arg1)->rp_dw_max); - _outv = SWIG_From_double((double)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvANN_MLP_TrainParams_members[] = { -{"term_crit",0,_wrap_CvANN_MLP_TrainParams_term_crit_get,_wrap_CvANN_MLP_TrainParams_term_crit_set,0,0}, -{"train_method",0,_wrap_CvANN_MLP_TrainParams_train_method_get,_wrap_CvANN_MLP_TrainParams_train_method_set,0,0}, -{"bp_dw_scale",0,_wrap_CvANN_MLP_TrainParams_bp_dw_scale_get,_wrap_CvANN_MLP_TrainParams_bp_dw_scale_set,0,0}, -{"bp_moment_scale",0,_wrap_CvANN_MLP_TrainParams_bp_moment_scale_get,_wrap_CvANN_MLP_TrainParams_bp_moment_scale_set,0,0}, -{"rp_dw0",0,_wrap_CvANN_MLP_TrainParams_rp_dw0_get,_wrap_CvANN_MLP_TrainParams_rp_dw0_set,0,0}, -{"rp_dw_plus",0,_wrap_CvANN_MLP_TrainParams_rp_dw_plus_get,_wrap_CvANN_MLP_TrainParams_rp_dw_plus_set,0,0}, -{"rp_dw_minus",0,_wrap_CvANN_MLP_TrainParams_rp_dw_minus_get,_wrap_CvANN_MLP_TrainParams_rp_dw_minus_set,0,0}, -{"rp_dw_min",0,_wrap_CvANN_MLP_TrainParams_rp_dw_min_get,_wrap_CvANN_MLP_TrainParams_rp_dw_min_set,0,0}, -{"rp_dw_max",0,_wrap_CvANN_MLP_TrainParams_rp_dw_max_get,_wrap_CvANN_MLP_TrainParams_rp_dw_max_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvANN_MLP_TrainParams_base_names[] = {0}; -static const swig_type_info *swig_CvANN_MLP_TrainParams_base[] = {0}; -static swig_octave_class _wrap_class_CvANN_MLP_TrainParams = {"CvANN_MLP_TrainParams", &SWIGTYPE_p_CvANN_MLP_TrainParams,0,_wrap_new_CvANN_MLP_TrainParams,0,_wrap_delete_CvANN_MLP_TrainParams,swig_CvANN_MLP_TrainParams_members,swig_CvANN_MLP_TrainParams_base_names,swig_CvANN_MLP_TrainParams_base }; - -static octave_value_list _wrap_new_CvANN_MLP__SWIG_0 (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvANN_MLP *)new CvANN_MLP(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP__SWIG_1 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - double arg3 ; - double arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvANN_MLP" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvANN_MLP" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP__SWIG_2 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - double arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvANN_MLP" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_double(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP" "', argument " "3"" of type '" "double""'"); - } - arg3 = (double)(val3); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP__SWIG_3 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvANN_MLP" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP__SWIG_4 (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvANN_MLP *result = 0 ; - - if (!SWIG_check_num_args("new_CvANN_MLP",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvANN_MLP" "', argument " "1"" of type '" "CvMat const *""'"); - } - arg1 = (CvMat *)(argp1); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvANN_MLP (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[4]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3) - }; - - if (argc == 0) { - return _wrap_new_CvANN_MLP__SWIG_0(args, nargout); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_4(args, nargout); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_3(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_1(args, nargout); - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_delete_CvANN_MLP (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvANN_MLP",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvANN_MLP" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_create__SWIG_0 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - double arg4 ; - double arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_create",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_create" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvANN_MLP_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvANN_MLP_create" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - ecode5 = SWIG_AsVal_double(args(4), &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvANN_MLP_create" "', argument " "5"" of type '" "double""'"); - } - arg5 = (double)(val5); - { - try { - (arg1)->create((CvMat const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_create__SWIG_1 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - double arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_create",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_create" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvANN_MLP_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - ecode4 = SWIG_AsVal_double(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvANN_MLP_create" "', argument " "4"" of type '" "double""'"); - } - arg4 = (double)(val4); - { - try { - (arg1)->create((CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_create__SWIG_2 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_create",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_create" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvANN_MLP_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - (arg1)->create((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_create__SWIG_3 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_create",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_create" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - { - try { - (arg1)->create((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_create (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[5]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4) - }; - - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_3(args, nargout); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_2(args, nargout); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_1(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_0(args, nargout); - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvANN_MLP_train__SWIG_0 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvANN_MLP_TrainParams arg6 ; - int arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvANN_MLP_train",args.length(),7,7,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvANN_MLP_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvANN_MLP_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvANN_MLP_TrainParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } else { - arg6 = *((CvANN_MLP_TrainParams *)(argp6)); - } - } - ecode7 = SWIG_AsVal_int(args(6), &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvANN_MLP_train" "', argument " "7"" of type '" "int""'"); - } - arg7 = (int)(val7); - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_train__SWIG_1 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvANN_MLP_TrainParams arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvANN_MLP_train",args.length(),6,6,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvANN_MLP_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvANN_MLP_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - res6 = SWIG_ConvertPtr(args(5), &argp6, SWIGTYPE_p_CvANN_MLP_TrainParams, 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } else { - arg6 = *((CvANN_MLP_TrainParams *)(argp6)); - } - } - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_train__SWIG_2 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvANN_MLP_train",args.length(),5,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvANN_MLP_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvANN_MLP_train" "', argument " "5"" of type '" "CvMat const *""'"); - } - arg5 = (CvMat *)(argp5); - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_train__SWIG_3 (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvANN_MLP_train",args.length(),4,4,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_train" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_train" "', argument " "3"" of type '" "CvMat const *""'"); - } - arg3 = (CvMat *)(argp3); - res4 = SWIG_ConvertPtr(args(3), &argp4,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvANN_MLP_train" "', argument " "4"" of type '" "CvMat const *""'"); - } - arg4 = (CvMat *)(argp4); - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_train (const octave_value_list& args, int nargout) { - int argc = args.length(); - octave_value_ref argv[7]={ - octave_value_ref(args,0),octave_value_ref(args,1),octave_value_ref(args,2),octave_value_ref(args,3),octave_value_ref(args,4),octave_value_ref(args,5),octave_value_ref(args,6) - }; - - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_3(args, nargout); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_2(args, nargout); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvANN_MLP_TrainParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_1(args, nargout); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvANN_MLP_TrainParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_0(args, nargout); - } - } - } - } - } - } - } - } - - error("No matching function for overload"); - return octave_value_list(); -} - - -static octave_value_list _wrap_CvANN_MLP_predict (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvANN_MLP_predict",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_predict" "', argument " "1"" of type '" "CvANN_MLP const *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_predict" "', argument " "2"" of type '" "CvMat const *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_predict" "', argument " "3"" of type '" "CvMat *""'"); - } - arg3 = (CvMat *)(argp3); - { - try { - result = (float)((CvANN_MLP const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_clear (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_clear",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_clear" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_read (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_read",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_read" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = (CvFileNode *)(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_write (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvANN_MLP_write",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_write" "', argument " "1"" of type '" "CvANN_MLP const *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = (CvFileStorage *)(argp2); - res3 = SWIG_AsCharPtrAndSize(args(2), &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = (char *)(buf3); - { - try { - ((CvANN_MLP const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_get_layer_count (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvANN_MLP_get_layer_count",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_get_layer_count" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - { - try { - result = (int)(arg1)->get_layer_count(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_get_layer_sizes (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvANN_MLP_get_layer_sizes",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_get_layer_sizes" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_layer_sizes(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvANN_MLP_get_weights (const octave_value_list& args, int nargout) { - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - double *result = 0 ; - - if (!SWIG_check_num_args("CvANN_MLP_get_weights",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_get_weights" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = (CvANN_MLP *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_get_weights" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (double *)(arg1)->get_weights(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvANN_MLP_members[] = { -{"create",_wrap_CvANN_MLP_create,0,0,0,0}, -{"train",_wrap_CvANN_MLP_train,0,0,0,0}, -{"predict",_wrap_CvANN_MLP_predict,0,0,0,0}, -{"clear",_wrap_CvANN_MLP_clear,0,0,0,0}, -{"read",_wrap_CvANN_MLP_read,0,0,0,0}, -{"write",_wrap_CvANN_MLP_write,0,0,0,0}, -{"get_layer_count",_wrap_CvANN_MLP_get_layer_count,0,0,0,0}, -{"get_layer_sizes",_wrap_CvANN_MLP_get_layer_sizes,0,0,0,0}, -{"get_weights",_wrap_CvANN_MLP_get_weights,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvANN_MLP_base_names[] = {"_p_CvStatModel",0}; -static const swig_type_info *swig_CvANN_MLP_base[] = {0,0}; -static swig_octave_class _wrap_class_CvANN_MLP = {"CvANN_MLP", &SWIGTYPE_p_CvANN_MLP,0,_wrap_new_CvANN_MLP,0,_wrap_delete_CvANN_MLP,swig_CvANN_MLP_members,swig_CvANN_MLP_base_names,swig_CvANN_MLP_base }; - -static octave_value_list _wrap_cvRandMVNormal (const octave_value_list& args, int nargout) { - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvRNG *arg4 = (CvRNG *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *vptr4 ; - CvRNG_Wrapper *wrapper4 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvRandMVNormal",args.length(),4,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRandMVNormal" "', argument " "1"" of type '" "CvMat *""'"); - } - arg1 = (CvMat *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRandMVNormal" "', argument " "2"" of type '" "CvMat *""'"); - } - arg2 = (CvMat *)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvRandMVNormal" "', argument " "3"" of type '" "CvMat *""'"); - } - arg3 = (CvMat *)(argp3); - if (3ptr(); - } - } - { - try { - cvRandMVNormal(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_cvRandGaussMixture (const octave_value_list& args, int nargout) { - CvMat **arg1 ; - CvMat **arg2 ; - float *arg3 ; - int arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("cvRandGaussMixture",args.length(),6,5,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRandGaussMixture" "', argument " "1"" of type '" "CvMat *[]""'"); - } - arg1 = (CvMat **)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRandGaussMixture" "', argument " "2"" of type '" "CvMat *[]""'"); - } - arg2 = (CvMat **)(argp2); - res3 = SWIG_ConvertPtr(args(2), &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvRandGaussMixture" "', argument " "3"" of type '" "float []""'"); - } - arg3 = (float *)(argp3); - ecode4 = SWIG_AsVal_int(args(3), &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvRandGaussMixture" "', argument " "4"" of type '" "int""'"); - } - arg4 = (int)(val4); - res5 = SWIG_ConvertPtr(args(4), &argp5,SWIGTYPE_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvRandGaussMixture" "', argument " "5"" of type '" "CvMat *""'"); - } - arg5 = (CvMat *)(argp5); - if (5train_sample_part_mode = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_train_sample_part_mode_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTrainTestSplit_train_sample_part_mode_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_mode_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - result = (int) ((arg1)->train_sample_part_mode); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_class_part_mode_set (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_mode_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_mode_set" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_class_part_mode_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->class_part_mode = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_class_part_mode_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_mode_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_mode_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - result = (int) ((arg1)->class_part_mode); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_mix_set (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTrainTestSplit_mix_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_mix_set" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - ecode2 = SWIG_AsVal_bool(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_mix_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = (bool)(val2); - if (arg1) (arg1)->mix = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_mix_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - bool result; - - if (!SWIG_check_num_args("CvTrainTestSplit_mix_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_mix_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - result = (bool) ((arg1)->mix); - _outv = SWIG_From_bool((bool)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_class_part_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTrainTestSplit_class_part *result = 0 ; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - result = (CvTrainTestSplit_class_part *) ((arg1)->class_part); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_train_sample_part_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTrainTestSplit_train_sample_part *result = 0 ; - - if (!SWIG_check_num_args("CvTrainTestSplit_train_sample_part_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - result = (CvTrainTestSplit_train_sample_part *)& ((arg1)->train_sample_part); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTrainTestSplit (const octave_value_list& args, int nargout) { - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTrainTestSplit",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTrainTestSplit" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = (CvTrainTestSplit *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTrainTestSplit_members[] = { -{"train_sample_part_mode",0,_wrap_CvTrainTestSplit_train_sample_part_mode_get,_wrap_CvTrainTestSplit_train_sample_part_mode_set,0,0}, -{"class_part_mode",0,_wrap_CvTrainTestSplit_class_part_mode_get,_wrap_CvTrainTestSplit_class_part_mode_set,0,0}, -{"mix",0,_wrap_CvTrainTestSplit_mix_get,_wrap_CvTrainTestSplit_mix_set,0,0}, -{"class_part",0,_wrap_CvTrainTestSplit_class_part_get,octave_set_immutable,0,0}, -{"train_sample_part",0,_wrap_CvTrainTestSplit_train_sample_part_get,octave_set_immutable,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTrainTestSplit_base_names[] = {0}; -static const swig_type_info *swig_CvTrainTestSplit_base[] = {0}; -static swig_octave_class _wrap_class_CvTrainTestSplit = {"CvTrainTestSplit", &SWIGTYPE_p_CvTrainTestSplit,0,_wrap_new_CvTrainTestSplit,0,_wrap_delete_CvTrainTestSplit,swig_CvTrainTestSplit_members,swig_CvTrainTestSplit_base_names,swig_CvTrainTestSplit_base }; - -static octave_value_list _wrap_CvTrainTestSplit_class_part_count_set (const octave_value_list& args, int nargout) { - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_count_set" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = (CvTrainTestSplit_class_part *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTrainTestSplit_class_part_count_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = (int *)(argp2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_class_part_count_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int *result = 0 ; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_count_get" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = (CvTrainTestSplit_class_part *)(argp1); - result = (int *) ((arg1)->count); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_class_part_portion_set (const octave_value_list& args, int nargout) { - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_portion_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_portion_set" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = (CvTrainTestSplit_class_part *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTrainTestSplit_class_part_portion_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = (float *)(argp2); - if (arg1) (arg1)->portion = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_class_part_portion_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float *result = 0 ; - - if (!SWIG_check_num_args("CvTrainTestSplit_class_part_portion_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_portion_get" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = (CvTrainTestSplit_class_part *)(argp1); - result = (float *) ((arg1)->portion); - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTrainTestSplit_class_part (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTrainTestSplit_class_part *result = 0 ; - - if (!SWIG_check_num_args("new_CvTrainTestSplit_class_part",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTrainTestSplit_class_part *)new CvTrainTestSplit_class_part(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_class_part, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTrainTestSplit_class_part (const octave_value_list& args, int nargout) { - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTrainTestSplit_class_part",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTrainTestSplit_class_part" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = (CvTrainTestSplit_class_part *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTrainTestSplit_class_part_members[] = { -{"count",0,_wrap_CvTrainTestSplit_class_part_count_get,_wrap_CvTrainTestSplit_class_part_count_set,0,0}, -{"portion",0,_wrap_CvTrainTestSplit_class_part_portion_get,_wrap_CvTrainTestSplit_class_part_portion_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTrainTestSplit_class_part_base_names[] = {0}; -static const swig_type_info *swig_CvTrainTestSplit_class_part_base[] = {0}; -static swig_octave_class _wrap_class_CvTrainTestSplit_class_part = {"CvTrainTestSplit_class_part", &SWIGTYPE_p_CvTrainTestSplit_class_part,0,_wrap_new_CvTrainTestSplit_class_part,0,_wrap_delete_CvTrainTestSplit_class_part,swig_CvTrainTestSplit_class_part_members,swig_CvTrainTestSplit_class_part_base_names,swig_CvTrainTestSplit_class_part_base }; - -static octave_value_list _wrap_CvTrainTestSplit_train_sample_part_count_set (const octave_value_list& args, int nargout) { - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTrainTestSplit_train_sample_part_count_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_count_set" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = (CvTrainTestSplit_train_sample_part *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_train_sample_part_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - if (arg1) (arg1)->count = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_train_sample_part_count_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvTrainTestSplit_train_sample_part_count_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_count_get" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = (CvTrainTestSplit_train_sample_part *)(argp1); - result = (int) ((arg1)->count); - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_train_sample_part_portion_set (const octave_value_list& args, int nargout) { - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvTrainTestSplit_train_sample_part_portion_set",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_portion_set" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = (CvTrainTestSplit_train_sample_part *)(argp1); - ecode2 = SWIG_AsVal_float(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_train_sample_part_portion_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = (float)(val2); - if (arg1) (arg1)->portion = arg2; - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvTrainTestSplit_train_sample_part_portion_get (const octave_value_list& args, int nargout) { - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - float result; - - if (!SWIG_check_num_args("CvTrainTestSplit_train_sample_part_portion_get",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_portion_get" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = (CvTrainTestSplit_train_sample_part *)(argp1); - result = (float) ((arg1)->portion); - _outv = SWIG_From_float((float)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_new_CvTrainTestSplit_train_sample_part (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvTrainTestSplit_train_sample_part *result = 0 ; - - if (!SWIG_check_num_args("new_CvTrainTestSplit_train_sample_part",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvTrainTestSplit_train_sample_part *)new CvTrainTestSplit_train_sample_part(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvTrainTestSplit_train_sample_part (const octave_value_list& args, int nargout) { - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvTrainTestSplit_train_sample_part",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTrainTestSplit_train_sample_part" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = (CvTrainTestSplit_train_sample_part *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvTrainTestSplit_train_sample_part_members[] = { -{"count",0,_wrap_CvTrainTestSplit_train_sample_part_count_get,_wrap_CvTrainTestSplit_train_sample_part_count_set,0,0}, -{"portion",0,_wrap_CvTrainTestSplit_train_sample_part_portion_get,_wrap_CvTrainTestSplit_train_sample_part_portion_set,0,0}, -{0,0,0,0} -}; -static const char *swig_CvTrainTestSplit_train_sample_part_base_names[] = {0}; -static const swig_type_info *swig_CvTrainTestSplit_train_sample_part_base[] = {0}; -static swig_octave_class _wrap_class_CvTrainTestSplit_train_sample_part = {"CvTrainTestSplit_train_sample_part", &SWIGTYPE_p_CvTrainTestSplit_train_sample_part,0,_wrap_new_CvTrainTestSplit_train_sample_part,0,_wrap_delete_CvTrainTestSplit_train_sample_part,swig_CvTrainTestSplit_train_sample_part_members,swig_CvTrainTestSplit_train_sample_part_base_names,swig_CvTrainTestSplit_train_sample_part_base }; - -static octave_value_list _wrap_new_CvMLData (const octave_value_list& args, int nargout) { - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMLData *result = 0 ; - - if (!SWIG_check_num_args("new_CvMLData",args.length(),0,0,0)) { - SWIG_fail; - } - { - try { - result = (CvMLData *)new CvMLData(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMLData, 1 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_delete_CvMLData (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("delete_CvMLData",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMLData" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_read_csv (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMLData_read_csv",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_read_csv" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMLData_read_csv" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - result = (int)(arg1)->read_csv((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_values (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_values",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_values" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_values(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_responses (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_responses",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_responses" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_responses(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_missing (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_missing",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_missing" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_missing(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_set_response_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_set_response_idx",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_response_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_set_response_idx" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - (arg1)->set_response_idx(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_response_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMLData_get_response_idx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_response_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (int)(arg1)->get_response_idx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_train_sample_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_train_sample_idx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_train_sample_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_train_sample_idx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_test_sample_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_test_sample_idx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_test_sample_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_test_sample_idx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_mix_train_and_test_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_mix_train_and_test_idx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_mix_train_and_test_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - (arg1)->mix_train_and_test_idx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_set_train_test_split (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - CvTrainTestSplit *arg2 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_set_train_test_split",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_train_test_split" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - res2 = SWIG_ConvertPtr(args(1), &argp2,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMLData_set_train_test_split" "', argument " "2"" of type '" "CvTrainTestSplit const *""'"); - } - arg2 = (CvTrainTestSplit *)(argp2); - { - try { - (arg1)->set_train_test_split((CvTrainTestSplit const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_var_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_var_idx",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_var_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_idx(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_chahge_var_idx (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - bool val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_chahge_var_idx",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_chahge_var_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_chahge_var_idx" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_bool(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMLData_chahge_var_idx" "', argument " "3"" of type '" "bool""'"); - } - arg3 = (bool)(val3); - { - try { - (arg1)->chahge_var_idx(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_var_types (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - CvMat *result = 0 ; - - if (!SWIG_check_num_args("CvMLData_get_var_types",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_var_types" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_types(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_var_type (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - int result; - - if (!SWIG_check_num_args("CvMLData_get_var_type",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_var_type" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_get_var_type" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - { - try { - result = (int)(arg1)->get_var_type(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_int((int)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_set_var_types (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_set_var_types",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_var_types" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - res2 = SWIG_AsCharPtrAndSize(args(1), &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMLData_set_var_types" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = (char *)(buf2); - { - try { - (arg1)->set_var_types((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_change_var_type (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_change_var_type",args.length(),3,3,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_change_var_type" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - ecode2 = SWIG_AsVal_int(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_change_var_type" "', argument " "2"" of type '" "int""'"); - } - arg2 = (int)(val2); - ecode3 = SWIG_AsVal_int(args(2), &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMLData_change_var_type" "', argument " "3"" of type '" "int""'"); - } - arg3 = (int)(val3); - { - try { - (arg1)->change_var_type(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_set_delimiter (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - char arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - char val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_set_delimiter",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_delimiter" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - ecode2 = SWIG_AsVal_char(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_set_delimiter" "', argument " "2"" of type '" "char""'"); - } - arg2 = (char)(val2); - { - try { - (arg1)->set_delimiter(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_delimiter (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char result; - - if (!SWIG_check_num_args("CvMLData_get_delimiter",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_delimiter" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (char)(arg1)->get_delimiter(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_char((char)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_set_miss_ch (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - char arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - char val2 ; - int ecode2 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - - if (!SWIG_check_num_args("CvMLData_set_miss_ch",args.length(),2,2,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_miss_ch" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - ecode2 = SWIG_AsVal_char(args(1), &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_set_miss_ch" "', argument " "2"" of type '" "char""'"); - } - arg2 = (char)(val2); - { - try { - (arg1)->set_miss_ch(arg2); - } - catch (...) - { - SWIG_fail; - } - } - _outv = octave_value(); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static octave_value_list _wrap_CvMLData_get_miss_ch (const octave_value_list& args, int nargout) { - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - octave_value_list _out; - octave_value_list *_outp=&_out; - octave_value _outv; - char result; - - if (!SWIG_check_num_args("CvMLData_get_miss_ch",args.length(),1,1,0)) { - SWIG_fail; - } - res1 = SWIG_ConvertPtr(args(0), &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_miss_ch" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = (CvMLData *)(argp1); - { - try { - result = (char)(arg1)->get_miss_ch(); - } - catch (...) - { - SWIG_fail; - } - } - _outv = SWIG_From_char((char)(result)); - if (_outv.is_defined()) _outp = SWIG_Octave_AppendOutput(_outp, _outv); -fail: - return _out; -} - - -static swig_octave_member swig_CvMLData_members[] = { -{"read_csv",_wrap_CvMLData_read_csv,0,0,0,0}, -{"get_values",_wrap_CvMLData_get_values,0,0,0,0}, -{"get_responses",_wrap_CvMLData_get_responses,0,0,0,0}, -{"get_missing",_wrap_CvMLData_get_missing,0,0,0,0}, -{"set_response_idx",_wrap_CvMLData_set_response_idx,0,0,0,0}, -{"get_response_idx",_wrap_CvMLData_get_response_idx,0,0,0,0}, -{"get_train_sample_idx",_wrap_CvMLData_get_train_sample_idx,0,0,0,0}, -{"get_test_sample_idx",_wrap_CvMLData_get_test_sample_idx,0,0,0,0}, -{"mix_train_and_test_idx",_wrap_CvMLData_mix_train_and_test_idx,0,0,0,0}, -{"set_train_test_split",_wrap_CvMLData_set_train_test_split,0,0,0,0}, -{"get_var_idx",_wrap_CvMLData_get_var_idx,0,0,0,0}, -{"chahge_var_idx",_wrap_CvMLData_chahge_var_idx,0,0,0,0}, -{"get_var_types",_wrap_CvMLData_get_var_types,0,0,0,0}, -{"get_var_type",_wrap_CvMLData_get_var_type,0,0,0,0}, -{"set_var_types",_wrap_CvMLData_set_var_types,0,0,0,0}, -{"change_var_type",_wrap_CvMLData_change_var_type,0,0,0,0}, -{"set_delimiter",_wrap_CvMLData_set_delimiter,0,0,0,0}, -{"get_delimiter",_wrap_CvMLData_get_delimiter,0,0,0,0}, -{"set_miss_ch",_wrap_CvMLData_set_miss_ch,0,0,0,0}, -{"get_miss_ch",_wrap_CvMLData_get_miss_ch,0,0,0,0}, -{0,0,0,0} -}; -static const char *swig_CvMLData_base_names[] = {0}; -static const swig_type_info *swig_CvMLData_base[] = {0}; -static swig_octave_class _wrap_class_CvMLData = {"CvMLData", &SWIGTYPE_p_CvMLData,0,_wrap_new_CvMLData,0,_wrap_delete_CvMLData,swig_CvMLData_members,swig_CvMLData_base_names,swig_CvMLData_base }; - - -static const struct swig_octave_member swig_globals[] = { -{"new_CvRNG_Wrapper",_wrap_new_CvRNG_Wrapper,0,0,2,0}, -{"CvRNG_Wrapper_ptr",_wrap_CvRNG_Wrapper_ptr,0,0,2,0}, -{"CvRNG_Wrapper_ref",_wrap_CvRNG_Wrapper_ref,0,0,2,0}, -{"CvRNG_Wrapper___eq__",_wrap_CvRNG_Wrapper___eq__,0,0,2,0}, -{"CvRNG_Wrapper___ne__",_wrap_CvRNG_Wrapper___ne__,0,0,2,0}, -{"delete_CvRNG_Wrapper",_wrap_delete_CvRNG_Wrapper,0,0,2,0}, -{"new_CvSubdiv2DEdge_Wrapper",_wrap_new_CvSubdiv2DEdge_Wrapper,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper_ptr",_wrap_CvSubdiv2DEdge_Wrapper_ptr,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper_ref",_wrap_CvSubdiv2DEdge_Wrapper_ref,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper___eq__",_wrap_CvSubdiv2DEdge_Wrapper___eq__,0,0,2,0}, -{"CvSubdiv2DEdge_Wrapper___ne__",_wrap_CvSubdiv2DEdge_Wrapper___ne__,0,0,2,0}, -{"delete_CvSubdiv2DEdge_Wrapper",_wrap_delete_CvSubdiv2DEdge_Wrapper,0,0,2,0}, -{"CvVectors_type_set",_wrap_CvVectors_type_set,0,0,2,0}, -{"CvVectors_type_get",_wrap_CvVectors_type_get,0,0,2,0}, -{"CvVectors_dims_set",_wrap_CvVectors_dims_set,0,0,2,0}, -{"CvVectors_dims_get",_wrap_CvVectors_dims_get,0,0,2,0}, -{"CvVectors_count_set",_wrap_CvVectors_count_set,0,0,2,0}, -{"CvVectors_count_get",_wrap_CvVectors_count_get,0,0,2,0}, -{"CvVectors_next_set",_wrap_CvVectors_next_set,0,0,2,0}, -{"CvVectors_next_get",_wrap_CvVectors_next_get,0,0,2,0}, -{"CvVectors_data_get",_wrap_CvVectors_data_get,0,0,2,0}, -{"new_CvVectors",_wrap_new_CvVectors,0,0,2,0}, -{"delete_CvVectors",_wrap_delete_CvVectors,0,0,2,0}, -{"CvVectors_data_ptr_set",_wrap_CvVectors_data_ptr_set,0,0,2,0}, -{"CvVectors_data_ptr_get",_wrap_CvVectors_data_ptr_get,0,0,2,0}, -{"CvVectors_data_fl_set",_wrap_CvVectors_data_fl_set,0,0,2,0}, -{"CvVectors_data_fl_get",_wrap_CvVectors_data_fl_get,0,0,2,0}, -{"CvVectors_data_db_set",_wrap_CvVectors_data_db_set,0,0,2,0}, -{"CvVectors_data_db_get",_wrap_CvVectors_data_db_get,0,0,2,0}, -{"new_CvVectors_data",_wrap_new_CvVectors_data,0,0,2,0}, -{"delete_CvVectors_data",_wrap_delete_CvVectors_data,0,0,2,0}, -{"new_CvStatModel",_wrap_new_CvStatModel,0,0,2,0}, -{"delete_CvStatModel",_wrap_delete_CvStatModel,0,0,2,0}, -{"CvStatModel_clear",_wrap_CvStatModel_clear,0,0,2,0}, -{"CvStatModel_save",_wrap_CvStatModel_save,0,0,2,0}, -{"CvStatModel_load",_wrap_CvStatModel_load,0,0,2,0}, -{"CvStatModel_write",_wrap_CvStatModel_write,0,0,2,0}, -{"CvStatModel_read",_wrap_CvStatModel_read,0,0,2,0}, -{"new_CvParamGrid",_wrap_new_CvParamGrid,0,0,2,0}, -{"CvParamGrid_check",_wrap_CvParamGrid_check,0,0,2,0}, -{"CvParamGrid_min_val_set",_wrap_CvParamGrid_min_val_set,0,0,2,0}, -{"CvParamGrid_min_val_get",_wrap_CvParamGrid_min_val_get,0,0,2,0}, -{"CvParamGrid_max_val_set",_wrap_CvParamGrid_max_val_set,0,0,2,0}, -{"CvParamGrid_max_val_get",_wrap_CvParamGrid_max_val_get,0,0,2,0}, -{"CvParamGrid_step_set",_wrap_CvParamGrid_step_set,0,0,2,0}, -{"CvParamGrid_step_get",_wrap_CvParamGrid_step_get,0,0,2,0}, -{"delete_CvParamGrid",_wrap_delete_CvParamGrid,0,0,2,0}, -{"delete_CvNormalBayesClassifier",_wrap_delete_CvNormalBayesClassifier,0,0,2,0}, -{"new_CvNormalBayesClassifier",_wrap_new_CvNormalBayesClassifier,0,0,2,0}, -{"CvNormalBayesClassifier_train",_wrap_CvNormalBayesClassifier_train,0,0,2,0}, -{"CvNormalBayesClassifier_predict",_wrap_CvNormalBayesClassifier_predict,0,0,2,0}, -{"CvNormalBayesClassifier_clear",_wrap_CvNormalBayesClassifier_clear,0,0,2,0}, -{"CvNormalBayesClassifier_write",_wrap_CvNormalBayesClassifier_write,0,0,2,0}, -{"CvNormalBayesClassifier_read",_wrap_CvNormalBayesClassifier_read,0,0,2,0}, -{"delete_CvKNearest",_wrap_delete_CvKNearest,0,0,2,0}, -{"new_CvKNearest",_wrap_new_CvKNearest,0,0,2,0}, -{"CvKNearest_train",_wrap_CvKNearest_train,0,0,2,0}, -{"CvKNearest_find_nearest",_wrap_CvKNearest_find_nearest,0,0,2,0}, -{"CvKNearest_clear",_wrap_CvKNearest_clear,0,0,2,0}, -{"CvKNearest_get_max_k",_wrap_CvKNearest_get_max_k,0,0,2,0}, -{"CvKNearest_get_var_count",_wrap_CvKNearest_get_var_count,0,0,2,0}, -{"CvKNearest_get_sample_count",_wrap_CvKNearest_get_sample_count,0,0,2,0}, -{"CvKNearest_is_regression",_wrap_CvKNearest_is_regression,0,0,2,0}, -{"new_CvSVMParams",_wrap_new_CvSVMParams,0,0,2,0}, -{"CvSVMParams_svm_type_set",_wrap_CvSVMParams_svm_type_set,0,0,2,0}, -{"CvSVMParams_svm_type_get",_wrap_CvSVMParams_svm_type_get,0,0,2,0}, -{"CvSVMParams_kernel_type_set",_wrap_CvSVMParams_kernel_type_set,0,0,2,0}, -{"CvSVMParams_kernel_type_get",_wrap_CvSVMParams_kernel_type_get,0,0,2,0}, -{"CvSVMParams_degree_set",_wrap_CvSVMParams_degree_set,0,0,2,0}, -{"CvSVMParams_degree_get",_wrap_CvSVMParams_degree_get,0,0,2,0}, -{"CvSVMParams_gamma_set",_wrap_CvSVMParams_gamma_set,0,0,2,0}, -{"CvSVMParams_gamma_get",_wrap_CvSVMParams_gamma_get,0,0,2,0}, -{"CvSVMParams_coef0_set",_wrap_CvSVMParams_coef0_set,0,0,2,0}, -{"CvSVMParams_coef0_get",_wrap_CvSVMParams_coef0_get,0,0,2,0}, -{"CvSVMParams_C_set",_wrap_CvSVMParams_C_set,0,0,2,0}, -{"CvSVMParams_C_get",_wrap_CvSVMParams_C_get,0,0,2,0}, -{"CvSVMParams_nu_set",_wrap_CvSVMParams_nu_set,0,0,2,0}, -{"CvSVMParams_nu_get",_wrap_CvSVMParams_nu_get,0,0,2,0}, -{"CvSVMParams_p_set",_wrap_CvSVMParams_p_set,0,0,2,0}, -{"CvSVMParams_p_get",_wrap_CvSVMParams_p_get,0,0,2,0}, -{"CvSVMParams_class_weights_set",_wrap_CvSVMParams_class_weights_set,0,0,2,0}, -{"CvSVMParams_class_weights_get",_wrap_CvSVMParams_class_weights_get,0,0,2,0}, -{"CvSVMParams_term_crit_set",_wrap_CvSVMParams_term_crit_set,0,0,2,0}, -{"CvSVMParams_term_crit_get",_wrap_CvSVMParams_term_crit_get,0,0,2,0}, -{"delete_CvSVMParams",_wrap_delete_CvSVMParams,0,0,2,0}, -{"new_CvSVMKernel",_wrap_new_CvSVMKernel,0,0,2,0}, -{"CvSVMKernel_create",_wrap_CvSVMKernel_create,0,0,2,0}, -{"delete_CvSVMKernel",_wrap_delete_CvSVMKernel,0,0,2,0}, -{"CvSVMKernel_clear",_wrap_CvSVMKernel_clear,0,0,2,0}, -{"CvSVMKernel_calc",_wrap_CvSVMKernel_calc,0,0,2,0}, -{"CvSVMKernel_params_set",_wrap_CvSVMKernel_params_set,0,0,2,0}, -{"CvSVMKernel_params_get",_wrap_CvSVMKernel_params_get,0,0,2,0}, -{"CvSVMKernel_calc_func_set",_wrap_CvSVMKernel_calc_func_set,0,0,2,0}, -{"CvSVMKernel_calc_func_get",_wrap_CvSVMKernel_calc_func_get,0,0,2,0}, -{"CvSVMKernel_calc_non_rbf_base",_wrap_CvSVMKernel_calc_non_rbf_base,0,0,2,0}, -{"CvSVMKernel_calc_linear",_wrap_CvSVMKernel_calc_linear,0,0,2,0}, -{"CvSVMKernel_calc_rbf",_wrap_CvSVMKernel_calc_rbf,0,0,2,0}, -{"CvSVMKernel_calc_poly",_wrap_CvSVMKernel_calc_poly,0,0,2,0}, -{"CvSVMKernel_calc_sigmoid",_wrap_CvSVMKernel_calc_sigmoid,0,0,2,0}, -{"CvSVMKernelRow_prev_set",_wrap_CvSVMKernelRow_prev_set,0,0,2,0}, -{"CvSVMKernelRow_prev_get",_wrap_CvSVMKernelRow_prev_get,0,0,2,0}, -{"CvSVMKernelRow_next_set",_wrap_CvSVMKernelRow_next_set,0,0,2,0}, -{"CvSVMKernelRow_next_get",_wrap_CvSVMKernelRow_next_get,0,0,2,0}, -{"CvSVMKernelRow_data_set",_wrap_CvSVMKernelRow_data_set,0,0,2,0}, -{"CvSVMKernelRow_data_get",_wrap_CvSVMKernelRow_data_get,0,0,2,0}, -{"new_CvSVMKernelRow",_wrap_new_CvSVMKernelRow,0,0,2,0}, -{"delete_CvSVMKernelRow",_wrap_delete_CvSVMKernelRow,0,0,2,0}, -{"CvSVMSolutionInfo_obj_set",_wrap_CvSVMSolutionInfo_obj_set,0,0,2,0}, -{"CvSVMSolutionInfo_obj_get",_wrap_CvSVMSolutionInfo_obj_get,0,0,2,0}, -{"CvSVMSolutionInfo_rho_set",_wrap_CvSVMSolutionInfo_rho_set,0,0,2,0}, -{"CvSVMSolutionInfo_rho_get",_wrap_CvSVMSolutionInfo_rho_get,0,0,2,0}, -{"CvSVMSolutionInfo_upper_bound_p_set",_wrap_CvSVMSolutionInfo_upper_bound_p_set,0,0,2,0}, -{"CvSVMSolutionInfo_upper_bound_p_get",_wrap_CvSVMSolutionInfo_upper_bound_p_get,0,0,2,0}, -{"CvSVMSolutionInfo_upper_bound_n_set",_wrap_CvSVMSolutionInfo_upper_bound_n_set,0,0,2,0}, -{"CvSVMSolutionInfo_upper_bound_n_get",_wrap_CvSVMSolutionInfo_upper_bound_n_get,0,0,2,0}, -{"CvSVMSolutionInfo_r_set",_wrap_CvSVMSolutionInfo_r_set,0,0,2,0}, -{"CvSVMSolutionInfo_r_get",_wrap_CvSVMSolutionInfo_r_get,0,0,2,0}, -{"new_CvSVMSolutionInfo",_wrap_new_CvSVMSolutionInfo,0,0,2,0}, -{"delete_CvSVMSolutionInfo",_wrap_delete_CvSVMSolutionInfo,0,0,2,0}, -{"new_CvSVMSolver",_wrap_new_CvSVMSolver,0,0,2,0}, -{"CvSVMSolver_create",_wrap_CvSVMSolver_create,0,0,2,0}, -{"delete_CvSVMSolver",_wrap_delete_CvSVMSolver,0,0,2,0}, -{"CvSVMSolver_clear",_wrap_CvSVMSolver_clear,0,0,2,0}, -{"CvSVMSolver_solve_generic",_wrap_CvSVMSolver_solve_generic,0,0,2,0}, -{"CvSVMSolver_solve_c_svc",_wrap_CvSVMSolver_solve_c_svc,0,0,2,0}, -{"CvSVMSolver_solve_nu_svc",_wrap_CvSVMSolver_solve_nu_svc,0,0,2,0}, -{"CvSVMSolver_solve_one_class",_wrap_CvSVMSolver_solve_one_class,0,0,2,0}, -{"CvSVMSolver_solve_eps_svr",_wrap_CvSVMSolver_solve_eps_svr,0,0,2,0}, -{"CvSVMSolver_solve_nu_svr",_wrap_CvSVMSolver_solve_nu_svr,0,0,2,0}, -{"CvSVMSolver_get_row_base",_wrap_CvSVMSolver_get_row_base,0,0,2,0}, -{"CvSVMSolver_get_row",_wrap_CvSVMSolver_get_row,0,0,2,0}, -{"CvSVMSolver_sample_count_set",_wrap_CvSVMSolver_sample_count_set,0,0,2,0}, -{"CvSVMSolver_sample_count_get",_wrap_CvSVMSolver_sample_count_get,0,0,2,0}, -{"CvSVMSolver_var_count_set",_wrap_CvSVMSolver_var_count_set,0,0,2,0}, -{"CvSVMSolver_var_count_get",_wrap_CvSVMSolver_var_count_get,0,0,2,0}, -{"CvSVMSolver_cache_size_set",_wrap_CvSVMSolver_cache_size_set,0,0,2,0}, -{"CvSVMSolver_cache_size_get",_wrap_CvSVMSolver_cache_size_get,0,0,2,0}, -{"CvSVMSolver_cache_line_size_set",_wrap_CvSVMSolver_cache_line_size_set,0,0,2,0}, -{"CvSVMSolver_cache_line_size_get",_wrap_CvSVMSolver_cache_line_size_get,0,0,2,0}, -{"CvSVMSolver_samples_set",_wrap_CvSVMSolver_samples_set,0,0,2,0}, -{"CvSVMSolver_samples_get",_wrap_CvSVMSolver_samples_get,0,0,2,0}, -{"CvSVMSolver_params_set",_wrap_CvSVMSolver_params_set,0,0,2,0}, -{"CvSVMSolver_params_get",_wrap_CvSVMSolver_params_get,0,0,2,0}, -{"CvSVMSolver_storage_set",_wrap_CvSVMSolver_storage_set,0,0,2,0}, -{"CvSVMSolver_storage_get",_wrap_CvSVMSolver_storage_get,0,0,2,0}, -{"CvSVMSolver_lru_list_set",_wrap_CvSVMSolver_lru_list_set,0,0,2,0}, -{"CvSVMSolver_lru_list_get",_wrap_CvSVMSolver_lru_list_get,0,0,2,0}, -{"CvSVMSolver_rows_set",_wrap_CvSVMSolver_rows_set,0,0,2,0}, -{"CvSVMSolver_rows_get",_wrap_CvSVMSolver_rows_get,0,0,2,0}, -{"CvSVMSolver_alpha_count_set",_wrap_CvSVMSolver_alpha_count_set,0,0,2,0}, -{"CvSVMSolver_alpha_count_get",_wrap_CvSVMSolver_alpha_count_get,0,0,2,0}, -{"CvSVMSolver_G_set",_wrap_CvSVMSolver_G_set,0,0,2,0}, -{"CvSVMSolver_G_get",_wrap_CvSVMSolver_G_get,0,0,2,0}, -{"CvSVMSolver_alpha_set",_wrap_CvSVMSolver_alpha_set,0,0,2,0}, -{"CvSVMSolver_alpha_get",_wrap_CvSVMSolver_alpha_get,0,0,2,0}, -{"CvSVMSolver_alpha_status_set",_wrap_CvSVMSolver_alpha_status_set,0,0,2,0}, -{"CvSVMSolver_alpha_status_get",_wrap_CvSVMSolver_alpha_status_get,0,0,2,0}, -{"CvSVMSolver_y_set",_wrap_CvSVMSolver_y_set,0,0,2,0}, -{"CvSVMSolver_y_get",_wrap_CvSVMSolver_y_get,0,0,2,0}, -{"CvSVMSolver_b_set",_wrap_CvSVMSolver_b_set,0,0,2,0}, -{"CvSVMSolver_b_get",_wrap_CvSVMSolver_b_get,0,0,2,0}, -{"CvSVMSolver_buf_set",_wrap_CvSVMSolver_buf_set,0,0,2,0}, -{"CvSVMSolver_buf_get",_wrap_CvSVMSolver_buf_get,0,0,2,0}, -{"CvSVMSolver_eps_set",_wrap_CvSVMSolver_eps_set,0,0,2,0}, -{"CvSVMSolver_eps_get",_wrap_CvSVMSolver_eps_get,0,0,2,0}, -{"CvSVMSolver_max_iter_set",_wrap_CvSVMSolver_max_iter_set,0,0,2,0}, -{"CvSVMSolver_max_iter_get",_wrap_CvSVMSolver_max_iter_get,0,0,2,0}, -{"CvSVMSolver_C_set",_wrap_CvSVMSolver_C_set,0,0,2,0}, -{"CvSVMSolver_C_get",_wrap_CvSVMSolver_C_get,0,0,2,0}, -{"CvSVMSolver_kernel_set",_wrap_CvSVMSolver_kernel_set,0,0,2,0}, -{"CvSVMSolver_kernel_get",_wrap_CvSVMSolver_kernel_get,0,0,2,0}, -{"CvSVMSolver_select_working_set_func_set",_wrap_CvSVMSolver_select_working_set_func_set,0,0,2,0}, -{"CvSVMSolver_select_working_set_func_get",_wrap_CvSVMSolver_select_working_set_func_get,0,0,2,0}, -{"CvSVMSolver_calc_rho_func_set",_wrap_CvSVMSolver_calc_rho_func_set,0,0,2,0}, -{"CvSVMSolver_calc_rho_func_get",_wrap_CvSVMSolver_calc_rho_func_get,0,0,2,0}, -{"CvSVMSolver_get_row_func_set",_wrap_CvSVMSolver_get_row_func_set,0,0,2,0}, -{"CvSVMSolver_get_row_func_get",_wrap_CvSVMSolver_get_row_func_get,0,0,2,0}, -{"CvSVMSolver_select_working_set",_wrap_CvSVMSolver_select_working_set,0,0,2,0}, -{"CvSVMSolver_select_working_set_nu_svm",_wrap_CvSVMSolver_select_working_set_nu_svm,0,0,2,0}, -{"CvSVMSolver_calc_rho",_wrap_CvSVMSolver_calc_rho,0,0,2,0}, -{"CvSVMSolver_calc_rho_nu_svm",_wrap_CvSVMSolver_calc_rho_nu_svm,0,0,2,0}, -{"CvSVMSolver_get_row_svc",_wrap_CvSVMSolver_get_row_svc,0,0,2,0}, -{"CvSVMSolver_get_row_one_class",_wrap_CvSVMSolver_get_row_one_class,0,0,2,0}, -{"CvSVMSolver_get_row_svr",_wrap_CvSVMSolver_get_row_svr,0,0,2,0}, -{"CvSVMDecisionFunc_rho_set",_wrap_CvSVMDecisionFunc_rho_set,0,0,2,0}, -{"CvSVMDecisionFunc_rho_get",_wrap_CvSVMDecisionFunc_rho_get,0,0,2,0}, -{"CvSVMDecisionFunc_sv_count_set",_wrap_CvSVMDecisionFunc_sv_count_set,0,0,2,0}, -{"CvSVMDecisionFunc_sv_count_get",_wrap_CvSVMDecisionFunc_sv_count_get,0,0,2,0}, -{"CvSVMDecisionFunc_alpha_set",_wrap_CvSVMDecisionFunc_alpha_set,0,0,2,0}, -{"CvSVMDecisionFunc_alpha_get",_wrap_CvSVMDecisionFunc_alpha_get,0,0,2,0}, -{"CvSVMDecisionFunc_sv_index_set",_wrap_CvSVMDecisionFunc_sv_index_set,0,0,2,0}, -{"CvSVMDecisionFunc_sv_index_get",_wrap_CvSVMDecisionFunc_sv_index_get,0,0,2,0}, -{"new_CvSVMDecisionFunc",_wrap_new_CvSVMDecisionFunc,0,0,2,0}, -{"delete_CvSVMDecisionFunc",_wrap_delete_CvSVMDecisionFunc,0,0,2,0}, -{"delete_CvSVM",_wrap_delete_CvSVM,0,0,2,0}, -{"new_CvSVM",_wrap_new_CvSVM,0,0,2,0}, -{"CvSVM_train",_wrap_CvSVM_train,0,0,2,0}, -{"CvSVM_train_auto",_wrap_CvSVM_train_auto,0,0,2,0}, -{"CvSVM_predict",_wrap_CvSVM_predict,0,0,2,0}, -{"CvSVM_get_support_vector_count",_wrap_CvSVM_get_support_vector_count,0,0,2,0}, -{"CvSVM_get_support_vector",_wrap_CvSVM_get_support_vector,0,0,2,0}, -{"CvSVM_get_params",_wrap_CvSVM_get_params,0,0,2,0}, -{"CvSVM_clear",_wrap_CvSVM_clear,0,0,2,0}, -{"CvSVM_get_default_grid",_wrap_CvSVM_get_default_grid,0,0,2,0}, -{"CvSVM_write",_wrap_CvSVM_write,0,0,2,0}, -{"CvSVM_read",_wrap_CvSVM_read,0,0,2,0}, -{"CvSVM_get_var_count",_wrap_CvSVM_get_var_count,0,0,2,0}, -{"new_CvEMParams",_wrap_new_CvEMParams,0,0,2,0}, -{"CvEMParams_nclusters_set",_wrap_CvEMParams_nclusters_set,0,0,2,0}, -{"CvEMParams_nclusters_get",_wrap_CvEMParams_nclusters_get,0,0,2,0}, -{"CvEMParams_cov_mat_type_set",_wrap_CvEMParams_cov_mat_type_set,0,0,2,0}, -{"CvEMParams_cov_mat_type_get",_wrap_CvEMParams_cov_mat_type_get,0,0,2,0}, -{"CvEMParams_start_step_set",_wrap_CvEMParams_start_step_set,0,0,2,0}, -{"CvEMParams_start_step_get",_wrap_CvEMParams_start_step_get,0,0,2,0}, -{"CvEMParams_probs_set",_wrap_CvEMParams_probs_set,0,0,2,0}, -{"CvEMParams_probs_get",_wrap_CvEMParams_probs_get,0,0,2,0}, -{"CvEMParams_weights_set",_wrap_CvEMParams_weights_set,0,0,2,0}, -{"CvEMParams_weights_get",_wrap_CvEMParams_weights_get,0,0,2,0}, -{"CvEMParams_means_set",_wrap_CvEMParams_means_set,0,0,2,0}, -{"CvEMParams_means_get",_wrap_CvEMParams_means_get,0,0,2,0}, -{"CvEMParams_covs_set",_wrap_CvEMParams_covs_set,0,0,2,0}, -{"CvEMParams_covs_get",_wrap_CvEMParams_covs_get,0,0,2,0}, -{"CvEMParams_term_crit_set",_wrap_CvEMParams_term_crit_set,0,0,2,0}, -{"CvEMParams_term_crit_get",_wrap_CvEMParams_term_crit_get,0,0,2,0}, -{"delete_CvEMParams",_wrap_delete_CvEMParams,0,0,2,0}, -{"new_CvEM",_wrap_new_CvEM,0,0,2,0}, -{"delete_CvEM",_wrap_delete_CvEM,0,0,2,0}, -{"CvEM_train",_wrap_CvEM_train,0,0,2,0}, -{"CvEM_predict",_wrap_CvEM_predict,0,0,2,0}, -{"CvEM_clear",_wrap_CvEM_clear,0,0,2,0}, -{"CvEM_get_nclusters",_wrap_CvEM_get_nclusters,0,0,2,0}, -{"CvEM_get_means",_wrap_CvEM_get_means,0,0,2,0}, -{"CvEM_get_weights",_wrap_CvEM_get_weights,0,0,2,0}, -{"CvEM_get_probs",_wrap_CvEM_get_probs,0,0,2,0}, -{"CvEM_get_log_likelihood",_wrap_CvEM_get_log_likelihood,0,0,2,0}, -{"CvEM_get_covs",_wrap_CvEM_get_covs,0,0,2,0}, -{"CvPair16u32s_u_set",_wrap_CvPair16u32s_u_set,0,0,2,0}, -{"CvPair16u32s_u_get",_wrap_CvPair16u32s_u_get,0,0,2,0}, -{"CvPair16u32s_i_set",_wrap_CvPair16u32s_i_set,0,0,2,0}, -{"CvPair16u32s_i_get",_wrap_CvPair16u32s_i_get,0,0,2,0}, -{"new_CvPair16u32s",_wrap_new_CvPair16u32s,0,0,2,0}, -{"delete_CvPair16u32s",_wrap_delete_CvPair16u32s,0,0,2,0}, -{"CvDTreeSplit_var_idx_set",_wrap_CvDTreeSplit_var_idx_set,0,0,2,0}, -{"CvDTreeSplit_var_idx_get",_wrap_CvDTreeSplit_var_idx_get,0,0,2,0}, -{"CvDTreeSplit_condensed_idx_set",_wrap_CvDTreeSplit_condensed_idx_set,0,0,2,0}, -{"CvDTreeSplit_condensed_idx_get",_wrap_CvDTreeSplit_condensed_idx_get,0,0,2,0}, -{"CvDTreeSplit_inversed_set",_wrap_CvDTreeSplit_inversed_set,0,0,2,0}, -{"CvDTreeSplit_inversed_get",_wrap_CvDTreeSplit_inversed_get,0,0,2,0}, -{"CvDTreeSplit_quality_set",_wrap_CvDTreeSplit_quality_set,0,0,2,0}, -{"CvDTreeSplit_quality_get",_wrap_CvDTreeSplit_quality_get,0,0,2,0}, -{"CvDTreeSplit_next_set",_wrap_CvDTreeSplit_next_set,0,0,2,0}, -{"CvDTreeSplit_next_get",_wrap_CvDTreeSplit_next_get,0,0,2,0}, -{"new_CvDTreeSplit",_wrap_new_CvDTreeSplit,0,0,2,0}, -{"delete_CvDTreeSplit",_wrap_delete_CvDTreeSplit,0,0,2,0}, -{"CvDTreeNode_class_idx_set",_wrap_CvDTreeNode_class_idx_set,0,0,2,0}, -{"CvDTreeNode_class_idx_get",_wrap_CvDTreeNode_class_idx_get,0,0,2,0}, -{"CvDTreeNode_Tn_set",_wrap_CvDTreeNode_Tn_set,0,0,2,0}, -{"CvDTreeNode_Tn_get",_wrap_CvDTreeNode_Tn_get,0,0,2,0}, -{"CvDTreeNode_value_set",_wrap_CvDTreeNode_value_set,0,0,2,0}, -{"CvDTreeNode_value_get",_wrap_CvDTreeNode_value_get,0,0,2,0}, -{"CvDTreeNode_parent_set",_wrap_CvDTreeNode_parent_set,0,0,2,0}, -{"CvDTreeNode_parent_get",_wrap_CvDTreeNode_parent_get,0,0,2,0}, -{"CvDTreeNode_left_set",_wrap_CvDTreeNode_left_set,0,0,2,0}, -{"CvDTreeNode_left_get",_wrap_CvDTreeNode_left_get,0,0,2,0}, -{"CvDTreeNode_right_set",_wrap_CvDTreeNode_right_set,0,0,2,0}, -{"CvDTreeNode_right_get",_wrap_CvDTreeNode_right_get,0,0,2,0}, -{"CvDTreeNode_split_set",_wrap_CvDTreeNode_split_set,0,0,2,0}, -{"CvDTreeNode_split_get",_wrap_CvDTreeNode_split_get,0,0,2,0}, -{"CvDTreeNode_sample_count_set",_wrap_CvDTreeNode_sample_count_set,0,0,2,0}, -{"CvDTreeNode_sample_count_get",_wrap_CvDTreeNode_sample_count_get,0,0,2,0}, -{"CvDTreeNode_depth_set",_wrap_CvDTreeNode_depth_set,0,0,2,0}, -{"CvDTreeNode_depth_get",_wrap_CvDTreeNode_depth_get,0,0,2,0}, -{"CvDTreeNode_num_valid_set",_wrap_CvDTreeNode_num_valid_set,0,0,2,0}, -{"CvDTreeNode_num_valid_get",_wrap_CvDTreeNode_num_valid_get,0,0,2,0}, -{"CvDTreeNode_offset_set",_wrap_CvDTreeNode_offset_set,0,0,2,0}, -{"CvDTreeNode_offset_get",_wrap_CvDTreeNode_offset_get,0,0,2,0}, -{"CvDTreeNode_buf_idx_set",_wrap_CvDTreeNode_buf_idx_set,0,0,2,0}, -{"CvDTreeNode_buf_idx_get",_wrap_CvDTreeNode_buf_idx_get,0,0,2,0}, -{"CvDTreeNode_maxlr_set",_wrap_CvDTreeNode_maxlr_set,0,0,2,0}, -{"CvDTreeNode_maxlr_get",_wrap_CvDTreeNode_maxlr_get,0,0,2,0}, -{"CvDTreeNode_complexity_set",_wrap_CvDTreeNode_complexity_set,0,0,2,0}, -{"CvDTreeNode_complexity_get",_wrap_CvDTreeNode_complexity_get,0,0,2,0}, -{"CvDTreeNode_alpha_set",_wrap_CvDTreeNode_alpha_set,0,0,2,0}, -{"CvDTreeNode_alpha_get",_wrap_CvDTreeNode_alpha_get,0,0,2,0}, -{"CvDTreeNode_node_risk_set",_wrap_CvDTreeNode_node_risk_set,0,0,2,0}, -{"CvDTreeNode_node_risk_get",_wrap_CvDTreeNode_node_risk_get,0,0,2,0}, -{"CvDTreeNode_tree_risk_set",_wrap_CvDTreeNode_tree_risk_set,0,0,2,0}, -{"CvDTreeNode_tree_risk_get",_wrap_CvDTreeNode_tree_risk_get,0,0,2,0}, -{"CvDTreeNode_tree_error_set",_wrap_CvDTreeNode_tree_error_set,0,0,2,0}, -{"CvDTreeNode_tree_error_get",_wrap_CvDTreeNode_tree_error_get,0,0,2,0}, -{"CvDTreeNode_cv_Tn_set",_wrap_CvDTreeNode_cv_Tn_set,0,0,2,0}, -{"CvDTreeNode_cv_Tn_get",_wrap_CvDTreeNode_cv_Tn_get,0,0,2,0}, -{"CvDTreeNode_cv_node_risk_set",_wrap_CvDTreeNode_cv_node_risk_set,0,0,2,0}, -{"CvDTreeNode_cv_node_risk_get",_wrap_CvDTreeNode_cv_node_risk_get,0,0,2,0}, -{"CvDTreeNode_cv_node_error_set",_wrap_CvDTreeNode_cv_node_error_set,0,0,2,0}, -{"CvDTreeNode_cv_node_error_get",_wrap_CvDTreeNode_cv_node_error_get,0,0,2,0}, -{"CvDTreeNode_get_num_valid",_wrap_CvDTreeNode_get_num_valid,0,0,2,0}, -{"CvDTreeNode_set_num_valid",_wrap_CvDTreeNode_set_num_valid,0,0,2,0}, -{"new_CvDTreeNode",_wrap_new_CvDTreeNode,0,0,2,0}, -{"delete_CvDTreeNode",_wrap_delete_CvDTreeNode,0,0,2,0}, -{"CvDTreeParams_max_categories_set",_wrap_CvDTreeParams_max_categories_set,0,0,2,0}, -{"CvDTreeParams_max_categories_get",_wrap_CvDTreeParams_max_categories_get,0,0,2,0}, -{"CvDTreeParams_max_depth_set",_wrap_CvDTreeParams_max_depth_set,0,0,2,0}, -{"CvDTreeParams_max_depth_get",_wrap_CvDTreeParams_max_depth_get,0,0,2,0}, -{"CvDTreeParams_min_sample_count_set",_wrap_CvDTreeParams_min_sample_count_set,0,0,2,0}, -{"CvDTreeParams_min_sample_count_get",_wrap_CvDTreeParams_min_sample_count_get,0,0,2,0}, -{"CvDTreeParams_cv_folds_set",_wrap_CvDTreeParams_cv_folds_set,0,0,2,0}, -{"CvDTreeParams_cv_folds_get",_wrap_CvDTreeParams_cv_folds_get,0,0,2,0}, -{"CvDTreeParams_use_surrogates_set",_wrap_CvDTreeParams_use_surrogates_set,0,0,2,0}, -{"CvDTreeParams_use_surrogates_get",_wrap_CvDTreeParams_use_surrogates_get,0,0,2,0}, -{"CvDTreeParams_use_1se_rule_set",_wrap_CvDTreeParams_use_1se_rule_set,0,0,2,0}, -{"CvDTreeParams_use_1se_rule_get",_wrap_CvDTreeParams_use_1se_rule_get,0,0,2,0}, -{"CvDTreeParams_truncate_pruned_tree_set",_wrap_CvDTreeParams_truncate_pruned_tree_set,0,0,2,0}, -{"CvDTreeParams_truncate_pruned_tree_get",_wrap_CvDTreeParams_truncate_pruned_tree_get,0,0,2,0}, -{"CvDTreeParams_regression_accuracy_set",_wrap_CvDTreeParams_regression_accuracy_set,0,0,2,0}, -{"CvDTreeParams_regression_accuracy_get",_wrap_CvDTreeParams_regression_accuracy_get,0,0,2,0}, -{"CvDTreeParams_priors_set",_wrap_CvDTreeParams_priors_set,0,0,2,0}, -{"CvDTreeParams_priors_get",_wrap_CvDTreeParams_priors_get,0,0,2,0}, -{"new_CvDTreeParams",_wrap_new_CvDTreeParams,0,0,2,0}, -{"delete_CvDTreeParams",_wrap_delete_CvDTreeParams,0,0,2,0}, -{"new_CvDTreeTrainData",_wrap_new_CvDTreeTrainData,0,0,2,0}, -{"delete_CvDTreeTrainData",_wrap_delete_CvDTreeTrainData,0,0,2,0}, -{"CvDTreeTrainData_set_data",_wrap_CvDTreeTrainData_set_data,0,0,2,0}, -{"CvDTreeTrainData_do_responses_copy",_wrap_CvDTreeTrainData_do_responses_copy,0,0,2,0}, -{"CvDTreeTrainData_get_vectors",_wrap_CvDTreeTrainData_get_vectors,0,0,2,0}, -{"CvDTreeTrainData_subsample_data",_wrap_CvDTreeTrainData_subsample_data,0,0,2,0}, -{"CvDTreeTrainData_write_params",_wrap_CvDTreeTrainData_write_params,0,0,2,0}, -{"CvDTreeTrainData_read_params",_wrap_CvDTreeTrainData_read_params,0,0,2,0}, -{"CvDTreeTrainData_clear",_wrap_CvDTreeTrainData_clear,0,0,2,0}, -{"CvDTreeTrainData_get_num_classes",_wrap_CvDTreeTrainData_get_num_classes,0,0,2,0}, -{"CvDTreeTrainData_get_var_type",_wrap_CvDTreeTrainData_get_var_type,0,0,2,0}, -{"CvDTreeTrainData_get_work_var_count",_wrap_CvDTreeTrainData_get_work_var_count,0,0,2,0}, -{"CvDTreeTrainData_get_ord_responses",_wrap_CvDTreeTrainData_get_ord_responses,0,0,2,0}, -{"CvDTreeTrainData_get_class_labels",_wrap_CvDTreeTrainData_get_class_labels,0,0,2,0}, -{"CvDTreeTrainData_get_cv_labels",_wrap_CvDTreeTrainData_get_cv_labels,0,0,2,0}, -{"CvDTreeTrainData_get_sample_indices",_wrap_CvDTreeTrainData_get_sample_indices,0,0,2,0}, -{"CvDTreeTrainData_get_cat_var_data",_wrap_CvDTreeTrainData_get_cat_var_data,0,0,2,0}, -{"CvDTreeTrainData_get_ord_var_data",_wrap_CvDTreeTrainData_get_ord_var_data,0,0,2,0}, -{"CvDTreeTrainData_get_child_buf_idx",_wrap_CvDTreeTrainData_get_child_buf_idx,0,0,2,0}, -{"CvDTreeTrainData_set_params",_wrap_CvDTreeTrainData_set_params,0,0,2,0}, -{"CvDTreeTrainData_new_node",_wrap_CvDTreeTrainData_new_node,0,0,2,0}, -{"CvDTreeTrainData_new_split_ord",_wrap_CvDTreeTrainData_new_split_ord,0,0,2,0}, -{"CvDTreeTrainData_new_split_cat",_wrap_CvDTreeTrainData_new_split_cat,0,0,2,0}, -{"CvDTreeTrainData_free_node_data",_wrap_CvDTreeTrainData_free_node_data,0,0,2,0}, -{"CvDTreeTrainData_free_train_data",_wrap_CvDTreeTrainData_free_train_data,0,0,2,0}, -{"CvDTreeTrainData_free_node",_wrap_CvDTreeTrainData_free_node,0,0,2,0}, -{"CvDTreeTrainData_get_pred_float_buf",_wrap_CvDTreeTrainData_get_pred_float_buf,0,0,2,0}, -{"CvDTreeTrainData_get_pred_int_buf",_wrap_CvDTreeTrainData_get_pred_int_buf,0,0,2,0}, -{"CvDTreeTrainData_get_resp_float_buf",_wrap_CvDTreeTrainData_get_resp_float_buf,0,0,2,0}, -{"CvDTreeTrainData_get_resp_int_buf",_wrap_CvDTreeTrainData_get_resp_int_buf,0,0,2,0}, -{"CvDTreeTrainData_get_cv_lables_buf",_wrap_CvDTreeTrainData_get_cv_lables_buf,0,0,2,0}, -{"CvDTreeTrainData_get_sample_idx_buf",_wrap_CvDTreeTrainData_get_sample_idx_buf,0,0,2,0}, -{"CvDTreeTrainData_pred_float_buf_set",_wrap_CvDTreeTrainData_pred_float_buf_set,0,0,2,0}, -{"CvDTreeTrainData_pred_float_buf_get",_wrap_CvDTreeTrainData_pred_float_buf_get,0,0,2,0}, -{"CvDTreeTrainData_pred_int_buf_set",_wrap_CvDTreeTrainData_pred_int_buf_set,0,0,2,0}, -{"CvDTreeTrainData_pred_int_buf_get",_wrap_CvDTreeTrainData_pred_int_buf_get,0,0,2,0}, -{"CvDTreeTrainData_resp_float_buf_set",_wrap_CvDTreeTrainData_resp_float_buf_set,0,0,2,0}, -{"CvDTreeTrainData_resp_float_buf_get",_wrap_CvDTreeTrainData_resp_float_buf_get,0,0,2,0}, -{"CvDTreeTrainData_resp_int_buf_set",_wrap_CvDTreeTrainData_resp_int_buf_set,0,0,2,0}, -{"CvDTreeTrainData_resp_int_buf_get",_wrap_CvDTreeTrainData_resp_int_buf_get,0,0,2,0}, -{"CvDTreeTrainData_cv_lables_buf_set",_wrap_CvDTreeTrainData_cv_lables_buf_set,0,0,2,0}, -{"CvDTreeTrainData_cv_lables_buf_get",_wrap_CvDTreeTrainData_cv_lables_buf_get,0,0,2,0}, -{"CvDTreeTrainData_sample_idx_buf_set",_wrap_CvDTreeTrainData_sample_idx_buf_set,0,0,2,0}, -{"CvDTreeTrainData_sample_idx_buf_get",_wrap_CvDTreeTrainData_sample_idx_buf_get,0,0,2,0}, -{"CvDTreeTrainData_sample_count_set",_wrap_CvDTreeTrainData_sample_count_set,0,0,2,0}, -{"CvDTreeTrainData_sample_count_get",_wrap_CvDTreeTrainData_sample_count_get,0,0,2,0}, -{"CvDTreeTrainData_var_all_set",_wrap_CvDTreeTrainData_var_all_set,0,0,2,0}, -{"CvDTreeTrainData_var_all_get",_wrap_CvDTreeTrainData_var_all_get,0,0,2,0}, -{"CvDTreeTrainData_var_count_set",_wrap_CvDTreeTrainData_var_count_set,0,0,2,0}, -{"CvDTreeTrainData_var_count_get",_wrap_CvDTreeTrainData_var_count_get,0,0,2,0}, -{"CvDTreeTrainData_max_c_count_set",_wrap_CvDTreeTrainData_max_c_count_set,0,0,2,0}, -{"CvDTreeTrainData_max_c_count_get",_wrap_CvDTreeTrainData_max_c_count_get,0,0,2,0}, -{"CvDTreeTrainData_ord_var_count_set",_wrap_CvDTreeTrainData_ord_var_count_set,0,0,2,0}, -{"CvDTreeTrainData_ord_var_count_get",_wrap_CvDTreeTrainData_ord_var_count_get,0,0,2,0}, -{"CvDTreeTrainData_cat_var_count_set",_wrap_CvDTreeTrainData_cat_var_count_set,0,0,2,0}, -{"CvDTreeTrainData_cat_var_count_get",_wrap_CvDTreeTrainData_cat_var_count_get,0,0,2,0}, -{"CvDTreeTrainData_work_var_count_set",_wrap_CvDTreeTrainData_work_var_count_set,0,0,2,0}, -{"CvDTreeTrainData_work_var_count_get",_wrap_CvDTreeTrainData_work_var_count_get,0,0,2,0}, -{"CvDTreeTrainData_have_labels_set",_wrap_CvDTreeTrainData_have_labels_set,0,0,2,0}, -{"CvDTreeTrainData_have_labels_get",_wrap_CvDTreeTrainData_have_labels_get,0,0,2,0}, -{"CvDTreeTrainData_have_priors_set",_wrap_CvDTreeTrainData_have_priors_set,0,0,2,0}, -{"CvDTreeTrainData_have_priors_get",_wrap_CvDTreeTrainData_have_priors_get,0,0,2,0}, -{"CvDTreeTrainData_is_classifier_set",_wrap_CvDTreeTrainData_is_classifier_set,0,0,2,0}, -{"CvDTreeTrainData_is_classifier_get",_wrap_CvDTreeTrainData_is_classifier_get,0,0,2,0}, -{"CvDTreeTrainData_tflag_set",_wrap_CvDTreeTrainData_tflag_set,0,0,2,0}, -{"CvDTreeTrainData_tflag_get",_wrap_CvDTreeTrainData_tflag_get,0,0,2,0}, -{"CvDTreeTrainData_train_data_set",_wrap_CvDTreeTrainData_train_data_set,0,0,2,0}, -{"CvDTreeTrainData_train_data_get",_wrap_CvDTreeTrainData_train_data_get,0,0,2,0}, -{"CvDTreeTrainData_responses_set",_wrap_CvDTreeTrainData_responses_set,0,0,2,0}, -{"CvDTreeTrainData_responses_get",_wrap_CvDTreeTrainData_responses_get,0,0,2,0}, -{"CvDTreeTrainData_responses_copy_set",_wrap_CvDTreeTrainData_responses_copy_set,0,0,2,0}, -{"CvDTreeTrainData_responses_copy_get",_wrap_CvDTreeTrainData_responses_copy_get,0,0,2,0}, -{"CvDTreeTrainData_buf_count_set",_wrap_CvDTreeTrainData_buf_count_set,0,0,2,0}, -{"CvDTreeTrainData_buf_count_get",_wrap_CvDTreeTrainData_buf_count_get,0,0,2,0}, -{"CvDTreeTrainData_buf_size_set",_wrap_CvDTreeTrainData_buf_size_set,0,0,2,0}, -{"CvDTreeTrainData_buf_size_get",_wrap_CvDTreeTrainData_buf_size_get,0,0,2,0}, -{"CvDTreeTrainData_shared_set",_wrap_CvDTreeTrainData_shared_set,0,0,2,0}, -{"CvDTreeTrainData_shared_get",_wrap_CvDTreeTrainData_shared_get,0,0,2,0}, -{"CvDTreeTrainData_is_buf_16u_set",_wrap_CvDTreeTrainData_is_buf_16u_set,0,0,2,0}, -{"CvDTreeTrainData_is_buf_16u_get",_wrap_CvDTreeTrainData_is_buf_16u_get,0,0,2,0}, -{"CvDTreeTrainData_cat_count_set",_wrap_CvDTreeTrainData_cat_count_set,0,0,2,0}, -{"CvDTreeTrainData_cat_count_get",_wrap_CvDTreeTrainData_cat_count_get,0,0,2,0}, -{"CvDTreeTrainData_cat_ofs_set",_wrap_CvDTreeTrainData_cat_ofs_set,0,0,2,0}, -{"CvDTreeTrainData_cat_ofs_get",_wrap_CvDTreeTrainData_cat_ofs_get,0,0,2,0}, -{"CvDTreeTrainData_cat_map_set",_wrap_CvDTreeTrainData_cat_map_set,0,0,2,0}, -{"CvDTreeTrainData_cat_map_get",_wrap_CvDTreeTrainData_cat_map_get,0,0,2,0}, -{"CvDTreeTrainData_counts_set",_wrap_CvDTreeTrainData_counts_set,0,0,2,0}, -{"CvDTreeTrainData_counts_get",_wrap_CvDTreeTrainData_counts_get,0,0,2,0}, -{"CvDTreeTrainData_buf_set",_wrap_CvDTreeTrainData_buf_set,0,0,2,0}, -{"CvDTreeTrainData_buf_get",_wrap_CvDTreeTrainData_buf_get,0,0,2,0}, -{"CvDTreeTrainData_direction_set",_wrap_CvDTreeTrainData_direction_set,0,0,2,0}, -{"CvDTreeTrainData_direction_get",_wrap_CvDTreeTrainData_direction_get,0,0,2,0}, -{"CvDTreeTrainData_split_buf_set",_wrap_CvDTreeTrainData_split_buf_set,0,0,2,0}, -{"CvDTreeTrainData_split_buf_get",_wrap_CvDTreeTrainData_split_buf_get,0,0,2,0}, -{"CvDTreeTrainData_var_idx_set",_wrap_CvDTreeTrainData_var_idx_set,0,0,2,0}, -{"CvDTreeTrainData_var_idx_get",_wrap_CvDTreeTrainData_var_idx_get,0,0,2,0}, -{"CvDTreeTrainData_var_type_set",_wrap_CvDTreeTrainData_var_type_set,0,0,2,0}, -{"CvDTreeTrainData_var_type_get",_wrap_CvDTreeTrainData_var_type_get,0,0,2,0}, -{"CvDTreeTrainData_priors_set",_wrap_CvDTreeTrainData_priors_set,0,0,2,0}, -{"CvDTreeTrainData_priors_get",_wrap_CvDTreeTrainData_priors_get,0,0,2,0}, -{"CvDTreeTrainData_priors_mult_set",_wrap_CvDTreeTrainData_priors_mult_set,0,0,2,0}, -{"CvDTreeTrainData_priors_mult_get",_wrap_CvDTreeTrainData_priors_mult_get,0,0,2,0}, -{"CvDTreeTrainData_params_set",_wrap_CvDTreeTrainData_params_set,0,0,2,0}, -{"CvDTreeTrainData_params_get",_wrap_CvDTreeTrainData_params_get,0,0,2,0}, -{"CvDTreeTrainData_tree_storage_set",_wrap_CvDTreeTrainData_tree_storage_set,0,0,2,0}, -{"CvDTreeTrainData_tree_storage_get",_wrap_CvDTreeTrainData_tree_storage_get,0,0,2,0}, -{"CvDTreeTrainData_temp_storage_set",_wrap_CvDTreeTrainData_temp_storage_set,0,0,2,0}, -{"CvDTreeTrainData_temp_storage_get",_wrap_CvDTreeTrainData_temp_storage_get,0,0,2,0}, -{"CvDTreeTrainData_data_root_set",_wrap_CvDTreeTrainData_data_root_set,0,0,2,0}, -{"CvDTreeTrainData_data_root_get",_wrap_CvDTreeTrainData_data_root_get,0,0,2,0}, -{"CvDTreeTrainData_node_heap_set",_wrap_CvDTreeTrainData_node_heap_set,0,0,2,0}, -{"CvDTreeTrainData_node_heap_get",_wrap_CvDTreeTrainData_node_heap_get,0,0,2,0}, -{"CvDTreeTrainData_split_heap_set",_wrap_CvDTreeTrainData_split_heap_set,0,0,2,0}, -{"CvDTreeTrainData_split_heap_get",_wrap_CvDTreeTrainData_split_heap_get,0,0,2,0}, -{"CvDTreeTrainData_cv_heap_set",_wrap_CvDTreeTrainData_cv_heap_set,0,0,2,0}, -{"CvDTreeTrainData_cv_heap_get",_wrap_CvDTreeTrainData_cv_heap_get,0,0,2,0}, -{"CvDTreeTrainData_nv_heap_set",_wrap_CvDTreeTrainData_nv_heap_set,0,0,2,0}, -{"CvDTreeTrainData_nv_heap_get",_wrap_CvDTreeTrainData_nv_heap_get,0,0,2,0}, -{"CvDTreeTrainData_rng_set",_wrap_CvDTreeTrainData_rng_set,0,0,2,0}, -{"CvDTreeTrainData_rng_get",_wrap_CvDTreeTrainData_rng_get,0,0,2,0}, -{"new_CvDTree",_wrap_new_CvDTree,0,0,2,0}, -{"delete_CvDTree",_wrap_delete_CvDTree,0,0,2,0}, -{"CvDTree_calc_error",_wrap_CvDTree_calc_error,0,0,2,0}, -{"CvDTree_train",_wrap_CvDTree_train,0,0,2,0}, -{"CvDTree_predict",_wrap_CvDTree_predict,0,0,2,0}, -{"CvDTree_get_var_importance",_wrap_CvDTree_get_var_importance,0,0,2,0}, -{"CvDTree_clear",_wrap_CvDTree_clear,0,0,2,0}, -{"CvDTree_read",_wrap_CvDTree_read,0,0,2,0}, -{"CvDTree_write",_wrap_CvDTree_write,0,0,2,0}, -{"CvDTree_get_root",_wrap_CvDTree_get_root,0,0,2,0}, -{"CvDTree_get_pruned_tree_idx",_wrap_CvDTree_get_pruned_tree_idx,0,0,2,0}, -{"CvDTree_get_data",_wrap_CvDTree_get_data,0,0,2,0}, -{"CvDTree_pruned_tree_idx_set",_wrap_CvDTree_pruned_tree_idx_set,0,0,2,0}, -{"CvDTree_pruned_tree_idx_get",_wrap_CvDTree_pruned_tree_idx_get,0,0,2,0}, -{"new_CvForestTree",_wrap_new_CvForestTree,0,0,2,0}, -{"delete_CvForestTree",_wrap_delete_CvForestTree,0,0,2,0}, -{"CvForestTree_get_var_count",_wrap_CvForestTree_get_var_count,0,0,2,0}, -{"CvForestTree_train",_wrap_CvForestTree_train,0,0,2,0}, -{"CvForestTree_read",_wrap_CvForestTree_read,0,0,2,0}, -{"CvRTParams_calc_var_importance_set",_wrap_CvRTParams_calc_var_importance_set,0,0,2,0}, -{"CvRTParams_calc_var_importance_get",_wrap_CvRTParams_calc_var_importance_get,0,0,2,0}, -{"CvRTParams_nactive_vars_set",_wrap_CvRTParams_nactive_vars_set,0,0,2,0}, -{"CvRTParams_nactive_vars_get",_wrap_CvRTParams_nactive_vars_get,0,0,2,0}, -{"CvRTParams_term_crit_set",_wrap_CvRTParams_term_crit_set,0,0,2,0}, -{"CvRTParams_term_crit_get",_wrap_CvRTParams_term_crit_get,0,0,2,0}, -{"new_CvRTParams",_wrap_new_CvRTParams,0,0,2,0}, -{"delete_CvRTParams",_wrap_delete_CvRTParams,0,0,2,0}, -{"new_CvRTrees",_wrap_new_CvRTrees,0,0,2,0}, -{"delete_CvRTrees",_wrap_delete_CvRTrees,0,0,2,0}, -{"CvRTrees_train",_wrap_CvRTrees_train,0,0,2,0}, -{"CvRTrees_predict",_wrap_CvRTrees_predict,0,0,2,0}, -{"CvRTrees_predict_prob",_wrap_CvRTrees_predict_prob,0,0,2,0}, -{"CvRTrees_clear",_wrap_CvRTrees_clear,0,0,2,0}, -{"CvRTrees_get_var_importance",_wrap_CvRTrees_get_var_importance,0,0,2,0}, -{"CvRTrees_get_proximity",_wrap_CvRTrees_get_proximity,0,0,2,0}, -{"CvRTrees_calc_error",_wrap_CvRTrees_calc_error,0,0,2,0}, -{"CvRTrees_get_train_error",_wrap_CvRTrees_get_train_error,0,0,2,0}, -{"CvRTrees_read",_wrap_CvRTrees_read,0,0,2,0}, -{"CvRTrees_write",_wrap_CvRTrees_write,0,0,2,0}, -{"CvRTrees_get_active_var_mask",_wrap_CvRTrees_get_active_var_mask,0,0,2,0}, -{"CvRTrees_get_rng",_wrap_CvRTrees_get_rng,0,0,2,0}, -{"CvRTrees_get_tree_count",_wrap_CvRTrees_get_tree_count,0,0,2,0}, -{"CvRTrees_get_tree",_wrap_CvRTrees_get_tree,0,0,2,0}, -{"CvERTreeTrainData_set_data",_wrap_CvERTreeTrainData_set_data,0,0,2,0}, -{"CvERTreeTrainData_get_ord_var_data",_wrap_CvERTreeTrainData_get_ord_var_data,0,0,2,0}, -{"CvERTreeTrainData_get_sample_indices",_wrap_CvERTreeTrainData_get_sample_indices,0,0,2,0}, -{"CvERTreeTrainData_get_cv_labels",_wrap_CvERTreeTrainData_get_cv_labels,0,0,2,0}, -{"CvERTreeTrainData_get_cat_var_data",_wrap_CvERTreeTrainData_get_cat_var_data,0,0,2,0}, -{"CvERTreeTrainData_get_vectors",_wrap_CvERTreeTrainData_get_vectors,0,0,2,0}, -{"CvERTreeTrainData_subsample_data",_wrap_CvERTreeTrainData_subsample_data,0,0,2,0}, -{"CvERTreeTrainData_missing_mask_set",_wrap_CvERTreeTrainData_missing_mask_set,0,0,2,0}, -{"CvERTreeTrainData_missing_mask_get",_wrap_CvERTreeTrainData_missing_mask_get,0,0,2,0}, -{"new_CvERTreeTrainData",_wrap_new_CvERTreeTrainData,0,0,2,0}, -{"delete_CvERTreeTrainData",_wrap_delete_CvERTreeTrainData,0,0,2,0}, -{"new_CvForestERTree",_wrap_new_CvForestERTree,0,0,2,0}, -{"delete_CvForestERTree",_wrap_delete_CvForestERTree,0,0,2,0}, -{"new_CvERTrees",_wrap_new_CvERTrees,0,0,2,0}, -{"delete_CvERTrees",_wrap_delete_CvERTrees,0,0,2,0}, -{"CvERTrees_train",_wrap_CvERTrees_train,0,0,2,0}, -{"CvBoostParams_boost_type_set",_wrap_CvBoostParams_boost_type_set,0,0,2,0}, -{"CvBoostParams_boost_type_get",_wrap_CvBoostParams_boost_type_get,0,0,2,0}, -{"CvBoostParams_weak_count_set",_wrap_CvBoostParams_weak_count_set,0,0,2,0}, -{"CvBoostParams_weak_count_get",_wrap_CvBoostParams_weak_count_get,0,0,2,0}, -{"CvBoostParams_split_criteria_set",_wrap_CvBoostParams_split_criteria_set,0,0,2,0}, -{"CvBoostParams_split_criteria_get",_wrap_CvBoostParams_split_criteria_get,0,0,2,0}, -{"CvBoostParams_weight_trim_rate_set",_wrap_CvBoostParams_weight_trim_rate_set,0,0,2,0}, -{"CvBoostParams_weight_trim_rate_get",_wrap_CvBoostParams_weight_trim_rate_get,0,0,2,0}, -{"new_CvBoostParams",_wrap_new_CvBoostParams,0,0,2,0}, -{"delete_CvBoostParams",_wrap_delete_CvBoostParams,0,0,2,0}, -{"new_CvBoostTree",_wrap_new_CvBoostTree,0,0,2,0}, -{"delete_CvBoostTree",_wrap_delete_CvBoostTree,0,0,2,0}, -{"CvBoostTree_scale",_wrap_CvBoostTree_scale,0,0,2,0}, -{"CvBoostTree_clear",_wrap_CvBoostTree_clear,0,0,2,0}, -{"CvBoostTree_train",_wrap_CvBoostTree_train,0,0,2,0}, -{"CvBoostTree_read",_wrap_CvBoostTree_read,0,0,2,0}, -{"delete_CvBoost",_wrap_delete_CvBoost,0,0,2,0}, -{"new_CvBoost",_wrap_new_CvBoost,0,0,2,0}, -{"CvBoost_train",_wrap_CvBoost_train,0,0,2,0}, -{"CvBoost_predict",_wrap_CvBoost_predict,0,0,2,0}, -{"CvBoost_calc_error",_wrap_CvBoost_calc_error,0,0,2,0}, -{"CvBoost_prune",_wrap_CvBoost_prune,0,0,2,0}, -{"CvBoost_clear",_wrap_CvBoost_clear,0,0,2,0}, -{"CvBoost_write",_wrap_CvBoost_write,0,0,2,0}, -{"CvBoost_read",_wrap_CvBoost_read,0,0,2,0}, -{"CvBoost_get_active_vars",_wrap_CvBoost_get_active_vars,0,0,2,0}, -{"CvBoost_get_weak_predictors",_wrap_CvBoost_get_weak_predictors,0,0,2,0}, -{"CvBoost_get_weights",_wrap_CvBoost_get_weights,0,0,2,0}, -{"CvBoost_get_subtree_weights",_wrap_CvBoost_get_subtree_weights,0,0,2,0}, -{"CvBoost_get_weak_response",_wrap_CvBoost_get_weak_response,0,0,2,0}, -{"CvBoost_get_params",_wrap_CvBoost_get_params,0,0,2,0}, -{"CvBoost_get_data",_wrap_CvBoost_get_data,0,0,2,0}, -{"new_CvANN_MLP_TrainParams",_wrap_new_CvANN_MLP_TrainParams,0,0,2,0}, -{"delete_CvANN_MLP_TrainParams",_wrap_delete_CvANN_MLP_TrainParams,0,0,2,0}, -{"CvANN_MLP_TrainParams_term_crit_set",_wrap_CvANN_MLP_TrainParams_term_crit_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_term_crit_get",_wrap_CvANN_MLP_TrainParams_term_crit_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_train_method_set",_wrap_CvANN_MLP_TrainParams_train_method_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_train_method_get",_wrap_CvANN_MLP_TrainParams_train_method_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_bp_dw_scale_set",_wrap_CvANN_MLP_TrainParams_bp_dw_scale_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_bp_dw_scale_get",_wrap_CvANN_MLP_TrainParams_bp_dw_scale_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_bp_moment_scale_set",_wrap_CvANN_MLP_TrainParams_bp_moment_scale_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_bp_moment_scale_get",_wrap_CvANN_MLP_TrainParams_bp_moment_scale_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw0_set",_wrap_CvANN_MLP_TrainParams_rp_dw0_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw0_get",_wrap_CvANN_MLP_TrainParams_rp_dw0_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_plus_set",_wrap_CvANN_MLP_TrainParams_rp_dw_plus_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_plus_get",_wrap_CvANN_MLP_TrainParams_rp_dw_plus_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_minus_set",_wrap_CvANN_MLP_TrainParams_rp_dw_minus_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_minus_get",_wrap_CvANN_MLP_TrainParams_rp_dw_minus_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_min_set",_wrap_CvANN_MLP_TrainParams_rp_dw_min_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_min_get",_wrap_CvANN_MLP_TrainParams_rp_dw_min_get,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_max_set",_wrap_CvANN_MLP_TrainParams_rp_dw_max_set,0,0,2,0}, -{"CvANN_MLP_TrainParams_rp_dw_max_get",_wrap_CvANN_MLP_TrainParams_rp_dw_max_get,0,0,2,0}, -{"new_CvANN_MLP",_wrap_new_CvANN_MLP,0,0,2,0}, -{"delete_CvANN_MLP",_wrap_delete_CvANN_MLP,0,0,2,0}, -{"CvANN_MLP_create",_wrap_CvANN_MLP_create,0,0,2,0}, -{"CvANN_MLP_train",_wrap_CvANN_MLP_train,0,0,2,0}, -{"CvANN_MLP_predict",_wrap_CvANN_MLP_predict,0,0,2,0}, -{"CvANN_MLP_clear",_wrap_CvANN_MLP_clear,0,0,2,0}, -{"CvANN_MLP_read",_wrap_CvANN_MLP_read,0,0,2,0}, -{"CvANN_MLP_write",_wrap_CvANN_MLP_write,0,0,2,0}, -{"CvANN_MLP_get_layer_count",_wrap_CvANN_MLP_get_layer_count,0,0,2,0}, -{"CvANN_MLP_get_layer_sizes",_wrap_CvANN_MLP_get_layer_sizes,0,0,2,0}, -{"CvANN_MLP_get_weights",_wrap_CvANN_MLP_get_weights,0,0,2,0}, -{"cvRandMVNormal",_wrap_cvRandMVNormal,0,0,2,0}, -{"cvRandGaussMixture",_wrap_cvRandGaussMixture,0,0,2,0}, -{"cvCreateTestSet",_wrap_cvCreateTestSet,0,0,2,0}, -{"new_CvTrainTestSplit",_wrap_new_CvTrainTestSplit,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_mode_set",_wrap_CvTrainTestSplit_train_sample_part_mode_set,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_mode_get",_wrap_CvTrainTestSplit_train_sample_part_mode_get,0,0,2,0}, -{"CvTrainTestSplit_class_part_mode_set",_wrap_CvTrainTestSplit_class_part_mode_set,0,0,2,0}, -{"CvTrainTestSplit_class_part_mode_get",_wrap_CvTrainTestSplit_class_part_mode_get,0,0,2,0}, -{"CvTrainTestSplit_mix_set",_wrap_CvTrainTestSplit_mix_set,0,0,2,0}, -{"CvTrainTestSplit_mix_get",_wrap_CvTrainTestSplit_mix_get,0,0,2,0}, -{"CvTrainTestSplit_class_part_get",_wrap_CvTrainTestSplit_class_part_get,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_get",_wrap_CvTrainTestSplit_train_sample_part_get,0,0,2,0}, -{"delete_CvTrainTestSplit",_wrap_delete_CvTrainTestSplit,0,0,2,0}, -{"CvTrainTestSplit_class_part_count_set",_wrap_CvTrainTestSplit_class_part_count_set,0,0,2,0}, -{"CvTrainTestSplit_class_part_count_get",_wrap_CvTrainTestSplit_class_part_count_get,0,0,2,0}, -{"CvTrainTestSplit_class_part_portion_set",_wrap_CvTrainTestSplit_class_part_portion_set,0,0,2,0}, -{"CvTrainTestSplit_class_part_portion_get",_wrap_CvTrainTestSplit_class_part_portion_get,0,0,2,0}, -{"new_CvTrainTestSplit_class_part",_wrap_new_CvTrainTestSplit_class_part,0,0,2,0}, -{"delete_CvTrainTestSplit_class_part",_wrap_delete_CvTrainTestSplit_class_part,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_count_set",_wrap_CvTrainTestSplit_train_sample_part_count_set,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_count_get",_wrap_CvTrainTestSplit_train_sample_part_count_get,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_portion_set",_wrap_CvTrainTestSplit_train_sample_part_portion_set,0,0,2,0}, -{"CvTrainTestSplit_train_sample_part_portion_get",_wrap_CvTrainTestSplit_train_sample_part_portion_get,0,0,2,0}, -{"new_CvTrainTestSplit_train_sample_part",_wrap_new_CvTrainTestSplit_train_sample_part,0,0,2,0}, -{"delete_CvTrainTestSplit_train_sample_part",_wrap_delete_CvTrainTestSplit_train_sample_part,0,0,2,0}, -{"new_CvMLData",_wrap_new_CvMLData,0,0,2,0}, -{"delete_CvMLData",_wrap_delete_CvMLData,0,0,2,0}, -{"CvMLData_read_csv",_wrap_CvMLData_read_csv,0,0,2,0}, -{"CvMLData_get_values",_wrap_CvMLData_get_values,0,0,2,0}, -{"CvMLData_get_responses",_wrap_CvMLData_get_responses,0,0,2,0}, -{"CvMLData_get_missing",_wrap_CvMLData_get_missing,0,0,2,0}, -{"CvMLData_set_response_idx",_wrap_CvMLData_set_response_idx,0,0,2,0}, -{"CvMLData_get_response_idx",_wrap_CvMLData_get_response_idx,0,0,2,0}, -{"CvMLData_get_train_sample_idx",_wrap_CvMLData_get_train_sample_idx,0,0,2,0}, -{"CvMLData_get_test_sample_idx",_wrap_CvMLData_get_test_sample_idx,0,0,2,0}, -{"CvMLData_mix_train_and_test_idx",_wrap_CvMLData_mix_train_and_test_idx,0,0,2,0}, -{"CvMLData_set_train_test_split",_wrap_CvMLData_set_train_test_split,0,0,2,0}, -{"CvMLData_get_var_idx",_wrap_CvMLData_get_var_idx,0,0,2,0}, -{"CvMLData_chahge_var_idx",_wrap_CvMLData_chahge_var_idx,0,0,2,0}, -{"CvMLData_get_var_types",_wrap_CvMLData_get_var_types,0,0,2,0}, -{"CvMLData_get_var_type",_wrap_CvMLData_get_var_type,0,0,2,0}, -{"CvMLData_set_var_types",_wrap_CvMLData_set_var_types,0,0,2,0}, -{"CvMLData_change_var_type",_wrap_CvMLData_change_var_type,0,0,2,0}, -{"CvMLData_set_delimiter",_wrap_CvMLData_set_delimiter,0,0,2,0}, -{"CvMLData_get_delimiter",_wrap_CvMLData_get_delimiter,0,0,2,0}, -{"CvMLData_set_miss_ch",_wrap_CvMLData_set_miss_ch,0,0,2,0}, -{"CvMLData_get_miss_ch",_wrap_CvMLData_get_miss_ch,0,0,2,0}, -{0,0,0,0,0} -}; - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - -static void *_p_CvERTreesTo_p_CvRTrees(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvRTrees *) ((CvERTrees *) x)); -} -static void *_p_CvERTreeTrainDataTo_p_CvDTreeTrainData(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTreeTrainData *) ((CvERTreeTrainData *) x)); -} -static void *_p_CvForestERTreeTo_p_CvForestTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvForestTree *) ((CvForestERTree *) x)); -} -static void *_p_CvRTParamsTo_p_CvDTreeParams(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTreeParams *) ((CvRTParams *) x)); -} -static void *_p_CvBoostParamsTo_p_CvDTreeParams(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTreeParams *) ((CvBoostParams *) x)); -} -static void *_p_CvNormalBayesClassifierTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvNormalBayesClassifier *) x)); -} -static void *_p_CvSVMTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvSVM *) x)); -} -static void *_p_CvForestERTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvDTree *)(CvForestTree *) ((CvForestERTree *) x)); -} -static void *_p_CvANN_MLPTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvANN_MLP *) x)); -} -static void *_p_CvKNearestTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvKNearest *) x)); -} -static void *_p_CvForestTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvDTree *) ((CvForestTree *) x)); -} -static void *_p_CvRTreesTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvRTrees *) x)); -} -static void *_p_CvBoostTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvDTree *) ((CvBoostTree *) x)); -} -static void *_p_CvERTreesTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvRTrees *) ((CvERTrees *) x)); -} -static void *_p_CvEMTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvEM *) x)); -} -static void *_p_CvDTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvDTree *) x)); -} -static void *_p_CvBoostTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvBoost *) x)); -} -static void *_p_CvForestERTreeTo_p_CvDTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTree *) (CvForestTree *) ((CvForestERTree *) x)); -} -static void *_p_CvForestTreeTo_p_CvDTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTree *) ((CvForestTree *) x)); -} -static void *_p_CvBoostTreeTo_p_CvDTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTree *) ((CvBoostTree *) x)); -} -static swig_type_info _swigt__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void = {"_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void", "void (CvSVMKernel::*)(int,int,float const **,float const *,float *)|CvSVMKernel::Calc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float = {"_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float", "CvSVMSolver::GetRow|float *(CvSVMSolver::*)(int,float *,float *,bool)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__m_CvSVMSolver__f_r_double_r_double__void = {"_m_CvSVMSolver__f_r_double_r_double__void", "void (CvSVMSolver::*)(double &,double &)|CvSVMSolver::CalcRho", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__m_CvSVMSolver__f_r_int_r_int__bool = {"_m_CvSVMSolver__f_r_int_r_int__bool", "CvSVMSolver::SelectWorkingSet|bool (CvSVMSolver::*)(int &,int &)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Calc = {"_p_Calc", "Calc *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CalcRho = {"_p_CalcRho", "CalcRho *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv32suf = {"_p_Cv32suf", "Cv32suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv64suf = {"_p_Cv64suf", "Cv64suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvANN_MLP = {"_p_CvANN_MLP", "CvANN_MLP *|cv::NeuralNet_MLP *", 0, 0, (void*)&_wrap_class_CvANN_MLP, 0}; -static swig_type_info _swigt__p_CvANN_MLP_TrainParams = {"_p_CvANN_MLP_TrainParams", "CvANN_MLP_TrainParams *|cv::ANN_MLP_TrainParams *", 0, 0, (void*)&_wrap_class_CvANN_MLP_TrainParams, 0}; -static swig_type_info _swigt__p_CvAttrList = {"_p_CvAttrList", "CvAttrList *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAvgComp = {"_p_CvAvgComp", "CvAvgComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBoost = {"_p_CvBoost", "CvBoost *|cv::Boost *", 0, 0, (void*)&_wrap_class_CvBoost, 0}; -static swig_type_info _swigt__p_CvBoostParams = {"_p_CvBoostParams", "CvBoostParams *|cv::BoostParams *", 0, 0, (void*)&_wrap_class_CvBoostParams, 0}; -static swig_type_info _swigt__p_CvBoostTree = {"_p_CvBoostTree", "CvBoostTree *|cv::BoostTree *", 0, 0, (void*)&_wrap_class_CvBoostTree, 0}; -static swig_type_info _swigt__p_CvBox2D = {"_p_CvBox2D", "CvBox2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChain = {"_p_CvChain", "CvChain *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChainPtReader = {"_p_CvChainPtReader", "CvChainPtReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConDensation = {"_p_CvConDensation", "CvConDensation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConnectedComp = {"_p_CvConnectedComp", "CvConnectedComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContour = {"_p_CvContour", "CvPoint2DSeq *|CvContour *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContourTree = {"_p_CvContourTree", "CvContourTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConvexityDefect = {"_p_CvConvexityDefect", "CvConvexityDefect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvDTree = {"_p_CvDTree", "CvDTree *|cv::DecisionTree *", 0, 0, (void*)&_wrap_class_CvDTree, 0}; -static swig_type_info _swigt__p_CvDTreeNode = {"_p_CvDTreeNode", "CvDTreeNode *", 0, 0, (void*)&_wrap_class_CvDTreeNode, 0}; -static swig_type_info _swigt__p_CvDTreeParams = {"_p_CvDTreeParams", "CvDTreeParams *|cv::DTreeParams *", 0, 0, (void*)&_wrap_class_CvDTreeParams, 0}; -static swig_type_info _swigt__p_CvDTreeSplit = {"_p_CvDTreeSplit", "CvDTreeSplit *", 0, 0, (void*)&_wrap_class_CvDTreeSplit, 0}; -static swig_type_info _swigt__p_CvDTreeTrainData = {"_p_CvDTreeTrainData", "CvDTreeTrainData *", 0, 0, (void*)&_wrap_class_CvDTreeTrainData, 0}; -static swig_type_info _swigt__p_CvEM = {"_p_CvEM", "cv::ExpectationMaximization *|CvEM *", 0, 0, (void*)&_wrap_class_CvEM, 0}; -static swig_type_info _swigt__p_CvEMParams = {"_p_CvEMParams", "CvEMParams *|cv::EMParams *", 0, 0, (void*)&_wrap_class_CvEMParams, 0}; -static swig_type_info _swigt__p_CvERTreeTrainData = {"_p_CvERTreeTrainData", "CvERTreeTrainData *|cv::ERTreeTRainData *", 0, 0, (void*)&_wrap_class_CvERTreeTrainData, 0}; -static swig_type_info _swigt__p_CvERTrees = {"_p_CvERTrees", "CvERTrees *|cv::ERTrees *", 0, 0, (void*)&_wrap_class_CvERTrees, 0}; -static swig_type_info _swigt__p_CvFileNode = {"_p_CvFileNode", "CvFileNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileStorage = {"_p_CvFileStorage", "CvFileStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFilter = {"_p_CvFilter", "enum CvFilter *|CvFilter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFont = {"_p_CvFont", "CvFont *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvForestERTree = {"_p_CvForestERTree", "CvForestERTree *|cv::ERTree *", 0, 0, (void*)&_wrap_class_CvForestERTree, 0}; -static swig_type_info _swigt__p_CvForestTree = {"_p_CvForestTree", "CvForestTree *|cv::ForestTree *", 0, 0, (void*)&_wrap_class_CvForestTree, 0}; -static swig_type_info _swigt__p_CvGenericHash = {"_p_CvGenericHash", "CvGenericHash *|CvFileNodeHash *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraph = {"_p_CvGraph", "CvGraph *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphEdge = {"_p_CvGraphEdge", "CvGraphEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphScanner = {"_p_CvGraphScanner", "CvGraphScanner *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx = {"_p_CvGraphVtx", "CvGraphVtx *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx2D = {"_p_CvGraphVtx2D", "CvGraphVtx2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifier = {"_p_CvHaarClassifier", "CvHaarClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifierCascade = {"_p_CvHaarClassifierCascade", "CvHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarFeature = {"_p_CvHaarFeature", "CvHaarFeature *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarStageClassifier = {"_p_CvHaarStageClassifier", "CvHaarStageClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHidHaarClassifierCascade = {"_p_CvHidHaarClassifierCascade", "CvHidHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHistogram = {"_p_CvHistogram", "CvHistogram *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHuMoments = {"_p_CvHuMoments", "CvHuMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvKNearest = {"_p_CvKNearest", "CvKNearest *|cv::KNearest *", 0, 0, (void*)&_wrap_class_CvKNearest, 0}; -static swig_type_info _swigt__p_CvKalman = {"_p_CvKalman", "CvKalman *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLineIterator = {"_p_CvLineIterator", "CvLineIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMLData = {"_p_CvMLData", "CvMLData *|cv::TrainData *", 0, 0, (void*)&_wrap_class_CvMLData, 0}; -static swig_type_info _swigt__p_CvMSERParams = {"_p_CvMSERParams", "CvMSERParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMat = {"_p_CvMat", "CvMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND = {"_p_CvMatND", "CvMatND *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatrix3 = {"_p_CvMatrix3", "CvMatrix3 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemBlock = {"_p_CvMemBlock", "CvMemBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStorage = {"_p_CvMemStorage", "CvMemStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStoragePos = {"_p_CvMemStoragePos", "CvMemStoragePos *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvModuleInfo = {"_p_CvModuleInfo", "CvModuleInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMoments = {"_p_CvMoments", "CvMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNArrayIterator = {"_p_CvNArrayIterator", "CvNArrayIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNextEdgeType = {"_p_CvNextEdgeType", "enum CvNextEdgeType *|CvNextEdgeType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNormalBayesClassifier = {"_p_CvNormalBayesClassifier", "CvNormalBayesClassifier *|cv::NormalBayesClassifier *", 0, 0, (void*)&_wrap_class_CvNormalBayesClassifier, 0}; -static swig_type_info _swigt__p_CvPOSITObject = {"_p_CvPOSITObject", "CvPOSITObject *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPair16u32s = {"_p_CvPair16u32s", "CvPair16u32s *", 0, 0, (void*)&_wrap_class_CvPair16u32s, 0}; -static swig_type_info _swigt__p_CvParamGrid = {"_p_CvParamGrid", "CvParamGrid *|cv::ParamGrid *", 0, 0, (void*)&_wrap_class_CvParamGrid, 0}; -static swig_type_info _swigt__p_CvPluginFuncInfo = {"_p_CvPluginFuncInfo", "CvPluginFuncInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint = {"_p_CvPoint", "CvPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D32f = {"_p_CvPoint2D32f", "CvPoint2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D64f = {"_p_CvPoint2D64f", "CvPoint2D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D32f = {"_p_CvPoint3D32f", "CvPoint3D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D64f = {"_p_CvPoint3D64f", "CvPoint3D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvQuadEdge2D = {"_p_CvQuadEdge2D", "CvQuadEdge2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRNG_Wrapper = {"_p_CvRNG_Wrapper", "CvRNG_Wrapper *", 0, 0, (void*)&_wrap_class_CvRNG_Wrapper, 0}; -static swig_type_info _swigt__p_CvRTParams = {"_p_CvRTParams", "CvRTParams *|cv::RandomTreeParams *", 0, 0, (void*)&_wrap_class_CvRTParams, 0}; -static swig_type_info _swigt__p_CvRTrees = {"_p_CvRTrees", "CvRTrees *|cv::RandomTrees *", 0, 0, (void*)&_wrap_class_CvRTrees, 0}; -static swig_type_info _swigt__p_CvRect = {"_p_CvRect", "CvRect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFParams = {"_p_CvSURFParams", "CvSURFParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFPoint = {"_p_CvSURFPoint", "CvSURFPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVM = {"_p_CvSVM", "CvSVM *|cv::SVM *", 0, 0, (void*)&_wrap_class_CvSVM, 0}; -static swig_type_info _swigt__p_CvSVMDecisionFunc = {"_p_CvSVMDecisionFunc", "CvSVMDecisionFunc *", 0, 0, (void*)&_wrap_class_CvSVMDecisionFunc, 0}; -static swig_type_info _swigt__p_CvSVMKernel = {"_p_CvSVMKernel", "CvSVMKernel *|cv::SVMKernel *", 0, 0, (void*)&_wrap_class_CvSVMKernel, 0}; -static swig_type_info _swigt__p_CvSVMKernelRow = {"_p_CvSVMKernelRow", "CvSVMKernelRow *", 0, 0, (void*)&_wrap_class_CvSVMKernelRow, 0}; -static swig_type_info _swigt__p_CvSVMParams = {"_p_CvSVMParams", "CvSVMParams *|cv::SVMParams *", 0, 0, (void*)&_wrap_class_CvSVMParams, 0}; -static swig_type_info _swigt__p_CvSVMSolutionInfo = {"_p_CvSVMSolutionInfo", "CvSVMSolutionInfo *", 0, 0, (void*)&_wrap_class_CvSVMSolutionInfo, 0}; -static swig_type_info _swigt__p_CvSVMSolver = {"_p_CvSVMSolver", "CvSVMSolver *|cv::SVMSolver *", 0, 0, (void*)&_wrap_class_CvSVMSolver, 0}; -static swig_type_info _swigt__p_CvScalar = {"_p_CvScalar", "CvScalar *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeq = {"_p_CvSeq", "CvSeq *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqBlock = {"_p_CvSeqBlock", "CvSeqBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqReader = {"_p_CvSeqReader", "CvSeqReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqWriter = {"_p_CvSeqWriter", "CvSeqWriter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSet = {"_p_CvSet", "CvSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSetElem = {"_p_CvSetElem", "CvSetElem *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize = {"_p_CvSize", "CvSize *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize2D32f = {"_p_CvSize2D32f", "CvSize2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSlice = {"_p_CvSlice", "CvSlice *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMat = {"_p_CvSparseMat", "CvSparseMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMatIterator = {"_p_CvSparseMatIterator", "CvSparseMatIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseNode = {"_p_CvSparseNode", "CvSparseNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarDetectorParams = {"_p_CvStarDetectorParams", "CvStarDetectorParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarKeypoint = {"_p_CvStarKeypoint", "CvStarKeypoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStatModel = {"_p_CvStatModel", "CvStatModel *|cv::StatModel *", 0, 0, (void*)&_wrap_class_CvStatModel, 0}; -static swig_type_info _swigt__p_CvStereoBMState = {"_p_CvStereoBMState", "CvStereoBMState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoGCState = {"_p_CvStereoGCState", "CvStereoGCState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvString = {"_p_CvString", "CvString *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStringHashNode = {"_p_CvStringHashNode", "CvStringHashNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2D = {"_p_CvSubdiv2D", "CvSubdiv2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DEdge_Wrapper = {"_p_CvSubdiv2DEdge_Wrapper", "CvSubdiv2DEdge_Wrapper *", 0, 0, (void*)&_wrap_class_CvSubdiv2DEdge_Wrapper, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPoint = {"_p_CvSubdiv2DPoint", "CvSubdiv2DPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPointLocation = {"_p_CvSubdiv2DPointLocation", "enum CvSubdiv2DPointLocation *|CvSubdiv2DPointLocation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTermCriteria = {"_p_CvTermCriteria", "CvTermCriteria *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTrainTestSplit = {"_p_CvTrainTestSplit", "CvTrainTestSplit *", 0, 0, (void*)&_wrap_class_CvTrainTestSplit, 0}; -static swig_type_info _swigt__p_CvTrainTestSplit_class_part = {"_p_CvTrainTestSplit_class_part", "CvTrainTestSplit_class_part *", 0, 0, (void*)&_wrap_class_CvTrainTestSplit_class_part, 0}; -static swig_type_info _swigt__p_CvTrainTestSplit_train_sample_part = {"_p_CvTrainTestSplit_train_sample_part", "CvTrainTestSplit_train_sample_part *", 0, 0, (void*)&_wrap_class_CvTrainTestSplit_train_sample_part, 0}; -static swig_type_info _swigt__p_CvTreeNodeIterator = {"_p_CvTreeNodeIterator", "CvTreeNodeIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypeInfo = {"_p_CvTypeInfo", "CvTypeInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvVectors = {"_p_CvVectors", "CvVectors *", 0, 0, (void*)&_wrap_class_CvVectors, 0}; -static swig_type_info _swigt__p_CvVectors_data = {"_p_CvVectors_data", "CvVectors_data *", 0, 0, (void*)&_wrap_class_CvVectors_data, 0}; -static swig_type_info _swigt__p_GetRow = {"_p_GetRow", "GetRow *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_SelectWorkingSet = {"_p_SelectWorkingSet", "SelectWorkingSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernel = {"_p__IplConvKernel", "_IplConvKernel *|IplConvKernel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernelFP = {"_p__IplConvKernelFP", "_IplConvKernelFP *|IplConvKernelFP *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplImage = {"_p__IplImage", "_IplImage *|IplImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplROI = {"_p__IplROI", "_IplROI *|IplROI *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplTileInfo = {"_p__IplTileInfo", "_IplTileInfo *|IplTileInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_bool = {"_p_bool", "bool *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_double = {"_p_double", "double *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_float = {"_p_float", "float *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int = {"_p_int", "CvHistType *|int *|CVStatus *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|int64 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMat = {"_p_p_CvMat", "CvMat **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_double = {"_p_p_double", "double **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_float = {"_p_p_float", "float **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_int = {"_p_p_int", "int **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_unsigned_char = {"_p_p_unsigned_char", "unsigned char **|uchar **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "schar *|signed char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *|CvSubdiv2DEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uint64 *|CvRNG *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "uchar *|unsigned char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|ushort *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_vectorT_float_t = {"_p_vectorT_float_t", "vector< float > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_vectorT_vectorT_float_t_t = {"_p_vectorT_vectorT_float_t_t", "vector< vector< float > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_vectorT_vectorT_int_t_t = {"_p_vectorT_vectorT_int_t_t", "vector< vector< int > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_void = {"_p_void", "CvArr *|void *", 0, 0, (void*)0, 0}; - -static swig_type_info *swig_type_initial[] = { - &_swigt__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, - &_swigt__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, - &_swigt__m_CvSVMSolver__f_r_double_r_double__void, - &_swigt__m_CvSVMSolver__f_r_int_r_int__bool, - &_swigt__p_Calc, - &_swigt__p_CalcRho, - &_swigt__p_Cv32suf, - &_swigt__p_Cv64suf, - &_swigt__p_CvANN_MLP, - &_swigt__p_CvANN_MLP_TrainParams, - &_swigt__p_CvAttrList, - &_swigt__p_CvAvgComp, - &_swigt__p_CvBoost, - &_swigt__p_CvBoostParams, - &_swigt__p_CvBoostTree, - &_swigt__p_CvBox2D, - &_swigt__p_CvChain, - &_swigt__p_CvChainPtReader, - &_swigt__p_CvConDensation, - &_swigt__p_CvConnectedComp, - &_swigt__p_CvContour, - &_swigt__p_CvContourTree, - &_swigt__p_CvConvexityDefect, - &_swigt__p_CvDTree, - &_swigt__p_CvDTreeNode, - &_swigt__p_CvDTreeParams, - &_swigt__p_CvDTreeSplit, - &_swigt__p_CvDTreeTrainData, - &_swigt__p_CvEM, - &_swigt__p_CvEMParams, - &_swigt__p_CvERTreeTrainData, - &_swigt__p_CvERTrees, - &_swigt__p_CvFileNode, - &_swigt__p_CvFileStorage, - &_swigt__p_CvFilter, - &_swigt__p_CvFont, - &_swigt__p_CvForestERTree, - &_swigt__p_CvForestTree, - &_swigt__p_CvGenericHash, - &_swigt__p_CvGraph, - &_swigt__p_CvGraphEdge, - &_swigt__p_CvGraphScanner, - &_swigt__p_CvGraphVtx, - &_swigt__p_CvGraphVtx2D, - &_swigt__p_CvHaarClassifier, - &_swigt__p_CvHaarClassifierCascade, - &_swigt__p_CvHaarFeature, - &_swigt__p_CvHaarStageClassifier, - &_swigt__p_CvHidHaarClassifierCascade, - &_swigt__p_CvHistogram, - &_swigt__p_CvHuMoments, - &_swigt__p_CvKNearest, - &_swigt__p_CvKalman, - &_swigt__p_CvLineIterator, - &_swigt__p_CvMLData, - &_swigt__p_CvMSERParams, - &_swigt__p_CvMat, - &_swigt__p_CvMatND, - &_swigt__p_CvMatrix3, - &_swigt__p_CvMemBlock, - &_swigt__p_CvMemStorage, - &_swigt__p_CvMemStoragePos, - &_swigt__p_CvModuleInfo, - &_swigt__p_CvMoments, - &_swigt__p_CvNArrayIterator, - &_swigt__p_CvNextEdgeType, - &_swigt__p_CvNormalBayesClassifier, - &_swigt__p_CvPOSITObject, - &_swigt__p_CvPair16u32s, - &_swigt__p_CvParamGrid, - &_swigt__p_CvPluginFuncInfo, - &_swigt__p_CvPoint, - &_swigt__p_CvPoint2D32f, - &_swigt__p_CvPoint2D64f, - &_swigt__p_CvPoint3D32f, - &_swigt__p_CvPoint3D64f, - &_swigt__p_CvQuadEdge2D, - &_swigt__p_CvRNG_Wrapper, - &_swigt__p_CvRTParams, - &_swigt__p_CvRTrees, - &_swigt__p_CvRect, - &_swigt__p_CvSURFParams, - &_swigt__p_CvSURFPoint, - &_swigt__p_CvSVM, - &_swigt__p_CvSVMDecisionFunc, - &_swigt__p_CvSVMKernel, - &_swigt__p_CvSVMKernelRow, - &_swigt__p_CvSVMParams, - &_swigt__p_CvSVMSolutionInfo, - &_swigt__p_CvSVMSolver, - &_swigt__p_CvScalar, - &_swigt__p_CvSeq, - &_swigt__p_CvSeqBlock, - &_swigt__p_CvSeqReader, - &_swigt__p_CvSeqWriter, - &_swigt__p_CvSet, - &_swigt__p_CvSetElem, - &_swigt__p_CvSize, - &_swigt__p_CvSize2D32f, - &_swigt__p_CvSlice, - &_swigt__p_CvSparseMat, - &_swigt__p_CvSparseMatIterator, - &_swigt__p_CvSparseNode, - &_swigt__p_CvStarDetectorParams, - &_swigt__p_CvStarKeypoint, - &_swigt__p_CvStatModel, - &_swigt__p_CvStereoBMState, - &_swigt__p_CvStereoGCState, - &_swigt__p_CvString, - &_swigt__p_CvStringHashNode, - &_swigt__p_CvSubdiv2D, - &_swigt__p_CvSubdiv2DEdge_Wrapper, - &_swigt__p_CvSubdiv2DPoint, - &_swigt__p_CvSubdiv2DPointLocation, - &_swigt__p_CvTermCriteria, - &_swigt__p_CvTrainTestSplit, - &_swigt__p_CvTrainTestSplit_class_part, - &_swigt__p_CvTrainTestSplit_train_sample_part, - &_swigt__p_CvTreeNodeIterator, - &_swigt__p_CvTypeInfo, - &_swigt__p_CvVectors, - &_swigt__p_CvVectors_data, - &_swigt__p_GetRow, - &_swigt__p_SelectWorkingSet, - &_swigt__p__IplConvKernel, - &_swigt__p__IplConvKernelFP, - &_swigt__p__IplImage, - &_swigt__p__IplROI, - &_swigt__p__IplTileInfo, - &_swigt__p_bool, - &_swigt__p_char, - &_swigt__p_double, - &_swigt__p_float, - &_swigt__p_int, - &_swigt__p_int64_t, - &_swigt__p_p_CvMat, - &_swigt__p_p_double, - &_swigt__p_p_float, - &_swigt__p_p_int, - &_swigt__p_p_unsigned_char, - &_swigt__p_signed_char, - &_swigt__p_size_t, - &_swigt__p_uint64_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_short, - &_swigt__p_vectorT_float_t, - &_swigt__p_vectorT_vectorT_float_t_t, - &_swigt__p_vectorT_vectorT_int_t_t, - &_swigt__p_void, -}; - -static swig_cast_info _swigc__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void[] = { {&_swigt__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float[] = { {&_swigt__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__m_CvSVMSolver__f_r_double_r_double__void[] = { {&_swigt__m_CvSVMSolver__f_r_double_r_double__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__m_CvSVMSolver__f_r_int_r_int__bool[] = { {&_swigt__m_CvSVMSolver__f_r_int_r_int__bool, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Calc[] = { {&_swigt__p_Calc, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CalcRho[] = { {&_swigt__p_CalcRho, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv32suf[] = { {&_swigt__p_Cv32suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv64suf[] = { {&_swigt__p_Cv64suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvANN_MLP[] = { {&_swigt__p_CvANN_MLP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvANN_MLP_TrainParams[] = { {&_swigt__p_CvANN_MLP_TrainParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAttrList[] = { {&_swigt__p_CvAttrList, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAvgComp[] = { {&_swigt__p_CvAvgComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBoost[] = { {&_swigt__p_CvBoost, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBoostParams[] = { {&_swigt__p_CvBoostParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBoostTree[] = { {&_swigt__p_CvBoostTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBox2D[] = { {&_swigt__p_CvBox2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChain[] = { {&_swigt__p_CvChain, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChainPtReader[] = { {&_swigt__p_CvChainPtReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConDensation[] = { {&_swigt__p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConnectedComp[] = { {&_swigt__p_CvConnectedComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContour[] = { {&_swigt__p_CvContour, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContourTree[] = { {&_swigt__p_CvContourTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConvexityDefect[] = { {&_swigt__p_CvConvexityDefect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTree[] = { {&_swigt__p_CvForestERTree, _p_CvForestERTreeTo_p_CvDTree, 0, 0}, {&_swigt__p_CvForestTree, _p_CvForestTreeTo_p_CvDTree, 0, 0}, {&_swigt__p_CvBoostTree, _p_CvBoostTreeTo_p_CvDTree, 0, 0}, {&_swigt__p_CvDTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeNode[] = { {&_swigt__p_CvDTreeNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeParams[] = { {&_swigt__p_CvRTParams, _p_CvRTParamsTo_p_CvDTreeParams, 0, 0}, {&_swigt__p_CvBoostParams, _p_CvBoostParamsTo_p_CvDTreeParams, 0, 0}, {&_swigt__p_CvDTreeParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeSplit[] = { {&_swigt__p_CvDTreeSplit, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeTrainData[] = { {&_swigt__p_CvDTreeTrainData, 0, 0, 0}, {&_swigt__p_CvERTreeTrainData, _p_CvERTreeTrainDataTo_p_CvDTreeTrainData, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvEM[] = { {&_swigt__p_CvEM, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvEMParams[] = { {&_swigt__p_CvEMParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvERTreeTrainData[] = { {&_swigt__p_CvERTreeTrainData, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvERTrees[] = { {&_swigt__p_CvERTrees, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode[] = { {&_swigt__p_CvFileNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileStorage[] = { {&_swigt__p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFilter[] = { {&_swigt__p_CvFilter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFont[] = { {&_swigt__p_CvFont, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvForestERTree[] = { {&_swigt__p_CvForestERTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvForestTree[] = { {&_swigt__p_CvForestERTree, _p_CvForestERTreeTo_p_CvForestTree, 0, 0}, {&_swigt__p_CvForestTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGenericHash[] = { {&_swigt__p_CvGenericHash, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraph[] = { {&_swigt__p_CvGraph, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphEdge[] = { {&_swigt__p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphScanner[] = { {&_swigt__p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx[] = { {&_swigt__p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx2D[] = { {&_swigt__p_CvGraphVtx2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifier[] = { {&_swigt__p_CvHaarClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifierCascade[] = { {&_swigt__p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature[] = { {&_swigt__p_CvHaarFeature, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarStageClassifier[] = { {&_swigt__p_CvHaarStageClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHidHaarClassifierCascade[] = { {&_swigt__p_CvHidHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHistogram[] = { {&_swigt__p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHuMoments[] = { {&_swigt__p_CvHuMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKNearest[] = { {&_swigt__p_CvKNearest, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKalman[] = { {&_swigt__p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLineIterator[] = { {&_swigt__p_CvLineIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMLData[] = { {&_swigt__p_CvMLData, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMSERParams[] = { {&_swigt__p_CvMSERParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat[] = { {&_swigt__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND[] = { {&_swigt__p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix3[] = { {&_swigt__p_CvMatrix3, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemBlock[] = { {&_swigt__p_CvMemBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStorage[] = { {&_swigt__p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStoragePos[] = { {&_swigt__p_CvMemStoragePos, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModuleInfo[] = { {&_swigt__p_CvModuleInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMoments[] = { {&_swigt__p_CvMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNArrayIterator[] = { {&_swigt__p_CvNArrayIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNextEdgeType[] = { {&_swigt__p_CvNextEdgeType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNormalBayesClassifier[] = { {&_swigt__p_CvNormalBayesClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPOSITObject[] = { {&_swigt__p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPair16u32s[] = { {&_swigt__p_CvPair16u32s, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvParamGrid[] = { {&_swigt__p_CvParamGrid, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPluginFuncInfo[] = { {&_swigt__p_CvPluginFuncInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint[] = { {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D32f[] = { {&_swigt__p_CvPoint2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D64f[] = { {&_swigt__p_CvPoint2D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D32f[] = { {&_swigt__p_CvPoint3D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D64f[] = { {&_swigt__p_CvPoint3D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvQuadEdge2D[] = { {&_swigt__p_CvQuadEdge2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRNG_Wrapper[] = { {&_swigt__p_CvRNG_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRTParams[] = { {&_swigt__p_CvRTParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRTrees[] = { {&_swigt__p_CvRTrees, 0, 0, 0}, {&_swigt__p_CvERTrees, _p_CvERTreesTo_p_CvRTrees, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRect[] = { {&_swigt__p_CvRect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFParams[] = { {&_swigt__p_CvSURFParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFPoint[] = { {&_swigt__p_CvSURFPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVM[] = { {&_swigt__p_CvSVM, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMDecisionFunc[] = { {&_swigt__p_CvSVMDecisionFunc, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMKernel[] = { {&_swigt__p_CvSVMKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMKernelRow[] = { {&_swigt__p_CvSVMKernelRow, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMParams[] = { {&_swigt__p_CvSVMParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMSolutionInfo[] = { {&_swigt__p_CvSVMSolutionInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMSolver[] = { {&_swigt__p_CvSVMSolver, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvScalar[] = { {&_swigt__p_CvScalar, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeq[] = { {&_swigt__p_CvSeq, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqBlock[] = { {&_swigt__p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqReader[] = { {&_swigt__p_CvSeqReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqWriter[] = { {&_swigt__p_CvSeqWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSet[] = { {&_swigt__p_CvSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSetElem[] = { {&_swigt__p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize[] = { {&_swigt__p_CvSize, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize2D32f[] = { {&_swigt__p_CvSize2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSlice[] = { {&_swigt__p_CvSlice, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMat[] = { {&_swigt__p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMatIterator[] = { {&_swigt__p_CvSparseMatIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseNode[] = { {&_swigt__p_CvSparseNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarDetectorParams[] = { {&_swigt__p_CvStarDetectorParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarKeypoint[] = { {&_swigt__p_CvStarKeypoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStatModel[] = { {&_swigt__p_CvNormalBayesClassifier, _p_CvNormalBayesClassifierTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvForestERTree, _p_CvForestERTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvANN_MLP, _p_CvANN_MLPTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvStatModel, 0, 0, 0}, {&_swigt__p_CvKNearest, _p_CvKNearestTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvForestTree, _p_CvForestTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvRTrees, _p_CvRTreesTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvBoostTree, _p_CvBoostTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvERTrees, _p_CvERTreesTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvEM, _p_CvEMTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvSVM, _p_CvSVMTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvDTree, _p_CvDTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvBoost, _p_CvBoostTo_p_CvStatModel, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoBMState[] = { {&_swigt__p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoGCState[] = { {&_swigt__p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvString[] = { {&_swigt__p_CvString, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStringHashNode[] = { {&_swigt__p_CvStringHashNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2D[] = { {&_swigt__p_CvSubdiv2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DEdge_Wrapper[] = { {&_swigt__p_CvSubdiv2DEdge_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPoint[] = { {&_swigt__p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPointLocation[] = { {&_swigt__p_CvSubdiv2DPointLocation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTermCriteria[] = { {&_swigt__p_CvTermCriteria, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTrainTestSplit[] = { {&_swigt__p_CvTrainTestSplit, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTrainTestSplit_class_part[] = { {&_swigt__p_CvTrainTestSplit_class_part, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTrainTestSplit_train_sample_part[] = { {&_swigt__p_CvTrainTestSplit_train_sample_part, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTreeNodeIterator[] = { {&_swigt__p_CvTreeNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypeInfo[] = { {&_swigt__p_CvTypeInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvVectors[] = { {&_swigt__p_CvVectors, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvVectors_data[] = { {&_swigt__p_CvVectors_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_GetRow[] = { {&_swigt__p_GetRow, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_SelectWorkingSet[] = { {&_swigt__p_SelectWorkingSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernel[] = { {&_swigt__p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernelFP[] = { {&_swigt__p__IplConvKernelFP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplImage[] = { {&_swigt__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplROI[] = { {&_swigt__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplTileInfo[] = { {&_swigt__p__IplTileInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_bool[] = { {&_swigt__p_bool, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMat[] = { {&_swigt__p_p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_double[] = { {&_swigt__p_p_double, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_float[] = { {&_swigt__p_p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_int[] = { {&_swigt__p_p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_unsigned_char[] = { {&_swigt__p_p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_vectorT_float_t[] = { {&_swigt__p_vectorT_float_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_vectorT_vectorT_float_t_t[] = { {&_swigt__p_vectorT_vectorT_float_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_vectorT_vectorT_int_t_t[] = { {&_swigt__p_vectorT_vectorT_int_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; - -static swig_cast_info *swig_cast_initial[] = { - _swigc__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, - _swigc__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, - _swigc__m_CvSVMSolver__f_r_double_r_double__void, - _swigc__m_CvSVMSolver__f_r_int_r_int__bool, - _swigc__p_Calc, - _swigc__p_CalcRho, - _swigc__p_Cv32suf, - _swigc__p_Cv64suf, - _swigc__p_CvANN_MLP, - _swigc__p_CvANN_MLP_TrainParams, - _swigc__p_CvAttrList, - _swigc__p_CvAvgComp, - _swigc__p_CvBoost, - _swigc__p_CvBoostParams, - _swigc__p_CvBoostTree, - _swigc__p_CvBox2D, - _swigc__p_CvChain, - _swigc__p_CvChainPtReader, - _swigc__p_CvConDensation, - _swigc__p_CvConnectedComp, - _swigc__p_CvContour, - _swigc__p_CvContourTree, - _swigc__p_CvConvexityDefect, - _swigc__p_CvDTree, - _swigc__p_CvDTreeNode, - _swigc__p_CvDTreeParams, - _swigc__p_CvDTreeSplit, - _swigc__p_CvDTreeTrainData, - _swigc__p_CvEM, - _swigc__p_CvEMParams, - _swigc__p_CvERTreeTrainData, - _swigc__p_CvERTrees, - _swigc__p_CvFileNode, - _swigc__p_CvFileStorage, - _swigc__p_CvFilter, - _swigc__p_CvFont, - _swigc__p_CvForestERTree, - _swigc__p_CvForestTree, - _swigc__p_CvGenericHash, - _swigc__p_CvGraph, - _swigc__p_CvGraphEdge, - _swigc__p_CvGraphScanner, - _swigc__p_CvGraphVtx, - _swigc__p_CvGraphVtx2D, - _swigc__p_CvHaarClassifier, - _swigc__p_CvHaarClassifierCascade, - _swigc__p_CvHaarFeature, - _swigc__p_CvHaarStageClassifier, - _swigc__p_CvHidHaarClassifierCascade, - _swigc__p_CvHistogram, - _swigc__p_CvHuMoments, - _swigc__p_CvKNearest, - _swigc__p_CvKalman, - _swigc__p_CvLineIterator, - _swigc__p_CvMLData, - _swigc__p_CvMSERParams, - _swigc__p_CvMat, - _swigc__p_CvMatND, - _swigc__p_CvMatrix3, - _swigc__p_CvMemBlock, - _swigc__p_CvMemStorage, - _swigc__p_CvMemStoragePos, - _swigc__p_CvModuleInfo, - _swigc__p_CvMoments, - _swigc__p_CvNArrayIterator, - _swigc__p_CvNextEdgeType, - _swigc__p_CvNormalBayesClassifier, - _swigc__p_CvPOSITObject, - _swigc__p_CvPair16u32s, - _swigc__p_CvParamGrid, - _swigc__p_CvPluginFuncInfo, - _swigc__p_CvPoint, - _swigc__p_CvPoint2D32f, - _swigc__p_CvPoint2D64f, - _swigc__p_CvPoint3D32f, - _swigc__p_CvPoint3D64f, - _swigc__p_CvQuadEdge2D, - _swigc__p_CvRNG_Wrapper, - _swigc__p_CvRTParams, - _swigc__p_CvRTrees, - _swigc__p_CvRect, - _swigc__p_CvSURFParams, - _swigc__p_CvSURFPoint, - _swigc__p_CvSVM, - _swigc__p_CvSVMDecisionFunc, - _swigc__p_CvSVMKernel, - _swigc__p_CvSVMKernelRow, - _swigc__p_CvSVMParams, - _swigc__p_CvSVMSolutionInfo, - _swigc__p_CvSVMSolver, - _swigc__p_CvScalar, - _swigc__p_CvSeq, - _swigc__p_CvSeqBlock, - _swigc__p_CvSeqReader, - _swigc__p_CvSeqWriter, - _swigc__p_CvSet, - _swigc__p_CvSetElem, - _swigc__p_CvSize, - _swigc__p_CvSize2D32f, - _swigc__p_CvSlice, - _swigc__p_CvSparseMat, - _swigc__p_CvSparseMatIterator, - _swigc__p_CvSparseNode, - _swigc__p_CvStarDetectorParams, - _swigc__p_CvStarKeypoint, - _swigc__p_CvStatModel, - _swigc__p_CvStereoBMState, - _swigc__p_CvStereoGCState, - _swigc__p_CvString, - _swigc__p_CvStringHashNode, - _swigc__p_CvSubdiv2D, - _swigc__p_CvSubdiv2DEdge_Wrapper, - _swigc__p_CvSubdiv2DPoint, - _swigc__p_CvSubdiv2DPointLocation, - _swigc__p_CvTermCriteria, - _swigc__p_CvTrainTestSplit, - _swigc__p_CvTrainTestSplit_class_part, - _swigc__p_CvTrainTestSplit_train_sample_part, - _swigc__p_CvTreeNodeIterator, - _swigc__p_CvTypeInfo, - _swigc__p_CvVectors, - _swigc__p_CvVectors_data, - _swigc__p_GetRow, - _swigc__p_SelectWorkingSet, - _swigc__p__IplConvKernel, - _swigc__p__IplConvKernelFP, - _swigc__p__IplImage, - _swigc__p__IplROI, - _swigc__p__IplTileInfo, - _swigc__p_bool, - _swigc__p_char, - _swigc__p_double, - _swigc__p_float, - _swigc__p_int, - _swigc__p_int64_t, - _swigc__p_p_CvMat, - _swigc__p_p_double, - _swigc__p_p_float, - _swigc__p_p_int, - _swigc__p_p_unsigned_char, - _swigc__p_signed_char, - _swigc__p_size_t, - _swigc__p_uint64_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_short, - _swigc__p_vectorT_float_t, - _swigc__p_vectorT_vectorT_float_t_t, - _swigc__p_vectorT_vectorT_int_t_t, - _swigc__p_void, -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -/* ----------------------------------------------------------------------------- - * Type initialization: - * This problem is tough by the requirement that no dynamic - * memory is used. Also, since swig_type_info structures store pointers to - * swig_cast_info structures and swig_cast_info structures store pointers back - * to swig_type_info structures, we need some lookup code at initialization. - * The idea is that swig generates all the structures that are needed. - * The runtime then collects these partially filled structures. - * The SWIG_InitializeModule function takes these initial arrays out of - * swig_module, and does all the lookup, filling in the swig_module.types - * array with the correct data and linking the correct swig_cast_info - * structures together. - * - * The generated swig_type_info structures are assigned staticly to an initial - * array. We just loop through that array, and handle each type individually. - * First we lookup if this type has been already loaded, and if so, use the - * loaded structure instead of the generated one. Then we have to fill in the - * cast linked list. The cast data is initially stored in something like a - * two-dimensional array. Each row corresponds to a type (there are the same - * number of rows as there are in the swig_type_initial array). Each entry in - * a column is one of the swig_cast_info structures for that type. - * The cast_initial array is actually an array of arrays, because each row has - * a variable number of columns. So to actually build the cast linked list, - * we find the array of casts associated with the type, and loop through it - * adding the casts to the list. The one last trick we need to do is making - * sure the type pointer in the swig_cast_info struct is correct. - * - * First off, we lookup the cast->type name to see if it is already loaded. - * There are three cases to handle: - * 1) If the cast->type has already been loaded AND the type we are adding - * casting info to has not been loaded (it is in this module), THEN we - * replace the cast->type pointer with the type pointer that has already - * been loaded. - * 2) If BOTH types (the one we are adding casting info to, and the - * cast->type) are loaded, THEN the cast info has already been loaded by - * the previous module so we just ignore it. - * 3) Finally, if cast->type has not already been loaded, then we add that - * swig_cast_info to the linked list (because the cast->type) pointer will - * be correct. - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* c-mode */ -#endif -#endif - -#if 0 -#define SWIGRUNTIME_DEBUG -#endif - - -SWIGRUNTIME void -SWIG_InitializeModule(void *clientdata) { - size_t i; - swig_module_info *module_head, *iter; - int found, init; - - clientdata = clientdata; - - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next==0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (!module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - module_head = &swig_module; - } else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - found=0; - iter=module_head; - do { - if (iter==&swig_module) { - found=1; - break; - } - iter=iter->next; - } while (iter!= module_head); - - /* if the is found in the list, then all is done and we may leave */ - if (found) return; - /* otherwise we must add out module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpeters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) return; - - /* Now work on filling in swig_module.types */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %d\n", swig_module.size); -#endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info *type = 0; - swig_type_info *ret; - swig_cast_info *cast; - -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); -#endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } else { - /* Check for casting already in the list */ - swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (!ocast) ret = 0; - } - } - - if (!ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; - } - swig_module.types[i] = 0; - -#ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info *cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n",j); - } - printf("**** SWIG_InitializeModule: Cast List ******\n"); -#endif -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientData(void) { - size_t i; - swig_cast_info *equiv; - static int init_run = 0; - - if (init_run) return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (!equiv->converter) { - if (equiv->type && !equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } - } - } -} - -#ifdef __cplusplus -#if 0 -{ /* c-mode */ -#endif -} -#endif - - - -static void SWIG_init_user(octave_swig_type* module_ns); - -DEFUN_DLD (SWIG_name,args,nargout,SWIG_name_d) { - static bool already_init=false; - if (already_init) - return octave_value_list(); - already_init=true; - - octave_swig_ref::register_type(); - octave_swig_packed::register_type(); - SWIG_InitializeModule(0); - SWIG_PropagateClientData(); - - install_builtin_function(swig_type,"swig_type",std::string()); - install_builtin_function(swig_typequery,"swig_typequery",std::string()); - install_builtin_function(swig_this,"swig_this",std::string()); - install_builtin_function(swig_subclass,"subclass",std::string()); - - bool global_option=true; // * swig cli option should control this default - for (int j=0;jassign(swig_globals[j].name,&swig_globals[j]); - - octave_swig_type* module_ns=new octave_swig_type(0, 0, 0, true); - module_ns->assign("cvar",Swig::swig_value_ref(cvar_ns)); - for (int j=0;swig_globals[j].name;++j) - if (swig_globals[j].method) - module_ns->assign(swig_globals[j].name,&swig_globals[j]); - - // * need better solution here; swig_type -> octave_class mapping is - // * really n-to-1, in some cases such as template partial spec, etc. - // * see failing tests. - for (int j=0;swig_types[j];++j) - if (swig_types[j]->clientdata) { - swig_octave_class* c=(swig_octave_class*)swig_types[j]->clientdata; - module_ns->assign(c->name, - Swig::swig_value_ref - (new octave_swig_type(0,swig_types[j]))); - } - - SWIG_init_user(module_ns); - - SWIG_InstallOps(octave_swig_ref::static_type_id()); - - // the incref is necessary so install_global doesn't destroy module_ns, - // as it would if it installed something with the same name as the module. - module_ns->incref(); - if (global_option) - module_ns->install_global(); - module_ns->decref(); - -#if USE_OCTAVE_API_VERSION<37 - link_to_global_variable(curr_sym_tab->lookup(SWIG_name_d,true)); -#else - symbol_table::varref(SWIG_name_d); - symbol_table::mark_global(SWIG_name_d); -#endif - set_global_value(SWIG_name_d,Swig::swig_value_ref(module_ns)); - -#if USE_OCTAVE_API_VERSION>=37 - mlock(); -#endif - - return octave_value_list(); -} - -// workaround bug in octave where installing global variable of custom type and then -// exiting without explicitly clearing the variable causes octave to segfault. -#if USE_OCTAVE_API_VERSION>=37 -struct oct_file_unload { - ~oct_file_unload() { - string_vector vars = symbol_table::global_variable_names(); - for (int i = 0; i < vars.length(); i++) - symbol_table::clear_global(vars[i]); - } -}; -static oct_file_unload __unload; -#endif - - -static void SWIG_init_user(octave_swig_type* module_ns) -{ - feval("cv",octave_value_list(),0); - SWIG_Octave_SetConstant(module_ns,"CV_LOG2PI",octave_value((1.8378770664093454835606594728112))); - SWIG_Octave_SetConstant(module_ns,"CV_COL_SAMPLE",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_ROW_SAMPLE",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_VAR_NUMERICAL",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_VAR_ORDERED",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_VAR_CATEGORICAL",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_SVM",SWIG_FromCharPtr("opencv-ml-svm")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_KNN",SWIG_FromCharPtr("opencv-ml-knn")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_NBAYES",SWIG_FromCharPtr("opencv-ml-bayesian")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_EM",SWIG_FromCharPtr("opencv-ml-em")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_BOOSTING",SWIG_FromCharPtr("opencv-ml-boost-tree")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_TREE",SWIG_FromCharPtr("opencv-ml-tree")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_ANN_MLP",SWIG_FromCharPtr("opencv-ml-ann-mlp")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_CNN",SWIG_FromCharPtr("opencv-ml-cnn")); - SWIG_Octave_SetConstant(module_ns,"CV_TYPE_NAME_ML_RTREES",SWIG_FromCharPtr("opencv-ml-random-trees")); - SWIG_Octave_SetConstant(module_ns,"CV_TRAIN_ERROR",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_TEST_ERROR",SWIG_From_int((int)(1))); - SWIG_Octave_SetConstant(module_ns,"CvParamGrid_SVM_C",SWIG_From_int((int)(CvParamGrid::SVM_C))); - SWIG_Octave_SetConstant(module_ns,"CvParamGrid_SVM_GAMMA",SWIG_From_int((int)(CvParamGrid::SVM_GAMMA))); - SWIG_Octave_SetConstant(module_ns,"CvParamGrid_SVM_P",SWIG_From_int((int)(CvParamGrid::SVM_P))); - SWIG_Octave_SetConstant(module_ns,"CvParamGrid_SVM_NU",SWIG_From_int((int)(CvParamGrid::SVM_NU))); - SWIG_Octave_SetConstant(module_ns,"CvParamGrid_SVM_COEF",SWIG_From_int((int)(CvParamGrid::SVM_COEF))); - SWIG_Octave_SetConstant(module_ns,"CvParamGrid_SVM_DEGREE",SWIG_From_int((int)(CvParamGrid::SVM_DEGREE))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_C_SVC",SWIG_From_int((int)(CvSVM::C_SVC))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_NU_SVC",SWIG_From_int((int)(CvSVM::NU_SVC))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_ONE_CLASS",SWIG_From_int((int)(CvSVM::ONE_CLASS))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_EPS_SVR",SWIG_From_int((int)(CvSVM::EPS_SVR))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_NU_SVR",SWIG_From_int((int)(CvSVM::NU_SVR))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_LINEAR",SWIG_From_int((int)(CvSVM::LINEAR))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_POLY",SWIG_From_int((int)(CvSVM::POLY))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_RBF",SWIG_From_int((int)(CvSVM::RBF))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_SIGMOID",SWIG_From_int((int)(CvSVM::SIGMOID))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_C",SWIG_From_int((int)(CvSVM::C))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_GAMMA",SWIG_From_int((int)(CvSVM::GAMMA))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_P",SWIG_From_int((int)(CvSVM::P))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_NU",SWIG_From_int((int)(CvSVM::NU))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_COEF",SWIG_From_int((int)(CvSVM::COEF))); - SWIG_Octave_SetConstant(module_ns,"CvSVM_DEGREE",SWIG_From_int((int)(CvSVM::DEGREE))); - SWIG_Octave_SetConstant(module_ns,"CvEM_COV_MAT_SPHERICAL",SWIG_From_int((int)(CvEM::COV_MAT_SPHERICAL))); - SWIG_Octave_SetConstant(module_ns,"CvEM_COV_MAT_DIAGONAL",SWIG_From_int((int)(CvEM::COV_MAT_DIAGONAL))); - SWIG_Octave_SetConstant(module_ns,"CvEM_COV_MAT_GENERIC",SWIG_From_int((int)(CvEM::COV_MAT_GENERIC))); - SWIG_Octave_SetConstant(module_ns,"CvEM_START_E_STEP",SWIG_From_int((int)(CvEM::START_E_STEP))); - SWIG_Octave_SetConstant(module_ns,"CvEM_START_M_STEP",SWIG_From_int((int)(CvEM::START_M_STEP))); - SWIG_Octave_SetConstant(module_ns,"CvEM_START_AUTO_STEP",SWIG_From_int((int)(CvEM::START_AUTO_STEP))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_DISCRETE",SWIG_From_int((int)(CvBoost::DISCRETE))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_REAL",SWIG_From_int((int)(CvBoost::REAL))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_LOGIT",SWIG_From_int((int)(CvBoost::LOGIT))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_GENTLE",SWIG_From_int((int)(CvBoost::GENTLE))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_DEFAULT",SWIG_From_int((int)(CvBoost::DEFAULT))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_GINI",SWIG_From_int((int)(CvBoost::GINI))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_MISCLASS",SWIG_From_int((int)(CvBoost::MISCLASS))); - SWIG_Octave_SetConstant(module_ns,"CvBoost_SQERR",SWIG_From_int((int)(CvBoost::SQERR))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_TrainParams_BACKPROP",SWIG_From_int((int)(CvANN_MLP_TrainParams::BACKPROP))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_TrainParams_RPROP",SWIG_From_int((int)(CvANN_MLP_TrainParams::RPROP))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_IDENTITY",SWIG_From_int((int)(CvANN_MLP::IDENTITY))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_SIGMOID_SYM",SWIG_From_int((int)(CvANN_MLP::SIGMOID_SYM))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_GAUSSIAN",SWIG_From_int((int)(CvANN_MLP::GAUSSIAN))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_UPDATE_WEIGHTS",SWIG_From_int((int)(CvANN_MLP::UPDATE_WEIGHTS))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_NO_INPUT_SCALE",SWIG_From_int((int)(CvANN_MLP::NO_INPUT_SCALE))); - SWIG_Octave_SetConstant(module_ns,"CvANN_MLP_NO_OUTPUT_SCALE",SWIG_From_int((int)(CvANN_MLP::NO_OUTPUT_SCALE))); - SWIG_Octave_SetConstant(module_ns,"CV_TS_CONCENTRIC_SPHERES",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_COUNT",SWIG_From_int((int)(0))); - SWIG_Octave_SetConstant(module_ns,"CV_PORTION",SWIG_From_int((int)(1))); -} - diff --git a/interfaces/swig/octave/octcvseq.hpp b/interfaces/swig/octave/octcvseq.hpp deleted file mode 100644 index 5d6303fb6..000000000 --- a/interfaces/swig/octave/octcvseq.hpp +++ /dev/null @@ -1,120 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -#ifndef OCT_CV_SEQ_H -#define OCT_CV_SEQ_H - -#include "cxcore.h" -#include "cvtypes.h" - - -/** class to make sequence iteration nicer */ -template -class CvTypedSeqReader : public CvSeqReader { - int pos; -public: - CvTypedSeqReader( const CvSeq * seq ){ - cvStartReadSeq( seq, this ); - pos = 0; - } - T * current(){ - return (T*) this->ptr; - } - void next(){ - CV_NEXT_SEQ_ELEM( this->seq->elem_size, *this ); - pos++; - } - bool valid(){ - return posseq->total; - } -}; - -template -class CvTypedSeq : public CvSeq { -public: - static CvTypedSeq * cast(CvSeq * seq){ - return (CvTypedSeq *) seq; - } - T * __paren (int i){ - return (T *) cvGetSeqElem(this, i); - } - void __paren_asgn (int i, T * obj){ - T * ptr = this->__paren(i); - memcpy(ptr, obj, sizeof(T)); - } - - T * __brace (int i){ - return __paren(i); - } - void __brace_asgn (int i, T * obj){ - __paren_asgn(i, obj); - } - - void append(T * obj){ - cvSeqPush( this, obj ); - } - T * pop(){ - T * obj = new T; - cvSeqPop( this, obj ); - return obj; - } -}; - -template -struct CvTuple { - T val[2]; - const T & __paren(int i){ - return val[i]; - } - void __paren_asgn(int i, T * obj){ - val[i] = *obj; - } - - const T & __brace(int i){ - return __paren(i); - } - void __brace_asgn(int i, T * obj){ - return __paren_asgn(i,obj); - } - -}; - -#endif //OCT_CV_SEQ_H diff --git a/interfaces/swig/octave/octerror.cpp b/interfaces/swig/octave/octerror.cpp deleted file mode 100644 index 4ddf92fc1..000000000 --- a/interfaces/swig/octave/octerror.cpp +++ /dev/null @@ -1,109 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-17, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University -// 2008-04-19, Xavier Delacour - - -#include "octerror.h" -#include -#include - -#include - -// OpenCV headers -#include "cxcore.h" -#include "cxerror.h" - - -//========================================================================= -int SendErrorToOctave - ( - int status, - const char* func_name, - const char* err_msg, - const char* file_name, - int line, - void* /*userdata*/ - ) - throw(int) - { - std::stringstream message; - message - << " openCV Error:" - << "\n Status=" << cvErrorStr(status) - << "\n function name=" << (func_name ? func_name : "unknown") - << "\n error message=" << (err_msg ? err_msg : "unknown") - << "\n file_name=" << (file_name ? file_name : "unknown") - << "\n line=" << line - << std::flush; - - // Clear OpenCV's error status for the next call! - cvSetErrStatus( CV_StsOk ); - - // Set Octave Error. - error(message.str().c_str()); - throw 1; - return 0; - } - - -//========================================================================= -void* void_ptr_generator() - { - return 0; - } - -//========================================================================= -void** void_ptrptr_generator() - { - return 0; - } - -//========================================================================= -CvErrorCallback function_ptr_generator() - { - return &SendErrorToOctave; - } - diff --git a/interfaces/swig/octave/octerror.h b/interfaces/swig/octave/octerror.h deleted file mode 100644 index 165bbf4e2..000000000 --- a/interfaces/swig/octave/octerror.h +++ /dev/null @@ -1,68 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-17, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - - -#include "cxcore.h" - -/** - * This function will set a Octave error and throw an int. - * Exceptions are catched automatically by the SWIG code from "typemaps.i" - */ -int SendErrorToOctave ( int status, - const char * func_name, - const char * err_msg, - const char * file_name, - int line, - void * /*userdata*/) throw(int); - -/// Returns the adress of the static method "SendErrorToPython()" -CvErrorCallback function_ptr_generator(); - -/// Dummy to generate an empty void pointer -void * void_ptr_generator(); - -/// Dummy to generate an empty void double pointer -void ** void_ptrptr_generator(); diff --git a/interfaces/swig/octave/octhelpers.cpp b/interfaces/swig/octave/octhelpers.cpp deleted file mode 100644 index 7a7527d29..000000000 --- a/interfaces/swig/octave/octhelpers.cpp +++ /dev/null @@ -1,368 +0,0 @@ -#include "octhelpers.h" -#include -#include - -int OctSwigObject_Check(octave_value op); - -octave_value OctTuple_FromIntArray(int * arr, int len){ - octave_value obj = OctTuple_New(len); - for(int i=0; iappend(to_add[j]); - return result; -} - -template -std::ostream & cv_arr_write(std::ostream & out, T * data, int rows, int nch, int step){ - int i,j,k; - char * cdata = (char *) data; - std::string chdelim1="", chdelim2=""; - - // only output channel parens if > 1 - if(nch>1){ - chdelim1="("; - chdelim2=")"; - } - - out<<"[\n"; - for(i=0; itype); - int depth = CV_MAT_DEPTH(mat->type); - int step = MAX(mat->step, cn*mat->cols*CV_ELEM_SIZE(depth)); - std::ostringstream str; - - switch(depth){ - case CV_8U: - cv_arr_write(str, (uchar *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_8S: - cv_arr_write(str, (char *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_16U: - cv_arr_write(str, (ushort *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_16S: - cv_arr_write(str, (short *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_32S: - cv_arr_write(str, (int *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_32F: - cv_arr_write(str, (float *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_64F: - cv_arr_write(str, (double *)mat->data.ptr, mat->rows, cn, step); - break; - default: - CV_ERROR( CV_StsError, "Unknown element type"); - break; - } - std::cout<1){ - lower[0] = OctLong_AsIndex( idx_object, sz.height ); - upper[0] = lower[0] + 1; - lower[1] = 0; - upper[1] = sz.width; - } - else{ - lower[0] = 0; - upper[0] = sz.height; - lower[1] = OctLong_AsIndex( idx_object, sz.width ); - upper[1] = lower[1]+1; - } - } - - // 1. Slice - else if(OctSlice_Check(idx_object)){ - len = sz.height; - if(OctSlice_GetIndicesEx( idx_object, len, &start, &stop, &step, &slicelength )!=0){ - error("Error in OctSlice_GetIndicesEx: returning NULL"); - return cvRect(0,0,0,0); - } - // if array is a row vector, assume index bounds are into columns - if(sz.height>1){ - lower[0] = (int) start; // use c convention of start index = 0 - upper[0] = (int) stop; // use c convention - lower[1] = 0; - upper[1] = sz.width; - } - else{ - lower[1] = (int) start; // use c convention of start index = 0 - upper[1] = (int) stop; // use c convention - lower[0] = 0; - upper[0] = sz.height; - } - } - - // 2. Tuple - else if(OctTuple_Check(idx_object)){ - //printf("OctTuple{\n"); - if(OctObject_Length(idx_object)!=2){ - error("Expected a sequence with 2 elements"); - return cvRect(0,0,0,0); - } - for(int i=0; i<2; i++){ - octave_value o = OctTuple_GetItem(idx_object, i); - - // 2a. Slice -- same as above - if(OctSlice_Check(o)){ - //printf("OctSlice\n"); - len = (i==0 ? sz.height : sz.width); - if(OctSlice_GetIndicesEx(o, len, &start, &stop, &step, &slicelength )!=0){ - error("Error in OctSlice_GetIndicesEx: returning NULL"); - return cvRect(0,0,0,0); - } - //printf("OctSlice_GetIndecesEx(%d, %d, %d, %d, %d)\n", len, start, stop, step, slicelength); - lower[i] = start; - upper[i] = stop; - - } - - // 2b. Integer - else if(OctInt_Check(o) || OctLong_Check(o)){ - //printf("OctInt\n"); - lower[i] = OctLong_AsIndex(o, i==0 ? sz.height : sz.width); - upper[i] = lower[i]+1; - } - - else { - error("Expected a slice or int as sequence item: returning NULL"); - return cvRect(0,0,0,0); - } - } - } - - else { - error("Expected a slice or sequence: returning NULL"); - return cvRect(0,0,0,0); - } - - return cvRect(lower[1], lower[0], upper[1]-lower[1], upper[0]-lower[0]); -} - -double OctObject_AsDouble(octave_value obj){ - if(OctNumber_Check(obj)){ - if(OctFloat_Check(obj)){ - return OctFloat_AsDouble(obj); - } - else if(OctInt_Check(obj) || OctLong_Check(obj)){ - return (double) OctLong_AsLong(obj); - } - } - error("Could not convert octave object to Double"); - return -1; -} - -long OctObject_AsLong(octave_value obj){ - if(OctNumber_Check(obj)){ - if(OctFloat_Check(obj)){ - return (long) OctFloat_AsDouble(obj); - } - else if(OctInt_Check(obj) || OctLong_Check(obj)){ - return OctLong_AsLong(obj); - } - } - error("Could not convert octave object to Long"); - return -1; -} - -// standard python container routines, adapted to octave - -// * should matrix conversions happen here or at typemap layer? or both - -bool OctNumber_Check(const octave_value& ov) { - return ov.is_scalar_type(); -} - -octave_value OctBool_FromLong (long v) { - return !!v; -} - -bool OctInt_Check(const octave_value& ov) { - return ov.is_integer_type(); -} - -long OctInt_AsLong (const octave_value& ov) { - return ov.long_value(); -} - -octave_value OctInt_FromLong (long v) { - return v; -} - -bool OctLong_Check(const octave_value& ov) { - return ov.is_scalar_type(); -} - -long OctLong_AsLong(const octave_value& ov) { - return ov.long_value(); -} - -octave_value OctLong_FromLong(long v) { - return v; -} - -octave_value OctLong_FromUnsignedLong(unsigned long v) { - return v; -} - -bool OctFloat_Check(const octave_value& ov) { - return ov.is_scalar_type(); -} - -octave_value OctFloat_FromDouble(double v) { - return v; -} - -double OctFloat_AsDouble (const octave_value& ov) { - return ov.scalar_value(); -} - -octave_value OctSequence_New(int n) { - return n ? Cell(1,n) : Cell(dim_vector(0,0)); -} - -bool OctSequence_Check(const octave_value& ov) { - return ov.is_cell(); -} - -int OctSequence_Size(const octave_value& ov) { - Cell c(ov.cell_value()); - return ov.cell_value().numel(); -} - -octave_value OctSequence_GetItem(const octave_value& ov,int i) { - Cell c(ov.cell_value()); - if (i<0||i>=c.numel()) { - error("index out of bounds"); - return octave_value(); - } - return c(i); -} - -void OctSequence_SetItem(octave_value& ov,int i,const octave_value& v) { - Cell c(ov.cell_value()); - if (i<0||i>=c.numel()) - error("index out of bounds"); - else { - c(i)=v; - ov=c; - } -} - -octave_value OctTuple_New(int n) { - return OctSequence_New(n); -} - -bool OctTuple_Check(const octave_value& ov) { - return OctSequence_Check(ov); -} - -int OctTuple_Size(const octave_value& ov) { - return OctSequence_Size(ov); -} - -void OctTuple_SetItem(octave_value& ov,int i,const octave_value& v) { - OctSequence_SetItem(ov,i,v); -} - -octave_value OctTuple_GetItem(const octave_value& ov,int i) { - return OctSequence_GetItem(ov,i); -} - -octave_value OctList_New(int n) { - return OctSequence_New(n); -} - -bool OctList_Check(const octave_value& ov) { - return OctSequence_Check(ov); -} - -int OctList_Size(const octave_value& ov) { - return OctSequence_Size(ov); -} - -void OctList_SetItem(octave_value& ov,int i,const octave_value& v) { - OctSequence_SetItem(ov,i,v); -} - -octave_value OctList_GetItem(const octave_value& ov,int i) { - return OctSequence_GetItem(ov,i); -} - -bool OctSlice_Check(const octave_value& ov) { - return false; // todo have these map to range and magic-colon types -} - -int OctObject_Length(const octave_value& ov) { - return 0; -} - -bool OctSlice_GetIndicesEx(const octave_value& ov, Oct_ssize_t len, Oct_ssize_t* start, Oct_ssize_t* stop, Oct_ssize_t* step, Oct_ssize_t* slicelength ) { - return false; -} diff --git a/interfaces/swig/octave/octhelpers.h b/interfaces/swig/octave/octhelpers.h deleted file mode 100644 index 351c05566..000000000 --- a/interfaces/swig/octave/octhelpers.h +++ /dev/null @@ -1,81 +0,0 @@ -#ifndef OCTHELPERS_H -#define OCTHELPERS_H - -#include -#include - -// SWIG sets an include on 'tcl.h' without giving the path, which fails on Ubuntu -#if defined HAVE_TCL_H - #include -#elif defined HAVE_TCL_TCL_H - #include -#endif - -#include -#include - -typedef unsigned int Oct_ssize_t; - -// convert octave index object (tuple, integer, or slice) to CvRect for subsequent cvGetSubMat call -CvRect OctSlice_to_CvRect(CvArr * src, octave_value idx_object); - -// prints array to stdout -// TODO: octave __str returns a string, so this should write to a string -// -void cvArrPrint( CvArr * mat ); - -// Convert an integer array to octave tuple -octave_value OctTuple_FromIntArray(int * arr, int len); - -// If result is not NULL or OctNone, release object and replace it with obj -octave_value SWIG_SetResult(octave_value result, octave_value obj); - -// helper function to append one or more objects to the swig $result array -octave_value_list* SWIG_AppendResult(octave_value_list* result, octave_value* to_add, int num); - -int OctObject_AsDoubleArray(octave_value obj, double * array, int len); -int OctObject_AsLongArray(octave_value obj, int * array, int len); -int OctObject_AsFloatArray(octave_value obj, float * array, int len); - -// helper function to convert octave scalar or sequence to int, float or double arrays -double OctObject_AsDouble(octave_value obj); -long OctObject_AsLong(octave_value obj); - -// standard python container routines, adapted to octave -bool OctNumber_Check(const octave_value& ov); -octave_value OctBool_FromLong (long v); -bool OctInt_Check(const octave_value& ov); -long OctInt_AsLong (const octave_value& ov); -octave_value OctInt_FromLong (long v); -bool OctLong_Check(const octave_value& ov); -long OctLong_AsLong(const octave_value& ov); -octave_value OctLong_FromLong(long v); -octave_value OctLong_FromUnsignedLong(unsigned long v); -bool OctFloat_Check(const octave_value& ov); -octave_value OctFloat_FromDouble(double v); -double OctFloat_AsDouble (const octave_value& ov); - -octave_value OctSequence_New(int n); -bool OctSequence_Check(const octave_value& ov); -int OctSequence_Size(const octave_value& ov); -octave_value OctSequence_GetItem(const octave_value& ov,int i); -void OctSequence_SetItem(octave_value& ov,int i,const octave_value& v); - -octave_value OctTuple_New(int n); -bool OctTuple_Check(const octave_value& ov); -int OctTuple_Size(const octave_value& ov); -void OctTuple_SetItem(octave_value& c,int i,const octave_value& ov); -octave_value OctTuple_GetItem(const octave_value& c,int i); - -octave_value OctList_New(int n); -bool OctList_Check(const octave_value& ov); -int OctList_Size(const octave_value& ov); -void OctList_SetItem(octave_value& ov,int i,const octave_value& ov); -octave_value OctList_GetItem(const octave_value& ov,int i); - -bool OctSlice_Check(const octave_value& ov); - -int OctObject_Length(const octave_value& ov); -bool OctSlice_GetIndicesEx(const octave_value& ov, Oct_ssize_t len, Oct_ssize_t* start, Oct_ssize_t* stop, Oct_ssize_t* step, Oct_ssize_t* slicelength ); - -#endif //OCTHELPERS_H diff --git a/interfaces/swig/octave/octhelpers.i b/interfaces/swig/octave/octhelpers.i deleted file mode 100644 index 119153780..000000000 --- a/interfaces/swig/octave/octhelpers.i +++ /dev/null @@ -1,242 +0,0 @@ -/* These functions need the SWIG_* functions defined in the wrapper */ -%{ - - - static inline bool OctSwigObject_Check(const octave_value& ov) { - return ov.type_id()==octave_swig_ref::static_type_id(); - } - - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg); - static CvArr * OctSequence_to_CvArr( octave_value obj ); - - // convert a octave sequence/array/list object into a c-array -#define OctObject_AsArrayImpl(func, ctype, ptype) \ - int func(octave_value obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(OctNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = OctObject_As##ptype( obj ); \ - } \ - else if(OctList_Check(obj) || OctTuple_Check(obj)){ \ - int seqsize = OctSequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - error("OctObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - error("OctObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - error("OctObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(OctObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - error("could not convert to CvPoint"); - return cvPoint(0,0); - } - - static CvPoint2D32f OctObject_to_CvPoint2D32f(octave_value obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(OctObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - error("could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); - } - - static CvScalar OctObject_to_CvScalar(octave_value obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(OctObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); - } - - // if octave sequence type, convert to CvMat or CvMatND - static CvArr * OctObject_to_CvArr(octave_value obj, bool * freearg){ - CvArr * cvarr; - *freearg = false; - - // check if OpenCV type - if ( OctSwigObject_Check(obj) ){ - SWIG_ConvertPtr(obj, &cvarr, 0, SWIG_POINTER_EXCEPTION); - } - else if (OctList_Check(obj) || OctTuple_Check(obj)){ - cvarr = OctSequence_to_CvArr( obj ); - *freearg = (cvarr != NULL); - } - else if (OctLong_Check(obj) && OctLong_AsLong(obj)==0){ - return NULL; - } - else { - SWIG_ConvertPtr(obj, (void**)&cvarr, 0, SWIG_POINTER_EXCEPTION); - } - return cvarr; - } - - static int OctObject_GetElemType(octave_value obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(OctTuple_Check(obj) || OctList_Check(obj)) return CV_MAKE_TYPE(CV_32F, OctSequence_Size( obj )); - if(OctLong_Check(obj)) return CV_32S; - return CV_32F; - } - - // Would like this to convert Octave lists to CvMat - // Also lists of CvPoints, CvScalars, CvMats? etc - static CvArr * OctSequence_to_CvArr( octave_value obj ){ - int dims[CV_MAX_DIM] = {1,1,1}; - int ndim=0; - int cvtype; - octave_value item; - - // figure out dimensions - for(item = obj; - (OctTuple_Check(item) || OctList_Check(item)); - item = OctSequence_GetItem(item, 0)) - { - dims[ndim] = OctSequence_Size( item ); - ndim++; - } - - if(ndim==0){ - error("Cannot convert an empty octave object to a CvArr"); - return NULL; - } - - cvtype = OctObject_GetElemType(item); - // collapse last dim into NCH if we found a single channel, but the last dim is <=3 - if(CV_MAT_CN(cvtype)==1 && dims[ndim-1]>1 && dims[ndim-1]<4){ - cvtype=CV_MAKE_TYPE(cvtype, dims[ndim-1]); - dims[ndim-1]=1; - ndim--; - } - - if(cvtype==-1){ - error("Could not determine OpenCV element type of Octave sequence"); - return NULL; - } - - // CvMat - if(ndim<=2){ - CvMat *m = cvCreateMat(dims[0], dims[1], cvtype); - for(int i=0; i 1 ){ - // double check size - assert((OctTuple_Check(rowobj) || OctList_Check(rowobj)) && - OctSequence_Size(rowobj) == dims[1]); - - for(int j=0; j 3"); - return NULL; - } -%} diff --git a/interfaces/swig/octave/octtypemaps.i b/interfaces/swig/octave/octtypemaps.i deleted file mode 100644 index 1ba13e8fb..000000000 --- a/interfaces/swig/octave/octtypemaps.i +++ /dev/null @@ -1,896 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ -%include "exception.i" -%include "./octhelpers.i" - -%typemap(in) (CvArr *) (bool freearg=false){ - $1 = OctObject_to_CvArr($input, &freearg); -} -%typemap(freearg) (CvArr *) { - if($1!=NULL && freearg$argnum){ - cvReleaseData( $1 ); - cvFree(&($1)); - } -} -%typecheck(SWIG_TYPECHECK_POINTER) CvArr * { - void *ptr; - if(OctList_Check($input) || OctTuple_Check($input)) { - $1 = 1; - } - else if (SWIG_ConvertPtr($input, &ptr, 0, 0) == -1) { - $1 = 0; - } - else{ - $1 = 1; - } -} - -// for cvReshape, cvGetRow, where header is passed, then filled in -%typemap(in, numinputs=0) CvMat * OUTPUT (CvMat * header) { - header = (CvMat *)cvAlloc(sizeof(CvMat)); - $1 = header; -} -%newobject cvReshape; -%newobject cvGetRow; -%newobject cvGetRows; -%newobject cvGetCol; -%newobject cvGetCols; -%newobject cvGetSubRect; -%newobject cvGetDiag; - -%apply CvMat *OUTPUT {CvMat * header}; -%apply CvMat *OUTPUT {CvMat * submat}; - -// In C, these functions assume input will always be around at least as long as header, -// presumably because the most common usage is to pass in a reference to a stack object. -// i.e -// CvMat row; -// cvGetRow(A, &row, 0); -// -// As a result, the header is not refcounted (see the C source for cvGetRow, Reshape, in cxarray.cpp) -// However, in octave, the header parameter is implicitly created so it is easier to create -// situations where the sub-array outlives the original header. A simple example is: -// A = cvReshape(A, -1, A.rows*A.cols) -// -// since octave doesn't have an assignment operator, the new header simply replaces the original, -// the refcount of the original goes to zero, and cvReleaseMat is called on the original, freeing both -// the header and data. The new header is left pointing to invalid data. To avoid this, need to add -// refcount field to the returned header. -%typemap(argout) (const CvArr* arr, CvMat* header) { - $2->hdr_refcount = ((CvMat *)$1)->hdr_refcount; - $2->refcount = ((CvMat *)$1)->refcount; - cvIncRefData($2); -} -%typemap(argout) (const CvArr* arr, CvMat* submat) { - $2->hdr_refcount = ((CvMat *)$1)->hdr_refcount; - $2->refcount = ((CvMat *)$1)->refcount; - cvIncRefData($2); -} - -// map scalar or sequence to CvScalar, CvPoint2D32f, CvPoint -%typemap(in) (CvScalar) { - $1 = OctObject_to_CvScalar( $input ); -} -%typemap(in) (CvPoint) { - $1 = OctObject_to_CvPoint($input); -} -%typemap(in) (CvPoint2D32f) { - $1 = OctObject_to_CvPoint2D32f($input); -} - - -// typemap for cvGetDims -%typemap(in) (const CvArr * arr, int * sizes = NULL) (void * myarr, int mysizes[CV_MAX_DIM]){ - SWIG_Octave_ConvertPtr($input, &myarr, 0, SWIG_POINTER_EXCEPTION); - $1=(CvArr *)myarr; - $2=mysizes; -} - -%typemap(argout) (const CvArr * arr, int * sizes = NULL) { - int len = OctInt_AsLong( $result ); - octave_value obj = OctTuple_FromIntArray( $2, len ); - %append_output(obj); -} - -// map one list of integer to the two parameters dimension/sizes -%typemap(in) (int dims, int* sizes) { - int i; - - // get the size of the dimention array - $1 = OctList_Size ($input); - - // allocate the needed memory - $2 = (int *)malloc ($1 * sizeof (int)); - - // extract all the integer values from the list - for (i = 0; i < $1; i++) { - octave_value item = OctList_GetItem ($input, i); - $2 [i] = (int)OctInt_AsLong (item); - } -} - -// map one list of integer to the parameter idx of -// cvGetND, cvSetND, cvClearND, cvGetRealND, cvSetRealND and cvClearRealND -%typemap(in) (int* idx) { - int i; - int size; - - // get the size of the dimention array - size = OctList_Size ($input); - - // allocate the needed memory - $1 = (int *)malloc (size * sizeof (int)); - - // extract all the integer values from the list - for (i = 0; i < size; i++) { - octave_value item = OctList_GetItem ($input, i); - $1 [i] = (int)OctInt_AsLong (item); - } -} - -// map a list of list of float to an matrix of floats -%typemap(in) float** ranges { - int i1; - int i2; - int size1; - int size2 = 0; - - // get the number of lines of the matrix - size1 = OctList_Size ($input); - - // allocate the correct number of lines for the destination matrix - $1 = (float **)malloc (size1 * sizeof (float *)); - - for (i1 = 0; i1 < size1; i1++) { - - // extract all the lines of the matrix - octave_value list = OctList_GetItem ($input, i1); - - if (size2 == 0) { - // size 2 wasn't computed before - size2 = OctList_Size (list); - } else if (size2 != OctList_Size (list)) { - // the current line as a different size than the previous one - // so, generate an exception - SWIG_exception (SWIG_ValueError, "Lines must be the same size"); - } - - // allocate the correct number of rows for the current line - $1 [i1] = (float *)malloc (size2 * sizeof (float)); - - // extract all the float values of this row - for (i2 = 0; i2 < size2; i2++) { - octave_value item = OctList_GetItem (list, i2); - $1 [i1][i2] = (float)OctFloat_AsDouble (item); - } - } -} - -// -// map the output parameter of the cvGetMinMaxHistValue() -// so, we can call cvGetMinMaxHistValue() in Octave like: -// min_value, max_value = cvGetMinMaxHistValue (hist, None, None) -// -%apply int *OUTPUT {int *min_idx}; -%apply int *OUTPUT {int *max_idx}; -%apply float *OUTPUT {float *min_value}; -%apply float *OUTPUT {float *max_value}; -// -// map output parameters of cvMinMaxLoc -// -%apply double *OUTPUT {double* min_val, double* max_val}; - -// -// the input argument of cvPolyLine "CvPoint** pts" is converted from -// a "list of list" (aka. an array) of CvPoint(). -// The next parameters "int* npts" and "int contours" are computed from -// the givne list. -// -%typemap(in) (CvPoint** pts, int* npts, int contours){ - int i; - int j; - int size2 = -1; - CvPoint **points = NULL; - int *nb_vertex = NULL; - - if(!OctSequence_Check($input)){ - SWIG_exception(SWIG_TypeError, "Expected a list for argument $argnum\n"); - SWIG_fail; - } - - // get the number of polylines input array - int size1 = OctSequence_Size ($input); - $3 = size1; - - if(size1>0){ - // create the points array - points = (CvPoint **)malloc (size1 * sizeof (CvPoint *)); - - // point to the created array for passing info to the C function - $1 = points; - - // create the array for memorizing the vertex - nb_vertex = (int *)malloc (size1 * sizeof (int)); - $2 = nb_vertex; - } - for (i = 0; i < size1; i++) { - - // get the current item - octave_value line = OctSequence_GetItem ($input, i); - - if(!OctSequence_Check(line)){ - SWIG_exception(SWIG_TypeError, "Expected a sequence of sequences of integers for argument $argnum\n"); - // TODO: cleanup here - } - - // get the size of the current polyline - size2 = OctSequence_Size (line); - - - if(size2>0){ - // allocate the necessary memory to store the points - points [i] = (CvPoint *)malloc (size2 * sizeof (CvPoint)); - } - - // memorize the size of the polyline in the vertex list - nb_vertex [i] = size2; - - for (j = 0; j < size2; j++) { - // get the current item - octave_value item = OctSequence_GetItem (line, j); - points[i][j] = OctObject_to_CvPoint( item ); - } - } -} -// Free arguments allocated before the function call -%typemap(freearg) (CvPoint **pts, int* npts, int contours){ - int i; - for(i=0;i<$3;i++){ - free($1[i]); - } - free($1); - free($2); -} - -// Macro to define typemaps to convert a octave list of CvPoints to a C array of CvPoints -%define %typemap_CvPoint_CArr(points_arg, numpoints_arg) - - %typemap(in, numinputs=1) (CvPoint * points_arg, int numpoints_arg){ - int i; - if(!OctSequence_Check($input)){ - SWIG_exception(SWIG_TypeError, "Expected a list for argument $argnum\n"); - SWIG_fail; - } - int size = OctSequence_Size($input); - CvPoint * points = (CvPoint *)malloc(size*sizeof(CvPoint)); - for(i=0; ix; - $1 [i].y = p->y; - } -} - -// -// the corners returned by cvGoodFeaturesToTrack -// -%typemap (in, numinputs=1) (CvPoint2D32f* corners, int* corner_count) - (int tmpCount) { - // as input, we still need the size of the corners array - - // memorize the size of the status corners - tmpCount = (int)OctInt_AsLong ($input); - - // create the corners array for the C call - $1 = (CvPoint2D32f *)malloc (tmpCount * sizeof (CvPoint2D32f)); - - // the size of the array for the C call - $2 = &tmpCount; -} - -// -// the corners returned by cvGoodFeaturesToTrack -// -%typemap(argout) (CvPoint2D32f* corners, int* corner_count) { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (tmpCount$argnum); - - // extract all the integer values of the result, and add it to the - // final resulting list - for (i = 0; i < tmpCount$argnum; i++) { - OctList_SetItem (to_add, i, - SWIG_NewPointerObj (&($1 [i]), - $descriptor(CvPoint2D32f *), 0)); - } - - $result = SWIG_AppendResult($result, &to_add, 1); -} - -// map one list of points to the two parameters dimension/sizes -// for cvFindCornerSubPix -%typemap(in, numinputs=1) (CvPoint2D32f* corners, int count) - (int cornersCount, CvPoint2D32f* corners){ - int i; - - if(!OctList_Check($input)){ - error("Expected a list"); - SWIG_fail; - } - - // get the size of the input array - cornersCount = OctList_Size ($input); - $2 = cornersCount; - - // allocate the needed memory - corners = (CvPoint2D32f *)malloc ($2 * sizeof (CvPoint2D32f)); - $1 = corners; - - // the size of the array for the C call - - // extract all the points values from the list - for (i = 0; i < $2; i++) { - octave_value item = OctList_GetItem ($input, i); - - void *vptr; - SWIG_Octave_ConvertPtr (item, &vptr, - $descriptor(CvPoint2D32f*), - SWIG_POINTER_EXCEPTION); - CvPoint2D32f *p = (CvPoint2D32f *) vptr;; - $1 [i].x = p->x; - $1 [i].y = p->y; - } -} - -// -// the corners returned by cvFindCornerSubPix -// -%typemap(argout) (CvPoint2D32f* corners, int count) { - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New (cornersCount$argnum); - - // extract all the corner values of the result, and add it to the - // final resulting list - for (i = 0; i < cornersCount$argnum; i++) { - OctList_SetItem (to_add, i, - SWIG_NewPointerObj (&(corners$argnum [i]), - $descriptor(CvPoint2D32f *), 0)); - } - - $result = SWIG_AppendResult( $result, &to_add, 1); -} - -// -// return the corners for cvFindChessboardCorners -// -%typemap(in, numinputs=1) (CvSize pattern_size, CvPoint2D32f * corners, int * corner_count ) - (CvSize * pattern_size, CvPoint2D32f * tmp_corners, int tmp_ncorners) { - void * vptr; - if( SWIG_ConvertPtr($input, &vptr, $descriptor( CvSize * ), SWIG_POINTER_EXCEPTION ) == -1){ - SWIG_fail; - } - pattern_size=(CvSize *)vptr; - tmp_ncorners = pattern_size->width*pattern_size->height; - - tmp_corners = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)*tmp_ncorners); - $1 = *pattern_size; - $2 = tmp_corners; - $3 = &tmp_ncorners; -} - -%typemap(argout) (CvSize pattern_size, CvPoint2D32f * corners, int * corner_count){ - int i; - octave_value to_add; - - // create the list to return - to_add = OctList_New ( tmp_ncorners$argnum ); - - // extract all the corner values of the result, and add it to the - // final resulting list - for (i = 0; i < tmp_ncorners$argnum; i++) { - CvPoint2D32f * pt = new CvPoint2D32f; - pt->x = tmp_corners$argnum[i].x; - pt->y = tmp_corners$argnum[i].y; - - OctList_SetItem (to_add, i, - SWIG_NewPointerObj( pt, $descriptor(CvPoint2D32f *), 0)); - } - - $result = SWIG_AppendResult( $result, &to_add, 1); - free(tmp_corners$argnum); -} - -// -// return the matrices for cvCameraCalibrate -// -%typemap(in, numinputs=0) (CvMat * intrinsic_matrix, CvMat * distortion_coeffs) -{ - $1 = cvCreateMat(3,3,CV_32F); - $2 = cvCreateMat(4,1,CV_32F); -} - -%typemap(argout) (CvMat * intrinsic_matrix, CvMat * distortion_coeffs) -{ - octave_value to_add[2]; - to_add[0] = SWIG_NewPointerObj($1, $descriptor(CvMat *), 1); - to_add[1] = SWIG_NewPointerObj($2, $descriptor(CvMat *), 1); - $result = SWIG_AppendResult( $result, to_add, 2 ); -} - -// -// Fix OpenCV inheritance for CvSeq, CvSet, CvGraph -// Otherwise, can't call CvSeq functions on CvSet or CvGraph -// -%typemap(in, numinputs=1) (CvSeq *) (void * ptr) -{ - - if( SWIG_ConvertPtr($input, &ptr, $descriptor(CvSeq *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSet *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvGraph *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSubdiv2D *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvChain *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvContour *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvContourTree *), 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - SWIG_fail; - } - $1 = (CvSeq *) ptr; -} - -%typemap(in, numinputs=1) (CvSet *) (void * ptr) -{ - if( SWIG_ConvertPtr($input, &ptr, $descriptor(CvSet *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvGraph *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSubdiv2D *), 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - SWIG_fail; - } - $1 = (CvSet *)ptr; -} - -%typemap(in, numinputs=1) (CvGraph *) (void * ptr) -{ - if( SWIG_ConvertPtr($input, &ptr, $descriptor(CvGraph *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSubdiv2D *), 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - SWIG_fail; - } - $1 = (CvGraph *)ptr; -} - -// -// Remap output arguments to multiple return values for cvMinEnclosingCircle -// -%typemap(in, numinputs=0) (CvPoint2D32f * center, float * radius) (CvPoint2D32f * tmp_center, float tmp_radius) -{ - tmp_center = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)); - $1 = tmp_center; - $2 = &tmp_radius; -} -%typemap(argout) (CvPoint2D32f * center, float * radius) -{ - octave_value to_add[2]; - to_add[0] = SWIG_NewPointerObj( tmp_center$argnum, $descriptor(CvPoint2D32f *), 1); - to_add[1] = OctFloat_FromDouble( tmp_radius$argnum ); - - $result = SWIG_AppendResult($result, to_add, 2); -} - -// BoxPoints -%typemap(in, numinputs=0) (CvPoint2D32f pt[4]) (CvPoint2D32f tmp_pts[4]) -{ - $1 = tmp_pts; -} -%typemap(argout) (CvPoint2D32f pt[4]) -{ - octave_value to_add = OctList_New(4); - int i; - for(i=0; i<4; i++){ - CvPoint2D32f * p = new CvPoint2D32f; - *p = tmp_pts$argnum[i]; - OctList_SetItem(to_add, i, SWIG_NewPointerObj( p, $descriptor(CvPoint2D32f *), 1 ) ); - } - $result = SWIG_AppendResult($result, &to_add, 1); -} - -// Macro to wrap a built-in type that is used as an object like CvRNG and CvSubdiv2DEdge -%define %wrap_builtin(type) - %inline %{ - // Wrapper class - class type##_Wrapper { - private: - type m_val; - public: - type##_Wrapper( const type & val ) : - m_val(val) - { - } - type * ptr() { return &m_val; } - type & ref() { return m_val; } - bool operator==(const type##_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const type##_Wrapper & x){ - return m_val!=x.m_val; - } - }; - %} -%typemap(out) type -{ - type##_Wrapper * wrapper = new type##_Wrapper( $1 ); - $result = SWIG_NewPointerObj( wrapper, $descriptor( type##_Wrapper * ), 1 ); -} -%typemap(out) type * -{ - type##_Wrapper * wrapper = new type##_Wrapper( *($1) ); - $result = SWIG_NewPointerObj( wrapper, $descriptor( type##_Wrapper * ), 1 ); -} - -%typemap(in) (type *) (void * vptr, type##_Wrapper * wrapper){ - if(SWIG_ConvertPtr($input, &vptr, $descriptor(type##_Wrapper *), 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Octave object to C value"); - SWIG_fail; - } - wrapper = (type##_Wrapper *) vptr; - $1 = wrapper->ptr(); -} -%typemap(in) (type) (void * vptr, type##_Wrapper * wrapper){ - if(SWIG_ConvertPtr($input, &vptr, $descriptor(type##_Wrapper *), 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Octave object to C value"); - SWIG_fail; - } - wrapper = (type##_Wrapper *) vptr; - $1 = wrapper->ref(); -} -%enddef - -// Application of wrapper class to built-in types -%wrap_builtin(CvRNG); -%wrap_builtin(CvSubdiv2DEdge); - -// -// Allow CvQuadEdge2D to be interpreted as CvSubdiv2DEdge -// -%typemap(in, numinputs=1) (CvSubdiv2DEdge) (CvSubdiv2DEdge_Wrapper * wrapper, CvQuadEdge2D * qedge, void *vptr) -{ - if( SWIG_ConvertPtr($input, &vptr, $descriptor(CvSubdiv2DEdge_Wrapper *), 0) != -1 ){ - wrapper = (CvSubdiv2DEdge_Wrapper *) vptr; - $1 = wrapper->ref(); - } - else if( SWIG_ConvertPtr($input, &vptr, $descriptor(CvQuadEdge2D *), 0) != -1 ){ - qedge = (CvQuadEdge2D *) vptr; - $1 = (CvSubdiv2DEdge)qedge; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - SWIG_fail; - } -} - -// -// return the vertex and edge for cvSubdiv2DLocate -// -%typemap(in, numinputs=0) (CvSubdiv2DEdge * edge, CvSubdiv2DPoint ** vertex) - (CvSubdiv2DEdge tmpEdge, CvSubdiv2DPoint * tmpVertex) -{ - $1 = &tmpEdge; - $2 = &tmpVertex; -} -%typemap(argout) (CvSubdiv2DEdge * edge, CvSubdiv2DPoint ** vertex) -{ - octave_value to_add[2]; - if(result==CV_PTLOC_INSIDE || result==CV_PTLOC_ON_EDGE){ - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( tmpEdge$argnum ); - to_add[0] = SWIG_NewPointerObj( wrapper, $descriptor(CvSubdiv2DEdge_Wrapper *), 0); - to_add[1] = octave_value(); - } - if(result==CV_PTLOC_VERTEX){ - to_add[0] = octave_value(); - to_add[1] = SWIG_NewPointerObj( tmpVertex$argnum, $descriptor(CvSubdiv2DPoint *), 0); - } - - $result = SWIG_AppendResult($result, to_add, 2); -} - -// -// int *value in cvCreateTrackbar() is only used for input in the Octave wrapper. -// for output, use the pos in the callback -// TODO: remove the memory leak introducted by the malloc () (if needed). -// -%typemap(in, numinputs=1) (int *value) -{ - $1 = (int *)malloc (sizeof (int)); - *$1 = OctInt_AsLong ($input); -} - diff --git a/interfaces/swig/octave/opencv.m b/interfaces/swig/octave/opencv.m deleted file mode 100644 index 82590a25b..000000000 --- a/interfaces/swig/octave/opencv.m +++ /dev/null @@ -1,3 +0,0 @@ -_cv -_ml -_highgui diff --git a/interfaces/swig/python/.cvsignore b/interfaces/swig/python/.cvsignore deleted file mode 100644 index c795b054e..000000000 --- a/interfaces/swig/python/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -build \ No newline at end of file diff --git a/interfaces/swig/python/CMakeLists.txt b/interfaces/swig/python/CMakeLists.txt deleted file mode 100644 index 02365670f..000000000 --- a/interfaces/swig/python/CMakeLists.txt +++ /dev/null @@ -1,118 +0,0 @@ -# ---------------------------------------------------------------------------- -# CMake file for python support -# ---------------------------------------------------------------------------- -project(python_support) - -find_package(SWIG REQUIRED) -include(${SWIG_USE_FILE}) - -include_directories(${PYTHON_INCLUDE_PATH}) -include_directories(${CMAKE_CURRENT_SOURCE_DIR}) -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../filtered) - -if(MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W3") -endif() - -# ----------------------------------- cv module ------------------------------ - -set_source_files_properties(cv.i PROPERTIES - CPLUSPLUS ON - SWIG_FLAGS -includeall - SWIG_FLAGS -DSKIP_INCLUDES - ) - -set(opencv_headers - ${CMAKE_SOURCE_DIR}/include/opencv/cxtypes.h - ${CMAKE_SOURCE_DIR}/include/opencv/cxcore.h - ${CMAKE_SOURCE_DIR}/include/opencv/cvtypes.h - ${CMAKE_SOURCE_DIR}/include/opencv/cv.h - ) - -add_custom_command( - OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/cvaliases_autogen.i - COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/utils/extract_aliases.py - ${opencv_headers} > ${CMAKE_CURRENT_BINARY_DIR}/cvaliases_autogen.i - DEPENDS ${opencv_headers} - ) - -set(SWIG_MODULE_cv_EXTRA_DEPS - imagedata.i cvarr.i ${CMAKE_CURRENT_BINARY_DIR}/cvaliases_autogen.i cvaliases.i pyhelpers.i - nointpb.i pytypemaps.i cvshadow.i cvseq.i - ../general/cv.i ../general/memory.i ../general/typemaps.i - ../general/extensions.i ../general/doublepointers.i - ../general/sizeof.i ../general/cvmacros.i - ) - -SWIG_ADD_MODULE(cv python cv.i cvshadow.cpp error.cpp error.h pyhelpers.cpp pyhelpers.h cvshadow.h pycvseq.hpp) -SWIG_LINK_LIBRARIES(cv ${PYTHON_LIBRARIES} cxcore cv) - -# ----------------------------------- ml module ------------------------------ - -set_source_files_properties(ml.i PROPERTIES - CPLUSPLUS ON - SWIG_FLAGS -includeall - SWIG_FLAGS -DSKIP_INCLUDES - ) - -set(SWIG_MODULE_ml_EXTRA_DEPS - nointpb.i pytypemaps.i - ../general/memory.i ../general/typemaps.i - ${CMAKE_SOURCE_DIR}/include/opencv/ml.h - ) - -SWIG_ADD_MODULE(ml python ml.i pyhelpers.cpp pyhelpers.h) -SWIG_LINK_LIBRARIES(ml ${PYTHON_LIBRARIES} cxcore ml) - -# --------------------------------highgui module ------------------------------ - -set_source_files_properties(highgui.i PROPERTIES - CPLUSPLUS ON - SWIG_FLAGS -includeall - SWIG_FLAGS -DSKIP_INCLUDES - ) - -set(SWIG_MODULE_highgui_EXTRA_DEPS - nointpb.i pytypemaps.i - ../general/highgui.i - ../general/memory.i ../general/typemaps.i - ${CMAKE_SOURCE_DIR}/include/opencv/highgui.h - ) - -SWIG_ADD_MODULE(highgui python highgui.i pyhelpers.cpp pyhelpers.h) -SWIG_LINK_LIBRARIES(highgui ${PYTHON_LIBRARIES} cxcore cv highgui) - -# ------------------------------ installation ---------------------------------- - -if(WIN32) - set_target_properties( - ${SWIG_MODULE_cv_REAL_NAME} - ${SWIG_MODULE_ml_REAL_NAME} - ${SWIG_MODULE_highgui_REAL_NAME} - PROPERTIES SUFFIX ".pyd") -endif() - -get_target_property(LOC_CV ${SWIG_MODULE_cv_REAL_NAME} LOCATION) -get_target_property(LOC_ML ${SWIG_MODULE_ml_REAL_NAME} LOCATION) -get_target_property(LOC_HIGHGUI ${SWIG_MODULE_highgui_REAL_NAME} LOCATION) - -set(pyopencv_files __init__.py adaptors.py matlab_syntax.py - ${CMAKE_CURRENT_BINARY_DIR}/cv.py - ${CMAKE_CURRENT_BINARY_DIR}/ml.py - ${CMAKE_CURRENT_BINARY_DIR}/highgui.py) - -foreach(m ${LOC_CV} ${LOC_ML} ${LOC_HIGHGUI}) - string(REPLACE "\$(OutDir)" "\${CMAKE_INSTALL_CONFIG_NAME}" m1 ${m}) - set(pyopencv_files ${pyopencv_files} ${m1}) -endforeach() - - -# TODO: need to compile *.py files -if(WIN32) - install(FILES ${pyopencv_files} DESTINATION - "Python${PYTHON_VERSION_MAJOR_MINOR}/Lib/site-packages/opencv" - COMPONENT main) -else() - install(FILES ${pyopencv_files} DESTINATION ${PYTHON_PLUGIN_INSTALL_PATH} COMPONENT main) -endif() - diff --git a/interfaces/swig/python/__init__.py b/interfaces/swig/python/__init__.py deleted file mode 100644 index 51f791b3e..000000000 --- a/interfaces/swig/python/__init__.py +++ /dev/null @@ -1,76 +0,0 @@ -######################################################################################### -# -# IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -# -# By downloading, copying, installing or using the software you agree to this license. -# If you do not agree to this license, do not download, install, -# copy or use the software. -# -# -# Intel License Agreement -# For Open Source Computer Vision Library -# -# Copyright (C) 2000, Intel Corporation, all rights reserved. -# Third party copyrights are property of their respective owners. -# -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: -# -# * Redistribution's of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# * Redistribution's in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# * The name of Intel Corporation may not be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# This software is provided by the copyright holders and contributors "as is" and -# any express or implied warranties, including, but not limited to, the implied -# warranties of merchantability and fitness for a particular purpose are disclaimed. -# In no event shall the Intel Corporation or contributors be liable for any direct, -# indirect, incidental, special, exemplary, or consequential damages -# (including, but not limited to, procurement of substitute goods or services; -# loss of use, data, or profits; or business interruption) however caused -# and on any theory of liability, whether in contract, strict liability, -# or tort (including negligence or otherwise) arising in any way out of -# the use of this software, even if advised of the possibility of such damage. -# -######################################################################################### - -# 2004-03-16, Mark Asbach -# Institute of Communications Engineering, RWTH Aachen University - -"""The Open Computer Vision Library - -OpenCV is the Open Computer Vision library, an open source effort originally started -by intel to provide computer vision algorithms for standard PC hardware. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. - -In detail, this python package contains four sub-modules: - - cv core components (cxcore and cv) - ml machine learning - highgui simple user interface, video and image I/O - adaptors pure python module offering conversion to numpy/scipy matrices - and PIL (python imaging library) images - matlab_syntax pure python module offering syntax that is similar to Matlab - for those who switched - -All methods and data types from cv, ml and adaptors are automatically imported into -the opencv namespace. Contents from highgui and matlab_syntax must be explicitly -imported - to avoid conflicts with other UI toolkits and the python matlab interface. -""" - -# the module consists of these four sub-modules -__all__ = ['cv', 'ml', 'highgui', 'adaptors', 'matlab_syntax'] - -# always import functionality from cxcore, cv and ml to this namespace -# try to import PIL and numpy adaptors -from cv import * -from ml import * -from adaptors import * diff --git a/interfaces/swig/python/_cv.cpp b/interfaces/swig/python/_cv.cpp deleted file mode 100644 index b1066be85..000000000 --- a/interfaces/swig/python/_cv.cpp +++ /dev/null @@ -1,109468 +0,0 @@ -/* ---------------------------------------------------------------------------- - * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.40 - * - * This file is not intended to be easily readable and contains a number of - * coding conventions designed to improve portability and efficiency. Do not make - * changes to this file unless you know what you are doing--modify the SWIG - * interface file instead. - * ----------------------------------------------------------------------------- */ - -#define SWIGPYTHON -#define SWIG_PYTHON_DIRECTOR_NO_VTABLE - - -#ifdef __cplusplus -/* SwigValueWrapper is described in swig.swg */ -template class SwigValueWrapper { - struct SwigMovePointer { - T *ptr; - SwigMovePointer(T *p) : ptr(p) { } - ~SwigMovePointer() { delete ptr; } - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); -public: - SwigValueWrapper() : pointer(0) { } - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } - operator T&() const { return *pointer.ptr; } - T *operator&() { return pointer.ptr; } -}; - -template T SwigValueInit() { - return T(); -} -#endif - -/* ----------------------------------------------------------------------------- - * This section contains generic SWIG labels for method/variable - * declarations/attributes, and other compiler dependent labels. - * ----------------------------------------------------------------------------- */ - -/* template workaround for compilers that cannot correctly implement the C++ standard */ -#ifndef SWIGTEMPLATEDISAMBIGUATOR -# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -# define SWIGTEMPLATEDISAMBIGUATOR template -# elif defined(__HP_aCC) -/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ -/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -# define SWIGTEMPLATEDISAMBIGUATOR template -# else -# define SWIGTEMPLATEDISAMBIGUATOR -# endif -#endif - -/* inline attribute */ -#ifndef SWIGINLINE -# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -# else -# define SWIGINLINE -# endif -#endif - -/* attribute recognised by some compilers to avoid 'unused' warnings */ -#ifndef SWIGUNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -# elif defined(__ICC) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -#endif - -#ifndef SWIG_MSC_UNSUPPRESS_4505 -# if defined(_MSC_VER) -# pragma warning(disable : 4505) /* unreferenced local function has been removed */ -# endif -#endif - -#ifndef SWIGUNUSEDPARM -# ifdef __cplusplus -# define SWIGUNUSEDPARM(p) -# else -# define SWIGUNUSEDPARM(p) p SWIGUNUSED -# endif -#endif - -/* internal SWIG method */ -#ifndef SWIGINTERN -# define SWIGINTERN static SWIGUNUSED -#endif - -/* internal inline SWIG method */ -#ifndef SWIGINTERNINLINE -# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE -#endif - -/* exporting methods */ -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -# ifndef GCC_HASCLASSVISIBILITY -# define GCC_HASCLASSVISIBILITY -# endif -#endif - -#ifndef SWIGEXPORT -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if defined(STATIC_LINKED) -# define SWIGEXPORT -# else -# define SWIGEXPORT __declspec(dllexport) -# endif -# else -# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -# define SWIGEXPORT __attribute__ ((visibility("default"))) -# else -# define SWIGEXPORT -# endif -# endif -#endif - -/* calling conventions for Windows */ -#ifndef SWIGSTDCALL -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# define SWIGSTDCALL __stdcall -# else -# define SWIGSTDCALL -# endif -#endif - -/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) -# define _CRT_SECURE_NO_DEPRECATE -#endif - -/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) -# define _SCL_SECURE_NO_DEPRECATE -#endif - - - -/* Python.h has to appear first */ -#include - -/* ----------------------------------------------------------------------------- - * swigrun.swg - * - * This file contains generic C API SWIG runtime support for pointer - * type checking. - * ----------------------------------------------------------------------------- */ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "4" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -# define SWIG_QUOTE_STRING(x) #x -# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -# define SWIG_TYPE_TABLE_NAME -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the SWIG runtime code. - In 99.9% of the cases, SWIG just needs to declare them as 'static'. - - But only do this if strictly necessary, ie, if you have problems - with your compiler or suchlike. -*/ - -#ifndef SWIGRUNTIME -# define SWIGRUNTIME SWIGINTERN -#endif - -#ifndef SWIGRUNTIMEINLINE -# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -/* Generic buffer size */ -#ifndef SWIG_BUFFER_SIZE -# define SWIG_BUFFER_SIZE 1024 -#endif - -/* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 - -/* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 - - -/* - Flags/methods for returning states. - - The SWIG conversion methods, as ConvertPtr, return and integer - that tells if the conversion was successful or not. And if not, - an error code can be returned (see swigerrors.swg for the codes). - - Use the following macros/flags to set or process the returning - states. - - In old versions of SWIG, code such as the following was usually written: - - if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { - // success code - } else { - //fail code - } - - Now you can be more explicit: - - int res = SWIG_ConvertPtr(obj,vptr,ty.flags); - if (SWIG_IsOK(res)) { - // success code - } else { - // fail code - } - - which is the same really, but now you can also do - - Type *ptr; - int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); - if (SWIG_IsOK(res)) { - // success code - if (SWIG_IsNewObj(res) { - ... - delete *ptr; - } else { - ... - } - } else { - // fail code - } - - I.e., now SWIG_ConvertPtr can return new objects and you can - identify the case and take care of the deallocation. Of course that - also requires SWIG_ConvertPtr to return new result values, such as - - int SWIG_ConvertPtr(obj, ptr,...) { - if () { - if () { - *ptr = ; - return SWIG_NEWOBJ; - } else { - *ptr = ; - return SWIG_OLDOBJ; - } - } else { - return SWIG_BADOBJ; - } - } - - Of course, returning the plain '0(success)/-1(fail)' still works, but you can be - more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the - SWIG errors code. - - Finally, if the SWIG_CASTRANK_MODE is enabled, the result code - allows to return the 'cast rank', for example, if you have this - - int food(double) - int fooi(int); - - and you call - - food(1) // cast rank '1' (1 -> 1.0) - fooi(1) // cast rank '0' - - just use the SWIG_AddCast()/SWIG_CheckState() -*/ - -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) - -/* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) -/* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) -/* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) -/* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) -/* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) - -/* Cast-Rank Mode */ -#if defined(SWIG_CASTRANK_MODE) -# ifndef SWIG_TypeRank -# define SWIG_TypeRank unsigned long -# endif -# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -# define SWIG_MAXCASTRANK (2) -# endif -# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) -# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) { - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; -} -SWIGINTERNINLINE int SWIG_CheckState(int r) { - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; -} -#else /* no cast-rank mode */ -# define SWIG_AddCast -# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) -#endif - - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *, int *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -/* Structure to store information on one type */ -typedef struct swig_type_info { - const char *name; /* mangled name of this type */ - const char *str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info *cast; /* linked list of types that can cast into this type */ - void *clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ -} swig_type_info; - -/* Structure to store a type and conversion function used for casting */ -typedef struct swig_cast_info { - swig_type_info *type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info *next; /* pointer to next cast in linked list */ - struct swig_cast_info *prev; /* pointer to the previous cast */ -} swig_cast_info; - -/* Structure used to store module information - * Each module generates one structure like this, and the runtime collects - * all of these structures and stores them in a circularly linked list.*/ -typedef struct swig_module_info { - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info *next; /* Pointer to next element in circularly linked list */ - swig_type_info **type_initial; /* Array of initially generated type structures */ - swig_cast_info **cast_initial; /* Array of initially generated casting structures */ - void *clientdata; /* Language specific module data */ -} swig_module_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); -} - -/* - Check type equivalence in a name list like ||... - Return 0 if not equal, 1 if equal -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Check type equivalence in a name list like ||... - Return 0 if equal, -1 if nb < tb, 1 if nb > tb -*/ -SWIGRUNTIME int -SWIG_TypeCompare(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - - -/* - Check the typename -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (!type) return NULL; - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - swig_cast_info *cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - - while (cast) { - if (!cast->converter) { - swig_type_info *tc = cast->type; - if (!tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; - } -} -SWIGRUNTIME void -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; -} - -/* - Search for a swig_type_info structure only by mangled name - Search is a O(log #types) - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_MangledTypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - swig_module_info *iter = start; - do { - if (iter->size) { - register size_t l = 0; - register size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - register size_t i = (l + r) >> 1; - const char *iname = iter->types[i]->name; - if (iname) { - register int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } else if (compare < 0) { - if (i) { - r = i - 1; - } else { - break; - } - } else if (compare > 0) { - l = i + 1; - } - } else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; -} - -/* - Search for a swig_type_info structure for either a mangled name or a human readable name. - It first searches the mangled names of the types, which is a O(log #types) - If a type is not found it then searches the human readable names, which is O(#types). - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - /* STEP 1: Search the name field using binary search */ - swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info *iter = start; - do { - register size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } - - /* neither found a match */ - return 0; -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static const char hex[17] = "0123456789abcdef"; - register const unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register char d = *(c++); - register unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 - - - -/* Compatibility macros for Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - -#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type) -#define PyInt_Check(x) PyLong_Check(x) -#define PyInt_AsLong(x) PyLong_AsLong(x) -#define PyInt_FromLong(x) PyLong_FromLong(x) -#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) - -#endif - -#ifndef Py_TYPE -# define Py_TYPE(op) ((op)->ob_type) -#endif - -/* SWIG APIs for compatibility of both Python 2 & 3 */ - -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_Python_str_FromFormat PyUnicode_FromFormat -#else -# define SWIG_Python_str_FromFormat PyString_FromFormat -#endif - - -/* Warning: This function will allocate a new string in Python 3, - * so please call SWIG_Python_str_DelForPy3(x) to free the space. - */ -SWIGINTERN char* -SWIG_Python_str_AsChar(PyObject *str) -{ -#if PY_VERSION_HEX >= 0x03000000 - char *cstr; - char *newstr; - Py_ssize_t len; - str = PyUnicode_AsUTF8String(str); - PyBytes_AsStringAndSize(str, &cstr, &len); - newstr = (char *) malloc(len+1); - memcpy(newstr, cstr, len+1); - Py_XDECREF(str); - return newstr; -#else - return PyString_AsString(str); -#endif -} - -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) ) -#else -# define SWIG_Python_str_DelForPy3(x) -#endif - - -SWIGINTERN PyObject* -SWIG_Python_str_FromChar(const char *c) -{ -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromString(c); -#else - return PyString_FromString(c); -#endif -} - -/* Add PyOS_snprintf for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 -# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) -# define PyOS_snprintf _snprintf -# else -# define PyOS_snprintf snprintf -# endif -#endif - -/* A crude PyString_FromFormat implementation for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 - -#ifndef SWIG_PYBUFFER_SIZE -# define SWIG_PYBUFFER_SIZE 1024 -#endif - -static PyObject * -PyString_FromFormat(const char *fmt, ...) { - va_list ap; - char buf[SWIG_PYBUFFER_SIZE * 2]; - int res; - va_start(ap, fmt); - res = vsnprintf(buf, sizeof(buf), fmt, ap); - va_end(ap); - return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); -} -#endif - -/* Add PyObject_Del for old Pythons */ -#if PY_VERSION_HEX < 0x01060000 -# define PyObject_Del(op) PyMem_DEL((op)) -#endif -#ifndef PyObject_DEL -# define PyObject_DEL PyObject_Del -#endif - -/* A crude PyExc_StopIteration exception for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 -# ifndef PyExc_StopIteration -# define PyExc_StopIteration PyExc_RuntimeError -# endif -# ifndef PyObject_GenericGetAttr -# define PyObject_GenericGetAttr 0 -# endif -#endif - -/* Py_NotImplemented is defined in 2.1 and up. */ -#if PY_VERSION_HEX < 0x02010000 -# ifndef Py_NotImplemented -# define Py_NotImplemented PyExc_RuntimeError -# endif -#endif - -/* A crude PyString_AsStringAndSize implementation for old Pythons */ -#if PY_VERSION_HEX < 0x02010000 -# ifndef PyString_AsStringAndSize -# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} -# endif -#endif - -/* PySequence_Size for old Pythons */ -#if PY_VERSION_HEX < 0x02000000 -# ifndef PySequence_Size -# define PySequence_Size PySequence_Length -# endif -#endif - -/* PyBool_FromLong for old Pythons */ -#if PY_VERSION_HEX < 0x02030000 -static -PyObject *PyBool_FromLong(long ok) -{ - PyObject *result = ok ? Py_True : Py_False; - Py_INCREF(result); - return result; -} -#endif - -/* Py_ssize_t for old Pythons */ -/* This code is as recommended by: */ -/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ -#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) -typedef int Py_ssize_t; -# define PY_SSIZE_T_MAX INT_MAX -# define PY_SSIZE_T_MIN INT_MIN -#endif - -/* ----------------------------------------------------------------------------- - * error manipulation - * ----------------------------------------------------------------------------- */ - -SWIGRUNTIME PyObject* -SWIG_Python_ErrorType(int code) { - PyObject* type = 0; - switch(code) { - case SWIG_MemoryError: - type = PyExc_MemoryError; - break; - case SWIG_IOError: - type = PyExc_IOError; - break; - case SWIG_RuntimeError: - type = PyExc_RuntimeError; - break; - case SWIG_IndexError: - type = PyExc_IndexError; - break; - case SWIG_TypeError: - type = PyExc_TypeError; - break; - case SWIG_DivisionByZero: - type = PyExc_ZeroDivisionError; - break; - case SWIG_OverflowError: - type = PyExc_OverflowError; - break; - case SWIG_SyntaxError: - type = PyExc_SyntaxError; - break; - case SWIG_ValueError: - type = PyExc_ValueError; - break; - case SWIG_SystemError: - type = PyExc_SystemError; - break; - case SWIG_AttributeError: - type = PyExc_AttributeError; - break; - default: - type = PyExc_RuntimeError; - } - return type; -} - - -SWIGRUNTIME void -SWIG_Python_AddErrorMsg(const char* mesg) -{ - PyObject *type = 0; - PyObject *value = 0; - PyObject *traceback = 0; - - if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); - if (value) { - char *tmp; - PyObject *old_str = PyObject_Str(value); - PyErr_Clear(); - Py_XINCREF(type); - - PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - Py_DECREF(value); - } else { - PyErr_SetString(PyExc_RuntimeError, mesg); - } -} - -#if defined(SWIG_PYTHON_NO_THREADS) -# if defined(SWIG_PYTHON_THREADS) -# undef SWIG_PYTHON_THREADS -# endif -#endif -#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ -# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) -# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ -# define SWIG_PYTHON_USE_GIL -# endif -# endif -# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ -# ifndef SWIG_PYTHON_INITIALIZE_THREADS -# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() -# endif -# ifdef __cplusplus /* C++ code */ - class SWIG_Python_Thread_Block { - bool status; - PyGILState_STATE state; - public: - void end() { if (status) { PyGILState_Release(state); status = false;} } - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} - ~SWIG_Python_Thread_Block() { end(); } - }; - class SWIG_Python_Thread_Allow { - bool status; - PyThreadState *save; - public: - void end() { if (status) { PyEval_RestoreThread(save); status = false; }} - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} - ~SWIG_Python_Thread_Allow() { end(); } - }; -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block -# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow -# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() -# else /* C code */ -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() -# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() -# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) -# endif -# else /* Old thread way, not implemented, user must provide it */ -# if !defined(SWIG_PYTHON_INITIALIZE_THREADS) -# define SWIG_PYTHON_INITIALIZE_THREADS -# endif -# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK -# endif -# if !defined(SWIG_PYTHON_THREAD_END_BLOCK) -# define SWIG_PYTHON_THREAD_END_BLOCK -# endif -# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW -# endif -# if !defined(SWIG_PYTHON_THREAD_END_ALLOW) -# define SWIG_PYTHON_THREAD_END_ALLOW -# endif -# endif -#else /* No thread support */ -# define SWIG_PYTHON_INITIALIZE_THREADS -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK -# define SWIG_PYTHON_THREAD_END_BLOCK -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW -# define SWIG_PYTHON_THREAD_END_ALLOW -#endif - -/* ----------------------------------------------------------------------------- - * Python API portion that goes into the runtime - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* cc-mode */ -#endif -#endif - -/* ----------------------------------------------------------------------------- - * Constant declarations - * ----------------------------------------------------------------------------- */ - -/* Constant Types */ -#define SWIG_PY_POINTER 4 -#define SWIG_PY_BINARY 5 - -/* Constant information structure */ -typedef struct swig_const_info { - int type; - char *name; - long lvalue; - double dvalue; - void *pvalue; - swig_type_info **ptype; -} swig_const_info; - - -/* ----------------------------------------------------------------------------- - * Wrapper of PyInstanceMethod_New() used in Python 3 - * It is exported to the generated module, used for -fastproxy - * ----------------------------------------------------------------------------- */ -SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *self, PyObject *func) -{ -#if PY_VERSION_HEX >= 0x03000000 - return PyInstanceMethod_New(func); -#else - return NULL; -#endif -} - -#ifdef __cplusplus -#if 0 -{ /* cc-mode */ -#endif -} -#endif - - -/* ----------------------------------------------------------------------------- - * See the LICENSE file for information on copyright, usage and redistribution - * of SWIG, and the README file for authors - http://www.swig.org/release.html. - * - * pyrun.swg - * - * This file contains the runtime support for Python modules - * and includes code for managing global variables and pointer - * type checking. - * - * ----------------------------------------------------------------------------- */ - -/* Common SWIG API */ - -/* for raw pointers */ -#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags) -#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) -#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) -#define swig_owntype int - -/* for raw packed data */ -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) - -/* for class or struct pointers */ -#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) - -/* for C or C++ function pointers */ -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0) - -/* for C++ member pointers, ie, member methods */ -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) - - -/* Runtime API */ - -#define SWIG_GetModule(clientdata) SWIG_Python_GetModule() -#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) -#define SWIG_NewClientData(obj) SwigPyClientData_New(obj) - -#define SWIG_SetErrorObj SWIG_Python_SetErrorObj -#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg -#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) -#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) -#define SWIG_fail goto fail - - -/* Runtime API implementation */ - -/* Error manipulation */ - -SWIGINTERN void -SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetObject(errtype, obj); - Py_DECREF(obj); - SWIG_PYTHON_THREAD_END_BLOCK; -} - -SWIGINTERN void -SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetString(errtype, (char *) msg); - SWIG_PYTHON_THREAD_END_BLOCK; -} - -#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) - -/* Set a constant value */ - -SWIGINTERN void -SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { - PyDict_SetItemString(d, (char*) name, obj); - Py_DECREF(obj); -} - -/* Append a value to the result obj */ - -SWIGINTERN PyObject* -SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { -#if !defined(SWIG_PYTHON_OUTPUT_TUPLE) - if (!result) { - result = obj; - } else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } else { - if (!PyList_Check(result)) { - PyObject *o2 = result; - result = PyList_New(1); - PyList_SetItem(result, 0, o2); - } - PyList_Append(result,obj); - Py_DECREF(obj); - } - return result; -#else - PyObject* o2; - PyObject* o3; - if (!result) { - result = obj; - } else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } else { - if (!PyTuple_Check(result)) { - o2 = result; - result = PyTuple_New(1); - PyTuple_SET_ITEM(result, 0, o2); - } - o3 = PyTuple_New(1); - PyTuple_SET_ITEM(o3, 0, obj); - o2 = result; - result = PySequence_Concat(o2, o3); - Py_DECREF(o2); - Py_DECREF(o3); - } - return result; -#endif -} - -/* Unpack the argument tuple */ - -SWIGINTERN int -SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) -{ - if (!args) { - if (!min && !max) { - return 1; - } else { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", - name, (min == max ? "" : "at least "), (int)min); - return 0; - } - } - if (!PyTuple_Check(args)) { - PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); - return 0; - } else { - register Py_ssize_t l = PyTuple_GET_SIZE(args); - if (l < min) { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", - name, (min == max ? "" : "at least "), (int)min, (int)l); - return 0; - } else if (l > max) { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", - name, (min == max ? "" : "at most "), (int)max, (int)l); - return 0; - } else { - register int i; - for (i = 0; i < l; ++i) { - objs[i] = PyTuple_GET_ITEM(args, i); - } - for (; l < max; ++l) { - objs[l] = 0; - } - return i + 1; - } - } -} - -/* A functor is a function object with one single object argument */ -#if PY_VERSION_HEX >= 0x02020000 -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); -#else -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); -#endif - -/* - Helper for static pointer initialization for both C and C++ code, for example - static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); -*/ -#ifdef __cplusplus -#define SWIG_STATIC_POINTER(var) var -#else -#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var -#endif - -/* ----------------------------------------------------------------------------- - * Pointer declarations - * ----------------------------------------------------------------------------- */ - -/* Flags for new pointer objects */ -#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) -#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) - -#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* cc-mode */ -#endif -#endif - -/* How to access Py_None */ -#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# ifndef SWIG_PYTHON_NO_BUILD_NONE -# ifndef SWIG_PYTHON_BUILD_NONE -# define SWIG_PYTHON_BUILD_NONE -# endif -# endif -#endif - -#ifdef SWIG_PYTHON_BUILD_NONE -# ifdef Py_None -# undef Py_None -# define Py_None SWIG_Py_None() -# endif -SWIGRUNTIMEINLINE PyObject * -_SWIG_Py_None(void) -{ - PyObject *none = Py_BuildValue((char*)""); - Py_DECREF(none); - return none; -} -SWIGRUNTIME PyObject * -SWIG_Py_None(void) -{ - static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); - return none; -} -#endif - -/* The python void return value */ - -SWIGRUNTIMEINLINE PyObject * -SWIG_Py_Void(void) -{ - PyObject *none = Py_None; - Py_INCREF(none); - return none; -} - -/* SwigPyClientData */ - -typedef struct { - PyObject *klass; - PyObject *newraw; - PyObject *newargs; - PyObject *destroy; - int delargs; - int implicitconv; -} SwigPyClientData; - -SWIGRUNTIMEINLINE int -SWIG_Python_CheckImplicit(swig_type_info *ty) -{ - SwigPyClientData *data = (SwigPyClientData *)ty->clientdata; - return data ? data->implicitconv : 0; -} - -SWIGRUNTIMEINLINE PyObject * -SWIG_Python_ExceptionType(swig_type_info *desc) { - SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0; - PyObject *klass = data ? data->klass : 0; - return (klass ? klass : PyExc_RuntimeError); -} - - -SWIGRUNTIME SwigPyClientData * -SwigPyClientData_New(PyObject* obj) -{ - if (!obj) { - return 0; - } else { - SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData)); - /* the klass element */ - data->klass = obj; - Py_INCREF(data->klass); - /* the newraw method and newargs arguments used to create a new raw instance */ - if (PyClass_Check(obj)) { - data->newraw = 0; - data->newargs = obj; - Py_INCREF(obj); - } else { -#if (PY_VERSION_HEX < 0x02020000) - data->newraw = 0; -#else - data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); -#endif - if (data->newraw) { - Py_INCREF(data->newraw); - data->newargs = PyTuple_New(1); - PyTuple_SetItem(data->newargs, 0, obj); - } else { - data->newargs = obj; - } - Py_INCREF(data->newargs); - } - /* the destroy method, aka as the C++ delete method */ - data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); - if (PyErr_Occurred()) { - PyErr_Clear(); - data->destroy = 0; - } - if (data->destroy) { - int flags; - Py_INCREF(data->destroy); - flags = PyCFunction_GET_FLAGS(data->destroy); -#ifdef METH_O - data->delargs = !(flags & (METH_O)); -#else - data->delargs = 0; -#endif - } else { - data->delargs = 0; - } - data->implicitconv = 0; - return data; - } -} - -SWIGRUNTIME void -SwigPyClientData_Del(SwigPyClientData* data) -{ - Py_XDECREF(data->newraw); - Py_XDECREF(data->newargs); - Py_XDECREF(data->destroy); -} - -/* =============== SwigPyObject =====================*/ - -typedef struct { - PyObject_HEAD - void *ptr; - swig_type_info *ty; - int own; - PyObject *next; -} SwigPyObject; - -SWIGRUNTIME PyObject * -SwigPyObject_long(SwigPyObject *v) -{ - return PyLong_FromVoidPtr(v->ptr); -} - -SWIGRUNTIME PyObject * -SwigPyObject_format(const char* fmt, SwigPyObject *v) -{ - PyObject *res = NULL; - PyObject *args = PyTuple_New(1); - if (args) { - if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { - PyObject *ofmt = SWIG_Python_str_FromChar(fmt); - if (ofmt) { -#if PY_VERSION_HEX >= 0x03000000 - res = PyUnicode_Format(ofmt,args); -#else - res = PyString_Format(ofmt,args); -#endif - Py_DECREF(ofmt); - } - Py_DECREF(args); - } - } - return res; -} - -SWIGRUNTIME PyObject * -SwigPyObject_oct(SwigPyObject *v) -{ - return SwigPyObject_format("%o",v); -} - -SWIGRUNTIME PyObject * -SwigPyObject_hex(SwigPyObject *v) -{ - return SwigPyObject_format("%x",v); -} - -SWIGRUNTIME PyObject * -#ifdef METH_NOARGS -SwigPyObject_repr(SwigPyObject *v) -#else -SwigPyObject_repr(SwigPyObject *v, PyObject *args) -#endif -{ - const char *name = SWIG_TypePrettyName(v->ty); - PyObject *repr = SWIG_Python_str_FromFormat("", name, v); - if (v->next) { -#ifdef METH_NOARGS - PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next); -#else - PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args); -#endif -#if PY_VERSION_HEX >= 0x03000000 - PyObject *joined = PyUnicode_Concat(repr, nrep); - Py_DecRef(repr); - Py_DecRef(nrep); - repr = joined; -#else - PyString_ConcatAndDel(&repr,nrep); -#endif - } - return repr; -} - -SWIGRUNTIME int -SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) -{ - char *str; -#ifdef METH_NOARGS - PyObject *repr = SwigPyObject_repr(v); -#else - PyObject *repr = SwigPyObject_repr(v, NULL); -#endif - if (repr) { - str = SWIG_Python_str_AsChar(repr); - fputs(str, fp); - SWIG_Python_str_DelForPy3(str); - Py_DECREF(repr); - return 0; - } else { - return 1; - } -} - -SWIGRUNTIME PyObject * -SwigPyObject_str(SwigPyObject *v) -{ - char result[SWIG_BUFFER_SIZE]; - return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ? - SWIG_Python_str_FromChar(result) : 0; -} - -SWIGRUNTIME int -SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) -{ - void *i = v->ptr; - void *j = w->ptr; - return (i < j) ? -1 : ((i > j) ? 1 : 0); -} - -/* Added for Python 3.x, would it also be useful for Python 2.x? */ -SWIGRUNTIME PyObject* -SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op) -{ - PyObject* res; - if( op != Py_EQ && op != Py_NE ) { - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; - } - if( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ) - res = Py_True; - else - res = Py_False; - Py_INCREF(res); - return res; -} - - -SWIGRUNTIME PyTypeObject* _PySwigObject_type(void); - -SWIGRUNTIME PyTypeObject* -SwigPyObject_type(void) { - static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type(); - return type; -} - -SWIGRUNTIMEINLINE int -SwigPyObject_Check(PyObject *op) { - return (Py_TYPE(op) == SwigPyObject_type()) - || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); -} - -SWIGRUNTIME PyObject * -SwigPyObject_New(void *ptr, swig_type_info *ty, int own); - -SWIGRUNTIME void -SwigPyObject_dealloc(PyObject *v) -{ - SwigPyObject *sobj = (SwigPyObject *) v; - PyObject *next = sobj->next; - if (sobj->own == SWIG_POINTER_OWN) { - swig_type_info *ty = sobj->ty; - SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; - PyObject *destroy = data ? data->destroy : 0; - if (destroy) { - /* destroy is always a VARARGS method */ - PyObject *res; - if (data->delargs) { - /* we need to create a temporary object to carry the destroy operation */ - PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0); - res = SWIG_Python_CallFunctor(destroy, tmp); - Py_DECREF(tmp); - } else { - PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); - PyObject *mself = PyCFunction_GET_SELF(destroy); - res = ((*meth)(mself, v)); - } - Py_XDECREF(res); - } -#if !defined(SWIG_PYTHON_SILENT_MEMLEAK) - else { - const char *name = SWIG_TypePrettyName(ty); - printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown")); - } -#endif - } - Py_XDECREF(next); - PyObject_DEL(v); -} - -SWIGRUNTIME PyObject* -SwigPyObject_append(PyObject* v, PyObject* next) -{ - SwigPyObject *sobj = (SwigPyObject *) v; -#ifndef METH_O - PyObject *tmp = 0; - if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; - next = tmp; -#endif - if (!SwigPyObject_Check(next)) { - return NULL; - } - sobj->next = next; - Py_INCREF(next); - return SWIG_Py_Void(); -} - -SWIGRUNTIME PyObject* -#ifdef METH_NOARGS -SwigPyObject_next(PyObject* v) -#else -SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *) v; - if (sobj->next) { - Py_INCREF(sobj->next); - return sobj->next; - } else { - return SWIG_Py_Void(); - } -} - -SWIGINTERN PyObject* -#ifdef METH_NOARGS -SwigPyObject_disown(PyObject *v) -#else -SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *)v; - sobj->own = 0; - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* -#ifdef METH_NOARGS -SwigPyObject_acquire(PyObject *v) -#else -SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *)v; - sobj->own = SWIG_POINTER_OWN; - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* -SwigPyObject_own(PyObject *v, PyObject *args) -{ - PyObject *val = 0; -#if (PY_VERSION_HEX < 0x02020000) - if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) -#else - if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) -#endif - { - return NULL; - } - else - { - SwigPyObject *sobj = (SwigPyObject *)v; - PyObject *obj = PyBool_FromLong(sobj->own); - if (val) { -#ifdef METH_NOARGS - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v); - } else { - SwigPyObject_disown(v); - } -#else - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v,args); - } else { - SwigPyObject_disown(v,args); - } -#endif - } - return obj; - } -} - -#ifdef METH_O -static PyMethodDef -swigobject_methods[] = { - {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, - {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"}, - {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, - {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"}, - {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, - {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"}, - {0, 0, 0, 0} -}; -#else -static PyMethodDef -swigobject_methods[] = { - {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, - {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"}, - {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, - {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, - {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, - {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"}, - {0, 0, 0, 0} -}; -#endif - -#if PY_VERSION_HEX < 0x02020000 -SWIGINTERN PyObject * -SwigPyObject_getattr(SwigPyObject *sobj,char *name) -{ - return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); -} -#endif - -SWIGRUNTIME PyTypeObject* -_PySwigObject_type(void) { - static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; - - static PyNumberMethods SwigPyObject_as_number = { - (binaryfunc)0, /*nb_add*/ - (binaryfunc)0, /*nb_subtract*/ - (binaryfunc)0, /*nb_multiply*/ - /* nb_divide removed in Python 3 */ -#if PY_VERSION_HEX < 0x03000000 - (binaryfunc)0, /*nb_divide*/ -#endif - (binaryfunc)0, /*nb_remainder*/ - (binaryfunc)0, /*nb_divmod*/ - (ternaryfunc)0,/*nb_power*/ - (unaryfunc)0, /*nb_negative*/ - (unaryfunc)0, /*nb_positive*/ - (unaryfunc)0, /*nb_absolute*/ - (inquiry)0, /*nb_nonzero*/ - 0, /*nb_invert*/ - 0, /*nb_lshift*/ - 0, /*nb_rshift*/ - 0, /*nb_and*/ - 0, /*nb_xor*/ - 0, /*nb_or*/ -#if PY_VERSION_HEX < 0x03000000 - 0, /*nb_coerce*/ -#endif - (unaryfunc)SwigPyObject_long, /*nb_int*/ -#if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_long, /*nb_long*/ -#else - 0, /*nb_reserved*/ -#endif - (unaryfunc)0, /*nb_float*/ -#if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_oct, /*nb_oct*/ - (unaryfunc)SwigPyObject_hex, /*nb_hex*/ -#endif -#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ -#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ -#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ -#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */ - 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ -#endif - }; - - static PyTypeObject swigpyobject_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ -#endif - (char *)"SwigPyObject", /* tp_name */ - sizeof(SwigPyObject), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyObject_dealloc, /* tp_dealloc */ - (printfunc)SwigPyObject_print, /* tp_print */ -#if PY_VERSION_HEX < 0x02020000 - (getattrfunc)SwigPyObject_getattr, /* tp_getattr */ -#else - (getattrfunc)0, /* tp_getattr */ -#endif - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX >= 0x03000000 - 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ -#else - (cmpfunc)SwigPyObject_compare, /* tp_compare */ -#endif - (reprfunc)SwigPyObject_repr, /* tp_repr */ - &SwigPyObject_as_number, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyObject_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigobject_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - (richcmpfunc)SwigPyObject_richcompare, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0, /* tp_iter */ - 0, /* tp_iternext */ - swigobject_methods, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - swigpyobject_type = tmp; - /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - swigpyobject_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &swigpyobject_type; -} - -SWIGRUNTIME PyObject * -SwigPyObject_New(void *ptr, swig_type_info *ty, int own) -{ - SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); - if (sobj) { - sobj->ptr = ptr; - sobj->ty = ty; - sobj->own = own; - sobj->next = 0; - } - return (PyObject *)sobj; -} - -/* ----------------------------------------------------------------------------- - * Implements a simple Swig Packed type, and use it instead of string - * ----------------------------------------------------------------------------- */ - -typedef struct { - PyObject_HEAD - void *pack; - swig_type_info *ty; - size_t size; -} SwigPyPacked; - -SWIGRUNTIME int -SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) -{ - char result[SWIG_BUFFER_SIZE]; - fputs("pack, v->size, 0, sizeof(result))) { - fputs("at ", fp); - fputs(result, fp); - } - fputs(v->ty->name,fp); - fputs(">", fp); - return 0; -} - -SWIGRUNTIME PyObject * -SwigPyPacked_repr(SwigPyPacked *v) -{ - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { - return SWIG_Python_str_FromFormat("", result, v->ty->name); - } else { - return SWIG_Python_str_FromFormat("", v->ty->name); - } -} - -SWIGRUNTIME PyObject * -SwigPyPacked_str(SwigPyPacked *v) -{ - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ - return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); - } else { - return SWIG_Python_str_FromChar(v->ty->name); - } -} - -SWIGRUNTIME int -SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) -{ - size_t i = v->size; - size_t j = w->size; - int s = (i < j) ? -1 : ((i > j) ? 1 : 0); - return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); -} - -SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void); - -SWIGRUNTIME PyTypeObject* -SwigPyPacked_type(void) { - static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type(); - return type; -} - -SWIGRUNTIMEINLINE int -SwigPyPacked_Check(PyObject *op) { - return ((op)->ob_type == _PySwigPacked_type()) - || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0); -} - -SWIGRUNTIME void -SwigPyPacked_dealloc(PyObject *v) -{ - if (SwigPyPacked_Check(v)) { - SwigPyPacked *sobj = (SwigPyPacked *) v; - free(sobj->pack); - } - PyObject_DEL(v); -} - -SWIGRUNTIME PyTypeObject* -_PySwigPacked_type(void) { - static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; - static PyTypeObject swigpypacked_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX>=0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ -#endif - (char *)"SwigPyPacked", /* tp_name */ - sizeof(SwigPyPacked), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ - (printfunc)SwigPyPacked_print, /* tp_print */ - (getattrfunc)0, /* tp_getattr */ - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX>=0x03000000 - 0, /* tp_reserved in 3.0.1 */ -#else - (cmpfunc)SwigPyPacked_compare, /* tp_compare */ -#endif - (reprfunc)SwigPyPacked_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyPacked_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigpacked_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0, /* tp_iter */ - 0, /* tp_iternext */ - 0, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - swigpypacked_type = tmp; - /* for Python 3 the ob_type already assigned in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - swigpypacked_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &swigpypacked_type; -} - -SWIGRUNTIME PyObject * -SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty) -{ - SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); - if (sobj) { - void *pack = malloc(size); - if (pack) { - memcpy(pack, ptr, size); - sobj->pack = pack; - sobj->ty = ty; - sobj->size = size; - } else { - PyObject_DEL((PyObject *) sobj); - sobj = 0; - } - } - return (PyObject *) sobj; -} - -SWIGRUNTIME swig_type_info * -SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size) -{ - if (SwigPyPacked_Check(obj)) { - SwigPyPacked *sobj = (SwigPyPacked *)obj; - if (sobj->size != size) return 0; - memcpy(ptr, sobj->pack, size); - return sobj->ty; - } else { - return 0; - } -} - -/* ----------------------------------------------------------------------------- - * pointers/data manipulation - * ----------------------------------------------------------------------------- */ - -SWIGRUNTIMEINLINE PyObject * -_SWIG_This(void) -{ - return SWIG_Python_str_FromChar("this"); -} - -SWIGRUNTIME PyObject * -SWIG_This(void) -{ - static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This(); - return swig_this; -} - -/* #define SWIG_PYTHON_SLOW_GETSET_THIS */ - -/* TODO: I don't know how to implement the fast getset in Python 3 right now */ -#if PY_VERSION_HEX>=0x03000000 -#define SWIG_PYTHON_SLOW_GETSET_THIS -#endif - -SWIGRUNTIME SwigPyObject * -SWIG_Python_GetSwigThis(PyObject *pyobj) -{ - if (SwigPyObject_Check(pyobj)) { - return (SwigPyObject *) pyobj; - } else { - PyObject *obj = 0; -#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) - if (PyInstance_Check(pyobj)) { - obj = _PyInstance_Lookup(pyobj, SWIG_This()); - } else { - PyObject **dictptr = _PyObject_GetDictPtr(pyobj); - if (dictptr != NULL) { - PyObject *dict = *dictptr; - obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; - } else { -#ifdef PyWeakref_CheckProxy - if (PyWeakref_CheckProxy(pyobj)) { - PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); - return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; - } -#endif - obj = PyObject_GetAttr(pyobj,SWIG_This()); - if (obj) { - Py_DECREF(obj); - } else { - if (PyErr_Occurred()) PyErr_Clear(); - return 0; - } - } - } -#else - obj = PyObject_GetAttr(pyobj,SWIG_This()); - if (obj) { - Py_DECREF(obj); - } else { - if (PyErr_Occurred()) PyErr_Clear(); - return 0; - } -#endif - if (obj && !SwigPyObject_Check(obj)) { - /* a PyObject is called 'this', try to get the 'real this' - SwigPyObject from it */ - return SWIG_Python_GetSwigThis(obj); - } - return (SwigPyObject *)obj; - } -} - -/* Acquire a pointer value */ - -SWIGRUNTIME int -SWIG_Python_AcquirePtr(PyObject *obj, int own) { - if (own == SWIG_POINTER_OWN) { - SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); - if (sobj) { - int oldown = sobj->own; - sobj->own = own; - return oldown; - } - } - return 0; -} - -/* Convert a pointer value */ - -SWIGRUNTIME int -SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { - if (!obj) return SWIG_ERROR; - if (obj == Py_None) { - if (ptr) *ptr = 0; - return SWIG_OK; - } else { - SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); - if (own) - *own = 0; - while (sobj) { - void *vptr = sobj->ptr; - if (ty) { - swig_type_info *to = sobj->ty; - if (to == ty) { - /* no type cast needed */ - if (ptr) *ptr = vptr; - break; - } else { - swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); - if (!tc) { - sobj = (SwigPyObject *)sobj->next; - } else { - if (ptr) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc,vptr,&newmemory); - if (newmemory == SWIG_CAST_NEW_MEMORY) { - assert(own); - if (own) - *own = *own | SWIG_CAST_NEW_MEMORY; - } - } - break; - } - } - } else { - if (ptr) *ptr = vptr; - break; - } - } - if (sobj) { - if (own) - *own = *own | sobj->own; - if (flags & SWIG_POINTER_DISOWN) { - sobj->own = 0; - } - return SWIG_OK; - } else { - int res = SWIG_ERROR; - if (flags & SWIG_POINTER_IMPLICIT_CONV) { - SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; - if (data && !data->implicitconv) { - PyObject *klass = data->klass; - if (klass) { - PyObject *impconv; - data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ - impconv = SWIG_Python_CallFunctor(klass, obj); - data->implicitconv = 0; - if (PyErr_Occurred()) { - PyErr_Clear(); - impconv = 0; - } - if (impconv) { - SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv); - if (iobj) { - void *vptr; - res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); - if (SWIG_IsOK(res)) { - if (ptr) { - *ptr = vptr; - /* transfer the ownership to 'ptr' */ - iobj->own = 0; - res = SWIG_AddCast(res); - res = SWIG_AddNewMask(res); - } else { - res = SWIG_AddCast(res); - } - } - } - Py_DECREF(impconv); - } - } - } - } - return res; - } - } -} - -/* Convert a function ptr value */ - -SWIGRUNTIME int -SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { - if (!PyCFunction_Check(obj)) { - return SWIG_ConvertPtr(obj, ptr, ty, 0); - } else { - void *vptr = 0; - - /* here we get the method pointer for callbacks */ - const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); - const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; - if (desc) - desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; - if (!desc) - return SWIG_ERROR; - if (ty) { - swig_cast_info *tc = SWIG_TypeCheck(desc,ty); - if (tc) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc,vptr,&newmemory); - assert(!newmemory); /* newmemory handling not yet implemented */ - } else { - return SWIG_ERROR; - } - } else { - *ptr = vptr; - } - return SWIG_OK; - } -} - -/* Convert a packed value value */ - -SWIGRUNTIME int -SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { - swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz); - if (!to) return SWIG_ERROR; - if (ty) { - if (to != ty) { - /* check type cast? */ - swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); - if (!tc) return SWIG_ERROR; - } - } - return SWIG_OK; -} - -/* ----------------------------------------------------------------------------- - * Create a new pointer object - * ----------------------------------------------------------------------------- */ - -/* - Create a new instance object, without calling __init__, and set the - 'this' attribute. -*/ - -SWIGRUNTIME PyObject* -SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) -{ -#if (PY_VERSION_HEX >= 0x02020000) - PyObject *inst = 0; - PyObject *newraw = data->newraw; - if (newraw) { - inst = PyObject_Call(newraw, data->newargs, NULL); - if (inst) { -#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject **dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - PyObject *dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - PyDict_SetItem(dict, SWIG_This(), swig_this); - } - } -#else - PyObject *key = SWIG_This(); - PyObject_SetAttr(inst, key, swig_this); -#endif - } - } else { -#if PY_VERSION_HEX >= 0x03000000 - inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); - PyObject_SetAttr(inst, SWIG_This(), swig_this); - Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; -#else - PyObject *dict = PyDict_New(); - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); -#endif - } - return inst; -#else -#if (PY_VERSION_HEX >= 0x02010000) - PyObject *inst; - PyObject *dict = PyDict_New(); - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); - return (PyObject *) inst; -#else - PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); - if (inst == NULL) { - return NULL; - } - inst->in_class = (PyClassObject *)data->newargs; - Py_INCREF(inst->in_class); - inst->in_dict = PyDict_New(); - if (inst->in_dict == NULL) { - Py_DECREF(inst); - return NULL; - } -#ifdef Py_TPFLAGS_HAVE_WEAKREFS - inst->in_weakreflist = NULL; -#endif -#ifdef Py_TPFLAGS_GC - PyObject_GC_Init(inst); -#endif - PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); - return (PyObject *) inst; -#endif -#endif -} - -SWIGRUNTIME void -SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) -{ - PyObject *dict; -#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject **dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - } - PyDict_SetItem(dict, SWIG_This(), swig_this); - return; - } -#endif - dict = PyObject_GetAttrString(inst, (char*)"__dict__"); - PyDict_SetItem(dict, SWIG_This(), swig_this); - Py_DECREF(dict); -} - - -SWIGINTERN PyObject * -SWIG_Python_InitShadowInstance(PyObject *args) { - PyObject *obj[2]; - if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) { - return NULL; - } else { - SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]); - if (sthis) { - SwigPyObject_append((PyObject*) sthis, obj[1]); - } else { - SWIG_Python_SetSwigThis(obj[0], obj[1]); - } - return SWIG_Py_Void(); - } -} - -/* Create a new pointer object */ - -SWIGRUNTIME PyObject * -SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) { - if (!ptr) { - return SWIG_Py_Void(); - } else { - int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - PyObject *robj = SwigPyObject_New(ptr, type, own); - SwigPyClientData *clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0; - if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { - PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); - if (inst) { - Py_DECREF(robj); - robj = inst; - } - } - return robj; - } -} - -/* Create a new packed object */ - -SWIGRUNTIMEINLINE PyObject * -SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { - return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); -} - -/* -----------------------------------------------------------------------------* - * Get type list - * -----------------------------------------------------------------------------*/ - -#ifdef SWIG_LINK_RUNTIME -void *SWIG_ReturnGlobalTypeList(void *); -#endif - -SWIGRUNTIME swig_module_info * -SWIG_Python_GetModule(void) { - static void *type_pointer = (void *)0; - /* first check if module already created */ - if (!type_pointer) { -#ifdef SWIG_LINK_RUNTIME - type_pointer = SWIG_ReturnGlobalTypeList((void *)0); -#else - type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, - (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); - if (PyErr_Occurred()) { - PyErr_Clear(); - type_pointer = (void *)0; - } -#endif - } - return (swig_module_info *) type_pointer; -} - -#if PY_MAJOR_VERSION < 2 -/* PyModule_AddObject function was introduced in Python 2.0. The following function - is copied out of Python/modsupport.c in python version 2.3.4 */ -SWIGINTERN int -PyModule_AddObject(PyObject *m, char *name, PyObject *o) -{ - PyObject *dict; - if (!PyModule_Check(m)) { - PyErr_SetString(PyExc_TypeError, - "PyModule_AddObject() needs module as first arg"); - return SWIG_ERROR; - } - if (!o) { - PyErr_SetString(PyExc_TypeError, - "PyModule_AddObject() needs non-NULL value"); - return SWIG_ERROR; - } - - dict = PyModule_GetDict(m); - if (dict == NULL) { - /* Internal error -- modules must have a dict! */ - PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", - PyModule_GetName(m)); - return SWIG_ERROR; - } - if (PyDict_SetItemString(dict, name, o)) - return SWIG_ERROR; - Py_DECREF(o); - return SWIG_OK; -} -#endif - -SWIGRUNTIME void -SWIG_Python_DestroyModule(void *vptr) -{ - swig_module_info *swig_module = (swig_module_info *) vptr; - swig_type_info **types = swig_module->types; - size_t i; - for (i =0; i < swig_module->size; ++i) { - swig_type_info *ty = types[i]; - if (ty->owndata) { - SwigPyClientData *data = (SwigPyClientData *) ty->clientdata; - if (data) SwigPyClientData_Del(data); - } - } - Py_DECREF(SWIG_This()); -} - -SWIGRUNTIME void -SWIG_Python_SetModule(swig_module_info *swig_module) { - static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ - -#if PY_VERSION_HEX >= 0x03000000 - /* Add a dummy module object into sys.modules */ - PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION); -#else - PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, - swig_empty_runtime_method_table); -#endif - PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); - if (pointer && module) { - PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); - } else { - Py_XDECREF(pointer); - } -} - -/* The python cached type query */ -SWIGRUNTIME PyObject * -SWIG_Python_TypeCache(void) { - static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); - return cache; -} - -SWIGRUNTIME swig_type_info * -SWIG_Python_TypeQuery(const char *type) -{ - PyObject *cache = SWIG_Python_TypeCache(); - PyObject *key = SWIG_Python_str_FromChar(type); - PyObject *obj = PyDict_GetItem(cache, key); - swig_type_info *descriptor; - if (obj) { - descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); - } else { - swig_module_info *swig_module = SWIG_Python_GetModule(); - descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); - if (descriptor) { - obj = PyCObject_FromVoidPtr(descriptor, NULL); - PyDict_SetItem(cache, key, obj); - Py_DECREF(obj); - } - } - Py_DECREF(key); - return descriptor; -} - -/* - For backward compatibility only -*/ -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) -#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) - -SWIGRUNTIME int -SWIG_Python_AddErrMesg(const char* mesg, int infront) -{ - if (PyErr_Occurred()) { - PyObject *type = 0; - PyObject *value = 0; - PyObject *traceback = 0; - PyErr_Fetch(&type, &value, &traceback); - if (value) { - char *tmp; - PyObject *old_str = PyObject_Str(value); - Py_XINCREF(type); - PyErr_Clear(); - if (infront) { - PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str)); - } else { - PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); - } - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - } - return 1; - } else { - return 0; - } -} - -SWIGRUNTIME int -SWIG_Python_ArgFail(int argnum) -{ - if (PyErr_Occurred()) { - /* add information about failing argument */ - char mesg[256]; - PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); - return SWIG_Python_AddErrMesg(mesg, 1); - } else { - return 0; - } -} - -SWIGRUNTIMEINLINE const char * -SwigPyObject_GetDesc(PyObject *self) -{ - SwigPyObject *v = (SwigPyObject *)self; - swig_type_info *ty = v ? v->ty : 0; - return ty ? ty->str : (char*)""; -} - -SWIGRUNTIME void -SWIG_Python_TypeError(const char *type, PyObject *obj) -{ - if (type) { -#if defined(SWIG_COBJECT_TYPES) - if (obj && SwigPyObject_Check(obj)) { - const char *otype = (const char *) SwigPyObject_GetDesc(obj); - if (otype) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received", - type, otype); - return; - } - } else -#endif - { - const char *otype = (obj ? obj->ob_type->tp_name : 0); - if (otype) { - PyObject *str = PyObject_Str(obj); - const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0; - if (cstr) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", - type, otype, cstr); - SWIG_Python_str_DelForPy3(cstr); - } else { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", - type, otype); - } - Py_XDECREF(str); - return; - } - } - PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); - } else { - PyErr_Format(PyExc_TypeError, "unexpected type is received"); - } -} - - -/* Convert a pointer value, signal an exception on a type mismatch */ -SWIGRUNTIME void * -SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) { - void *result; - if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { - PyErr_Clear(); -#if SWIG_POINTER_EXCEPTION - if (flags) { - SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); - SWIG_Python_ArgFail(argnum); - } -#endif - } - return result; -} - - -#ifdef __cplusplus -#if 0 -{ /* cc-mode */ -#endif -} -#endif - - - -#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) - -#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else - - - -/* define the PyAPI_FUNC macro if it doesn't exist, for example with Python - version below 2.3... But not really tested... */ -#ifndef PyAPI_FUNC -# define PyAPI_FUNC(RTYPE) RTYPE -#endif - -/* remove the PyInt_AS_LONG if defined, as this cause problems on RedHat */ -#ifdef PyInt_AS_LONG -#undef PyInt_AS_LONG -#endif - -/* wrapper to the better function PyInt_AsLong, removing problems - with RedHat (I hope) */ -long PyInt_AS_LONG (PyObject *obj) { - return PyInt_AsLong (obj); -} - -/* remove the PyFloat_AS_DOUBLE if defined, to prevent errors */ -#ifdef PyFloat_AS_DOUBLE -#undef PyFloat_AS_DOUBLE -#endif - -/* wrapper to the better function PyFloat_AS_DOUBLE, to prevent errors */ -double PyFloat_AS_DOUBLE (PyObject *obj) { - return PyFloat_AsDouble (obj); -} - - - #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -#define SWIGTYPE_p_Cv32suf swig_types[0] -#define SWIGTYPE_p_Cv64suf swig_types[1] -#define SWIGTYPE_p_CvAttrList swig_types[2] -#define SWIGTYPE_p_CvAvgComp swig_types[3] -#define SWIGTYPE_p_CvBox2D swig_types[4] -#define SWIGTYPE_p_CvChain swig_types[5] -#define SWIGTYPE_p_CvChainPtReader swig_types[6] -#define SWIGTYPE_p_CvConDensation swig_types[7] -#define SWIGTYPE_p_CvConnectedComp swig_types[8] -#define SWIGTYPE_p_CvContour swig_types[9] -#define SWIGTYPE_p_CvContourTree swig_types[10] -#define SWIGTYPE_p_CvConvexityDefect swig_types[11] -#define SWIGTYPE_p_CvFeatureTree swig_types[12] -#define SWIGTYPE_p_CvFileNode swig_types[13] -#define SWIGTYPE_p_CvFileNode_data swig_types[14] -#define SWIGTYPE_p_CvFileStorage swig_types[15] -#define SWIGTYPE_p_CvFilter swig_types[16] -#define SWIGTYPE_p_CvFont swig_types[17] -#define SWIGTYPE_p_CvGenericHash swig_types[18] -#define SWIGTYPE_p_CvGraph swig_types[19] -#define SWIGTYPE_p_CvGraphEdge swig_types[20] -#define SWIGTYPE_p_CvGraphScanner swig_types[21] -#define SWIGTYPE_p_CvGraphVtx swig_types[22] -#define SWIGTYPE_p_CvGraphVtx2D swig_types[23] -#define SWIGTYPE_p_CvHaarClassifier swig_types[24] -#define SWIGTYPE_p_CvHaarClassifierCascade swig_types[25] -#define SWIGTYPE_p_CvHaarFeature swig_types[26] -#define SWIGTYPE_p_CvHaarFeature_rect swig_types[27] -#define SWIGTYPE_p_CvHaarStageClassifier swig_types[28] -#define SWIGTYPE_p_CvHidHaarClassifierCascade swig_types[29] -#define SWIGTYPE_p_CvHistogram swig_types[30] -#define SWIGTYPE_p_CvHuMoments swig_types[31] -#define SWIGTYPE_p_CvImage swig_types[32] -#define SWIGTYPE_p_CvKalman swig_types[33] -#define SWIGTYPE_p_CvLSH swig_types[34] -#define SWIGTYPE_p_CvLSHOperations swig_types[35] -#define SWIGTYPE_p_CvLineIterator swig_types[36] -#define SWIGTYPE_p_CvMSERParams swig_types[37] -#define SWIGTYPE_p_CvMat swig_types[38] -#define SWIGTYPE_p_CvMatND swig_types[39] -#define SWIGTYPE_p_CvMatND_data swig_types[40] -#define SWIGTYPE_p_CvMatND_dim swig_types[41] -#define SWIGTYPE_p_CvMat_data swig_types[42] -#define SWIGTYPE_p_CvMatrix swig_types[43] -#define SWIGTYPE_p_CvMatrix3 swig_types[44] -#define SWIGTYPE_p_CvMemBlock swig_types[45] -#define SWIGTYPE_p_CvMemStorage swig_types[46] -#define SWIGTYPE_p_CvMemStoragePos swig_types[47] -#define SWIGTYPE_p_CvModule swig_types[48] -#define SWIGTYPE_p_CvModuleInfo swig_types[49] -#define SWIGTYPE_p_CvMoments swig_types[50] -#define SWIGTYPE_p_CvNArrayIterator swig_types[51] -#define SWIGTYPE_p_CvNextEdgeType swig_types[52] -#define SWIGTYPE_p_CvPOSITObject swig_types[53] -#define SWIGTYPE_p_CvPluginFuncInfo swig_types[54] -#define SWIGTYPE_p_CvPoint swig_types[55] -#define SWIGTYPE_p_CvPoint2D32f swig_types[56] -#define SWIGTYPE_p_CvPoint2D64f swig_types[57] -#define SWIGTYPE_p_CvPoint3D32f swig_types[58] -#define SWIGTYPE_p_CvPoint3D64f swig_types[59] -#define SWIGTYPE_p_CvQuadEdge2D swig_types[60] -#define SWIGTYPE_p_CvRNG_Wrapper swig_types[61] -#define SWIGTYPE_p_CvRandState swig_types[62] -#define SWIGTYPE_p_CvRect swig_types[63] -#define SWIGTYPE_p_CvSURFParams swig_types[64] -#define SWIGTYPE_p_CvSURFPoint swig_types[65] -#define SWIGTYPE_p_CvScalar swig_types[66] -#define SWIGTYPE_p_CvSeq swig_types[67] -#define SWIGTYPE_p_CvSeqBlock swig_types[68] -#define SWIGTYPE_p_CvSeqReader swig_types[69] -#define SWIGTYPE_p_CvSeqWriter swig_types[70] -#define SWIGTYPE_p_CvSet swig_types[71] -#define SWIGTYPE_p_CvSetElem swig_types[72] -#define SWIGTYPE_p_CvSize swig_types[73] -#define SWIGTYPE_p_CvSize2D32f swig_types[74] -#define SWIGTYPE_p_CvSlice swig_types[75] -#define SWIGTYPE_p_CvSparseMat swig_types[76] -#define SWIGTYPE_p_CvSparseMatIterator swig_types[77] -#define SWIGTYPE_p_CvSparseNode swig_types[78] -#define SWIGTYPE_p_CvStarDetectorParams swig_types[79] -#define SWIGTYPE_p_CvStarKeypoint swig_types[80] -#define SWIGTYPE_p_CvStereoBMState swig_types[81] -#define SWIGTYPE_p_CvStereoGCState swig_types[82] -#define SWIGTYPE_p_CvString swig_types[83] -#define SWIGTYPE_p_CvStringHashNode swig_types[84] -#define SWIGTYPE_p_CvSubdiv2D swig_types[85] -#define SWIGTYPE_p_CvSubdiv2DEdge_Wrapper swig_types[86] -#define SWIGTYPE_p_CvSubdiv2DPoint swig_types[87] -#define SWIGTYPE_p_CvSubdiv2DPointLocation swig_types[88] -#define SWIGTYPE_p_CvTermCriteria swig_types[89] -#define SWIGTYPE_p_CvTreeNodeIterator swig_types[90] -#define SWIGTYPE_p_CvTupleT_CvPoint_2_t swig_types[91] -#define SWIGTYPE_p_CvTupleT_float_2_t swig_types[92] -#define SWIGTYPE_p_CvTupleT_float_3_t swig_types[93] -#define SWIGTYPE_p_CvType swig_types[94] -#define SWIGTYPE_p_CvTypeInfo swig_types[95] -#define SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t swig_types[96] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t swig_types[97] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint_t swig_types[98] -#define SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t swig_types[99] -#define SWIGTYPE_p_CvTypedSeqT_CvRect_t swig_types[100] -#define SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t swig_types[101] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t swig_types[102] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t swig_types[103] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t swig_types[104] -#define SWIGTYPE_p__CvContourScanner swig_types[105] -#define SWIGTYPE_p__IplConvKernel swig_types[106] -#define SWIGTYPE_p__IplConvKernelFP swig_types[107] -#define SWIGTYPE_p__IplImage swig_types[108] -#define SWIGTYPE_p__IplROI swig_types[109] -#define SWIGTYPE_p__IplTileInfo swig_types[110] -#define SWIGTYPE_p_a_2__float swig_types[111] -#define SWIGTYPE_p_a_2__signed_char swig_types[112] -#define SWIGTYPE_p_a_3__float swig_types[113] -#define SWIGTYPE_p_allocator_type swig_types[114] -#define SWIGTYPE_p_char swig_types[115] -#define SWIGTYPE_p_difference_type swig_types[116] -#define SWIGTYPE_p_double swig_types[117] -#define SWIGTYPE_p_f_int_int_int_int_int__p__IplROI swig_types[118] -#define SWIGTYPE_p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage swig_types[119] -#define SWIGTYPE_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int swig_types[120] -#define SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void swig_types[121] -#define SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void swig_types[122] -#define SWIGTYPE_p_f_p__IplImage_int__void swig_types[123] -#define SWIGTYPE_p_f_p__IplImage_int_int__void swig_types[124] -#define SWIGTYPE_p_f_p_p_void__void swig_types[125] -#define SWIGTYPE_p_f_p_q_const__IplImage__p__IplImage swig_types[126] -#define SWIGTYPE_p_f_p_q_const__char_int__p_CvMat swig_types[127] -#define SWIGTYPE_p_f_p_q_const__char_int__p__IplImage swig_types[128] -#define SWIGTYPE_p_f_p_q_const__char_p_q_const__void__void swig_types[129] -#define SWIGTYPE_p_f_p_q_const__char_p_q_const__void_p_q_const__int__int swig_types[130] -#define SWIGTYPE_p_f_p_q_const__float_p_q_const__float_p_void__float swig_types[131] -#define SWIGTYPE_p_f_p_q_const__void__int swig_types[132] -#define SWIGTYPE_p_f_p_q_const__void__p_void swig_types[133] -#define SWIGTYPE_p_f_p_q_const__void_p_q_const__void_p_void__int swig_types[134] -#define SWIGTYPE_p_f_p_void_p_void__int swig_types[135] -#define SWIGTYPE_p_f_size_t_p_void__p_void swig_types[136] -#define SWIGTYPE_p_float swig_types[137] -#define SWIGTYPE_p_int swig_types[138] -#define SWIGTYPE_p_int64_t swig_types[139] -#define SWIGTYPE_p_p_CvFileStorage swig_types[140] -#define SWIGTYPE_p_p_CvGraphEdge swig_types[141] -#define SWIGTYPE_p_p_CvGraphVtx swig_types[142] -#define SWIGTYPE_p_p_CvHistogram swig_types[143] -#define SWIGTYPE_p_p_CvLSH swig_types[144] -#define SWIGTYPE_p_p_CvMat swig_types[145] -#define SWIGTYPE_p_p_CvMatND swig_types[146] -#define SWIGTYPE_p_p_CvPOSITObject swig_types[147] -#define SWIGTYPE_p_p_CvPoint swig_types[148] -#define SWIGTYPE_p_p_CvSeq swig_types[149] -#define SWIGTYPE_p_p_CvSeqBlock swig_types[150] -#define SWIGTYPE_p_p_CvSetElem swig_types[151] -#define SWIGTYPE_p_p_CvStereoBMState swig_types[152] -#define SWIGTYPE_p_p_CvStereoGCState swig_types[153] -#define SWIGTYPE_p_p_CvSubdiv2DPoint swig_types[154] -#define SWIGTYPE_p_p_CvTypedSeqT_CvConnectedComp_t swig_types[155] -#define SWIGTYPE_p_p_CvTypedSeqT_CvPoint2D32f_t swig_types[156] -#define SWIGTYPE_p_p_CvTypedSeqT_CvPoint_t swig_types[157] -#define SWIGTYPE_p_p_CvTypedSeqT_CvQuadEdge2D_t swig_types[158] -#define SWIGTYPE_p_p_CvTypedSeqT_CvRect_t swig_types[159] -#define SWIGTYPE_p_p_CvTypedSeqT_CvSeq_p_t swig_types[160] -#define SWIGTYPE_p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t swig_types[161] -#define SWIGTYPE_p_p_CvTypedSeqT_CvTupleT_float_2_t_t swig_types[162] -#define SWIGTYPE_p_p_CvTypedSeqT_CvTupleT_float_3_t_t swig_types[163] -#define SWIGTYPE_p_p_PyObject swig_types[164] -#define SWIGTYPE_p_p__CvContourScanner swig_types[165] -#define SWIGTYPE_p_p__IplImage swig_types[166] -#define SWIGTYPE_p_p_char swig_types[167] -#define SWIGTYPE_p_p_float swig_types[168] -#define SWIGTYPE_p_p_p_CvMat swig_types[169] -#define SWIGTYPE_p_p_unsigned_char swig_types[170] -#define SWIGTYPE_p_p_void swig_types[171] -#define SWIGTYPE_p_short swig_types[172] -#define SWIGTYPE_p_signed_char swig_types[173] -#define SWIGTYPE_p_size_t swig_types[174] -#define SWIGTYPE_p_size_type swig_types[175] -#define SWIGTYPE_p_std__invalid_argument swig_types[176] -#define SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t swig_types[177] -#define SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type swig_types[178] -#define SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type swig_types[179] -#define SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t swig_types[180] -#define SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type swig_types[181] -#define SWIGTYPE_p_swig__SwigPyIterator swig_types[182] -#define SWIGTYPE_p_uint64_t swig_types[183] -#define SWIGTYPE_p_unsigned_char swig_types[184] -#define SWIGTYPE_p_unsigned_int swig_types[185] -#define SWIGTYPE_p_unsigned_short swig_types[186] -#define SWIGTYPE_p_value_type swig_types[187] -#define SWIGTYPE_p_void swig_types[188] -static swig_type_info *swig_types[190]; -static swig_module_info swig_module = {swig_types, 189, 0, 0, 0, 0}; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) -#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) - -/* -------- TYPES TABLE (END) -------- */ - -#if (PY_VERSION_HEX <= 0x02000000) -# if !defined(SWIG_PYTHON_CLASSIC) -# error "This python version requires swig to be run with the '-classic' option" -# endif -#endif - -/*----------------------------------------------- - @(target):= _cv.so - ------------------------------------------------*/ -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_init PyInit__cv - -#else -# define SWIG_init init_cv - -#endif -#define SWIG_name "_cv" - -#define SWIGVERSION 0x010340 -#define SWIG_VERSION SWIGVERSION - - -#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) - - -#include - - -namespace swig { - class SwigPtr_PyObject { - protected: - PyObject *_obj; - - public: - SwigPtr_PyObject() :_obj(0) - { - } - - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) - { - Py_XINCREF(_obj); - } - - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) - { - if (initial_ref) { - Py_XINCREF(_obj); - } - } - - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) - { - Py_XINCREF(item._obj); - Py_XDECREF(_obj); - _obj = item._obj; - return *this; - } - - ~SwigPtr_PyObject() - { - Py_XDECREF(_obj); - } - - operator PyObject *() const - { - return _obj; - } - - PyObject *operator->() const - { - return _obj; - } - }; -} - - -namespace swig { - struct SwigVar_PyObject : SwigPtr_PyObject { - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } - - SwigVar_PyObject & operator = (PyObject* obj) - { - Py_XDECREF(_obj); - _obj = obj; - return *this; - } - }; -} - - - #include "pyhelpers.h" - #include "pycvseq.hpp" - #include "error.h" - - - -#include "pyhelpers.h" - -static CvArr * PyObject_to_CvArr(PyObject * obj, bool * freearg); - -// convert a python sequence/array/list object into a c-array -#define PyObject_AsArrayImpl(func, ctype, ptype) \ - int func(PyObject * obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(PyNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = PyObject_As##ptype( obj ); \ - } \ - else if(PyList_Check(obj) || PyTuple_Check(obj)){ \ - int seqsize = PySequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(PyObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - PyErr_SetString( PyExc_TypeError, "could not convert to CvPoint"); - return cvPoint(0,0); -} - -static CvPoint2D32f PyObject_to_CvPoint2D32f(PyObject * obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(PyObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - PyErr_SetString(PyExc_TypeError, "could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); -} - -/* Check if this object can be interpreted as a CvScalar */ -static bool CvScalar_Check(PyObject * obj){ - void * vptr; - CvScalar val; - return SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0 ) != -1 || - PyObject_AsDoubleArray(obj, val.val, 4) !=-1; -} - -static CvScalar PyObject_to_CvScalar(PyObject * obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(PyObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); -} - -static int CvArr_Check( PyObject * obj ) -{ - void *ptr; - if( obj == Py_None || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMatND, 0) ) || - PyObject_HasAttrString(obj, "__array_interface__") || - PySequence_Check(obj) ) - { - return 1; - } - PyErr_Clear(); - return 0; -} - -/* if python sequence type, convert to CvMat or CvMatND */ -static CvArr * PyObject_to_CvArr (PyObject * obj, bool * freearg) -{ - CvArr * cvarr = NULL; - *freearg = false; - - if ( obj == Py_None ) - { - // Interpret None as NULL pointer - return NULL; - } - else if( SWIG_IsOK( SWIG_ConvertPtr(obj, (void **)& cvarr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void** )& cvarr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvMatND, 0) )) - { - // we got a directly wrapped void * pointer, OpenCV array or sequence type - return cvarr; - } - else if (PyObject_HasAttrString (obj, "__array_interface__")) - { - // if we didn't get our own datatype, let's see if it supports the array protocol - // array protocol is great because we just have to create another header but can - // use the original data without copying - cvarr = PyArray_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PySequence_Check (obj)) - { - // our next bet is a tuple or list of tuples or lists this has to be copied over, however - cvarr = PySequence_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PyLong_Check (obj) && PyLong_AsLong (obj) == 0) - { - // Interpret a '0' integer as a NULL pointer - * freearg = false; - return NULL; - } - else - { - // TODO, throw an error here - return NULL; - } - - return cvarr; -} - - -static int PyObject_GetElemType(PyObject * obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(PyTuple_Check(obj) || PyList_Check(obj)) return CV_MAKE_TYPE(CV_32F, PySequence_Size( obj )); - if(PyLong_Check(obj)) return CV_32S; - return CV_32F; -} - - - -// Wrapper class -class CvRNG_Wrapper { -private: - CvRNG m_val; -public: - CvRNG_Wrapper( const CvRNG & val ) : - m_val(val) - { - } - CvRNG * ptr() { return &m_val; } - CvRNG & ref() { return m_val; } - bool operator==(const CvRNG_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvRNG_Wrapper & x){ - return m_val!=x.m_val; - } -}; - - -SWIGINTERNINLINE PyObject* - SWIG_From_bool (bool value) -{ - return PyBool_FromLong(value ? 1 : 0); -} - - -// Wrapper class -class CvSubdiv2DEdge_Wrapper { -private: - CvSubdiv2DEdge m_val; -public: - CvSubdiv2DEdge_Wrapper( const CvSubdiv2DEdge & val ) : - m_val(val) - { - } - CvSubdiv2DEdge * ptr() { return &m_val; } - CvSubdiv2DEdge & ref() { return m_val; } - bool operator==(const CvSubdiv2DEdge_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvSubdiv2DEdge_Wrapper & x){ - return m_val!=x.m_val; - } -}; - - -SWIGINTERN int -SWIG_AsVal_double (PyObject *obj, double *val) -{ - int res = SWIG_TypeError; - if (PyFloat_Check(obj)) { - if (val) *val = PyFloat_AsDouble(obj); - return SWIG_OK; - } else if (PyInt_Check(obj)) { - if (val) *val = PyInt_AsLong(obj); - return SWIG_OK; - } else if (PyLong_Check(obj)) { - double v = PyLong_AsDouble(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - double d = PyFloat_AsDouble(obj); - if (!PyErr_Occurred()) { - if (val) *val = d; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - long v = PyLong_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); - } else { - PyErr_Clear(); - } - } - } -#endif - return res; -} - - -#include - - -#include - - -SWIGINTERNINLINE int -SWIG_CanCastAsInteger(double *d, double min, double max) { - double x = *d; - if ((min <= x && x <= max)) { - double fx = floor(x); - double cx = ceil(x); - double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ - if ((errno == EDOM) || (errno == ERANGE)) { - errno = 0; - } else { - double summ, reps, diff; - if (rd < x) { - diff = x - rd; - } else if (rd > x) { - diff = rd - x; - } else { - return 1; - } - summ = rd + x; - reps = diff/summ; - if (reps < 8*DBL_EPSILON) { - *d = rd; - return 1; - } - } - } - return 0; -} - - -SWIGINTERN int -SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) -{ - if (PyInt_Check(obj)) { - long v = PyInt_AsLong(obj); - if (v >= 0) { - if (val) *val = v; - return SWIG_OK; - } else { - return SWIG_OverflowError; - } - } else if (PyLong_Check(obj)) { - unsigned long v = PyLong_AsUnsignedLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - unsigned long v = PyLong_AsUnsignedLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { - if (val) *val = (unsigned long)(d); - return res; - } - } - } -#endif - return SWIG_TypeError; -} - - -SWIGINTERNINLINE int -SWIG_AsVal_size_t (PyObject * obj, size_t *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); - return res; -} - - -#include "cvshadow.h" - - -#include - - -#if defined(__GNUC__) -# if __GNUC__ == 2 && __GNUC_MINOR <= 96 -# define SWIG_STD_NOMODERN_STL -# endif -#endif - - -#include -#include - - -#include - - -#include - - -namespace swig { - struct stop_iteration { - }; - - struct SwigPyIterator { - private: - SwigPtr_PyObject _seq; - - protected: - SwigPyIterator(PyObject *seq) : _seq(seq) - { - } - - public: - virtual ~SwigPyIterator() {} - - // Access iterator method, required by Python - virtual PyObject *value() const = 0; - - // Forward iterator method, required by Python - virtual SwigPyIterator *incr(size_t n = 1) = 0; - - // Backward iterator method, very common in C++, but not required in Python - virtual SwigPyIterator *decr(size_t /*n*/ = 1) - { - throw stop_iteration(); - } - - // Random access iterator methods, but not required in Python - virtual ptrdiff_t distance(const SwigPyIterator &/*x*/) const - { - throw std::invalid_argument("operation not supported"); - } - - virtual bool equal (const SwigPyIterator &/*x*/) const - { - throw std::invalid_argument("operation not supported"); - } - - // C++ common/needed methods - virtual SwigPyIterator *copy() const = 0; - - PyObject *next() - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; // disable threads - PyObject *obj = value(); - incr(); - SWIG_PYTHON_THREAD_END_BLOCK; // re-enable threads - return obj; - } - - /* Make an alias for Python 3.x */ - PyObject *__next__() - { - return next(); - } - - PyObject *previous() - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; // disable threads - decr(); - PyObject *obj = value(); - SWIG_PYTHON_THREAD_END_BLOCK; // re-enable threads - return obj; - } - - SwigPyIterator *advance(ptrdiff_t n) - { - return (n > 0) ? incr(n) : decr(-n); - } - - bool operator == (const SwigPyIterator& x) const - { - return equal(x); - } - - bool operator != (const SwigPyIterator& x) const - { - return ! operator==(x); - } - - SwigPyIterator& operator += (ptrdiff_t n) - { - return *advance(n); - } - - SwigPyIterator& operator -= (ptrdiff_t n) - { - return *advance(-n); - } - - SwigPyIterator* operator + (ptrdiff_t n) const - { - return copy()->advance(n); - } - - SwigPyIterator* operator - (ptrdiff_t n) const - { - return copy()->advance(-n); - } - - ptrdiff_t operator - (const SwigPyIterator& x) const - { - return x.distance(*this); - } - - static swig_type_info* descriptor() { - static int init = 0; - static swig_type_info* desc = 0; - if (!init) { - desc = SWIG_TypeQuery("swig::SwigPyIterator *"); - init = 1; - } - return desc; - } - }; -} - - - #define SWIG_From_long PyInt_FromLong - - -SWIGINTERNINLINE PyObject * -SWIG_From_ptrdiff_t (ptrdiff_t value) -{ - return SWIG_From_long (static_cast< long >(value)); -} - - -SWIGINTERN int -SWIG_AsVal_long (PyObject *obj, long* val) -{ - if (PyInt_Check(obj)) { - if (val) *val = PyInt_AsLong(obj); - return SWIG_OK; - } else if (PyLong_Check(obj)) { - long v = PyLong_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - long v = PyInt_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { - if (val) *val = (long)(d); - return res; - } - } - } -#endif - return SWIG_TypeError; -} - - -SWIGINTERNINLINE int -SWIG_AsVal_ptrdiff_t (PyObject * obj, ptrdiff_t *val) -{ - long v; - int res = SWIG_AsVal_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = static_cast< ptrdiff_t >(v); - return res; -} - - -#include - - -#include - - -#include - - -#include - - -#include -#include -#include - - -namespace swig { - template - struct noconst_traits { - typedef Type noconst_type; - }; - - template - struct noconst_traits { - typedef Type noconst_type; - }; - - /* - type categories - */ - struct pointer_category { }; - struct value_category { }; - - /* - General traits that provides type_name and type_info - */ - template struct traits { }; - - template - inline const char* type_name() { - return traits::noconst_type >::type_name(); - } - - template - struct traits_info { - static swig_type_info *type_query(std::string name) { - name += " *"; - return SWIG_TypeQuery(name.c_str()); - } - static swig_type_info *type_info() { - static swig_type_info *info = type_query(type_name()); - return info; - } - }; - - template - inline swig_type_info *type_info() { - return traits_info::type_info(); - } - - /* - Partial specialization for pointers - */ - template struct traits { - typedef pointer_category category; - static std::string make_ptr_name(const char* name) { - std::string ptrname = name; - ptrname += " *"; - return ptrname; - } - static const char* type_name() { - static std::string name = make_ptr_name(swig::type_name()); - return name.c_str(); - } - }; - - template - struct traits_as { }; - - template - struct traits_check { }; - -} - - -namespace swig { - /* - Traits that provides the from method - */ - template struct traits_from_ptr { - static PyObject *from(Type *val, int owner = 0) { - return SWIG_NewPointerObj(val, type_info(), owner); - } - }; - - template struct traits_from { - static PyObject *from(const Type& val) { - return traits_from_ptr::from(new Type(val), 1); - } - }; - - template struct traits_from { - static PyObject *from(Type* val) { - return traits_from_ptr::from(val, 0); - } - }; - - template struct traits_from { - static PyObject *from(const Type* val) { - return traits_from_ptr::from(const_cast(val), 0); - } - }; - - - template - inline PyObject *from(const Type& val) { - return traits_from::from(val); - } - - template - inline PyObject *from_ptr(Type* val, int owner) { - return traits_from_ptr::from(val, owner); - } - - /* - Traits that provides the asval/as/check method - */ - template - struct traits_asptr { - static int asptr(PyObject *obj, Type **val) { - Type *p; - int res = SWIG_ConvertPtr(obj, (void**)&p, type_info(), 0); - if (SWIG_IsOK(res)) { - if (val) *val = p; - } - return res; - } - }; - - template - inline int asptr(PyObject *obj, Type **vptr) { - return traits_asptr::asptr(obj, vptr); - } - - template - struct traits_asval { - static int asval(PyObject *obj, Type *val) { - if (val) { - Type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (!SWIG_IsOK(res)) return res; - if (p) { - typedef typename noconst_traits::noconst_type noconst_type; - *(const_cast(val)) = *p; - if (SWIG_IsNewObj(res)){ - delete p; - res = SWIG_DelNewMask(res); - } - return res; - } else { - return SWIG_ERROR; - } - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template struct traits_asval { - static int asval(PyObject *obj, Type **val) { - if (val) { - typedef typename noconst_traits::noconst_type noconst_type; - noconst_type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (SWIG_IsOK(res)) { - *(const_cast(val)) = p; - } - return res; - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template - inline int asval(PyObject *obj, Type *val) { - return traits_asval::asval(obj, val); - } - - template - struct traits_as { - static Type as(PyObject *obj, bool throw_error) { - Type v; - int res = asval(obj, &v); - if (!obj || !SWIG_IsOK(res)) { - if (!PyErr_Occurred()) { - ::SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - } - return v; - } - }; - - template - struct traits_as { - static Type as(PyObject *obj, bool throw_error) { - Type *v = 0; - int res = (obj ? traits_asptr::asptr(obj, &v) : SWIG_ERROR); - if (SWIG_IsOK(res) && v) { - if (SWIG_IsNewObj(res)) { - Type r(*v); - delete v; - return r; - } else { - return *v; - } - } else { - // Uninitialized return value, no Type() constructor required. - static Type *v_def = (Type*) malloc(sizeof(Type)); - if (!PyErr_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - memset(v_def,0,sizeof(Type)); - return *v_def; - } - } - }; - - template - struct traits_as { - static Type* as(PyObject *obj, bool throw_error) { - Type *v = 0; - int res = (obj ? traits_asptr::asptr(obj, &v) : SWIG_ERROR); - if (SWIG_IsOK(res)) { - return v; - } else { - if (!PyErr_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - return 0; - } - } - }; - - template - inline Type as(PyObject *obj, bool te = false) { - return traits_as::category>::as(obj, te); - } - - template - struct traits_check { - static bool check(PyObject *obj) { - int res = obj ? asval(obj, (Type *)(0)) : SWIG_ERROR; - return SWIG_IsOK(res) ? true : false; - } - }; - - template - struct traits_check { - static bool check(PyObject *obj) { - int res = obj ? asptr(obj, (Type **)(0)) : SWIG_ERROR; - return SWIG_IsOK(res) ? true : false; - } - }; - - template - inline bool check(PyObject *obj) { - return traits_check::category>::check(obj); - } -} - - -#include - -namespace std { - template <> - struct less : public binary_function - { - bool - operator()(PyObject * v, PyObject *w) const - { - bool res; - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - res = PyObject_RichCompareBool(v, w, Py_LT) ? true : false; - /* This may fall into a case of inconsistent - eg. ObjA > ObjX > ObjB - but ObjA < ObjB - */ - if( PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_TypeError) ) - { - /* Objects can't be compared, this mostly occurred in Python 3.0 */ - /* Compare their ptr directly for a workaround */ - res = (v < w); - PyErr_Clear(); - } - SWIG_PYTHON_THREAD_END_BLOCK; - return res; - } - }; - - template <> - struct less : public binary_function - { - bool - operator()(const swig::SwigPtr_PyObject& v, const swig::SwigPtr_PyObject& w) const - { - return std::less()(v, w); - } - }; - - template <> - struct less : public binary_function - { - bool - operator()(const swig::SwigVar_PyObject& v, const swig::SwigVar_PyObject& w) const - { - return std::less()(v, w); - } - }; - -} - -namespace swig { - template <> struct traits { - typedef value_category category; - static const char* type_name() { return "PyObject *"; } - }; - - template <> struct traits_asval { - typedef PyObject * value_type; - static int asval(PyObject *obj, value_type *val) { - if (val) *val = obj; - return SWIG_OK; - } - }; - - template <> - struct traits_check { - static bool check(PyObject *) { - return true; - } - }; - - template <> struct traits_from { - typedef PyObject * value_type; - static PyObject *from(const value_type& val) { - Py_XINCREF(val); - return val; - } - }; - -} - -namespace swig { - inline size_t - check_index(ptrdiff_t i, size_t size, bool insert = false) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) - return (size_t) (i + size); - } else if ( (size_t) i < size ) { - return (size_t) i; - } else if (insert && ((size_t) i == size)) { - return size; - } - - throw std::out_of_range("index out of range"); - } - - inline size_t - slice_index(ptrdiff_t i, size_t size) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) { - return (size_t) (i + size); - } else { - throw std::out_of_range("index out of range"); - } - } else { - return ( (size_t) i < size ) ? ((size_t) i) : size; - } - } - - template - inline typename Sequence::iterator - getpos(Sequence* self, Difference i) { - typename Sequence::iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline typename Sequence::const_iterator - cgetpos(const Sequence* self, Difference i) { - typename Sequence::const_iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline Sequence* - getslice(const Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size); - typename Sequence::size_type jj = swig::slice_index(j, size); - - if (jj > ii) { - typename Sequence::const_iterator vb = self->begin(); - typename Sequence::const_iterator ve = self->begin(); - std::advance(vb,ii); - std::advance(ve,jj); - return new Sequence(vb, ve); - } else { - return new Sequence(); - } - } - - template - inline void - setslice(Sequence* self, Difference i, Difference j, const InputSeq& v) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj < ii) jj = ii; - size_t ssize = jj - ii; - if (ssize <= v.size()) { - typename Sequence::iterator sb = self->begin(); - typename InputSeq::const_iterator vmid = v.begin(); - std::advance(sb,ii); - std::advance(vmid, jj - ii); - self->insert(std::copy(v.begin(), vmid, sb), vmid, v.end()); - } else { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - self->insert(sb, v.begin(), v.end()); - } - } - - template - inline void - delslice(Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj > ii) { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - } - } -} - - -#if defined(__SUNPRO_CC) && defined(_RWSTD_VER) -# if !defined(SWIG_NO_STD_NOITERATOR_TRAITS_STL) -# define SWIG_STD_NOITERATOR_TRAITS_STL -# endif -#endif - -#if !defined(SWIG_STD_NOITERATOR_TRAITS_STL) -#include -#else -namespace std { - template - struct iterator_traits { - typedef ptrdiff_t difference_type; - typedef typename Iterator::value_type value_type; - }; - - template - struct iterator_traits<__reverse_bi_iterator > { - typedef Distance difference_type; - typedef T value_type; - }; - - template - struct iterator_traits { - typedef T value_type; - typedef ptrdiff_t difference_type; - }; - - template - inline typename iterator_traits<_InputIterator>::difference_type - distance(_InputIterator __first, _InputIterator __last) - { - typename iterator_traits<_InputIterator>::difference_type __n = 0; - while (__first != __last) { - ++__first; ++__n; - } - return __n; - } -} -#endif - - -namespace swig { - template - class SwigPyIterator_T : public SwigPyIterator - { - public: - typedef OutIterator out_iterator; - typedef typename std::iterator_traits::value_type value_type; - typedef SwigPyIterator_T self_type; - - SwigPyIterator_T(out_iterator curr, PyObject *seq) - : SwigPyIterator(seq), current(curr) - { - } - - const out_iterator& get_current() const - { - return current; - } - - - bool equal (const SwigPyIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return (current == iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - ptrdiff_t distance(const SwigPyIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return std::distance(current, iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - protected: - out_iterator current; - }; - - template - struct from_oper - { - typedef const ValueType& argument_type; - typedef PyObject *result_type; - result_type operator()(argument_type v) const - { - return swig::from(v); - } - }; - - template::value_type, - typename FromOper = from_oper > - class SwigPyIteratorOpen_T : public SwigPyIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef SwigPyIterator_T base; - typedef SwigPyIteratorOpen_T self_type; - - SwigPyIteratorOpen_T(out_iterator curr, PyObject *seq) - : SwigPyIterator_T(curr, seq) - { - } - - PyObject *value() const { - return from(static_cast(*(base::current))); - } - - SwigPyIterator *copy() const - { - return new self_type(*this); - } - - SwigPyIterator *incr(size_t n = 1) - { - while (n--) { - ++base::current; - } - return this; - } - - SwigPyIterator *decr(size_t n = 1) - { - while (n--) { - --base::current; - } - return this; - } - }; - - template::value_type, - typename FromOper = from_oper > - class SwigPyIteratorClosed_T : public SwigPyIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef SwigPyIterator_T base; - typedef SwigPyIteratorClosed_T self_type; - - SwigPyIteratorClosed_T(out_iterator curr, out_iterator first, out_iterator last, PyObject *seq) - : SwigPyIterator_T(curr, seq), begin(first), end(last) - { - } - - PyObject *value() const { - if (base::current == end) { - throw stop_iteration(); - } else { - return from(static_cast(*(base::current))); - } - } - - SwigPyIterator *copy() const - { - return new self_type(*this); - } - - SwigPyIterator *incr(size_t n = 1) - { - while (n--) { - if (base::current == end) { - throw stop_iteration(); - } else { - ++base::current; - } - } - return this; - } - - SwigPyIterator *decr(size_t n = 1) - { - while (n--) { - if (base::current == begin) { - throw stop_iteration(); - } else { - --base::current; - } - } - return this; - } - - private: - out_iterator begin; - out_iterator end; - }; - - template - inline SwigPyIterator* - make_output_iterator(const OutIter& current, const OutIter& begin,const OutIter& end, PyObject *seq = 0) - { - return new SwigPyIteratorClosed_T(current, begin, end, seq); - } - - template - inline SwigPyIterator* - make_output_iterator(const OutIter& current, PyObject *seq = 0) - { - return new SwigPyIteratorOpen_T(current, seq); - } -} - - -namespace swig -{ - template - struct SwigPySequence_Ref - { - SwigPySequence_Ref(PyObject* seq, int index) - : _seq(seq), _index(index) - { - } - - operator T () const - { - swig::SwigVar_PyObject item = PySequence_GetItem(_seq, _index); - try { - return swig::as(item, true); - } catch (std::exception& e) { - char msg[1024]; - sprintf(msg, "in sequence element %d ", _index); - if (!PyErr_Occurred()) { - ::SWIG_Error(SWIG_TypeError, swig::type_name()); - } - SWIG_Python_AddErrorMsg(msg); - SWIG_Python_AddErrorMsg(e.what()); - throw; - } - } - - SwigPySequence_Ref& operator=(const T& v) - { - PySequence_SetItem(_seq, _index, swig::from(v)); - return *this; - } - - private: - PyObject* _seq; - int _index; - }; - - template - struct SwigPySequence_ArrowProxy - { - SwigPySequence_ArrowProxy(const T& x): m_value(x) {} - const T* operator->() const { return &m_value; } - operator const T*() const { return &m_value; } - T m_value; - }; - - template - struct SwigPySequence_InputIterator - { - typedef SwigPySequence_InputIterator self; - - typedef std::random_access_iterator_tag iterator_category; - typedef Reference reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - - SwigPySequence_InputIterator() - { - } - - SwigPySequence_InputIterator(PyObject* seq, int index) - : _seq(seq), _index(index) - { - } - - reference operator*() const - { - return reference(_seq, _index); - } - - SwigPySequence_ArrowProxy - operator->() const { - return SwigPySequence_ArrowProxy(operator*()); - } - - bool operator==(const self& ri) const - { - return (_index == ri._index) && (_seq == ri._seq); - } - - bool operator!=(const self& ri) const - { - return !(operator==(ri)); - } - - self& operator ++ () - { - ++_index; - return *this; - } - - self& operator -- () - { - --_index; - return *this; - } - - self& operator += (difference_type n) - { - _index += n; - return *this; - } - - self operator +(difference_type n) const - { - return self(_seq, _index + n); - } - - self& operator -= (difference_type n) - { - _index -= n; - return *this; - } - - self operator -(difference_type n) const - { - return self(_seq, _index - n); - } - - difference_type operator - (const self& ri) const - { - return _index - ri._index; - } - - bool operator < (const self& ri) const - { - return _index < ri._index; - } - - reference - operator[](difference_type n) const - { - return reference(_seq, _index + n); - } - - private: - PyObject* _seq; - difference_type _index; - }; - - template - struct SwigPySequence_Cont - { - typedef SwigPySequence_Ref reference; - typedef const SwigPySequence_Ref const_reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - typedef int size_type; - typedef const pointer const_pointer; - typedef SwigPySequence_InputIterator iterator; - typedef SwigPySequence_InputIterator const_iterator; - - SwigPySequence_Cont(PyObject* seq) : _seq(0) - { - if (!PySequence_Check(seq)) { - throw std::invalid_argument("a sequence is expected"); - } - _seq = seq; - Py_INCREF(_seq); - } - - ~SwigPySequence_Cont() - { - Py_XDECREF(_seq); - } - - size_type size() const - { - return static_cast(PySequence_Size(_seq)); - } - - bool empty() const - { - return size() == 0; - } - - iterator begin() - { - return iterator(_seq, 0); - } - - const_iterator begin() const - { - return const_iterator(_seq, 0); - } - - iterator end() - { - return iterator(_seq, size()); - } - - const_iterator end() const - { - return const_iterator(_seq, size()); - } - - reference operator[](difference_type n) - { - return reference(_seq, n); - } - - const_reference operator[](difference_type n) const - { - return const_reference(_seq, n); - } - - bool check(bool set_err = true) const - { - int s = size(); - for (int i = 0; i < s; ++i) { - swig::SwigVar_PyObject item = PySequence_GetItem(_seq, i); - if (!swig::check(item)) { - if (set_err) { - char msg[1024]; - sprintf(msg, "in sequence element %d", i); - SWIG_Error(SWIG_RuntimeError, msg); - } - return false; - } - } - return true; - } - - private: - PyObject* _seq; - }; - -} - - -SWIGINTERN int -SWIG_AsVal_float (PyObject * obj, float *val) -{ - double v; - int res = SWIG_AsVal_double (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < -FLT_MAX || v > FLT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = static_cast< float >(v); - } - } - return res; -} - - - #define SWIG_From_double PyFloat_FromDouble - - -SWIGINTERNINLINE PyObject * -SWIG_From_float (float value) -{ - return SWIG_From_double (value); -} - - -namespace swig { - template <> struct traits { - typedef value_category category; - static const char* type_name() { return"float"; } - }; - template <> struct traits_asval { - typedef float value_type; - static int asval(PyObject *obj, value_type *val) { - return SWIG_AsVal_float (obj, val); - } - }; - template <> struct traits_from { - typedef float value_type; - static PyObject *from(const value_type& val) { - return SWIG_From_float (val); - } - }; -} - - -namespace swig { - template - inline void - assign(const SwigPySeq& swigpyseq, Seq* seq) { - // seq->assign(swigpyseq.begin(), swigpyseq.end()); // not used as not always implemented - typedef typename SwigPySeq::value_type value_type; - typename SwigPySeq::const_iterator it = swigpyseq.begin(); - for (;it != swigpyseq.end(); ++it) { - seq->insert(seq->end(),(value_type)(*it)); - } - } - - template - struct traits_asptr_stdseq { - typedef Seq sequence; - typedef T value_type; - - static int asptr(PyObject *obj, sequence **seq) { - if (obj == Py_None || SWIG_Python_GetSwigThis(obj)) { - sequence *p; - if (::SWIG_ConvertPtr(obj,(void**)&p, - swig::type_info(),0) == SWIG_OK) { - if (seq) *seq = p; - return SWIG_OLDOBJ; - } - } else if (PySequence_Check(obj)) { - try { - SwigPySequence_Cont swigpyseq(obj); - if (seq) { - sequence *pseq = new sequence(); - assign(swigpyseq, pseq); - *seq = pseq; - return SWIG_NEWOBJ; - } else { - return swigpyseq.check() ? SWIG_OK : SWIG_ERROR; - } - } catch (std::exception& e) { - if (seq) { - if (!PyErr_Occurred()) { - PyErr_SetString(PyExc_TypeError, e.what()); - } - } - return SWIG_ERROR; - } - } - return SWIG_ERROR; - } - }; - - template - struct traits_from_stdseq { - typedef Seq sequence; - typedef T value_type; - typedef typename Seq::size_type size_type; - typedef typename sequence::const_iterator const_iterator; - - static PyObject *from(const sequence& seq) { -#ifdef SWIG_PYTHON_EXTRA_NATIVE_CONTAINERS - swig_type_info *desc = swig::type_info(); - if (desc && desc->clientdata) { - return SWIG_NewPointerObj(new sequence(seq), desc, SWIG_POINTER_OWN); - } -#endif - size_type size = seq.size(); - if (size <= (size_type)INT_MAX) { - PyObject *obj = PyTuple_New((int)size); - int i = 0; - for (const_iterator it = seq.begin(); - it != seq.end(); ++it, ++i) { - PyTuple_SetItem(obj,i,swig::from(*it)); - } - return obj; - } else { - PyErr_SetString(PyExc_OverflowError,"sequence size not valid in python"); - return NULL; - } - } - }; -} - - - namespace swig { - template - struct traits_asptr > { - static int asptr(PyObject *obj, std::vector **vec) { - return traits_asptr_stdseq >::asptr(obj, vec); - } - }; - - template - struct traits_from > { - static PyObject *from(const std::vector& vec) { - return traits_from_stdseq >::from(vec); - } - }; - } - - - namespace swig { - template <> struct traits > > { - typedef pointer_category category; - static const char* type_name() { - return "std::vector<" "float" "," "std::allocator< float >" " >"; - } - }; - } - -SWIGINTERN swig::SwigPyIterator *std_vector_Sl_float_Sg__iterator(std::vector< float > *self,PyObject **PYTHON_SELF){ - return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); - } -SWIGINTERN bool std_vector_Sl_float_Sg____nonzero__(std::vector< float > const *self){ - return !(self->empty()); - } -SWIGINTERN bool std_vector_Sl_float_Sg____bool__(std::vector< float > const *self){ - return !(self->empty()); - } -SWIGINTERN std::vector< float >::size_type std_vector_Sl_float_Sg____len__(std::vector< float > const *self){ - return self->size(); - } - -SWIGINTERNINLINE PyObject* -SWIG_From_unsigned_SS_long (unsigned long value) -{ - return (value > LONG_MAX) ? - PyLong_FromUnsignedLong(value) : PyInt_FromLong(static_cast< long >(value)); -} - - -SWIGINTERNINLINE PyObject * -SWIG_From_size_t (size_t value) -{ - return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value)); -} - -SWIGINTERN std::vector< float >::value_type std_vector_Sl_float_Sg__pop(std::vector< float > *self){ - if (self->size() == 0) - throw std::out_of_range("pop from empty container"); - std::vector >::value_type x = self->back(); - self->pop_back(); - return x; - } -SWIGINTERN std::vector< float,std::allocator< float > > *std_vector_Sl_float_Sg____getslice__(std::vector< float > *self,std::vector< float >::difference_type i,std::vector< float >::difference_type j){ - return swig::getslice(self, i, j); - } -SWIGINTERN void std_vector_Sl_float_Sg____setslice__(std::vector< float > *self,std::vector< float >::difference_type i,std::vector< float >::difference_type j,std::vector< float,std::allocator< float > > const &v){ - swig::setslice(self, i, j, v); - } -SWIGINTERN void std_vector_Sl_float_Sg____delslice__(std::vector< float > *self,std::vector< float >::difference_type i,std::vector< float >::difference_type j){ - swig::delslice(self, i, j); - } -SWIGINTERN void std_vector_Sl_float_Sg____delitem____SWIG_0(std::vector< float > *self,std::vector< float >::difference_type i){ - self->erase(swig::getpos(self,i)); - } -SWIGINTERN std::vector< float,std::allocator< float > > *std_vector_Sl_float_Sg____getitem____SWIG_0(std::vector< float > *self,PySliceObject *slice){ - Py_ssize_t i, j, step; - if( !PySlice_Check(slice) ) { - SWIG_Error(SWIG_TypeError, "Slice object expected."); - return NULL; - } - PySlice_GetIndices(slice, self->size(), &i, &j, &step); - return swig::getslice(self, i, j); - } -SWIGINTERN void std_vector_Sl_float_Sg____setitem____SWIG_0(std::vector< float > *self,PySliceObject *slice,std::vector< float,std::allocator< float > > const &v){ - Py_ssize_t i, j, step; - if( !PySlice_Check(slice) ) { - SWIG_Error(SWIG_TypeError, "Slice object expected."); - return; - } - PySlice_GetIndices(slice, self->size(), &i, &j, &step); - swig::setslice(self, i, j, v); - } -SWIGINTERN void std_vector_Sl_float_Sg____delitem____SWIG_1(std::vector< float > *self,PySliceObject *slice){ - Py_ssize_t i, j, step; - if( !PySlice_Check(slice) ) { - SWIG_Error(SWIG_TypeError, "Slice object expected."); - return; - } - PySlice_GetIndices(slice, self->size(), &i, &j, &step); - swig::delslice(self, i,j); - } -SWIGINTERN std::vector< float >::value_type const &std_vector_Sl_float_Sg____getitem____SWIG_1(std::vector< float > const *self,std::vector< float >::difference_type i){ - return *(swig::cgetpos(self, i)); - } -SWIGINTERN void std_vector_Sl_float_Sg____setitem____SWIG_1(std::vector< float > *self,std::vector< float >::difference_type i,std::vector< float >::value_type const &x){ - *(swig::getpos(self,i)) = x; - } -SWIGINTERN void std_vector_Sl_float_Sg__append(std::vector< float > *self,std::vector< float >::value_type const &x){ - self->push_back(x); - } - - namespace swig { - template <> struct traits { - typedef pointer_category category; - static const char* type_name() { return"CvPoint"; } - }; - } - - - namespace swig { - template <> struct traits > > { - typedef pointer_category category; - static const char* type_name() { - return "std::vector<" "CvPoint" "," "std::allocator< CvPoint >" " >"; - } - }; - } - -SWIGINTERN swig::SwigPyIterator *std_vector_Sl_CvPoint_Sg__iterator(std::vector< CvPoint > *self,PyObject **PYTHON_SELF){ - return swig::make_output_iterator(self->begin(), self->begin(), self->end(), *PYTHON_SELF); - } -SWIGINTERN bool std_vector_Sl_CvPoint_Sg____nonzero__(std::vector< CvPoint > const *self){ - return !(self->empty()); - } -SWIGINTERN bool std_vector_Sl_CvPoint_Sg____bool__(std::vector< CvPoint > const *self){ - return !(self->empty()); - } -SWIGINTERN std::vector< CvPoint >::size_type std_vector_Sl_CvPoint_Sg____len__(std::vector< CvPoint > const *self){ - return self->size(); - } -SWIGINTERN std::vector< CvPoint >::value_type std_vector_Sl_CvPoint_Sg__pop(std::vector< CvPoint > *self){ - if (self->size() == 0) - throw std::out_of_range("pop from empty container"); - std::vector >::value_type x = self->back(); - self->pop_back(); - return x; - } -SWIGINTERN std::vector< CvPoint,std::allocator< CvPoint > > *std_vector_Sl_CvPoint_Sg____getslice__(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i,std::vector< CvPoint >::difference_type j){ - return swig::getslice(self, i, j); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____setslice__(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i,std::vector< CvPoint >::difference_type j,std::vector< CvPoint,std::allocator< CvPoint > > const &v){ - swig::setslice(self, i, j, v); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____delslice__(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i,std::vector< CvPoint >::difference_type j){ - swig::delslice(self, i, j); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____delitem____SWIG_0(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i){ - self->erase(swig::getpos(self,i)); - } -SWIGINTERN std::vector< CvPoint,std::allocator< CvPoint > > *std_vector_Sl_CvPoint_Sg____getitem____SWIG_0(std::vector< CvPoint > *self,PySliceObject *slice){ - Py_ssize_t i, j, step; - if( !PySlice_Check(slice) ) { - SWIG_Error(SWIG_TypeError, "Slice object expected."); - return NULL; - } - PySlice_GetIndices(slice, self->size(), &i, &j, &step); - return swig::getslice(self, i, j); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____setitem____SWIG_0(std::vector< CvPoint > *self,PySliceObject *slice,std::vector< CvPoint,std::allocator< CvPoint > > const &v){ - Py_ssize_t i, j, step; - if( !PySlice_Check(slice) ) { - SWIG_Error(SWIG_TypeError, "Slice object expected."); - return; - } - PySlice_GetIndices(slice, self->size(), &i, &j, &step); - swig::setslice(self, i, j, v); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____delitem____SWIG_1(std::vector< CvPoint > *self,PySliceObject *slice){ - Py_ssize_t i, j, step; - if( !PySlice_Check(slice) ) { - SWIG_Error(SWIG_TypeError, "Slice object expected."); - return; - } - PySlice_GetIndices(slice, self->size(), &i, &j, &step); - swig::delslice(self, i,j); - } -SWIGINTERN std::vector< CvPoint >::value_type const &std_vector_Sl_CvPoint_Sg____getitem____SWIG_1(std::vector< CvPoint > const *self,std::vector< CvPoint >::difference_type i){ - return *(swig::cgetpos(self, i)); - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg____setitem____SWIG_1(std::vector< CvPoint > *self,std::vector< CvPoint >::difference_type i,std::vector< CvPoint >::value_type const &x){ - *(swig::getpos(self,i)) = x; - } -SWIGINTERN void std_vector_Sl_CvPoint_Sg__append(std::vector< CvPoint > *self,std::vector< CvPoint >::value_type const &x){ - self->push_back(x); - } - -#include -#if !defined(SWIG_NO_LLONG_MAX) -# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) -# define LLONG_MAX __LONG_LONG_MAX__ -# define LLONG_MIN (-LLONG_MAX - 1LL) -# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -# endif -#endif - - -SWIGINTERN int -SWIG_AsVal_int (PyObject * obj, int *val) -{ - long v; - int res = SWIG_AsVal_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = static_cast< int >(v); - } - } - return res; -} - - -#include "cxtypes.h" -#include "cxcore.h" -#include "cvtypes.h" -#include "cv.h" - - -SWIGINTERNINLINE PyObject * -SWIG_From_int (int value) -{ - return SWIG_From_long (value); -} - - -#include - - -CvMat * cvCreateImageMat( CvSize size, int depth, int channels ){ - static const signed char icvDepthToType[]= - { - -1, -1, CV_8U, CV_8S, CV_16U, CV_16S, -1, -1, - CV_32F, CV_32S, -1, -1, -1, -1, -1, -1, CV_64F, -1 - }; - - depth = icvDepthToType[((depth & 255) >> 2) + (depth < 0)]; - return cvCreateMat( size.height, size.width, CV_MAKE_TYPE(depth, channels)); -} -#define cvCloneImageMat( mat ) cvCloneMat( mat ) - -#ifdef WIN32 - -CvModuleInfo *CvModule::first=0; -CvModuleInfo *CvModule::last=0; -CvTypeInfo *CvType::first=0; -CvTypeInfo *CvType::last=0; - -#endif - - - -SWIGINTERN swig_type_info* -SWIG_pchar_descriptor(void) -{ - static int init = 0; - static swig_type_info* info = 0; - if (!init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; -} - - -SWIGINTERNINLINE PyObject * -SWIG_FromCharPtrAndSize(const char* carray, size_t size) -{ - if (carray) { - if (size > INT_MAX) { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - return pchar_descriptor ? - SWIG_NewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); - } else { -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromStringAndSize(carray, static_cast< int >(size)); -#else - return PyString_FromStringAndSize(carray, static_cast< int >(size)); -#endif - } - } else { - return SWIG_Py_Void(); - } -} - - -SWIGINTERNINLINE PyObject * -SWIG_FromCharPtr(const char *cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); -} - - -SWIGINTERN int -SWIG_AsVal_unsigned_SS_int (PyObject * obj, unsigned int *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v > UINT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = static_cast< unsigned int >(v); - } - } - return res; -} - - -SWIGINTERNINLINE PyObject * -SWIG_From_unsigned_SS_int (unsigned int value) -{ - return SWIG_From_unsigned_SS_long (value); -} - -SWIGINTERN void delete_IplImage(IplImage *self){ IplImage * dummy = self; cvReleaseImage (& dummy); } -SWIGINTERN IplImage *IplImage_operator_SA___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAnd(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_SA__Se___SWIG_0(IplImage *self,CvArr *src){ - cvAnd(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sa___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAdd(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sa__Se___SWIG_0(IplImage *self,CvArr *src){ - cvAdd(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sm___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvMul(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sm__Se___SWIG_0(IplImage *self,CvArr *src){ - cvMul(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Ss___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSub(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Ss__Se___SWIG_0(IplImage *self,CvArr *src){ - cvSub(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sd___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvDiv(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sd__Se___SWIG_0(IplImage *self,CvArr *src){ - cvDiv(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_So___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOr(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_So__Se___SWIG_0(IplImage *self,CvArr *src){ - cvOr(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sx___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXor(self, src, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sx__Se___SWIG_0(IplImage *self,CvArr *src){ - cvXor(self, src, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sa___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sa__Se___SWIG_1(IplImage *self,CvScalar val){ - cvAddS(self, val, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sx___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sx__Se___SWIG_1(IplImage *self,CvScalar val){ - cvXorS(self, val, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Ss___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Ss__Se___SWIG_1(IplImage *self,CvScalar val){ - cvSubS(self, val, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_So___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOrS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_So__Se___SWIG_1(IplImage *self,CvScalar val){ - cvOrS(self, val, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_SA___SWIG_1(IplImage *self,CvScalar val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAndS(self, val, res); - return res; - } -SWIGINTERN IplImage *IplImage_operator_SA__Se___SWIG_1(IplImage *self,CvScalar val){ - cvAndS(self, val, self); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sg__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 2); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 2); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Se__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 0); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Se__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 0); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 4); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 4); - return res; - } -SWIGINTERN IplImage *IplImage_operator_SN__Se___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 5); - return res; - } -SWIGINTERN IplImage *IplImage_operator_SN__Se___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 5); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 3); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sl___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 3); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg___SWIG_0(IplImage *self,CvArr *src){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmp(self, src, res, 1); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sg___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, val, res, 1); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sm___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, res, val); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sm__Se___SWIG_1(IplImage *self,double val){ - cvConvertScale(self, self, val); - return self; - } -SWIGINTERN IplImage *IplImage_operator_Sd___SWIG_1(IplImage *self,double val){ - IplImage * res = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, res, 1.0/val); - return res; - } -SWIGINTERN IplImage *IplImage_operator_Sd__Se___SWIG_1(IplImage *self,double val){ - cvConvertScale(self, self, 1.0/val); - return self; - } -SWIGINTERN IplImage *IplImage___radd____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAdd(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rsub____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSub(arg, self, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rdiv__(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvDiv(arg, self, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rmul____SWIG_0(IplImage *self,CvArr *arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvMul(arg, self, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___radd____SWIG_1(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___radd____SWIG_2(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAddS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rsub____SWIG_1(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubRS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rsub____SWIG_2(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvSubRS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rmul____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvConvertScale(self, retarg, arg); - return retarg; - } -SWIGINTERN IplImage *IplImage___ror____SWIG_0(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOrS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___ror____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvOrS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rand____SWIG_0(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAndS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rand____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvAndS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rxor____SWIG_0(IplImage *self,CvScalar arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, arg, retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___rxor____SWIG_1(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvXorS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN IplImage *IplImage___req__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 0); - return retarg; - } -SWIGINTERN IplImage *IplImage___rgt__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 1); - return retarg; - } -SWIGINTERN IplImage *IplImage___rge__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 2); - return retarg; - } -SWIGINTERN IplImage *IplImage___rlt__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 3); - return retarg; - } -SWIGINTERN IplImage *IplImage___rle__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 4); - return retarg; - } -SWIGINTERN IplImage *IplImage___rne__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), 8, 1); - cvCmpS(self, arg, retarg, 5); - return retarg; - } -SWIGINTERN IplImage *IplImage___pow__(IplImage *self,double arg){ - IplImage * retarg = cvCreateImage(cvGetSize(self), self->depth, self->nChannels); - cvPow(self, retarg, arg); - return retarg; - } -SWIGINTERN char *IplImage___str__(IplImage *self){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - } -SWIGINTERN void IplImage___setitem____SWIG_0(IplImage *self,PyObject *object,double val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } -SWIGINTERN void IplImage___setitem____SWIG_1(IplImage *self,PyObject *object,CvPoint val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void IplImage___setitem____SWIG_2(IplImage *self,PyObject *object,CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void IplImage___setitem____SWIG_3(IplImage *self,PyObject *object,CvScalar val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, val); - } -SWIGINTERN void IplImage___setitem____SWIG_4(IplImage *self,PyObject *object,CvArr *arr){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvConvert(arr, &tmp); - } -SWIGINTERN PyObject *IplImage___getitem__(IplImage *self,PyObject *object){ - CvMat mat; - IplImage * im; - CvRect subrect = PySlice_to_CvRect( self, object ); - - // return scalar if single element - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, SWIGTYPE_p_CvScalar, 1 ); - } - switch(((type) & ((1 << 3) - 1))){ - case 0: - return PyLong_FromUnsignedLong( CV_IMAGE_ELEM(self, uchar, subrect.y, subrect.x ) ); - case 1: - return PyLong_FromLong( CV_IMAGE_ELEM(self, char, subrect.y, subrect.x ) ); - case 2: - return PyLong_FromUnsignedLong( CV_IMAGE_ELEM(self, ushort, subrect.y, subrect.x ) ); - case 3: - return PyLong_FromLong( CV_IMAGE_ELEM(self, short, subrect.y, subrect.x ) ); - case 4: - return PyLong_FromLong( CV_IMAGE_ELEM(self, int, subrect.y, subrect.x ) ); - case 5: - return PyFloat_FromDouble( CV_IMAGE_ELEM(self, float, subrect.y, subrect.x) ); - case 6: - return PyFloat_FromDouble( CV_IMAGE_ELEM(self, double, subrect.y, subrect.x) ); - } - } - - // otherwise return array - im = (IplImage *) cvAlloc(sizeof(IplImage)); - cvGetSubRect(self, &mat, subrect); - im = cvGetImage(&mat, im); - return SWIG_NewPointerObj( im, SWIGTYPE_p__IplImage, 1 ); - } -SWIGINTERN void delete_IplConvKernel(IplConvKernel *self){ IplConvKernel * dummy = self; cvReleaseStructuringElement (& dummy); } - -typedef union { - uchar* ptr; - short* s; - int* i; - float* fl; - double* db; - } CvMat_data; - - -SWIGINTERN void delete_CvMat(CvMat *self){ CvMat * dummy = self; cvReleaseMat (& dummy); } -SWIGINTERN CvMat *CvMat_operator_SA___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAnd(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_SA__Se___SWIG_0(CvMat *self,CvArr *src){ - cvAnd(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sa___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAdd(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sa__Se___SWIG_0(CvMat *self,CvArr *src){ - cvAdd(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sm___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvMul(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sm__Se___SWIG_0(CvMat *self,CvArr *src){ - cvMul(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Ss___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvSub(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Ss__Se___SWIG_0(CvMat *self,CvArr *src){ - cvSub(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sd___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvDiv(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sd__Se___SWIG_0(CvMat *self,CvArr *src){ - cvDiv(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_So___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvOr(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_So__Se___SWIG_0(CvMat *self,CvArr *src){ - cvOr(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sx___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvXor(self, src, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sx__Se___SWIG_0(CvMat *self,CvArr *src){ - cvXor(self, src, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sa___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sa__Se___SWIG_1(CvMat *self,CvScalar val){ - cvAddS(self, val, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sx___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sx__Se___SWIG_1(CvMat *self,CvScalar val){ - cvXorS(self, val, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Ss___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvSubS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Ss__Se___SWIG_1(CvMat *self,CvScalar val){ - cvSubS(self, val, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_So___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvOrS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_So__Se___SWIG_1(CvMat *self,CvScalar val){ - cvOrS(self, val, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_SA___SWIG_1(CvMat *self,CvScalar val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvAndS(self, val, res); - return res; - } -SWIGINTERN CvMat *CvMat_operator_SA__Se___SWIG_1(CvMat *self,CvScalar val){ - cvAndS(self, val, self); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sg__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 2); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 2); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Se__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 0); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Se__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 0); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 4); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 4); - return res; - } -SWIGINTERN CvMat *CvMat_operator_SN__Se___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 5); - return res; - } -SWIGINTERN CvMat *CvMat_operator_SN__Se___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 5); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 3); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sl___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 3); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg___SWIG_0(CvMat *self,CvArr *src){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmp(self, src, res, 1); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sg___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, val, res, 1); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sm___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, res, val); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sm__Se___SWIG_1(CvMat *self,double val){ - cvConvertScale(self, self, val); - return self; - } -SWIGINTERN CvMat *CvMat_operator_Sd___SWIG_1(CvMat *self,double val){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, res, 1.0/val); - return res; - } -SWIGINTERN CvMat *CvMat_operator_Sd__Se___SWIG_1(CvMat *self,double val){ - cvConvertScale(self, self, 1.0/val); - return self; - } -SWIGINTERN CvMat *CvMat___radd____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAdd(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rsub____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvSub(arg, self, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rdiv____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvDiv(arg, self, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rmul____SWIG_0(CvMat *self,CvArr *arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvMul(arg, self, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___radd____SWIG_1(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___radd____SWIG_2(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAddS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rsub____SWIG_1(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvSubRS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rsub____SWIG_2(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvSubRS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rmul____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvConvertScale(self, retarg, arg); - return retarg; - } -SWIGINTERN CvMat *CvMat___ror____SWIG_0(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvOrS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___ror____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvOrS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rand____SWIG_0(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAndS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rand____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvAndS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rxor____SWIG_0(CvMat *self,CvScalar arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, arg, retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___rxor____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvXorS(self, cvScalar(arg), retarg); - return retarg; - } -SWIGINTERN CvMat *CvMat___req__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 0); - return retarg; - } -SWIGINTERN CvMat *CvMat___rgt__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 1); - return retarg; - } -SWIGINTERN CvMat *CvMat___rge__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 2); - return retarg; - } -SWIGINTERN CvMat *CvMat___rlt__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 3); - return retarg; - } -SWIGINTERN CvMat *CvMat___rle__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 4); - return retarg; - } -SWIGINTERN CvMat *CvMat___rne__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, 0); - cvCmpS(self, arg, retarg, 5); - return retarg; - } -SWIGINTERN CvMat *CvMat___rdiv____SWIG_1(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvDiv(NULL, self, retarg, arg); - return retarg; - } -SWIGINTERN CvMat *CvMat___pow__(CvMat *self,double arg){ - CvMat * retarg = cvCreateMat(self->rows, self->cols, self->type); - cvPow(self, retarg, arg); - return retarg; - } -SWIGINTERN char *CvMat___str__(CvMat *self){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - } -SWIGINTERN void CvMat___setitem____SWIG_0(CvMat *self,PyObject *object,double val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,231,CHECK_SLICE_BOUNDS@*/ - if(CheckSliceBounds(&subrect,self->cols,self->rows)==-1){ return ; } else{} -/*@SWIG@*/; - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } -SWIGINTERN void CvMat___setitem____SWIG_1(CvMat *self,PyObject *object,CvPoint val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,231,CHECK_SLICE_BOUNDS@*/ - if(CheckSliceBounds(&subrect,self->cols,self->rows)==-1){ return ; } else{} -/*@SWIG@*/; - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void CvMat___setitem____SWIG_2(CvMat *self,PyObject *object,CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - /*@SWIG:./cvarr.i,231,CHECK_SLICE_BOUNDS@*/ - if(CheckSliceBounds(&subrect,self->cols,self->rows)==-1){ return ; } else{} -/*@SWIG@*/; - cvSet(&tmp, cvScalar(val.x, val.y)); - } -SWIGINTERN void CvMat___setitem____SWIG_3(CvMat *self,PyObject *object,CvScalar val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - /*@SWIG:./cvarr.i,231,CHECK_SLICE_BOUNDS@*/ - if(CheckSliceBounds(&subrect,self->cols,self->rows)==-1){ return ; } else{} -/*@SWIG@*/; - cvSet(&tmp, val); - } -SWIGINTERN void CvMat___setitem____SWIG_4(CvMat *self,PyObject *object,CvArr *arr){ - CvMat tmp, src_stub, *src; - CvRect subrect = PySlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,231,CHECK_SLICE_BOUNDS@*/ - if(CheckSliceBounds(&subrect,self->cols,self->rows)==-1){ return ; } else{} -/*@SWIG@*/; - cvGetSubRect(self, &tmp, subrect); - - // Reshape source array to fit destination - // This will be used a lot for small arrays b/c - // PyObject_to_CvArr tries to compress a 2-D python - // array with 1-4 columns into a multichannel vector - src=cvReshape(arr, &src_stub, CV_MAT_CN(tmp.type), tmp.rows); - - cvConvert(src, &tmp); - } -SWIGINTERN PyObject *CvMat___getitem__(CvMat *self,PyObject *object){ - CvMat * mat; - CvRect subrect = PySlice_to_CvRect( self, object ); - /*@SWIG:./cvarr.i,231,CHECK_SLICE_BOUNDS@*/ - if(CheckSliceBounds(&subrect,self->cols,self->rows)==-1){ return NULL; } else{} -/*@SWIG@*/; - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, SWIGTYPE_p_CvScalar, 1 ); - } - switch(((type) & ((1 << 3) - 1))){ - case 0: - return PyLong_FromUnsignedLong( CV_MAT_ELEM(*self, uchar, subrect.y, subrect.x ) ); - case 1: - return PyLong_FromLong( CV_MAT_ELEM(*self, char, subrect.y, subrect.x ) ); - case 2: - return PyLong_FromUnsignedLong( CV_MAT_ELEM(*self, ushort, subrect.y, subrect.x ) ); - case 3: - return PyLong_FromLong( CV_MAT_ELEM(*self, short, subrect.y, subrect.x ) ); - case 4: - return PyLong_FromLong( CV_MAT_ELEM(*self, int, subrect.y, subrect.x ) ); - case 5: - return PyFloat_FromDouble( CV_MAT_ELEM(*self, float, subrect.y, subrect.x) ); - case 6: - return PyFloat_FromDouble( CV_MAT_ELEM(*self, double, subrect.y, subrect.x) ); - } - } - mat = (CvMat *) cvAlloc(sizeof(CvMat)); - cvGetSubRect(self, mat, subrect); - - // cvGetSubRect doesn't do this since it assumes mat lives on the stack - mat->hdr_refcount = self->hdr_refcount; - mat->refcount = self->refcount; - cvIncRefData(mat); - - return SWIG_NewPointerObj( mat, SWIGTYPE_p_CvMat, 1 ); - } -SWIGINTERN CvMat *CvMat___invert__(CvMat *self){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvNot( self, res ); - return res; - } - -typedef struct { - int size; - int step; - } CvMatND_dim; - - - -typedef union { - uchar* ptr; - float* fl; - double* db; - int* i; - short* s; - } CvMatND_data; - - -SWIGINTERN void delete_CvMatND(CvMatND *self){ CvMatND * dummy = self; cvReleaseMatND (& dummy); } -SWIGINTERN void delete_CvSparseMat(CvSparseMat *self){ CvSparseMat * dummy = self; cvReleaseSparseMat (& dummy); } -SWIGINTERN void delete_CvHistogram(CvHistogram *self){ CvHistogram * dummy = self; cvReleaseHist (& dummy); } -SWIGINTERN char const *CvPoint___str__(CvPoint *self){ - static char str[64]; - snprintf(str, 64, "[%d %d]", self->x, self->y); - return str; - } -SWIGINTERN char const *CvPoint___repr__(CvPoint *self){ - static char str[64]; - snprintf(str, 64, "cvPoint(%d,%d)", self->x, self->y); - return str; - } -SWIGINTERN char const *CvPoint2D32f___str__(CvPoint2D32f *self){ - static char str[64]; - snprintf(str, 64, "[%f %f]", self->x, self->y); - return str; - } -SWIGINTERN char const *CvPoint2D32f___repr__(CvPoint2D32f *self){ - static char str[64]; - snprintf(str, 64, "cvPoint2D32f(%f,%f)", self->x, self->y); - return str; - } -SWIGINTERN char const *CvScalar___str__(CvScalar *self){ - static char str[256]; - snprintf(str, 256, "[%f, %f, %f, %f]", self->val[0], self->val[1], self->val[2], self->val[3]); - return str; - } -SWIGINTERN char const *CvScalar___repr__(CvScalar *self){ - static char str[256]; - snprintf(str, 256, "cvScalar(%f, %f, %f, %f)", self->val[0], self->val[1], self->val[2], self->val[3]); - return str; - } -SWIGINTERN double const CvScalar___getitem__(CvScalar *self,int index){ - if (index >= 4) { - - - - - - return 0; - } - if (index < -4) { - - - - - - return 0; - } - if (index < 0) { - /* negative index means from the end in python */ - index = 4 - index; - } - return self->val [index]; - } -SWIGINTERN void CvScalar___setitem__(CvScalar *self,int index,double value){ - if (index >= 4) { - - - - - - return; - } - if (index < -4) { - - - - - - return; - } - if (index < 0) { - /* negative index means from the end in python */ - index = 4 - index; - } - self->val [index] = value; - } -SWIGINTERN void delete_CvMemStorage(CvMemStorage *self){ CvMemStorage * dummy = self; cvReleaseMemStorage (& dummy); } - -SWIGINTERN int -SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) -{ -#if PY_VERSION_HEX>=0x03000000 - if (PyUnicode_Check(obj)) -#else - if (PyString_Check(obj)) -#endif - { - char *cstr; Py_ssize_t len; -#if PY_VERSION_HEX>=0x03000000 - if (!alloc && cptr) { - /* We can't allow converting without allocation, since the internal - representation of string in Python 3 is UCS-2/UCS-4 but we require - a UTF-8 representation. - TODO(bhy) More detailed explanation */ - return SWIG_RuntimeError; - } - obj = PyUnicode_AsUTF8String(obj); - PyBytes_AsStringAndSize(obj, &cstr, &len); - if(alloc) *alloc = SWIG_NEWOBJ; -#else - PyString_AsStringAndSize(obj, &cstr, &len); -#endif - if (cptr) { - if (alloc) { - /* - In python the user should not be able to modify the inner - string representation. To warranty that, if you define - SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string - buffer is always returned. - - The default behavior is just to return the pointer value, - so, be careful. - */ -#if defined(SWIG_PYTHON_SAFE_CSTRINGS) - if (*alloc != SWIG_OLDOBJ) -#else - if (*alloc == SWIG_NEWOBJ) -#endif - { - *cptr = reinterpret_cast< char* >(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); - *alloc = SWIG_NEWOBJ; - } - else { - *cptr = cstr; - *alloc = SWIG_OLDOBJ; - } - } else { - #if PY_VERSION_HEX>=0x03000000 - assert(0); /* Should never reach here in Python 3 */ - #endif - *cptr = SWIG_Python_str_AsChar(obj); - } - } - if (psize) *psize = len + 1; -#if PY_VERSION_HEX>=0x03000000 - Py_XDECREF(obj); -#endif - return SWIG_OK; - } else { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - if (pchar_descriptor) { - void* vptr = 0; - if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { - if (cptr) *cptr = (char *) vptr; - if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; - if (alloc) *alloc = SWIG_OLDOBJ; - return SWIG_OK; - } - } - } - return SWIG_TypeError; -} - - - - - -typedef union { - double f; - int i; - CvString str; - CvSeq* seq; - CvFileNodeHash* map; - } CvFileNode_data; - - -SWIGINTERN void delete_CvGraphScanner(CvGraphScanner *self){ CvGraphScanner * dummy = self; cvReleaseGraphScanner (& dummy); } - -SWIGINTERN int -SWIG_AsVal_bool (PyObject *obj, bool *val) -{ - int r = PyObject_IsTrue(obj); - if (r == -1) - return SWIG_ERROR; - if (val) *val = r ? true : false; - return SWIG_OK; -} - - -SWIGINTERN int -SWIG_AsCharArray(PyObject * obj, char *val, size_t size) -{ - char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize; - if (csize <= size) { - if (val) { - if (csize) memcpy(val, cptr, csize*sizeof(char)); - if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) delete[] cptr; - } - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_char (PyObject * obj, char *val) -{ - int res = SWIG_AsCharArray(obj, val, 1); - if (!SWIG_IsOK(res)) { - long v; - res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); - if (SWIG_IsOK(res)) { - if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { - if (val) *val = static_cast< char >(v); - } else { - res = SWIG_OverflowError; - } - } - } - return res; -} - - -SWIGINTERNINLINE PyObject * -SWIG_From_char (char c) -{ - return SWIG_FromCharPtrAndSize(&c,1); -} - -SWIGINTERN CvTypedSeq< CvQuadEdge2D > *CvSubdiv2D_typed_edges_get(CvSubdiv2D *self){ - return (CvTypedSeq *) self->edges; - } -SWIGINTERN void CvSubdiv2D_typed_edges_set(CvSubdiv2D *self,CvTypedSeq< CvQuadEdge2D > *){ - } -SWIGINTERN void delete_CvConDensation(CvConDensation *self){ CvConDensation * dummy = self; cvReleaseConDensation (& dummy); } -SWIGINTERN void delete_CvKalman(CvKalman *self){ CvKalman * dummy = self; cvReleaseKalman (& dummy); } - -typedef struct { - CvRect r; - float weight; - } CvHaarFeature_rect; - - -SWIGINTERN void delete_CvHaarClassifierCascade(CvHaarClassifierCascade *self){ CvHaarClassifierCascade * dummy = self; cvReleaseHaarClassifierCascade (& dummy); } -SWIGINTERN void delete_CvLSH(CvLSH *self){ CvLSH * dummy = self; cvReleaseLSH (& dummy); } - -int CvMat_cols_get(CvMat * m){ - return m->cols; -} -void CvMat_cols_set(CvMat * m, int cols){ - m->cols = cols; -} -int CvMat_rows_get(CvMat *m){ - return m->rows; -} -void CvMat_rows_set(CvMat *m, int rows){ - m->rows = rows; -} -int CvMat_width_get(CvMat * m){ - return m->cols; -} -void CvMat_width_set(CvMat * m, int width){ - m->cols = width; -} -int CvMat_height_get(CvMat *m){ - return m->rows; -} -void CvMat_height_set(CvMat * m, int height){ - m->rows = height; -} -int CvMat_depth_get(CvMat * m){ - return cvIplDepth(m->type); -} -void CvMat_depth_set(CvMat *m, int depth){ - cvError(CV_StsNotImplemented, "CvMat_depth_set", "Not Implemented", __FILE__, __LINE__); -} -int CvMat_nChannels_get(CvMat * m){ - return CV_MAT_CN(m->type); -} -void CvMat_nChannels_set(CvMat *m, int nChannels){ - int depth = CV_MAT_DEPTH(m->type); - m->type = CV_MAKETYPE(depth, nChannels); -} -int CvMat_origin_get(CvMat * m){ - /* Always 0 - top-left origin */ - return 0; -} -void CvMat_origin_set(CvMat * m, int origin){ - cvError(CV_StsNotImplemented, "CvMat_origin_get", "IplImage is replaced by CvMat in Python, so its fields are read-only", __FILE__, __LINE__); -} -int CvMat_dataOrder_get(CvMat * m){ - cvError(CV_StsNotImplemented, "CvMat_dataOrder_get", "Not Implemented", __FILE__, __LINE__); - return 0; -} -void CvMat_dataOrder_set(CvMat * m, int dataOrder){ - cvError(CV_StsNotImplemented, "CvMat_dataOrder_get", "IplImage is replaced by CvMat in Python, so its fields are read-only", __FILE__, __LINE__); -} -int CvMat_imageSize_get(CvMat * m){ - int step = m->step ? m->step : CV_ELEM_SIZE(m->type) * m->cols; - return step*m->rows; -} -void CvMat_imageSize_set(CvMat * m, int imageSize){ - cvError(CV_StsNotImplemented, "CvMat_imageSize_set", "IplImage is not implemented in Python, so origin is read-only", __FILE__, __LINE__); -} -int CvMat_widthStep_get(CvMat * m){ - return m->step; -} -void CvMat_widthStep_set(CvMat *m, int widthStep){ - m->step = widthStep; -} - - -int checkSliceBounds(const CvRect & rect, int w, int h){ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - if(rect.width<=0 || rect.height<=0 || - rect.width>w || rect.height>h || - rect.x<0 || rect.y<0 || - rect.x>= w || rect.y >=h){ - char errstr[256]; - - // previous function already set error string - if(rect.width==0 && rect.height==0 && rect.x==0 && rect.y==0) return -1; - - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - PyErr_SetString(PyExc_IndexError, errstr); - //PyErr_SetString(PyExc_ValueError, errstr); - return -1; - } - return 0; -} - - - -/// Accessor to convert a Python string into the imageData. -void CvMat_imageData_set(CvMat * self, PyObject* object) -{ - char* py_string = PyString_AsString(object); - int depth = CV_MAT_DEPTH(self->type); - int cn = CV_MAT_CN(self->type); - - int step = self->step ? self->step : CV_ELEM_SIZE(self->type) * self->cols; - - if (depth == CV_8U && cn==3){ - // RGB case - // The data is reordered beause OpenCV uses BGR instead of RGB - - for (long line = 0; line < self->rows; ++line) - for (long pixel = 0; pixel < self->cols; ++pixel) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - long position = line*step + pixel*3; - long sourcepos = line*self->cols*3 + pixel*3; - self->data.ptr[position ] = py_string[sourcepos+2]; - self->data.ptr[position+1] = py_string[sourcepos+1]; - self->data.ptr[position+2] = py_string[sourcepos ]; - } - } - else if (depth == CV_8U && cn==1) - { - // Grayscale 8bit case - - for (long line = 0; line < self->rows; ++line) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - memcpy - ( - self->data.ptr + line*step, - py_string + line*self->cols, - step - ); - } - } - else if ( depth == CV_32F ) - { - // float (32bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*step, - py_string + line*self->cols*sizeof(float), - step - ); - } - } - else if ( depth == CV_64F ) - { - // double (64bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*step, - py_string + line*self->cols*sizeof(double), - step - ); - } - } - else - { - // make some noise - SendErrorToPython (SWIG_TypeError, - "CvMat_imageData_set", - "cannot convert string data to this image format", - __FILE__, __LINE__, NULL); - } -} - -/// Accessor to convert the imageData into a Python string. -PyObject* CvMat_imageData_get(CvMat * self) -{ - if (!self->data.ptr) - { - PyErr_SetString(PyExc_TypeError, "Data pointer of CvMat is NULL"); - return NULL; - } - - - int step = self->step ? self->step : CV_ELEM_SIZE(self->type) * self->cols; - return PyString_FromStringAndSize((const char *)self->data.ptr, self->rows*step); -} - - -#ifdef __cplusplus -extern "C" { -#endif -SWIGINTERN PyObject *_wrap_new_CvRNG_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG *arg1 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG_Wrapper *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvRNG_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_uint64_t, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - arg1 = reinterpret_cast< CvRNG * >(argp1); - result = (CvRNG_Wrapper *)new CvRNG_Wrapper((CvRNG const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper_ptr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRNG_Wrapper_ptr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ptr" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - result = (CvRNG *)(arg1)->ptr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper_ref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRNG_Wrapper_ref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ref" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - result = (CvRNG *) &(arg1)->ref(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRNG_Wrapper___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___eq__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvRNG_Wrapper * >(argp2); - result = (bool)(arg1)->operator ==((CvRNG_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRNG_Wrapper___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___ne__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvRNG_Wrapper * >(argp2); - result = (bool)(arg1)->operator !=((CvRNG_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvRNG_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvRNG_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvRNG_Wrapper_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvRNG_Wrapper, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSubdiv2DEdge_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge *arg1 = 0 ; - CvSubdiv2DEdge temp1 ; - size_t val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge_Wrapper *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvSubdiv2DEdge_Wrapper",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge""'"); - } - temp1 = static_cast< CvSubdiv2DEdge >(val1); - arg1 = &temp1; - result = (CvSubdiv2DEdge_Wrapper *)new CvSubdiv2DEdge_Wrapper((CvSubdiv2DEdge const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper_ptr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DEdge_Wrapper_ptr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ptr" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - result = (CvSubdiv2DEdge *)(arg1)->ptr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper_ref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DEdge_Wrapper_ref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ref" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - result = (CvSubdiv2DEdge *) &(arg1)->ref(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DEdge_Wrapper___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp2); - result = (bool)(arg1)->operator ==((CvSubdiv2DEdge_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DEdge_Wrapper___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp2); - result = (bool)(arg1)->operator !=((CvSubdiv2DEdge_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSubdiv2DEdge_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSubdiv2DEdge_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSubdiv2DEdge_Wrapper_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_delete_SwigPyIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_SwigPyIterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_SwigPyIterator" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - delete arg1; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_value(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator_value",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_value" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - try { - result = (PyObject *)((swig::SwigPyIterator const *)arg1)->value(); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_incr__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - size_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator_incr",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_incr" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator_incr" "', argument " "2"" of type '" "size_t""'"); - } - arg2 = static_cast< size_t >(val2); - try { - result = (swig::SwigPyIterator *)(arg1)->incr(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_incr__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator_incr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_incr" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - try { - result = (swig::SwigPyIterator *)(arg1)->incr(); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_incr(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_SwigPyIterator_incr__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_SwigPyIterator_incr__SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'SwigPyIterator_incr'.\n" - " Possible C/C++ prototypes are:\n" - " incr(swig::SwigPyIterator *,size_t)\n" - " incr(swig::SwigPyIterator *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_decr__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - size_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator_decr",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_decr" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator_decr" "', argument " "2"" of type '" "size_t""'"); - } - arg2 = static_cast< size_t >(val2); - try { - result = (swig::SwigPyIterator *)(arg1)->decr(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_decr__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator_decr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_decr" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - try { - result = (swig::SwigPyIterator *)(arg1)->decr(); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_decr(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_SwigPyIterator_decr__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_SwigPyIterator_decr__SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'SwigPyIterator_decr'.\n" - " Possible C/C++ prototypes are:\n" - " decr(swig::SwigPyIterator *,size_t)\n" - " decr(swig::SwigPyIterator *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_distance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - swig::SwigPyIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - ptrdiff_t result; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator_distance",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_distance" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__SwigPyIterator, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SwigPyIterator_distance" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "SwigPyIterator_distance" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - arg2 = reinterpret_cast< swig::SwigPyIterator * >(argp2); - try { - result = ((swig::SwigPyIterator const *)arg1)->distance((swig::SwigPyIterator const &)*arg2); - } - catch(std::invalid_argument &_e) { - SWIG_Python_Raise(SWIG_NewPointerObj((new std::invalid_argument(static_cast< const std::invalid_argument& >(_e))),SWIGTYPE_p_std__invalid_argument,SWIG_POINTER_OWN), "std::invalid_argument", SWIGTYPE_p_std__invalid_argument); SWIG_fail; - } - - resultobj = SWIG_From_ptrdiff_t(static_cast< ptrdiff_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_equal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - swig::SwigPyIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator_equal",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_equal" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__SwigPyIterator, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SwigPyIterator_equal" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "SwigPyIterator_equal" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - arg2 = reinterpret_cast< swig::SwigPyIterator * >(argp2); - try { - result = (bool)((swig::SwigPyIterator const *)arg1)->equal((swig::SwigPyIterator const &)*arg2); - } - catch(std::invalid_argument &_e) { - SWIG_Python_Raise(SWIG_NewPointerObj((new std::invalid_argument(static_cast< const std::invalid_argument& >(_e))),SWIGTYPE_p_std__invalid_argument,SWIG_POINTER_OWN), "std::invalid_argument", SWIGTYPE_p_std__invalid_argument); SWIG_fail; - } - - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_copy(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator_copy",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_copy" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - result = (swig::SwigPyIterator *)((swig::SwigPyIterator const *)arg1)->copy(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator_next",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_next" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - try { - result = (PyObject *)(arg1)->next(); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator___next__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___next__" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - try { - result = (PyObject *)(arg1)->__next__(); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_previous(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:SwigPyIterator_previous",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_previous" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - try { - result = (PyObject *)(arg1)->previous(); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator_advance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator_advance",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator_advance" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator_advance" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = static_cast< ptrdiff_t >(val2); - try { - result = (swig::SwigPyIterator *)(arg1)->advance(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - swig::SwigPyIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___eq__" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__SwigPyIterator, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SwigPyIterator___eq__" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "SwigPyIterator___eq__" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - arg2 = reinterpret_cast< swig::SwigPyIterator * >(argp2); - result = (bool)((swig::SwigPyIterator const *)arg1)->operator ==((swig::SwigPyIterator const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - swig::SwigPyIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___ne__" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__SwigPyIterator, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SwigPyIterator___ne__" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "SwigPyIterator___ne__" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - arg2 = reinterpret_cast< swig::SwigPyIterator * >(argp2); - result = (bool)((swig::SwigPyIterator const *)arg1)->operator !=((swig::SwigPyIterator const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___iadd__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___iadd__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___iadd__" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator___iadd__" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = static_cast< ptrdiff_t >(val2); - try { - result = (swig::SwigPyIterator *) &(arg1)->operator +=(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___isub__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___isub__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___isub__" "', argument " "1"" of type '" "swig::SwigPyIterator *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator___isub__" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = static_cast< ptrdiff_t >(val2); - try { - result = (swig::SwigPyIterator *) &(arg1)->operator -=(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___add__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___add__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___add__" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator___add__" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = static_cast< ptrdiff_t >(val2); - try { - result = (swig::SwigPyIterator *)((swig::SwigPyIterator const *)arg1)->operator +(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___sub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - ptrdiff_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - swig::SwigPyIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___sub__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___sub__" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "SwigPyIterator___sub__" "', argument " "2"" of type '" "ptrdiff_t""'"); - } - arg2 = static_cast< ptrdiff_t >(val2); - try { - result = (swig::SwigPyIterator *)((swig::SwigPyIterator const *)arg1)->operator -(arg2); - } - catch(swig::stop_iteration &_e) { - { - (void)_e; - SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void()); - SWIG_fail; - } - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___sub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - swig::SwigPyIterator *arg1 = (swig::SwigPyIterator *) 0 ; - swig::SwigPyIterator *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - ptrdiff_t result; - - if (!PyArg_ParseTuple(args,(char *)"OO:SwigPyIterator___sub__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_swig__SwigPyIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SwigPyIterator___sub__" "', argument " "1"" of type '" "swig::SwigPyIterator const *""'"); - } - arg1 = reinterpret_cast< swig::SwigPyIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_swig__SwigPyIterator, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SwigPyIterator___sub__" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "SwigPyIterator___sub__" "', argument " "2"" of type '" "swig::SwigPyIterator const &""'"); - } - arg2 = reinterpret_cast< swig::SwigPyIterator * >(argp2); - result = ((swig::SwigPyIterator const *)arg1)->operator -((swig::SwigPyIterator const &)*arg2); - resultobj = SWIG_From_ptrdiff_t(static_cast< ptrdiff_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_SwigPyIterator___sub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_SwigPyIterator___sub____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_swig__SwigPyIterator, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_SwigPyIterator___sub____SWIG_0(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *SwigPyIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_swig__SwigPyIterator, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_FloatVector_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - PyObject **arg2 = (PyObject **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - swig::SwigPyIterator *result = 0 ; - - arg2 = &obj0; - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_iterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_iterator" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = (swig::SwigPyIterator *)std_vector_Sl_float_Sg__iterator(arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector___nonzero__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___nonzero__" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = (bool)std_vector_Sl_float_Sg____nonzero__((std::vector< float > const *)arg1); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___bool__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector___bool__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___bool__" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = (bool)std_vector_Sl_float_Sg____bool__((std::vector< float > const *)arg1); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::size_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector___len__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___len__" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = std_vector_Sl_float_Sg____len__((std::vector< float > const *)arg1); - resultobj = SWIG_From_size_t(static_cast< size_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::value_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_pop" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - try { - result = (std::vector< float >::value_type)std_vector_Sl_float_Sg__pop(arg1); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - std::vector< float >::difference_type arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - ptrdiff_t val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - std::vector< float,std::allocator< float > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___getslice__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___getslice__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = static_cast< std::vector< float >::difference_type >(val2); - ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector___getslice__" "', argument " "3"" of type '" "std::vector< float >::difference_type""'"); - } - arg3 = static_cast< std::vector< float >::difference_type >(val3); - try { - result = (std::vector< float,std::allocator< float > > *)std_vector_Sl_float_Sg____getslice__(arg1,arg2,arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - std::vector< float >::difference_type arg3 ; - std::vector< float,std::allocator< float > > *arg4 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - ptrdiff_t val3 ; - int ecode3 = 0 ; - int res4 = SWIG_OLDOBJ ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:FloatVector___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___setslice__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___setslice__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = static_cast< std::vector< float >::difference_type >(val2); - ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector___setslice__" "', argument " "3"" of type '" "std::vector< float >::difference_type""'"); - } - arg3 = static_cast< std::vector< float >::difference_type >(val3); - { - std::vector > *ptr = (std::vector > *)0; - res4 = swig::asptr(obj3, &ptr); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "FloatVector___setslice__" "', argument " "4"" of type '" "std::vector< float,std::allocator< float > > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FloatVector___setslice__" "', argument " "4"" of type '" "std::vector< float,std::allocator< float > > const &""'"); - } - arg4 = ptr; - } - try { - std_vector_Sl_float_Sg____setslice__(arg1,arg2,arg3,(std::vector< float,std::allocator< float > > const &)*arg4); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - catch(std::invalid_argument &_e) { - SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - if (SWIG_IsNewObj(res4)) delete arg4; - return resultobj; -fail: - if (SWIG_IsNewObj(res4)) delete arg4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - std::vector< float >::difference_type arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - ptrdiff_t val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___delslice__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___delslice__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = static_cast< std::vector< float >::difference_type >(val2); - ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector___delslice__" "', argument " "3"" of type '" "std::vector< float >::difference_type""'"); - } - arg3 = static_cast< std::vector< float >::difference_type >(val3); - try { - std_vector_Sl_float_Sg____delslice__(arg1,arg2,arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___delitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector___delitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___delitem__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___delitem__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = static_cast< std::vector< float >::difference_type >(val2); - try { - std_vector_Sl_float_Sg____delitem____SWIG_0(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___getitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - PySliceObject *arg2 = (PySliceObject *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< float,std::allocator< float > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___getitem__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - { - arg2 = (PySliceObject *) obj1; - } - try { - result = (std::vector< float,std::allocator< float > > *)std_vector_Sl_float_Sg____getitem____SWIG_0(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___setitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - PySliceObject *arg2 = (PySliceObject *) 0 ; - std::vector< float,std::allocator< float > > *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res3 = SWIG_OLDOBJ ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___setitem__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - { - arg2 = (PySliceObject *) obj1; - } - { - std::vector > *ptr = (std::vector > *)0; - res3 = swig::asptr(obj2, &ptr); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "FloatVector___setitem__" "', argument " "3"" of type '" "std::vector< float,std::allocator< float > > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FloatVector___setitem__" "', argument " "3"" of type '" "std::vector< float,std::allocator< float > > const &""'"); - } - arg3 = ptr; - } - try { - std_vector_Sl_float_Sg____setitem____SWIG_0(arg1,arg2,(std::vector< float,std::allocator< float > > const &)*arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - catch(std::invalid_argument &_e) { - SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - if (SWIG_IsNewObj(res3)) delete arg3; - return resultobj; -fail: - if (SWIG_IsNewObj(res3)) delete arg3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___delitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - PySliceObject *arg2 = (PySliceObject *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector___delitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___delitem__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - { - arg2 = (PySliceObject *) obj1; - } - try { - std_vector_Sl_float_Sg____delitem____SWIG_1(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___delitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = PySlice_Check(argv[1]); - } - if (_v) { - return _wrap_FloatVector___delitem____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector___delitem____SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'FloatVector___delitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __delitem__(std::vector< float > *,std::vector< float >::difference_type)\n" - " __delitem__(std::vector< float > *,PySliceObject *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___getitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< float >::value_type *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___getitem__" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___getitem__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = static_cast< std::vector< float >::difference_type >(val2); - try { - result = (std::vector< float >::value_type *) &std_vector_Sl_float_Sg____getitem____SWIG_1((std::vector< float > const *)arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_From_float(static_cast< float >(*result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___getitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = PySlice_Check(argv[1]); - } - if (_v) { - return _wrap_FloatVector___getitem____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector___getitem____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'FloatVector___getitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __getitem__(std::vector< float > *,PySliceObject *)\n" - " __getitem__(std::vector< float > const *,std::vector< float >::difference_type)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___setitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::difference_type arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector___setitem__" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector___setitem__" "', argument " "2"" of type '" "std::vector< float >::difference_type""'"); - } - arg2 = static_cast< std::vector< float >::difference_type >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector___setitem__" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = static_cast< std::vector< float >::value_type >(val3); - arg3 = &temp3; - try { - std_vector_Sl_float_Sg____setitem____SWIG_1(arg1,arg2,(float const &)*arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector___setitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = PySlice_Check(argv[1]); - } - if (_v) { - int res = swig::asptr(argv[2], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_FloatVector___setitem____SWIG_0(self, args); - } - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector___setitem____SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'FloatVector___setitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __setitem__(std::vector< float > *,PySliceObject *,std::vector< float,std::allocator< float > > const &)\n" - " __setitem__(std::vector< float > *,std::vector< float >::difference_type,std::vector< float >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::value_type *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - std::vector< float >::value_type temp2 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_append" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_append" "', argument " "2"" of type '" "std::vector< float >::value_type""'"); - } - temp2 = static_cast< std::vector< float >::value_type >(val2); - arg2 = &temp2; - std_vector_Sl_float_Sg__append(arg1,(float const &)*arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_FloatVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_FloatVector")) SWIG_fail; - result = (std::vector< float > *)new std::vector< float >(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_FloatVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = 0 ; - int res1 = SWIG_OLDOBJ ; - PyObject * obj0 = 0 ; - std::vector< float > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_FloatVector",&obj0)) SWIG_fail; - { - std::vector > *ptr = (std::vector > *)0; - res1 = swig::asptr(obj0, &ptr); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float > const &""'"); - } - arg1 = ptr; - } - result = (std::vector< float > *)new std::vector< float >((std::vector< float > const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_NEW | 0 ); - if (SWIG_IsNewObj(res1)) delete arg1; - return resultobj; -fail: - if (SWIG_IsNewObj(res1)) delete arg1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_empty",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_empty" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = (bool)((std::vector< float > const *)arg1)->empty(); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::size_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_size" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->size(); - resultobj = SWIG_From_size_t(static_cast< size_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_clear" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - (arg1)->clear(); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float > *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector_swap",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_swap" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FloatVector_swap" "', argument " "2"" of type '" "std::vector< float > &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "FloatVector_swap" "', argument " "2"" of type '" "std::vector< float > &""'"); - } - arg2 = reinterpret_cast< std::vector< float > * >(argp2); - (arg1)->swap(*arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - SwigValueWrapper< std::allocator< float > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_get_allocator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_get_allocator" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->get_allocator(); - resultobj = SWIG_NewPointerObj((new std::vector< float >::allocator_type(static_cast< const std::vector< float >::allocator_type& >(result))), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_begin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::const_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_begin",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_begin" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->begin(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::const_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_end(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::const_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_end",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_end" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->end(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::const_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_rbegin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::const_reverse_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_rbegin",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_rbegin" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->rbegin(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::const_reverse_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_rend(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::const_reverse_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_rend",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_rend" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->rend(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::const_reverse_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_FloatVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float >::size_type arg1 ; - size_t val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_FloatVector",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float >::size_type""'"); - } - arg1 = static_cast< std::vector< float >::size_type >(val1); - result = (std::vector< float > *)new std::vector< float >(arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_pop_back",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_pop_back" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - (arg1)->pop_back(); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector_resize",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_resize" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_resize" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = static_cast< std::vector< float >::size_type >(val2); - (arg1)->resize(arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< float >::iterator result; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector_erase",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_erase" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - result = (arg1)->erase(arg2); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - std::vector< float >::iterator arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - swig::SwigPyIterator *iter3 = 0 ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - std::vector< float >::iterator result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector_erase",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_erase" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res3) || !iter3) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "3"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter3); - if (iter_t) { - arg3 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_erase" "', argument " "3"" of type '" "std::vector< float >::iterator""'"); - } - } - result = (arg1)->erase(arg2,arg3); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_erase(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_FloatVector_erase__SWIG_0(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_FloatVector_erase__SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'FloatVector_erase'.\n" - " Possible C/C++ prototypes are:\n" - " erase(std::vector< float > *,std::vector< float >::iterator)\n" - " erase(std::vector< float > *,std::vector< float >::iterator,std::vector< float >::iterator)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_FloatVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float >::size_type arg1 ; - std::vector< float >::value_type *arg2 = 0 ; - size_t val1 ; - int ecode1 = 0 ; - std::vector< float >::value_type temp2 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< float > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_FloatVector",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_FloatVector" "', argument " "1"" of type '" "std::vector< float >::size_type""'"); - } - arg1 = static_cast< std::vector< float >::size_type >(val1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_FloatVector" "', argument " "2"" of type '" "std::vector< float >::value_type""'"); - } - temp2 = static_cast< std::vector< float >::value_type >(val2); - arg2 = &temp2; - result = (std::vector< float > *)new std::vector< float >(arg1,(std::vector< float >::value_type const &)*arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_FloatVector(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_FloatVector__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_FloatVector__SWIG_2(self, args); - } - } - if (argc == 1) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_FloatVector__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_FloatVector__SWIG_3(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_FloatVector'.\n" - " Possible C/C++ prototypes are:\n" - " std::vector< float >()\n" - " std::vector< float >(std::vector< float > const &)\n" - " std::vector< float >(std::vector< float >::size_type)\n" - " std::vector< float >(std::vector< float >::size_type,std::vector< float >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::value_type *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - std::vector< float >::value_type temp2 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector_push_back",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_push_back" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_push_back" "', argument " "2"" of type '" "std::vector< float >::value_type""'"); - } - temp2 = static_cast< std::vector< float >::value_type >(val2); - arg2 = &temp2; - (arg1)->push_back((std::vector< float >::value_type const &)*arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::value_type *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_front",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_front" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = (std::vector< float >::value_type *) &((std::vector< float > const *)arg1)->front(); - resultobj = SWIG_From_float(static_cast< float >(*result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::value_type *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_back",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_back" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = (std::vector< float >::value_type *) &((std::vector< float > const *)arg1)->back(); - resultobj = SWIG_From_float(static_cast< float >(*result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector_assign",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_assign" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_assign" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = static_cast< std::vector< float >::size_type >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_assign" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = static_cast< std::vector< float >::value_type >(val3); - arg3 = &temp3; - (arg1)->assign(arg2,(std::vector< float >::value_type const &)*arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector_resize",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_resize" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_resize" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = static_cast< std::vector< float >::size_type >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_resize" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = static_cast< std::vector< float >::value_type >(val3); - arg3 = &temp3; - (arg1)->resize(arg2,(std::vector< float >::value_type const &)*arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_resize(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_resize__SWIG_0(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_resize__SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'FloatVector_resize'.\n" - " Possible C/C++ prototypes are:\n" - " resize(std::vector< float > *,std::vector< float >::size_type)\n" - " resize(std::vector< float > *,std::vector< float >::size_type,std::vector< float >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - std::vector< float >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - std::vector< float >::value_type temp3 ; - float val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - std::vector< float >::iterator result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:FloatVector_insert",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_insert" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_insert" "', argument " "3"" of type '" "std::vector< float >::value_type""'"); - } - temp3 = static_cast< std::vector< float >::value_type >(val3); - arg3 = &temp3; - result = (arg1)->insert(arg2,(std::vector< float >::value_type const &)*arg3); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< float >::iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::iterator arg2 ; - std::vector< float >::size_type arg3 ; - std::vector< float >::value_type *arg4 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - size_t val3 ; - int ecode3 = 0 ; - std::vector< float >::value_type temp4 ; - float val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:FloatVector_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_insert" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "FloatVector_insert" "', argument " "2"" of type '" "std::vector< float >::iterator""'"); - } - } - ecode3 = SWIG_AsVal_size_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FloatVector_insert" "', argument " "3"" of type '" "std::vector< float >::size_type""'"); - } - arg3 = static_cast< std::vector< float >::size_type >(val3); - ecode4 = SWIG_AsVal_float(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FloatVector_insert" "', argument " "4"" of type '" "std::vector< float >::value_type""'"); - } - temp4 = static_cast< std::vector< float >::value_type >(val4); - arg4 = &temp4; - (arg1)->insert(arg2,arg3,(std::vector< float >::value_type const &)*arg4); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_insert(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_insert__SWIG_0(self, args); - } - } - } - } - if (argc == 4) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FloatVector_insert__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'FloatVector_insert'.\n" - " Possible C/C++ prototypes are:\n" - " insert(std::vector< float > *,std::vector< float >::iterator,std::vector< float >::value_type const &)\n" - " insert(std::vector< float > *,std::vector< float >::iterator,std::vector< float >::size_type,std::vector< float >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - std::vector< float >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:FloatVector_reserve",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_reserve" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FloatVector_reserve" "', argument " "2"" of type '" "std::vector< float >::size_type""'"); - } - arg2 = static_cast< std::vector< float >::size_type >(val2); - (arg1)->reserve(arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FloatVector_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< float >::size_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:FloatVector_capacity",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FloatVector_capacity" "', argument " "1"" of type '" "std::vector< float > const *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - result = ((std::vector< float > const *)arg1)->capacity(); - resultobj = SWIG_From_size_t(static_cast< size_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_FloatVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< float > *arg1 = (std::vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_FloatVector",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FloatVector" "', argument " "1"" of type '" "std::vector< float > *""'"); - } - arg1 = reinterpret_cast< std::vector< float > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *FloatVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorT_float_std__allocatorT_float_t_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvPointVector_iterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - PyObject **arg2 = (PyObject **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - swig::SwigPyIterator *result = 0 ; - - arg2 = &obj0; - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_iterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_iterator" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = (swig::SwigPyIterator *)std_vector_Sl_CvPoint_Sg__iterator(arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_swig__SwigPyIterator, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___nonzero__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector___nonzero__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___nonzero__" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = (bool)std_vector_Sl_CvPoint_Sg____nonzero__((std::vector< CvPoint > const *)arg1); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___bool__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector___bool__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___bool__" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = (bool)std_vector_Sl_CvPoint_Sg____bool__((std::vector< CvPoint > const *)arg1); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___len__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::size_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector___len__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___len__" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = std_vector_Sl_CvPoint_Sg____len__((std::vector< CvPoint > const *)arg1); - resultobj = SWIG_From_size_t(static_cast< size_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::value_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_pop" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - try { - result = std_vector_Sl_CvPoint_Sg__pop(arg1); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_NewPointerObj((new std::vector< CvPoint >::value_type(static_cast< const std::vector< CvPoint >::value_type& >(result))), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___getslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - std::vector< CvPoint >::difference_type arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - ptrdiff_t val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector___getslice__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___getslice__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___getslice__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::difference_type >(val2); - ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvPointVector___getslice__" "', argument " "3"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg3 = static_cast< std::vector< CvPoint >::difference_type >(val3); - try { - result = (std::vector< CvPoint,std::allocator< CvPoint > > *)std_vector_Sl_CvPoint_Sg____getslice__(arg1,arg2,arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___setslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - std::vector< CvPoint >::difference_type arg3 ; - std::vector< CvPoint,std::allocator< CvPoint > > *arg4 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - ptrdiff_t val3 ; - int ecode3 = 0 ; - int res4 = SWIG_OLDOBJ ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvPointVector___setslice__",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___setslice__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___setslice__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::difference_type >(val2); - ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvPointVector___setslice__" "', argument " "3"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg3 = static_cast< std::vector< CvPoint >::difference_type >(val3); - { - std::vector > *ptr = (std::vector > *)0; - res4 = swig::asptr(obj3, &ptr); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvPointVector___setslice__" "', argument " "4"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector___setslice__" "', argument " "4"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > > const &""'"); - } - arg4 = ptr; - } - try { - std_vector_Sl_CvPoint_Sg____setslice__(arg1,arg2,arg3,(std::vector< CvPoint,std::allocator< CvPoint > > const &)*arg4); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - catch(std::invalid_argument &_e) { - SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - if (SWIG_IsNewObj(res4)) delete arg4; - return resultobj; -fail: - if (SWIG_IsNewObj(res4)) delete arg4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___delslice__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - std::vector< CvPoint >::difference_type arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - ptrdiff_t val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector___delslice__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___delslice__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___delslice__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::difference_type >(val2); - ecode3 = SWIG_AsVal_ptrdiff_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvPointVector___delslice__" "', argument " "3"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg3 = static_cast< std::vector< CvPoint >::difference_type >(val3); - try { - std_vector_Sl_CvPoint_Sg____delslice__(arg1,arg2,arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___delitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector___delitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___delitem__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___delitem__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::difference_type >(val2); - try { - std_vector_Sl_CvPoint_Sg____delitem____SWIG_0(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___getitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - PySliceObject *arg2 = (PySliceObject *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___getitem__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - { - arg2 = (PySliceObject *) obj1; - } - try { - result = (std::vector< CvPoint,std::allocator< CvPoint > > *)std_vector_Sl_CvPoint_Sg____getitem____SWIG_0(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___setitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - PySliceObject *arg2 = (PySliceObject *) 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res3 = SWIG_OLDOBJ ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___setitem__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - { - arg2 = (PySliceObject *) obj1; - } - { - std::vector > *ptr = (std::vector > *)0; - res3 = swig::asptr(obj2, &ptr); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector___setitem__" "', argument " "3"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector___setitem__" "', argument " "3"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > > const &""'"); - } - arg3 = ptr; - } - try { - std_vector_Sl_CvPoint_Sg____setitem____SWIG_0(arg1,arg2,(std::vector< CvPoint,std::allocator< CvPoint > > const &)*arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - catch(std::invalid_argument &_e) { - SWIG_exception_fail(SWIG_ValueError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - if (SWIG_IsNewObj(res3)) delete arg3; - return resultobj; -fail: - if (SWIG_IsNewObj(res3)) delete arg3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___delitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - PySliceObject *arg2 = (PySliceObject *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector___delitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___delitem__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - { - arg2 = (PySliceObject *) obj1; - } - try { - std_vector_Sl_CvPoint_Sg____delitem____SWIG_1(arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___delitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = PySlice_Check(argv[1]); - } - if (_v) { - return _wrap_CvPointVector___delitem____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvPointVector___delitem____SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvPointVector___delitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __delitem__(std::vector< CvPoint > *,std::vector< CvPoint >::difference_type)\n" - " __delitem__(std::vector< CvPoint > *,PySliceObject *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___getitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< CvPoint >::value_type *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___getitem__" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___getitem__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::difference_type >(val2); - try { - result = (std::vector< CvPoint >::value_type *) &std_vector_Sl_CvPoint_Sg____getitem____SWIG_1((std::vector< CvPoint > const *)arg1,arg2); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___getitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = PySlice_Check(argv[1]); - } - if (_v) { - return _wrap_CvPointVector___getitem____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvPointVector___getitem____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvPointVector___getitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __getitem__(std::vector< CvPoint > *,PySliceObject *)\n" - " __getitem__(std::vector< CvPoint > const *,std::vector< CvPoint >::difference_type)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___setitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::difference_type arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - ptrdiff_t val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector___setitem__" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_ptrdiff_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector___setitem__" "', argument " "2"" of type '" "std::vector< CvPoint >::difference_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::difference_type >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector___setitem__" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector___setitem__" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp3); - try { - std_vector_Sl_CvPoint_Sg____setitem____SWIG_1(arg1,arg2,(CvPoint const &)*arg3); - } - catch(std::out_of_range &_e) { - SWIG_exception_fail(SWIG_IndexError, (&_e)->what()); - } - - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector___setitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = PySlice_Check(argv[1]); - } - if (_v) { - int res = swig::asptr(argv[2], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector___setitem____SWIG_0(self, args); - } - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_ptrdiff_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector___setitem____SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvPointVector___setitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __setitem__(std::vector< CvPoint > *,PySliceObject *,std::vector< CvPoint,std::allocator< CvPoint > > const &)\n" - " __setitem__(std::vector< CvPoint > *,std::vector< CvPoint >::difference_type,std::vector< CvPoint >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::value_type *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_append" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPointVector_append" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_append" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg2 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp2); - std_vector_Sl_CvPoint_Sg__append(arg1,(CvPoint const &)*arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPointVector__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPointVector")) SWIG_fail; - result = (std::vector< CvPoint > *)new std::vector< CvPoint >(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPointVector__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = 0 ; - int res1 = SWIG_OLDOBJ ; - PyObject * obj0 = 0 ; - std::vector< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvPointVector",&obj0)) SWIG_fail; - { - std::vector > *ptr = (std::vector > *)0; - res1 = swig::asptr(obj0, &ptr); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint > const &""'"); - } - if (!ptr) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint > const &""'"); - } - arg1 = ptr; - } - result = (std::vector< CvPoint > *)new std::vector< CvPoint >((std::vector< CvPoint > const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_NEW | 0 ); - if (SWIG_IsNewObj(res1)) delete arg1; - return resultobj; -fail: - if (SWIG_IsNewObj(res1)) delete arg1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_empty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_empty",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_empty" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = (bool)((std::vector< CvPoint > const *)arg1)->empty(); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::size_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_size" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->size(); - resultobj = SWIG_From_size_t(static_cast< size_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_clear" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - (arg1)->clear(); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_swap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint > *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector_swap",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_swap" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPointVector_swap" "', argument " "2"" of type '" "std::vector< CvPoint > &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_swap" "', argument " "2"" of type '" "std::vector< CvPoint > &""'"); - } - arg2 = reinterpret_cast< std::vector< CvPoint > * >(argp2); - (arg1)->swap(*arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_get_allocator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - SwigValueWrapper< std::allocator< CvPoint > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_get_allocator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_get_allocator" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->get_allocator(); - resultobj = SWIG_NewPointerObj((new std::vector< CvPoint >::allocator_type(static_cast< const std::vector< CvPoint >::allocator_type& >(result))), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_begin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::const_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_begin",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_begin" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->begin(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::const_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_end(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::const_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_end",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_end" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->end(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::const_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_rbegin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::const_reverse_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_rbegin",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_rbegin" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->rbegin(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::const_reverse_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_rend(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::const_reverse_iterator result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_rend",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_rend" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->rend(); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::const_reverse_iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPointVector__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint >::size_type arg1 ; - size_t val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvPointVector",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg1 = static_cast< std::vector< CvPoint >::size_type >(val1); - result = (std::vector< CvPoint > *)new std::vector< CvPoint >(arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_pop_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_pop_back",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_pop_back" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - (arg1)->pop_back(); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_resize__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector_resize",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_resize" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_resize" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::size_type >(val2); - (arg1)->resize(arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_erase__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< CvPoint >::iterator result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector_erase",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_erase" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - result = (arg1)->erase(arg2); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_erase__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - std::vector< CvPoint >::iterator arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - swig::SwigPyIterator *iter3 = 0 ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - std::vector< CvPoint >::iterator result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector_erase",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_erase" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - res3 = SWIG_ConvertPtr(obj2, SWIG_as_voidptrptr(&iter3), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res3) || !iter3) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "3"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter3); - if (iter_t) { - arg3 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_erase" "', argument " "3"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - result = (arg1)->erase(arg2,arg3); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_erase(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_CvPointVector_erase__SWIG_0(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[2], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - return _wrap_CvPointVector_erase__SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvPointVector_erase'.\n" - " Possible C/C++ prototypes are:\n" - " erase(std::vector< CvPoint > *,std::vector< CvPoint >::iterator)\n" - " erase(std::vector< CvPoint > *,std::vector< CvPoint >::iterator,std::vector< CvPoint >::iterator)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPointVector__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint >::size_type arg1 ; - std::vector< CvPoint >::value_type *arg2 = 0 ; - size_t val1 ; - int ecode1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::vector< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvPointVector",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg1 = static_cast< std::vector< CvPoint >::size_type >(val1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvPointVector" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvPointVector" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg2 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp2); - result = (std::vector< CvPoint > *)new std::vector< CvPoint >(arg1,(std::vector< CvPoint >::value_type const &)*arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPointVector(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvPointVector__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvPointVector__SWIG_2(self, args); - } - } - if (argc == 1) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvPointVector__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_size_t(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[1], 0, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvPointVector__SWIG_3(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvPointVector'.\n" - " Possible C/C++ prototypes are:\n" - " std::vector< CvPoint >()\n" - " std::vector< CvPoint >(std::vector< CvPoint > const &)\n" - " std::vector< CvPoint >(std::vector< CvPoint >::size_type)\n" - " std::vector< CvPoint >(std::vector< CvPoint >::size_type,std::vector< CvPoint >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_push_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::value_type *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector_push_back",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_push_back" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPointVector_push_back" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_push_back" "', argument " "2"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg2 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp2); - (arg1)->push_back((std::vector< CvPoint >::value_type const &)*arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_front(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::value_type *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_front",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_front" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = (std::vector< CvPoint >::value_type *) &((std::vector< CvPoint > const *)arg1)->front(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_back(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::value_type *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_back",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_back" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = (std::vector< CvPoint >::value_type *) &((std::vector< CvPoint > const *)arg1)->back(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_assign(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector_assign",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_assign" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_assign" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::size_type >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector_assign" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_assign" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp3); - (arg1)->assign(arg2,(std::vector< CvPoint >::value_type const &)*arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_resize__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector_resize",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_resize" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_resize" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::size_type >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector_resize" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_resize" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp3); - (arg1)->resize(arg2,(std::vector< CvPoint >::value_type const &)*arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_resize(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvPointVector_resize__SWIG_0(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector_resize__SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvPointVector_resize'.\n" - " Possible C/C++ prototypes are:\n" - " resize(std::vector< CvPoint > *,std::vector< CvPoint >::size_type)\n" - " resize(std::vector< CvPoint > *,std::vector< CvPoint >::size_type,std::vector< CvPoint >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_insert__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - std::vector< CvPoint >::value_type *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - std::vector< CvPoint >::iterator result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvPointVector_insert",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_insert" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvPointVector_insert" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_insert" "', argument " "3"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg3 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp3); - result = (arg1)->insert(arg2,(std::vector< CvPoint >::value_type const &)*arg3); - resultobj = SWIG_NewPointerObj(swig::make_output_iterator(static_cast< const std::vector< CvPoint >::iterator & >(result)), - swig::SwigPyIterator::descriptor(),SWIG_POINTER_OWN); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_insert__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::iterator arg2 ; - std::vector< CvPoint >::size_type arg3 ; - std::vector< CvPoint >::value_type *arg4 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - swig::SwigPyIterator *iter2 = 0 ; - int res2 ; - size_t val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvPointVector_insert",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_insert" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, SWIG_as_voidptrptr(&iter2), swig::SwigPyIterator::descriptor(), 0); - if (!SWIG_IsOK(res2) || !iter2) { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } else { - swig::SwigPyIterator_T::iterator > *iter_t = dynamic_cast::iterator > *>(iter2); - if (iter_t) { - arg2 = iter_t->get_current(); - } else { - SWIG_exception_fail(SWIG_ArgError(SWIG_TypeError), "in method '" "CvPointVector_insert" "', argument " "2"" of type '" "std::vector< CvPoint >::iterator""'"); - } - } - ecode3 = SWIG_AsVal_size_t(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvPointVector_insert" "', argument " "3"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg3 = static_cast< std::vector< CvPoint >::size_type >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0 | 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvPointVector_insert" "', argument " "4"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvPointVector_insert" "', argument " "4"" of type '" "std::vector< CvPoint >::value_type const &""'"); - } - arg4 = reinterpret_cast< std::vector< CvPoint >::value_type * >(argp4); - (arg1)->insert(arg2,arg3,(std::vector< CvPoint >::value_type const &)*arg4); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_insert(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector_insert__SWIG_0(self, args); - } - } - } - } - if (argc == 4) { - int _v; - int res = swig::asptr(argv[0], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - swig::SwigPyIterator *iter = 0; - int res = SWIG_ConvertPtr(argv[1], SWIG_as_voidptrptr(&iter), swig::SwigPyIterator::descriptor(), 0); - _v = (SWIG_IsOK(res) && iter && (dynamic_cast::iterator > *>(iter) != 0)); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvPointVector_insert__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvPointVector_insert'.\n" - " Possible C/C++ prototypes are:\n" - " insert(std::vector< CvPoint > *,std::vector< CvPoint >::iterator,std::vector< CvPoint >::value_type const &)\n" - " insert(std::vector< CvPoint > *,std::vector< CvPoint >::iterator,std::vector< CvPoint >::size_type,std::vector< CvPoint >::value_type const &)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_reserve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - std::vector< CvPoint >::size_type arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPointVector_reserve",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_reserve" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPointVector_reserve" "', argument " "2"" of type '" "std::vector< CvPoint >::size_type""'"); - } - arg2 = static_cast< std::vector< CvPoint >::size_type >(val2); - (arg1)->reserve(arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPointVector_capacity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::vector< CvPoint >::size_type result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPointVector_capacity",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPointVector_capacity" "', argument " "1"" of type '" "std::vector< CvPoint > const *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - result = ((std::vector< CvPoint > const *)arg1)->capacity(); - resultobj = SWIG_From_size_t(static_cast< size_t >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPointVector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - std::vector< CvPoint > *arg1 = (std::vector< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPointVector",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPointVector" "', argument " "1"" of type '" "std::vector< CvPoint > *""'"); - } - arg1 = reinterpret_cast< std::vector< CvPoint > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPointVector_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvCvtSeqToArray__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSlice arg3 ; - void *ptr1 ; - bool freearg2 = false ; - CvSlice temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvArr *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCvtSeqToArray",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.start_index, & temp3.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg3 = *ptr; - } - } - result = (CvArr *)cvCvtSeqToArray_Shadow((CvSeq const *)arg1,arg2,arg3); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCvtSeqToArray__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *ptr1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvArr *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCvtSeqToArray",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - result = (CvArr *)cvCvtSeqToArray_Shadow((CvSeq const *)arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCvtSeqToArray(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_cvCvtSeqToArray__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSeq, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvCvtSeqToArray__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvCvtSeqToArray'.\n" - " Possible C/C++ prototypes are:\n" - " cvCvtSeqToArray_Shadow(CvSeq const *,CvArr *,CvSlice)\n" - " cvCvtSeqToArray_Shadow(CvSeq const *,CvArr *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHaarDetectObjects__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - int arg5 ; - int arg6 ; - CvSize arg7 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - CvSize temp7 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:cvHaarDetectObjects",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = reinterpret_cast< CvHaarClassifierCascade * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHaarDetectObjects" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvHaarDetectObjects" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - if (PyTuple_Check(obj6)) - { - if (!PyArg_ParseTuple(obj6,"ii", & temp7.width, & temp7.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg7 = temp7; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj6, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg7 = *ptr; - } - } - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHaarDetectObjects__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - int arg5 ; - int arg6 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvHaarDetectObjects",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = reinterpret_cast< CvHaarClassifierCascade * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHaarDetectObjects" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvHaarDetectObjects" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHaarDetectObjects__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - int arg5 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvHaarDetectObjects",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = reinterpret_cast< CvHaarClassifierCascade * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHaarDetectObjects" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4,arg5); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHaarDetectObjects__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvHaarDetectObjects",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = reinterpret_cast< CvHaarClassifierCascade * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHaarDetectObjects" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3,arg4); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHaarDetectObjects__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvHaarClassifierCascade *arg2 = (CvHaarClassifierCascade *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvHaarDetectObjects",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHaarDetectObjects" "', argument " "2"" of type '" "CvHaarClassifierCascade *""'"); - } - arg2 = reinterpret_cast< CvHaarClassifierCascade * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvHaarDetectObjects" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - result = (CvTypedSeq< CvRect > *)cvHaarDetectObjects_Shadow((void const *)arg1,arg2,arg3); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHaarDetectObjects(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[8]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 7); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_4(self, args); - } - } - } - } - if (argc == 4) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_3(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_2(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_1(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvHaarClassifierCascade, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[6], 0, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvHaarDetectObjects__SWIG_0(self, args); - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvHaarDetectObjects'.\n" - " Possible C/C++ prototypes are:\n" - " cvHaarDetectObjects_Shadow(CvArr const *,CvHaarClassifierCascade *,CvMemStorage *,double,int,int,CvSize)\n" - " cvHaarDetectObjects_Shadow(CvArr const *,CvHaarClassifierCascade *,CvMemStorage *,double,int,int)\n" - " cvHaarDetectObjects_Shadow(CvArr const *,CvHaarClassifierCascade *,CvMemStorage *,double,int)\n" - " cvHaarDetectObjects_Shadow(CvArr const *,CvHaarClassifierCascade *,CvMemStorage *,double)\n" - " cvHaarDetectObjects_Shadow(CvArr const *,CvHaarClassifierCascade *,CvMemStorage *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSegmentMotion(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - double arg4 ; - double arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvTypedSeq< CvConnectedComp > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSegmentMotion",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSegmentMotion" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSegmentMotion" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSegmentMotion" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - result = (CvTypedSeq< CvConnectedComp > *)cvSegmentMotion_Shadow((void const *)arg1,arg2,arg3,arg4,arg5); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvApproxPoly__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - int arg4 ; - double arg5 ; - int arg6 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvApproxPoly",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvApproxPoly" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvApproxPoly" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvApproxPoly" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvApproxPoly" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvApproxPoly" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvApproxPoly" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - result = (CvTypedSeq< CvPoint > *)cvApproxPoly_Shadow((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvApproxPoly__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - int arg4 ; - double arg5 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvApproxPoly",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvApproxPoly" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvApproxPoly" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvApproxPoly" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvApproxPoly" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvApproxPoly" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - result = (CvTypedSeq< CvPoint > *)cvApproxPoly_Shadow((void const *)arg1,arg2,arg3,arg4,arg5); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvApproxPoly(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 5) { - int _v; - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[0], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvApproxPoly__SWIG_1(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[0], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvApproxPoly__SWIG_0(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvApproxPoly'.\n" - " Possible C/C++ prototypes are:\n" - " cvApproxPoly_Shadow(void const *,int,CvMemStorage *,int,double,int)\n" - " cvApproxPoly_Shadow(void const *,int,CvMemStorage *,int,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvexHull2__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvConvexHull2",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvConvexHull2" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvConvexHull2" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - result = (CvMat *)cvConvexHull2_Shadow((void const *)arg1,arg2,arg3); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvexHull2__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvConvexHull2",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvConvexHull2" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - result = (CvMat *)cvConvexHull2_Shadow((void const *)arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvexHull2__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvConvexHull2",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - result = (CvMat *)cvConvexHull2_Shadow((void const *)arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvexHull2(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - return _wrap_cvConvexHull2__SWIG_2(self, args); - } - } - if (argc == 2) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvConvexHull2__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - { - _v = CvArr_Check( argv[0] ); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvConvexHull2__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvConvexHull2'.\n" - " Possible C/C++ prototypes are:\n" - " cvConvexHull2_Shadow(CvArr const *,int,int)\n" - " cvConvexHull2_Shadow(CvArr const *,int)\n" - " cvConvexHull2_Shadow(CvArr const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSnakeImage__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > arg2 ; - std::vector< float,std::allocator< float > > arg3 ; - std::vector< float,std::allocator< float > > arg4 ; - std::vector< float,std::allocator< float > > arg5 ; - CvSize arg6 ; - CvTermCriteria arg7 ; - int arg8 ; - bool freearg1 = false ; - CvSize temp6 ; - CvTermCriteria temp7 ; - int val8 ; - int ecode8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:cvSnakeImage",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj1, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "2"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > >""'"); - } - arg2 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj2, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "3"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg3 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj3, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "4"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg4 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj4, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "5"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg5 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - if (PyTuple_Check(obj5)) - { - if (!PyArg_ParseTuple(obj5,"ii", & temp6.width, & temp6.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg6 = temp6; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj5, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg6 = *ptr; - } - } - { - if (PyTuple_Check(obj6)) - { - if (!PyArg_ParseTuple(obj6,"iid", & temp7.type, & temp7.max_iter, & temp7.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg7 = temp7; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj6, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg7 = *ptr; - } - } - ecode8 = SWIG_AsVal_int(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvSnakeImage" "', argument " "8"" of type '" "int""'"); - } - arg8 = static_cast< int >(val8); - result = cvSnakeImage_Shadow((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); - resultobj = swig::from(static_cast< std::vector > >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSnakeImage__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > arg2 ; - std::vector< float,std::allocator< float > > arg3 ; - std::vector< float,std::allocator< float > > arg4 ; - std::vector< float,std::allocator< float > > arg5 ; - CvSize arg6 ; - CvTermCriteria arg7 ; - bool freearg1 = false ; - CvSize temp6 ; - CvTermCriteria temp7 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - std::vector< CvPoint,std::allocator< CvPoint > > result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:cvSnakeImage",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj1, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "2"" of type '" "std::vector< CvPoint,std::allocator< CvPoint > >""'"); - } - arg2 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj2, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "3"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg3 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj3, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "4"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg4 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - std::vector > *ptr = (std::vector > *)0; - int res = swig::asptr(obj4, &ptr); - if (!SWIG_IsOK(res) || !ptr) { - SWIG_exception_fail(SWIG_ArgError((ptr ? res : SWIG_TypeError)), "in method '" "cvSnakeImage" "', argument " "5"" of type '" "std::vector< float,std::allocator< float > >""'"); - } - arg5 = *ptr; - if (SWIG_IsNewObj(res)) delete ptr; - } - { - if (PyTuple_Check(obj5)) - { - if (!PyArg_ParseTuple(obj5,"ii", & temp6.width, & temp6.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg6 = temp6; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj5, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg6 = *ptr; - } - } - { - if (PyTuple_Check(obj6)) - { - if (!PyArg_ParseTuple(obj6,"iid", & temp7.type, & temp7.max_iter, & temp7.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg7 = temp7; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj6, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg7 = *ptr; - } - } - result = cvSnakeImage_Shadow((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - resultobj = swig::from(static_cast< std::vector > >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSnakeImage(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[9]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 8); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[1], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[2], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[3], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[4], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[6], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvSnakeImage__SWIG_1(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[1], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[2], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[3], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = swig::asptr(argv[4], (std::vector >**)(0)); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[6], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvSnakeImage__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvSnakeImage'.\n" - " Possible C/C++ prototypes are:\n" - " cvSnakeImage_Shadow(CvMat const *,std::vector< CvPoint,std::allocator< CvPoint > >,std::vector< float,std::allocator< float > >,std::vector< float,std::allocator< float > >,std::vector< float,std::allocator< float > >,CvSize,CvTermCriteria,int)\n" - " cvSnakeImage_Shadow(CvMat const *,std::vector< CvPoint,std::allocator< CvPoint > >,std::vector< float,std::allocator< float > >,std::vector< float,std::allocator< float > >,std::vector< float,std::allocator< float > >,CvSize,CvTermCriteria)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void **arg1 = (void **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_void, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFree" "', argument " "1"" of type '" "void **""'"); - } - arg1 = reinterpret_cast< void ** >(argp1); - cvFree(arg1); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_READ_CHAIN_POINT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvChainPtReader arg2 ; - CvPoint temp1 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_READ_CHAIN_POINT",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvChainPtReader, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_READ_CHAIN_POINT" "', argument " "2"" of type '" "CvChainPtReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_READ_CHAIN_POINT" "', argument " "2"" of type '" "CvChainPtReader""'"); - } else { - CvChainPtReader * temp = reinterpret_cast< CvChainPtReader * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_READ_CHAIN_POINT(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_MAT_ELEM_PTR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat arg1 ; - int arg2 ; - int arg3 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CV_MAT_ELEM_PTR",&obj0,&obj1,&obj2)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvMat, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_MAT_ELEM_PTR" "', argument " "1"" of type '" "CvMat""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_MAT_ELEM_PTR" "', argument " "1"" of type '" "CvMat""'"); - } else { - CvMat * temp = reinterpret_cast< CvMat * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_MAT_ELEM_PTR" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_MAT_ELEM_PTR" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - result = (void *)CV_MAT_ELEM_PTR(arg1,arg2,arg3); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_MAT_ELEM_PTR_FAST(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *argp1 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CV_MAT_ELEM_PTR_FAST",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvMat, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "1"" of type '" "CvMat""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "1"" of type '" "CvMat""'"); - } else { - CvMat * temp = reinterpret_cast< CvMat * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CV_MAT_ELEM_PTR_FAST" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - result = (void *)CV_MAT_ELEM_PTR_FAST(arg1,arg2,arg3,arg4); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_VAL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_NODE_VAL",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NODE_VAL" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NODE_VAL" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = reinterpret_cast< CvSparseNode * >(argp2); - result = (void *)CV_NODE_VAL(arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IDX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_NODE_IDX",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NODE_IDX" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NODE_IDX" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = reinterpret_cast< CvSparseNode * >(argp2); - result = (int *)CV_NODE_IDX(arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_SUBDIV2D_NEXT_EDGE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - PyObject * obj0 = 0 ; - CvQuadEdge2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_SUBDIV2D_NEXT_EDGE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - result = (CvQuadEdge2D *)CV_SUBDIV2D_NEXT_EDGE(arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_SWAP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CV_SWAP",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_SWAP" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_SWAP" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_SWAP" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - CV_SWAP(arg1,arg2,arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IMIN(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_IMIN",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IMIN" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_IMIN" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - result = (int)CV_IMIN(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IMAX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_IMAX",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IMAX" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_IMAX" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - result = (int)CV_IMAX(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IABS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IABS",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IABS" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_IABS(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_CMP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_CMP",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_CMP" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_CMP" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - CV_CMP(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_SIGN(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_SIGN",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_SIGN" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - CV_SIGN(arg1); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInvSqrt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvInvSqrt",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvInvSqrt" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - cvInvSqrt(arg1); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSqrt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSqrt",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSqrt" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - cvSqrt(arg1); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_IMAGE_HDR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_IMAGE_HDR",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_IMAGE_HDR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_IMAGE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_IMAGE",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_IMAGE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_MAT_DEPTH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_MAT_DEPTH",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAT_DEPTH" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_MAT_DEPTH(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_MAKETYPE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_MAKETYPE",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAKETYPE" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_MAKETYPE" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - result = (int)CV_MAKETYPE(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_8UC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_8UC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_8UC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_8UC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_8SC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_8SC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_8SC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_8SC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_16UC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_16UC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_16UC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_16UC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_16SC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_16SC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_16SC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_16SC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_32SC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_32SC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_32SC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_32SC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_32FC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_32FC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_32FC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_32FC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_64FC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_64FC",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_64FC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_64FC(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_MAT_CN(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_MAT_CN",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAT_CN" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_MAT_CN(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_MAT_TYPE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_MAT_TYPE",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_MAT_TYPE" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_MAT_TYPE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MAT_CONT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MAT_CONT",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IS_MAT_CONT" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_IS_MAT_CONT(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_TEMP_MAT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_TEMP_MAT",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_IS_TEMP_MAT" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_IS_TEMP_MAT(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MAT_HDR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MAT_HDR",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_MAT_HDR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MAT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MAT",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_MAT(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MASK_ARR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MASK_ARR",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_MASK_ARR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_ARE_TYPES_EQ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_ARE_TYPES_EQ",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - result = (int)CV_ARE_TYPES_EQ(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_ARE_CNS_EQ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_ARE_CNS_EQ",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - result = (int)CV_ARE_CNS_EQ(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_ARE_DEPTHS_EQ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_ARE_DEPTHS_EQ",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - result = (int)CV_ARE_DEPTHS_EQ(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_ARE_SIZES_EQ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_ARE_SIZES_EQ",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - result = (int)CV_ARE_SIZES_EQ(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MAT_CONST(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MAT_CONST",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_MAT_CONST(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_ELEM_SIZE1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_ELEM_SIZE1",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_ELEM_SIZE1" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_ELEM_SIZE1(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_ELEM_SIZE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_ELEM_SIZE",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_ELEM_SIZE" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_ELEM_SIZE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MATND_HDR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MATND_HDR",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_MATND_HDR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_MATND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_MATND",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_MATND(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SPARSE_MAT_HDR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SPARSE_MAT_HDR",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_SPARSE_MAT_HDR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SPARSE_MAT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SPARSE_MAT",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int)CV_IS_SPARSE_MAT(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_HIST(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_HIST",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_HIST" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (int)CV_IS_HIST(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_UNIFORM_HIST(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_UNIFORM_HIST",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_UNIFORM_HIST" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (int)CV_IS_UNIFORM_HIST(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SPARSE_HIST(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SPARSE_HIST",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_SPARSE_HIST" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (int)CV_IS_SPARSE_HIST(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_HIST_HAS_RANGES(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_HIST_HAS_RANGES",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_HIST_HAS_RANGES" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (int)CV_HIST_HAS_RANGES(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_STORAGE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_STORAGE",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_STORAGE" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (int)CV_IS_STORAGE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SET_ELEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int res1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SET_ELEM",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_SET_ELEM" "', argument " "1"" of type '" "void *""'"); - } - result = (int)CV_IS_SET_ELEM(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SET(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SET",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int)CV_IS_SET(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_SEQ_ELTYPE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_SEQ_ELTYPE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_SEQ_ELTYPE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_SEQ_KIND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_SEQ_KIND",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_SEQ_KIND(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_INDEX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_INDEX",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_INDEX(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_CURVE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_CURVE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CURVE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_CLOSED(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_CLOSED",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CLOSED(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_CONVEX(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_CONVEX",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CONVEX(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_HOLE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_HOLE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_HOLE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_SIMPLE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_SIMPLE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_SIMPLE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_POINT_SET(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_POINT_SET",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POINT_SET(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_POINT_SUBSET(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_POINT_SUBSET",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POINT_SUBSET(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_POLYLINE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_POLYLINE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POLYLINE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_POLYGON(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_POLYGON",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POLYGON(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_CHAIN(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_CHAIN",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CHAIN(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_CONTOUR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_CONTOUR",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CONTOUR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_CHAIN_CONTOUR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_CHAIN_CONTOUR",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_CHAIN_CONTOUR(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SEQ_POLYGON_TREE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SEQ_POLYGON_TREE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SEQ_POLYGON_TREE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_GRAPH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_GRAPH",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_GRAPH(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_GRAPH_ORIENTED(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_GRAPH_ORIENTED",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_GRAPH_ORIENTED(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_SUBDIV2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_SUBDIV2D",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_IS_SUBDIV2D(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_WRITE_SEQ_ELEM_VAR(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - CvSeqWriter arg2 ; - int res1 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_WRITE_SEQ_ELEM_VAR",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_WRITE_SEQ_ELEM_VAR" "', argument " "1"" of type '" "void *""'"); - } - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSeqWriter, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_WRITE_SEQ_ELEM_VAR" "', argument " "2"" of type '" "CvSeqWriter""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_WRITE_SEQ_ELEM_VAR" "', argument " "2"" of type '" "CvSeqWriter""'"); - } else { - CvSeqWriter * temp = reinterpret_cast< CvSeqWriter * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_WRITE_SEQ_ELEM_VAR(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_WRITE_SEQ_ELEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvSeqWriter arg2 ; - CvPoint temp1 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_WRITE_SEQ_ELEM",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSeqWriter, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_WRITE_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqWriter""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_WRITE_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqWriter""'"); - } else { - CvSeqWriter * temp = reinterpret_cast< CvSeqWriter * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_WRITE_SEQ_ELEM(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NEXT_SEQ_ELEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - CvSeqReader arg2 ; - int val1 ; - int ecode1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_NEXT_SEQ_ELEM",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NEXT_SEQ_ELEM" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NEXT_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_NEXT_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_NEXT_SEQ_ELEM(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_PREV_SEQ_ELEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - CvSeqReader arg2 ; - int val1 ; - int ecode1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_PREV_SEQ_ELEM",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_PREV_SEQ_ELEM" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_PREV_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_PREV_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_PREV_SEQ_ELEM(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_READ_SEQ_ELEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvSeqReader arg2 ; - CvPoint temp1 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_READ_SEQ_ELEM",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_READ_SEQ_ELEM(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_REV_READ_SEQ_ELEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvSeqReader arg2 ; - CvPoint temp1 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_REV_READ_SEQ_ELEM",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_REV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_REV_READ_SEQ_ELEM" "', argument " "2"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - CV_REV_READ_SEQ_ELEM(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_CURRENT_POINT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader arg1 ; - void *argp1 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_CURRENT_POINT",&obj0)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_CURRENT_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_CURRENT_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - result = CV_CURRENT_POINT(arg1); - resultobj = SWIG_NewPointerObj((new CvPoint(static_cast< const CvPoint& >(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_PREV_POINT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader arg1 ; - void *argp1 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_PREV_POINT",&obj0)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_PREV_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_PREV_POINT" "', argument " "1"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - result = CV_PREV_POINT(arg1); - resultobj = SWIG_NewPointerObj((new CvPoint(static_cast< const CvPoint& >(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_READ_EDGE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvPoint arg2 ; - CvSeqReader arg3 ; - CvPoint temp1 ; - CvPoint temp2 ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CV_READ_EDGE",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvSeqReader, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CV_READ_EDGE" "', argument " "3"" of type '" "CvSeqReader""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_READ_EDGE" "', argument " "3"" of type '" "CvSeqReader""'"); - } else { - CvSeqReader * temp = reinterpret_cast< CvSeqReader * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - CV_READ_EDGE(arg1,arg2,arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NEXT_GRAPH_EDGE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CV_NEXT_GRAPH_EDGE",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NEXT_GRAPH_EDGE" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CV_NEXT_GRAPH_EDGE" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - result = (CvGraphEdge *)CV_NEXT_GRAPH_EDGE(arg1,arg2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_TYPE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_TYPE",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_TYPE" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_TYPE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_INT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_INT",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_INT" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_INT(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_REAL(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_REAL",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_REAL" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_REAL(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_STRING(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_STRING",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_STRING" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_STRING(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_SEQ(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_SEQ",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_SEQ" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_SEQ(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_MAP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_MAP",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_MAP" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_MAP(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_COLLECTION(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_COLLECTION",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_COLLECTION" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_COLLECTION(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_FLOW(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_FLOW",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_FLOW" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_FLOW(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_EMPTY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_EMPTY",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_EMPTY" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_EMPTY(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_IS_USER(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_IS_USER",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_IS_USER" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_IS_USER(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_HAS_NAME(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_HAS_NAME",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_NODE_HAS_NAME" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (int)CV_NODE_HAS_NAME(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NODE_SEQ_IS_SIMPLE(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NODE_SEQ_IS_SIMPLE",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int)CV_NODE_SEQ_IS_SIMPLE(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReshapeND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 ; - int *arg5 = (int *) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvReshapeND",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvReshapeND" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReshapeND" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - res5 = SWIG_ConvertPtr(obj3, &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvReshapeND" "', argument " "5"" of type '" "int *""'"); - } - arg5 = reinterpret_cast< int * >(argp5); - cvReshapeND(arg1,arg2,arg3,arg4,arg5); - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvert(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvConvert",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - cvConvert(arg1,arg2); - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAXPY(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvAXPY",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvAXPY" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - cvAXPY(arg1,arg2,arg3,arg4); - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAbs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvAbs",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - cvAbs(arg1,arg2); - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMatMulAdd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvMatMulAdd",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - cvMatMulAdd(arg1,arg2,arg3,arg4); - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMatMul(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMatMul",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - cvMatMul(arg1,arg2,arg3); - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetGraphVtx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetGraphVtx",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetGraphVtx" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - cvGetGraphVtx(arg1,arg2); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphVtxIdx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGraphVtxIdx",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphVtxIdx" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - result = (int)cvGraphVtxIdx(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphEdgeIdx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGraphEdgeIdx",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphEdgeIdx" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = reinterpret_cast< CvGraphEdge * >(argp2); - result = (int)cvGraphEdgeIdx(arg1,arg2); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphGetVtxCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGraphGetVtxCount",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int)cvGraphGetVtxCount(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphGetEdgeCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGraphGetEdgeCount",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int)cvGraphGetEdgeCount(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_GRAPH_VERTEX_VISITED(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_GRAPH_VERTEX_VISITED",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_GRAPH_VERTEX_VISITED" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx * >(argp1); - result = (int)CV_IS_GRAPH_VERTEX_VISITED(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_GRAPH_EDGE_VISITED(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_GRAPH_EDGE_VISITED",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_GRAPH_EDGE_VISITED" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - result = (int)CV_IS_GRAPH_EDGE_VISITED(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_RGB(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - int arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CV_RGB",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_RGB" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_RGB" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_RGB" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - result = CV_RGB(arg1,arg2,arg3); - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_NEXT_LINE_POINT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator arg1 ; - void *argp1 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_NEXT_LINE_POINT",&obj0)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvLineIterator, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_NEXT_LINE_POINT" "', argument " "1"" of type '" "CvLineIterator""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CV_NEXT_LINE_POINT" "', argument " "1"" of type '" "CvLineIterator""'"); - } else { - CvLineIterator * temp = reinterpret_cast< CvLineIterator * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - CV_NEXT_LINE_POINT(arg1); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_INIT_3X3_DELTAS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double *arg1 = (double *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CV_INIT_3X3_DELTAS",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_INIT_3X3_DELTAS" "', argument " "1"" of type '" "double *""'"); - } - arg1 = reinterpret_cast< double * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_INIT_3X3_DELTAS" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_INIT_3X3_DELTAS" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - CV_INIT_3X3_DELTAS(arg1,arg2,arg3); - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_IS_HAAR_CLASSIFIER(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int res1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CV_IS_HAAR_CLASSIFIER",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CV_IS_HAAR_CLASSIFIER" "', argument " "1"" of type '" "void *""'"); - } - result = (int)CV_IS_HAAR_CLASSIFIER(arg1); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvContourPerimeter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvContourPerimeter",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (double)cvContourPerimeter(arg1); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcBackProject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvHistogram *arg3 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCalcBackProject",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalcBackProject" "', argument " "1"" of type '" "IplImage *""'"); - } - arg1 = reinterpret_cast< IplImage * >(argp1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalcBackProject" "', argument " "3"" of type '" "CvHistogram *""'"); - } - arg3 = reinterpret_cast< CvHistogram * >(argp3); - cvCalcBackProject(arg1,arg2,arg3); - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcBackProjectPatch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSize arg3 ; - CvHistogram *arg4 = (CvHistogram *) 0 ; - int arg5 ; - double arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - CvSize temp3 ; - void *argp4 = 0 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvCalcBackProjectPatch",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalcBackProjectPatch" "', argument " "1"" of type '" "IplImage *""'"); - } - arg1 = reinterpret_cast< IplImage * >(argp1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.width, & temp3.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg3 = *ptr; - } - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCalcBackProjectPatch" "', argument " "4"" of type '" "CvHistogram *""'"); - } - arg4 = reinterpret_cast< CvHistogram * >(argp4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcBackProjectPatch" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCalcBackProjectPatch" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - cvCalcBackProjectPatch(arg1,arg2,arg3,arg4,arg5,arg6); - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize arg1 ; - int arg2 ; - int arg3 ; - CvSize temp1 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCreateImage",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.width, & temp1.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateImage" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateImage" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMat *)cvCreateImageMat(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCloneImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCloneImage",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvMat *)cvCloneImageMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv32suf_i_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:Cv32suf_i_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_i_set" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv32suf_i_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->i = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv32suf_i_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:Cv32suf_i_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_i_get" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - result = (int) ((arg1)->i); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv32suf_u_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - unsigned int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - unsigned int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:Cv32suf_u_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_u_set" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv32suf_u_set" "', argument " "2"" of type '" "unsigned int""'"); - } - arg2 = static_cast< unsigned int >(val2); - if (arg1) (arg1)->u = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv32suf_u_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - unsigned int result; - - if (!PyArg_ParseTuple(args,(char *)"O:Cv32suf_u_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_u_get" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - result = (unsigned int) ((arg1)->u); - resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv32suf_f_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:Cv32suf_f_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_f_set" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv32suf_f_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->f = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv32suf_f_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:Cv32suf_f_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv32suf_f_get" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - result = (float) ((arg1)->f); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_Cv32suf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_Cv32suf")) SWIG_fail; - { - try { - result = (Cv32suf *)new Cv32suf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Cv32suf, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_Cv32suf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv32suf *arg1 = (Cv32suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_Cv32suf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv32suf, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Cv32suf" "', argument " "1"" of type '" "Cv32suf *""'"); - } - arg1 = reinterpret_cast< Cv32suf * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *Cv32suf_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_Cv32suf, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_Cv64suf_i_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - int64 arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:Cv64suf_i_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_i_set" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int64_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Cv64suf_i_set" "', argument " "2"" of type '" "int64""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Cv64suf_i_set" "', argument " "2"" of type '" "int64""'"); - } else { - int64 * temp = reinterpret_cast< int64 * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->i = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv64suf_i_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int64 result; - - if (!PyArg_ParseTuple(args,(char *)"O:Cv64suf_i_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_i_get" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - result = ((arg1)->i); - resultobj = SWIG_NewPointerObj((new int64(static_cast< const int64& >(result))), SWIGTYPE_p_int64_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv64suf_u_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - uint64 arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:Cv64suf_u_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_u_set" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_uint64_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Cv64suf_u_set" "', argument " "2"" of type '" "uint64""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "Cv64suf_u_set" "', argument " "2"" of type '" "uint64""'"); - } else { - uint64 * temp = reinterpret_cast< uint64 * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->u = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv64suf_u_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uint64 result; - - if (!PyArg_ParseTuple(args,(char *)"O:Cv64suf_u_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_u_get" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - result = ((arg1)->u); - resultobj = SWIG_NewPointerObj((new uint64(static_cast< const uint64& >(result))), SWIGTYPE_p_uint64_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv64suf_f_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:Cv64suf_f_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_f_set" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Cv64suf_f_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->f = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_Cv64suf_f_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:Cv64suf_f_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Cv64suf_f_get" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - result = (double) ((arg1)->f); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_Cv64suf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_Cv64suf")) SWIG_fail; - { - try { - result = (Cv64suf *)new Cv64suf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Cv64suf, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_Cv64suf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv64suf *arg1 = (Cv64suf *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_Cv64suf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Cv64suf, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Cv64suf" "', argument " "1"" of type '" "Cv64suf *""'"); - } - arg1 = reinterpret_cast< Cv64suf * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *Cv64suf_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_Cv64suf, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvRound(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRound",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRound" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = (int)cvRound(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFloor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFloor",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvFloor" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = (int)cvFloor(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCeil(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCeil",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCeil" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = (int)cvCeil(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvIsNaN(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvIsNaN",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvIsNaN" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = (int)cvIsNaN(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvIsInf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvIsInf",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvIsInf" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = (int)cvIsInf(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRNG__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int64 arg1 ; - void *argp1 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRNG",&obj0)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_int64_t, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRNG" "', argument " "1"" of type '" "int64""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvRNG" "', argument " "1"" of type '" "int64""'"); - } else { - int64 * temp = reinterpret_cast< int64 * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - { - try { - result = cvRNG(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRNG__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG result; - - if (!PyArg_ParseTuple(args,(char *)":cvRNG")) SWIG_fail; - { - try { - result = cvRNG(); - } - catch (...) - { - SWIG_fail; - } - } - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRNG(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[2]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 1); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_cvRNG__SWIG_1(self, args); - } - if (argc == 1) { - int _v; - int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_int64_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvRNG__SWIG_0(self, args); - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvRNG'.\n" - " Possible C/C++ prototypes are:\n" - " cvRNG(int64)\n" - " cvRNG()\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRandInt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG *arg1 = (CvRNG *) 0 ; - void *vptr1 ; - CvRNG_Wrapper *wrapper1 ; - PyObject * obj0 = 0 ; - unsigned int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRandInt",&obj0)) SWIG_fail; - { - if(SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper1 = (CvRNG_Wrapper *) vptr1; - arg1 = wrapper1->ptr(); - } - { - try { - result = (unsigned int)cvRandInt(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRandReal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG *arg1 = (CvRNG *) 0 ; - void *vptr1 ; - CvRNG_Wrapper *wrapper1 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRandReal",&obj0)) SWIG_fail; - { - if(SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper1 = (CvRNG_Wrapper *) vptr1; - arg1 = wrapper1->ptr(); - } - { - try { - result = (double)cvRandReal(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_ID_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_ID_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_ID_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->ID = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_ID_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_ID_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->ID); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_nChannels_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_nChannels_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_nChannels_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nChannels = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_nChannels_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_nChannels_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->nChannels); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_depth_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_depth_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->depth = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_depth_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_depth_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->depth); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_dataOrder_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_dataOrder_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_dataOrder_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->dataOrder = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_dataOrder_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_dataOrder_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->dataOrder); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_origin_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_origin_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_origin_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->origin = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_origin_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_origin_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->origin); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_align_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_align_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_align_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->align = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_align_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_align_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->align); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_width_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->width = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_width_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->width); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_height_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->height = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_height_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->height); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_roi_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - _IplROI *arg2 = (_IplROI *) 0 ; - IplImage header1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_roi_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p__IplROI, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IplImage_roi_set" "', argument " "2"" of type '" "_IplROI *""'"); - } - arg2 = reinterpret_cast< _IplROI * >(argp2); - if (arg1) (arg1)->roi = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_roi_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - _IplROI *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_roi_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (_IplROI *) ((arg1)->roi); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplROI, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_imageSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_imageSize_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_imageSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->imageSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_imageSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_imageSize_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->imageSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_widthStep_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - int arg2 ; - IplImage header1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage_widthStep_set",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage_widthStep_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->widthStep = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage_widthStep_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage_widthStep_get",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - result = (int) ((arg1)->widthStep); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_IplImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_IplImage",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - delete_IplImage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___and____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___and__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_SA___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___iand____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___iand__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_SA__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___add____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___add__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sa___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___iadd____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___iadd__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sa__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___mul____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___mul__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sm___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___imul____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___imul__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sm__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___sub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___sub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Ss___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___isub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___isub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Ss__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___div____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___div__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sd___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___idiv____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___idiv__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sd__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___or____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___or__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_So___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ior____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ior__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_So__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___xor____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___xor__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sx___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ixor____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ixor__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sx__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___add____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___add__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_Sa___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___add__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___add____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___add____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___iadd____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___iadd__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_Sa__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___iadd__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___iadd____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___iadd____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___iadd__'.\n" - " Possible C/C++ prototypes are:\n" - " operator +=(IplImage *,CvArr *)\n" - " operator +=(IplImage *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___xor____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___xor__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_Sx___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___xor__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___xor____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___xor____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ixor____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ixor__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_Sx__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ixor__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ixor____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ixor____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___ixor__'.\n" - " Possible C/C++ prototypes are:\n" - " operator ^=(IplImage *,CvArr *)\n" - " operator ^=(IplImage *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___sub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___sub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_Ss___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___sub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___sub____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___sub____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___isub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___isub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_Ss__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___isub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___isub____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___isub____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___isub__'.\n" - " Possible C/C++ prototypes are:\n" - " operator -=(IplImage *,CvArr *)\n" - " operator -=(IplImage *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___or____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___or__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_So___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___or__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___or____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___or____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ior____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ior__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_So__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ior__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ior____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ior____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___ior__'.\n" - " Possible C/C++ prototypes are:\n" - " operator |=(IplImage *,CvArr *)\n" - " operator |=(IplImage *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___and____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___and__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_SA___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___and__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___and____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___and____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___iand____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___iand__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage_operator_SA__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___iand__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___iand____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___iand____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___iand__'.\n" - " Possible C/C++ prototypes are:\n" - " operator &=(IplImage *,CvArr *)\n" - " operator &=(IplImage *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ge____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ge__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sg__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ge____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ge__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___ge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sg__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ge__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ge____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___ge____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___eq____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___eq__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Se__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___eq____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___eq__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___eq__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Se__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___eq__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___eq____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___eq____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___le____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___le__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sl__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___le____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___le__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___le__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sl__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___le__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___le____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___le____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ne____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ne__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_SN__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ne____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ne__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___ne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_SN__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ne__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ne____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___ne____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___lt____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___lt__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sl___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___lt____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___lt__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___lt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sl___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___lt__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___lt____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___lt____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___gt____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___gt__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage_operator_Sg___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___gt____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___gt__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___gt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sg___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___gt__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___gt____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___gt____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___mul____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___mul__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___mul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sm___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___mul__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___mul____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___mul____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___imul____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___imul__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___imul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sm__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___imul__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___imul____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___imul____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___imul__'.\n" - " Possible C/C++ prototypes are:\n" - " operator *=(IplImage *,CvArr *)\n" - " operator *=(IplImage *,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___div____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___div__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___div__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sd___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___div__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___div____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___div____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___idiv____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___idiv__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___idiv__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage_operator_Sd__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___idiv__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___idiv____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___idiv____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___idiv__'.\n" - " Possible C/C++ prototypes are:\n" - " operator /=(IplImage *,CvArr *)\n" - " operator /=(IplImage *,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___radd____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___radd__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage___radd____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rsub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rsub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage___rsub____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rdiv__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rdiv__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage___rdiv__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rmul____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rmul__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (IplImage *)IplImage___rmul____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___radd____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___radd__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage___radd____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___radd____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___radd__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___radd__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___radd____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___radd__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___radd____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___radd____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___radd____SWIG_2(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rsub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rsub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage___rsub____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rsub____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rsub__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rsub__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rsub____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rsub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___rsub____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___rsub____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rsub____SWIG_2(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rmul____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rmul__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rmul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rmul____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rmul__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___rmul____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rmul____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ror____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ror__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage___ror____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ror____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___ror__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___ror__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___ror____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___ror__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___ror____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___ror____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rand____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rand__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage___rand____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rand____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rand__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rand__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rand____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rand__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___rand____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rand____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rxor____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - CvScalar arg2 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rxor__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (IplImage *)IplImage___rxor____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rxor____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rxor__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rxor__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rxor____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rxor__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_IplImage___rxor____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___rxor____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_IplImage___req__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___req__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___req__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___req__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rgt__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rgt__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rgt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rgt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rge__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rge__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rge__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rlt__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rlt__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rlt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rlt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rle__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rle__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rle__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rle__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___rne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___rne__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___rne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___rne__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___pow__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - double arg2 ; - IplImage header1 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___pow__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplImage___pow__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (IplImage *)IplImage___pow__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:IplImage___str__",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - result = (char *)IplImage___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___setitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - double arg3 ; - IplImage header1 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:IplImage___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = obj1; - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "IplImage___setitem__" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - IplImage___setitem____SWIG_0(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___setitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvPoint arg3 ; - IplImage header1 ; - CvPoint temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:IplImage___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = obj1; - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - IplImage___setitem____SWIG_1(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___setitem____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvPoint2D32f arg3 ; - IplImage header1 ; - CvPoint2D32f temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:IplImage___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = obj1; - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ff", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - IplImage___setitem____SWIG_2(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___setitem____SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvScalar arg3 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:IplImage___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = obj1; - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - try { - IplImage___setitem____SWIG_3(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___setitem____SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - IplImage header1 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:IplImage___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = obj1; - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - IplImage___setitem____SWIG_4(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___setitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvPoint, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___setitem____SWIG_1(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvPoint2D32f, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_IplImage___setitem____SWIG_2(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - { - _v = CvScalar_Check( argv[2] ); - } - if (_v) { - return _wrap_IplImage___setitem____SWIG_3(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - { - _v = CvArr_Check( argv[2] ); - } - if (_v) { - return _wrap_IplImage___setitem____SWIG_4(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_IplImage___setitem____SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'IplImage___setitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __setitem__(IplImage *,PyObject *,double)\n" - " __setitem__(IplImage *,PyObject *,CvPoint)\n" - " __setitem__(IplImage *,PyObject *,CvPoint2D32f)\n" - " __setitem__(IplImage *,PyObject *,CvScalar)\n" - " __setitem__(IplImage *,PyObject *,CvArr *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplImage___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplImage___getitem__",&obj0,&obj1)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - arg2 = obj1; - { - try { - result = (PyObject *)IplImage___getitem__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *IplImage_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p__IplImage, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_IplROI_coi_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplROI_coi_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_coi_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_coi_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->coi = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_coi_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplROI_coi_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_coi_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - result = (int) ((arg1)->coi); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_xOffset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplROI_xOffset_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_xOffset_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_xOffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->xOffset = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_xOffset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplROI_xOffset_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_xOffset_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - result = (int) ((arg1)->xOffset); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_yOffset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplROI_yOffset_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_yOffset_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_yOffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->yOffset = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_yOffset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplROI_yOffset_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_yOffset_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - result = (int) ((arg1)->yOffset); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplROI_width_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_width_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->width = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplROI_width_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_width_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - result = (int) ((arg1)->width); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplROI_height_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_height_set" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplROI_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->height = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplROI_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplROI_height_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplROI_height_get" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - result = (int) ((arg1)->height); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_IplROI(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_IplROI")) SWIG_fail; - { - try { - result = (IplROI *)new IplROI(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplROI, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_IplROI(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI *arg1 = (IplROI *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_IplROI",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplROI, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IplROI" "', argument " "1"" of type '" "IplROI *""'"); - } - arg1 = reinterpret_cast< IplROI * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *IplROI_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p__IplROI, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_IplConvKernel_nCols_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernel_nCols_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nCols_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_nCols_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nCols = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_nCols_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernel_nCols_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nCols_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - result = (int) ((arg1)->nCols); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_nRows_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernel_nRows_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nRows_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_nRows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nRows = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_nRows_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernel_nRows_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nRows_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - result = (int) ((arg1)->nRows); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_anchorX_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernel_anchorX_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorX_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_anchorX_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->anchorX = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_anchorX_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernel_anchorX_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorX_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - result = (int) ((arg1)->anchorX); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_anchorY_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernel_anchorY_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorY_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_anchorY_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->anchorY = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_anchorY_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernel_anchorY_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_anchorY_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - result = (int) ((arg1)->anchorY); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_values_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernel_values_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_values_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IplConvKernel_values_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->values = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_values_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernel_values_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_values_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - result = (int *) ((arg1)->values); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_nShiftR_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernel_nShiftR_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nShiftR_set" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernel_nShiftR_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nShiftR = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernel_nShiftR_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernel_nShiftR_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernel_nShiftR_get" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - result = (int) ((arg1)->nShiftR); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_IplConvKernel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernel *arg1 = (IplConvKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_IplConvKernel",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IplConvKernel" "', argument " "1"" of type '" "IplConvKernel *""'"); - } - arg1 = reinterpret_cast< IplConvKernel * >(argp1); - { - try { - delete_IplConvKernel(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *IplConvKernel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p__IplConvKernel, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_nCols_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernelFP_nCols_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nCols_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_nCols_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nCols = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_nCols_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernelFP_nCols_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nCols_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - result = (int) ((arg1)->nCols); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_nRows_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernelFP_nRows_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nRows_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_nRows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nRows = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_nRows_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernelFP_nRows_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_nRows_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - result = (int) ((arg1)->nRows); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_anchorX_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernelFP_anchorX_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorX_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_anchorX_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->anchorX = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_anchorX_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernelFP_anchorX_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorX_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - result = (int) ((arg1)->anchorX); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_anchorY_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernelFP_anchorY_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorY_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "IplConvKernelFP_anchorY_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->anchorY = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_anchorY_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernelFP_anchorY_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_anchorY_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - result = (int) ((arg1)->anchorY); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_values_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:IplConvKernelFP_values_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_values_set" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "IplConvKernelFP_values_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->values = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_IplConvKernelFP_values_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:IplConvKernelFP_values_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "IplConvKernelFP_values_get" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - result = (float *) ((arg1)->values); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_IplConvKernelFP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_IplConvKernelFP")) SWIG_fail; - { - try { - result = (IplConvKernelFP *)new IplConvKernelFP(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplConvKernelFP, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_IplConvKernelFP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplConvKernelFP *arg1 = (IplConvKernelFP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_IplConvKernelFP",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__IplConvKernelFP, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_IplConvKernelFP" "', argument " "1"" of type '" "IplConvKernelFP *""'"); - } - arg1 = reinterpret_cast< IplConvKernelFP * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *IplConvKernelFP_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p__IplConvKernelFP, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMat_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_type_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_type_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int) ((arg1)->type); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_step_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_step_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->step = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_step_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_step_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int) ((arg1)->step); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_refcount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int *arg2 = (int *) 0 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_refcount_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_refcount_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->refcount = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_refcount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_refcount_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int *) ((arg1)->refcount); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_hdr_refcount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_hdr_refcount_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_hdr_refcount_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->hdr_refcount = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_hdr_refcount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_hdr_refcount_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (int) ((arg1)->hdr_refcount); - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvMat_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_data_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - result = (CvMat_data *)& ((arg1)->data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat_data, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMat",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - delete_CvMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_depth_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_depth_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_depth_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_depth_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_depth_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_depth_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_nChannels_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_nChannels_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_nChannels_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_nChannels_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_nChannels_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_nChannels_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_nChannels_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_dataOrder_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_dataOrder_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_dataOrder_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_dataOrder_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_dataOrder_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_dataOrder_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_dataOrder_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_origin_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_origin_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_origin_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_origin_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_origin_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_origin_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_origin_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_width_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_width_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_width_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_width_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_height_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_height_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_height_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_height_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_imageSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_imageSize_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_imageSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_imageSize_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_imageSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_imageSize_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_imageSize_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_widthStep_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_widthStep_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_widthStep_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_widthStep_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_widthStep_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_widthStep_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_widthStep_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_rows_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_rows_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_rows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_rows_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_rows_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_rows_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_rows_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_cols_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_cols_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat_cols_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - CvMat_cols_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_cols_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_cols_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)CvMat_cols_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___and____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___and__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_SA___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___iand____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___iand__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_SA__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___add____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___add__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sa___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___iadd____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___iadd__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sa__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___mul____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___mul__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sm___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___imul____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___imul__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sm__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___sub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___sub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Ss___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___isub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___isub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Ss__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___div____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___div__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sd___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___idiv____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___idiv__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sd__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___or____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___or__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_So___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ior____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ior__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_So__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___xor____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___xor__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sx___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ixor____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ixor__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sx__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___add____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___add__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_Sa___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___add__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___add____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___add____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___iadd____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___iadd__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_Sa__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___iadd__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___iadd____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___iadd____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___iadd__'.\n" - " Possible C/C++ prototypes are:\n" - " operator +=(CvMat *,CvArr *)\n" - " operator +=(CvMat *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___xor____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___xor__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_Sx___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___xor__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___xor____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___xor____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ixor____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ixor__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_Sx__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ixor__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ixor____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ixor____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___ixor__'.\n" - " Possible C/C++ prototypes are:\n" - " operator ^=(CvMat *,CvArr *)\n" - " operator ^=(CvMat *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___sub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___sub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_Ss___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___sub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___sub____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___sub____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___isub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___isub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_Ss__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___isub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___isub____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___isub____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___isub__'.\n" - " Possible C/C++ prototypes are:\n" - " operator -=(CvMat *,CvArr *)\n" - " operator -=(CvMat *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___or____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___or__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_So___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___or__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___or____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___or____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ior____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ior__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_So__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ior__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ior____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ior____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___ior__'.\n" - " Possible C/C++ prototypes are:\n" - " operator |=(CvMat *,CvArr *)\n" - " operator |=(CvMat *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___and____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___and__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_SA___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___and__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___and____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___and____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___iand____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___iand__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat_operator_SA__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___iand__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___iand____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___iand____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___iand__'.\n" - " Possible C/C++ prototypes are:\n" - " operator &=(CvMat *,CvArr *)\n" - " operator &=(CvMat *,CvScalar)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ge____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ge__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sg__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ge____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ge__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___ge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sg__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ge__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ge____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___ge____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___eq____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___eq__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Se__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___eq____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___eq__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___eq__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Se__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___eq__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___eq____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___eq____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___le____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___le__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sl__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___le____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___le__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___le__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sl__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___le__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___le____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___le____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ne____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ne__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_SN__Se___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ne____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ne__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___ne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_SN__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ne__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ne____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___ne____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___lt____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___lt__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sl___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___lt____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___lt__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___lt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sl___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___lt__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___lt____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___lt____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___gt____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___gt__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat_operator_Sg___SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___gt____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___gt__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___gt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sg___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___gt__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___gt____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___gt____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___mul____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___mul__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___mul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sm___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___mul__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___mul____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___mul____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___imul____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___imul__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___imul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sm__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___imul__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___imul____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___imul____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___imul__'.\n" - " Possible C/C++ prototypes are:\n" - " operator *=(CvMat *,CvArr *)\n" - " operator *=(CvMat *,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___div____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___div__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___div__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sd___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___div__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___div____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___div____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___idiv____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___idiv__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___idiv__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat_operator_Sd__Se___SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___idiv__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___idiv____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___idiv____SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___idiv__'.\n" - " Possible C/C++ prototypes are:\n" - " operator /=(CvMat *,CvArr *)\n" - " operator /=(CvMat *,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___radd____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___radd__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat___radd____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rsub____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rsub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat___rsub____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rdiv____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rdiv__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat___rdiv____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rmul____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rmul__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)CvMat___rmul____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___radd____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___radd__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat___radd____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___radd____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___radd__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___radd__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___radd____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___radd__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___radd____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___radd____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___radd____SWIG_2(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rsub____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rsub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat___rsub____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rsub____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rsub__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rsub__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rsub____SWIG_2(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rsub__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___rsub____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___rsub____SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rsub____SWIG_2(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rmul____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rmul__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rmul__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rmul____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rmul__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___rmul____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rmul____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ror____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ror__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat___ror____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ror____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___ror__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___ror__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___ror____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___ror__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___ror____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___ror____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rand____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rand__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat___rand____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rand____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rand__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rand__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rand____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rand__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___rand____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rand____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rxor____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvScalar arg2 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rxor__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - try { - result = (CvMat *)CvMat___rxor____SWIG_0(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rxor____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rxor__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rxor__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rxor____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rxor__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvScalar_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___rxor____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rxor____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___req__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___req__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___req__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___req__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rgt__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rgt__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rgt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rgt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rge__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rge__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rge__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rge__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rlt__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rlt__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rlt__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rlt__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rle__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rle__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rle__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rle__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rne__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rne__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rne__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rdiv____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___rdiv__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___rdiv__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___rdiv____SWIG_1(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___rdiv__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - _v = CvArr_Check( argv[1] ); - } - if (_v) { - return _wrap_CvMat___rdiv____SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___rdiv____SWIG_1(self, args); - } - } - } - -fail: - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; -} - - -SWIGINTERN PyObject *_wrap_CvMat___pow__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - double arg2 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___pow__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMat___pow__" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = (CvMat *)CvMat___pow__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat___str__",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (char *)CvMat___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___setitem____SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - double arg3 ; - bool freearg1 = false ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMat___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMat___setitem__" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - CvMat___setitem____SWIG_0(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___setitem____SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvPoint arg3 ; - bool freearg1 = false ; - CvPoint temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMat___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - CvMat___setitem____SWIG_1(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___setitem____SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvPoint2D32f arg3 ; - bool freearg1 = false ; - CvPoint2D32f temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMat___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ff", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - CvMat___setitem____SWIG_2(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___setitem____SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvScalar arg3 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMat___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - try { - CvMat___setitem____SWIG_3(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___setitem____SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMat___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - CvMat___setitem____SWIG_4(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___setitem__(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvPoint, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___setitem____SWIG_1(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvPoint2D32f, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMat___setitem____SWIG_2(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - { - _v = CvScalar_Check( argv[2] ); - } - if (_v) { - return _wrap_CvMat___setitem____SWIG_3(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - { - _v = CvArr_Check( argv[2] ); - } - if (_v) { - return _wrap_CvMat___setitem____SWIG_4(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMat___setitem____SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMat___setitem__'.\n" - " Possible C/C++ prototypes are:\n" - " __setitem__(CvMat *,PyObject *,double)\n" - " __setitem__(CvMat *,PyObject *,CvPoint)\n" - " __setitem__(CvMat *,PyObject *,CvPoint2D32f)\n" - " __setitem__(CvMat *,PyObject *,CvScalar)\n" - " __setitem__(CvMat *,PyObject *,CvArr *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat___getitem__",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - { - try { - result = (PyObject *)CvMat___getitem__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = result; - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat___invert__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat___invert__",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvMat *)CvMat___invert__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_imageData_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_imageData_set",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - arg2 = obj1; - { - try { - CvMat_imageData_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_imageData_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_imageData_get",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (PyObject *)CvMat_imageData_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = result; - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *CvMat_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMat, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMat_data_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - uchar *arg2 = (uchar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_data_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_ptr_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_ptr_set" "', argument " "2"" of type '" "uchar *""'"); - } - arg2 = reinterpret_cast< uchar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_data_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_ptr_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - result = (uchar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_s_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - short *arg2 = (short *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_data_s_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_s_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_short, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_s_set" "', argument " "2"" of type '" "short *""'"); - } - arg2 = reinterpret_cast< short * >(argp2); - if (arg1) (arg1)->s = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_s_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - short *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_data_s_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_s_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - result = (short *) ((arg1)->s); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_short, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_i_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_data_i_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_i_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_i_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->i = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_i_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_data_i_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_i_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - result = (int *) ((arg1)->i); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_fl_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_data_fl_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_fl_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_fl_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->fl = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_fl_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_data_fl_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_fl_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - result = (float *) ((arg1)->fl); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_db_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMat_data_db_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_db_set" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMat_data_db_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->db = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMat_data_db_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMat_data_db_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMat_data_db_get" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - result = (double *) ((arg1)->db); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMat_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMat_data")) SWIG_fail; - { - try { - result = (CvMat_data *)new CvMat_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat_data, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMat_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat_data *arg1 = (CvMat_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMat_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMat_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMat_data" "', argument " "1"" of type '" "CvMat_data *""'"); - } - arg1 = reinterpret_cast< CvMat_data * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMat_data_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMat_data, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvMat__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMat result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvMat",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvMat" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMat" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMat" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvMat" "', argument " "4"" of type '" "void *""'"); - } - { - try { - result = cvMat(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvMat(static_cast< const CvMat& >(result))), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMat__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMat",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvMat" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMat" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMat" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = cvMat(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvMat(static_cast< const CvMat& >(result))), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMat(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvMat__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[3], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvMat__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvMat'.\n" - " Possible C/C++ prototypes are:\n" - " cvMat(int,int,int,void *)\n" - " cvMat(int,int,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvmGet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - int arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvmGet",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvmGet" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvmGet" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvmGet((CvMat const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvmSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - int arg3 ; - double arg4 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvmSet",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvmSet" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvmSet" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvmSet" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - cvmSet(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvIplDepth(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvIplDepth",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvIplDepth" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (int)cvIplDepth(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_type_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_type_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - result = (int) ((arg1)->type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_dims_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_dims_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dims_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->dims = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_dims_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_dims_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dims_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - result = (int) ((arg1)->dims); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_refcount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_refcount_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_refcount_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_refcount_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->refcount = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_refcount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_refcount_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_refcount_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - result = (int *) ((arg1)->refcount); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_hdr_refcount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_hdr_refcount_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_hdr_refcount_set" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_hdr_refcount_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->hdr_refcount = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_hdr_refcount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_hdr_refcount_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_hdr_refcount_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - result = (int) ((arg1)->hdr_refcount); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_dim_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatND_dim *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_dim_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - result = (CvMatND_dim *)(CvMatND_dim *) ((arg1)->dim); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatND_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_data_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_get" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - result = (CvMatND_data *)& ((arg1)->data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_data, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMatND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMatND",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatND" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - { - try { - delete_CvMatND(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMatND_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMatND, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMatND_dim_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_dim_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_size_set" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = reinterpret_cast< CvMatND_dim * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_dim_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_dim_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_dim_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_size_get" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = reinterpret_cast< CvMatND_dim * >(argp1); - result = (int) ((arg1)->size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_dim_step_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_dim_step_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_step_set" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = reinterpret_cast< CvMatND_dim * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatND_dim_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->step = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_dim_step_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_dim_step_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_dim, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_dim_step_get" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = reinterpret_cast< CvMatND_dim * >(argp1); - result = (int) ((arg1)->step); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatND_dim(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_dim *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMatND_dim")) SWIG_fail; - { - try { - result = (CvMatND_dim *)new CvMatND_dim(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_dim, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMatND_dim(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_dim *arg1 = (CvMatND_dim *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMatND_dim",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_dim, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatND_dim" "', argument " "1"" of type '" "CvMatND_dim *""'"); - } - arg1 = reinterpret_cast< CvMatND_dim * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMatND_dim_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMatND_dim, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMatND_data_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - uchar *arg2 = (uchar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_data_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_ptr_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_ptr_set" "', argument " "2"" of type '" "uchar *""'"); - } - arg2 = reinterpret_cast< uchar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_data_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_ptr_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - result = (uchar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_fl_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_data_fl_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_fl_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_fl_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->fl = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_fl_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_data_fl_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_fl_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - result = (float *) ((arg1)->fl); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_db_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_data_db_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_db_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_db_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->db = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_db_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_data_db_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_db_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - result = (double *) ((arg1)->db); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_i_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_data_i_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_i_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_i_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->i = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_i_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_data_i_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_i_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - result = (int *) ((arg1)->i); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_s_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - short *arg2 = (short *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatND_data_s_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_s_set" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_short, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatND_data_s_set" "', argument " "2"" of type '" "short *""'"); - } - arg2 = reinterpret_cast< short * >(argp2); - if (arg1) (arg1)->s = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatND_data_s_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - short *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatND_data_s_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatND_data_s_get" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - result = (short *) ((arg1)->s); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_short, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatND_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMatND_data")) SWIG_fail; - { - try { - result = (CvMatND_data *)new CvMatND_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND_data, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMatND_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND_data *arg1 = (CvMatND_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMatND_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatND_data" "', argument " "1"" of type '" "CvMatND_data *""'"); - } - arg1 = reinterpret_cast< CvMatND_data * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMatND_data_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMatND_data, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSparseMat_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_type_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_type_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int) ((arg1)->type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_dims_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_dims_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_dims_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->dims = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_dims_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_dims_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_dims_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int) ((arg1)->dims); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_refcount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_refcount_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_refcount_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMat_refcount_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->refcount = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_refcount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_refcount_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_refcount_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int *) ((arg1)->refcount); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_hdr_refcount_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_hdr_refcount_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hdr_refcount_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_hdr_refcount_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->hdr_refcount = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_hdr_refcount_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_hdr_refcount_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hdr_refcount_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int) ((arg1)->hdr_refcount); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_heap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_heap_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_heap_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->heap = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_heap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_heap_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_heap_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (CvSet *) ((arg1)->heap); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_hashtable_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void **arg2 = (void **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - void *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_hashtable_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashtable_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer2 = (void *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->hashtable = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_hashtable_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - void **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_hashtable_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashtable_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (void **) ((arg1)->hashtable); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_hashsize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_hashsize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashsize_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_hashsize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->hashsize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_hashsize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_hashsize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_hashsize_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int) ((arg1)->hashsize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_valoffset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_valoffset_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_valoffset_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_valoffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->valoffset = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_valoffset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_valoffset_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_valoffset_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int) ((arg1)->valoffset); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_idxoffset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_idxoffset_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_idxoffset_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMat_idxoffset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->idxoffset = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_idxoffset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_idxoffset_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_idxoffset_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int) ((arg1)->idxoffset); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - int *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMat_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_size_set" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMat_size_set" "', argument " "2"" of type '" "int [32]""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) arg1->size[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""size""' of type '""int [32]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMat_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMat_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMat_size_get" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - result = (int *)(int *) ((arg1)->size); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSparseMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSparseMat",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSparseMat" "', argument " "1"" of type '" "CvSparseMat *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - { - try { - delete_CvSparseMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSparseMat_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSparseMat, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSparseNode_hashval_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - unsigned int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - unsigned int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseNode_hashval_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_hashval_set" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = reinterpret_cast< CvSparseNode * >(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseNode_hashval_set" "', argument " "2"" of type '" "unsigned int""'"); - } - arg2 = static_cast< unsigned int >(val2); - if (arg1) (arg1)->hashval = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseNode_hashval_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - unsigned int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseNode_hashval_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_hashval_get" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = reinterpret_cast< CvSparseNode * >(argp1); - result = (unsigned int) ((arg1)->hashval); - resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseNode_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseNode_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_next_set" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = reinterpret_cast< CvSparseNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSparseNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseNode_next_set" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = reinterpret_cast< CvSparseNode * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseNode_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSparseNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseNode_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseNode_next_get" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = reinterpret_cast< CvSparseNode * >(argp1); - result = (CvSparseNode *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSparseNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSparseNode")) SWIG_fail; - { - try { - result = (CvSparseNode *)new CvSparseNode(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSparseNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseNode *arg1 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSparseNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSparseNode" "', argument " "1"" of type '" "CvSparseNode *""'"); - } - arg1 = reinterpret_cast< CvSparseNode * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSparseNode_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSparseNode, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSparseMatIterator_mat_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - CvSparseMat *arg2 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMatIterator_mat_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_mat_set" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSparseMat, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMatIterator_mat_set" "', argument " "2"" of type '" "CvSparseMat *""'"); - } - arg2 = reinterpret_cast< CvSparseMat * >(argp2); - if (arg1) (arg1)->mat = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMatIterator_mat_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSparseMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMatIterator_mat_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_mat_get" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - result = (CvSparseMat *) ((arg1)->mat); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMatIterator_node_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - CvSparseNode *arg2 = (CvSparseNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMatIterator_node_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_node_set" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSparseNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSparseMatIterator_node_set" "', argument " "2"" of type '" "CvSparseNode *""'"); - } - arg2 = reinterpret_cast< CvSparseNode * >(argp2); - if (arg1) (arg1)->node = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMatIterator_node_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSparseNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMatIterator_node_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_node_get" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - result = (CvSparseNode *) ((arg1)->node); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMatIterator_curidx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSparseMatIterator_curidx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_curidx_set" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSparseMatIterator_curidx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->curidx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSparseMatIterator_curidx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSparseMatIterator_curidx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSparseMatIterator_curidx_get" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - result = (int) ((arg1)->curidx); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSparseMatIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSparseMatIterator")) SWIG_fail; - { - try { - result = (CvSparseMatIterator *)new CvSparseMatIterator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseMatIterator, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSparseMatIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSparseMatIterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSparseMatIterator" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSparseMatIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSparseMatIterator, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHistogram_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHistogram_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_type_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHistogram_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHistogram_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_type_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (int) ((arg1)->type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_bins_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHistogram_bins_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_bins_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->bins = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_bins_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvArr *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHistogram_bins_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_bins_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (CvArr *) ((arg1)->bins); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_thresh_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - float (*arg2)[2] ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHistogram_thresh_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_a_2__float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHistogram_thresh_set" "', argument " "2"" of type '" "float [32][2]""'"); - } - arg2 = reinterpret_cast< float (*)[2] >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)2; ++jj) arg1->thresh[ii][jj] = arg2[ii][jj]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""thresh""' of type '""float [32][2]""'"); - } - } - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""thresh""' of type '""float [32][2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_thresh_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float (*result)[2] = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHistogram_thresh_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (float (*)[2])(float (*)[2]) ((arg1)->thresh); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_2__float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_thresh2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHistogram_thresh2_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh2_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->thresh2 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_thresh2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHistogram_thresh2_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_thresh2_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (float **) ((arg1)->thresh2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_mat_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - CvMatND *arg2 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHistogram_mat_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_mat_set" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHistogram_mat_set" "', argument " "2"" of type '" "CvMatND *""'"); - } - arg2 = reinterpret_cast< CvMatND * >(argp2); - if (arg1) (arg1)->mat = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHistogram_mat_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatND *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHistogram_mat_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHistogram_mat_get" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - result = (CvMatND *)& ((arg1)->mat); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHistogram(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHistogram",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHistogram" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - try { - delete_CvHistogram(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHistogram_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHistogram, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvRect_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRect_x_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_x_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_x_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->x = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRect_x_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_x_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - result = (int) ((arg1)->x); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRect_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_y_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_y_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRect_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_y_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - result = (int) ((arg1)->y); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRect_width_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_width_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->width = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRect_width_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_width_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - result = (int) ((arg1)->width); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRect_height_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_height_set" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRect_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->height = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRect_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRect_height_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRect_height_get" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - result = (int) ((arg1)->height); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvRect")) SWIG_fail; - { - try { - result = (CvRect *)new CvRect(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvRect",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRect" "', argument " "1"" of type '" "CvRect *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvRect_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvRect, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvRect result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvRect",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRect" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRect" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRect" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvRect" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = cvRect(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvRect(static_cast< const CvRect& >(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRectToROI(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect arg1 ; - int arg2 ; - CvRect temp1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplROI result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvRectToROI",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"iiii", & temp1.x, & temp1.y, & temp1.width, & temp1.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRectToROI" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvRectToROI(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new IplROI(static_cast< const IplROI& >(result))), SWIGTYPE_p__IplROI, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvROIToRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplROI arg1 ; - void *argp1 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvROIToRect",&obj0)) SWIG_fail; - { - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p__IplROI, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvROIToRect" "', argument " "1"" of type '" "IplROI""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvROIToRect" "', argument " "1"" of type '" "IplROI""'"); - } else { - IplROI * temp = reinterpret_cast< IplROI * >(argp1); - arg1 = *temp; - if (SWIG_IsNewObj(res1)) delete temp; - } - } - { - try { - result = cvROIToRect(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvRect(static_cast< const CvRect& >(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTermCriteria_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTermCriteria_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_type_set" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTermCriteria_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTermCriteria_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTermCriteria_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_type_get" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - result = (int) ((arg1)->type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTermCriteria_max_iter_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTermCriteria_max_iter_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_max_iter_set" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTermCriteria_max_iter_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->max_iter = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTermCriteria_max_iter_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTermCriteria_max_iter_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_max_iter_get" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - result = (int) ((arg1)->max_iter); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTermCriteria_epsilon_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTermCriteria_epsilon_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_epsilon_set" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTermCriteria_epsilon_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->epsilon = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTermCriteria_epsilon_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTermCriteria_epsilon_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTermCriteria_epsilon_get" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - result = (double) ((arg1)->epsilon); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTermCriteria(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTermCriteria")) SWIG_fail; - { - try { - result = (CvTermCriteria *)new CvTermCriteria(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTermCriteria(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria *arg1 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTermCriteria",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTermCriteria" "', argument " "1"" of type '" "CvTermCriteria *""'"); - } - arg1 = reinterpret_cast< CvTermCriteria * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTermCriteria_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTermCriteria, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvTermCriteria(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - double arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvTermCriteria result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvTermCriteria",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvTermCriteria" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvTermCriteria" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvTermCriteria" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = cvTermCriteria(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvTermCriteria(static_cast< const CvTermCriteria& >(result))), SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint_x_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_x_set" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint_x_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->x = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint_x_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_x_get" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - result = (int) ((arg1)->x); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_y_set" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint_y_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint_y_get" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - result = (int) ((arg1)->y); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint___str__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint___str__" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - { - try { - result = (char *)CvPoint___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint___repr__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint___repr__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint___repr__" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - { - try { - result = (char *)CvPoint___repr__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPoint")) SWIG_fail; - { - try { - result = (CvPoint *)new CvPoint(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint *arg1 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPoint",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint" "', argument " "1"" of type '" "CvPoint *""'"); - } - arg1 = reinterpret_cast< CvPoint * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPoint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPoint, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPoint result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvPoint",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvPoint(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint(static_cast< const CvPoint& >(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D32f_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint2D32f_x_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_x_set" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D32f_x_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->x = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D32f_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint2D32f_x_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_x_get" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - result = (float) ((arg1)->x); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D32f_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint2D32f_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_y_set" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D32f_y_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D32f_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint2D32f_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f_y_get" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - result = (float) ((arg1)->y); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D32f___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint2D32f___str__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f___str__" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - { - try { - result = (char *)CvPoint2D32f___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D32f___repr__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint2D32f___repr__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D32f___repr__" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - { - try { - result = (char *)CvPoint2D32f___repr__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPoint2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPoint2D32f")) SWIG_fail; - { - try { - result = (CvPoint2D32f *)new CvPoint2D32f(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPoint2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPoint2D32f",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint2D32f" "', argument " "1"" of type '" "CvPoint2D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPoint2D32f_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPoint2D32f, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvPoint2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPoint2D32f result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvPoint2D32f",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint2D32f" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint2D32f" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = cvPoint2D32f(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint2D32f(static_cast< const CvPoint2D32f& >(result))), SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPointTo32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvPoint temp1 ; - PyObject * obj0 = 0 ; - CvPoint2D32f result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvPointTo32f",&obj0)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - try { - result = cvPointTo32f(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint2D32f(static_cast< const CvPoint2D32f& >(result))), SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPointFrom32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f arg1 ; - CvPoint2D32f temp1 ; - PyObject * obj0 = 0 ; - CvPoint result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvPointFrom32f",&obj0)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ff", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg1 = *ptr; - } - } - { - try { - result = cvPointFrom32f(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint(static_cast< const CvPoint& >(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D32f_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint3D32f_x_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_x_set" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D32f_x_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->x = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D32f_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint3D32f_x_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_x_get" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - result = (float) ((arg1)->x); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D32f_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint3D32f_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_y_set" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D32f_y_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D32f_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint3D32f_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_y_get" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - result = (float) ((arg1)->y); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D32f_z_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint3D32f_z_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_z_set" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D32f_z_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->z = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D32f_z_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint3D32f_z_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D32f_z_get" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - result = (float) ((arg1)->z); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPoint3D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPoint3D32f")) SWIG_fail; - { - try { - result = (CvPoint3D32f *)new CvPoint3D32f(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint3D32f, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPoint3D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPoint3D32f",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint3D32f" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPoint3D32f_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPoint3D32f, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvPoint3D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvPoint3D32f result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvPoint3D32f",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint3D32f" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint3D32f" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPoint3D32f" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = cvPoint3D32f(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint3D32f(static_cast< const CvPoint3D32f& >(result))), SWIGTYPE_p_CvPoint3D32f, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D64f_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint2D64f_x_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_x_set" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D64f * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D64f_x_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->x = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D64f_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint2D64f_x_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_x_get" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D64f * >(argp1); - result = (double) ((arg1)->x); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D64f_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint2D64f_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_y_set" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D64f * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint2D64f_y_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint2D64f_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint2D64f_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint2D64f_y_get" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D64f * >(argp1); - result = (double) ((arg1)->y); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPoint2D64f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D64f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPoint2D64f")) SWIG_fail; - { - try { - result = (CvPoint2D64f *)new CvPoint2D64f(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D64f, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPoint2D64f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D64f *arg1 = (CvPoint2D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPoint2D64f",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D64f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint2D64f" "', argument " "1"" of type '" "CvPoint2D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint2D64f * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPoint2D64f_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPoint2D64f, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvPoint2D64f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPoint2D64f result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvPoint2D64f",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint2D64f" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint2D64f" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = cvPoint2D64f(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint2D64f(static_cast< const CvPoint2D64f& >(result))), SWIGTYPE_p_CvPoint2D64f, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D64f_x_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint3D64f_x_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_x_set" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D64f_x_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->x = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D64f_x_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint3D64f_x_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_x_get" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - result = (double) ((arg1)->x); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D64f_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint3D64f_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_y_set" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D64f_y_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D64f_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint3D64f_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_y_get" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - result = (double) ((arg1)->y); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D64f_z_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPoint3D64f_z_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_z_set" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPoint3D64f_z_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->z = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPoint3D64f_z_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPoint3D64f_z_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPoint3D64f_z_get" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - result = (double) ((arg1)->z); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPoint3D64f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPoint3D64f")) SWIG_fail; - { - try { - result = (CvPoint3D64f *)new CvPoint3D64f(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint3D64f, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPoint3D64f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D64f *arg1 = (CvPoint3D64f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPoint3D64f",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D64f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPoint3D64f" "', argument " "1"" of type '" "CvPoint3D64f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D64f * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPoint3D64f_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPoint3D64f, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvPoint3D64f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvPoint3D64f result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvPoint3D64f",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPoint3D64f" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPoint3D64f" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPoint3D64f" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = cvPoint3D64f(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint3D64f(static_cast< const CvPoint3D64f& >(result))), SWIGTYPE_p_CvPoint3D64f, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize *arg1 = (CvSize *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSize_width_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_width_set" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = reinterpret_cast< CvSize * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize_width_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->width = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize *arg1 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSize_width_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_width_get" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = reinterpret_cast< CvSize * >(argp1); - result = (int) ((arg1)->width); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize *arg1 = (CvSize *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSize_height_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_height_set" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = reinterpret_cast< CvSize * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize_height_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->height = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize *arg1 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSize_height_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize_height_get" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = reinterpret_cast< CvSize * >(argp1); - result = (int) ((arg1)->height); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSize")) SWIG_fail; - { - try { - result = (CvSize *)new CvSize(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize *arg1 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSize",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSize" "', argument " "1"" of type '" "CvSize *""'"); - } - arg1 = reinterpret_cast< CvSize * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSize_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSize, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSize result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSize",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSize" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSize" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvSize(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSize(static_cast< const CvSize& >(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize2D32f_width_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSize2D32f_width_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_width_set" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = reinterpret_cast< CvSize2D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize2D32f_width_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->width = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize2D32f_width_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSize2D32f_width_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_width_get" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = reinterpret_cast< CvSize2D32f * >(argp1); - result = (float) ((arg1)->width); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize2D32f_height_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSize2D32f_height_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_height_set" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = reinterpret_cast< CvSize2D32f * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSize2D32f_height_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->height = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSize2D32f_height_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSize2D32f_height_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSize2D32f_height_get" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = reinterpret_cast< CvSize2D32f * >(argp1); - result = (float) ((arg1)->height); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSize2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSize2D32f")) SWIG_fail; - { - try { - result = (CvSize2D32f *)new CvSize2D32f(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize2D32f, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSize2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize2D32f *arg1 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSize2D32f",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSize2D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSize2D32f" "', argument " "1"" of type '" "CvSize2D32f *""'"); - } - arg1 = reinterpret_cast< CvSize2D32f * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSize2D32f_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSize2D32f, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvSize2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSize2D32f result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSize2D32f",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSize2D32f" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSize2D32f" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = cvSize2D32f(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSize2D32f(static_cast< const CvSize2D32f& >(result))), SWIGTYPE_p_CvSize2D32f, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBox2D_center_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBox2D_center_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_center_set" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBox2D_center_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - if (arg1) (arg1)->center = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBox2D_center_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBox2D_center_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_center_get" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - result = (CvPoint2D32f *)& ((arg1)->center); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBox2D_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - CvSize2D32f *arg2 = (CvSize2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBox2D_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_size_set" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBox2D_size_set" "', argument " "2"" of type '" "CvSize2D32f *""'"); - } - arg2 = reinterpret_cast< CvSize2D32f * >(argp2); - if (arg1) (arg1)->size = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBox2D_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBox2D_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_size_get" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - result = (CvSize2D32f *)& ((arg1)->size); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBox2D_angle_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBox2D_angle_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_angle_set" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBox2D_angle_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->angle = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBox2D_angle_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBox2D_angle_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBox2D_angle_get" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - result = (float) ((arg1)->angle); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBox2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvBox2D")) SWIG_fail; - { - try { - result = (CvBox2D *)new CvBox2D(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBox2D, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvBox2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D *arg1 = (CvBox2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvBox2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBox2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBox2D" "', argument " "1"" of type '" "CvBox2D *""'"); - } - arg1 = reinterpret_cast< CvBox2D * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvBox2D_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvBox2D, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvLineIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - uchar *arg2 = (uchar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvLineIterator_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_ptr_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvLineIterator_ptr_set" "', argument " "2"" of type '" "uchar *""'"); - } - arg2 = reinterpret_cast< uchar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvLineIterator_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_ptr_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - result = (uchar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_err_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvLineIterator_err_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_err_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_err_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->err = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_err_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvLineIterator_err_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_err_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - result = (int) ((arg1)->err); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_plus_delta_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvLineIterator_plus_delta_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_delta_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_plus_delta_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->plus_delta = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_plus_delta_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvLineIterator_plus_delta_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_delta_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - result = (int) ((arg1)->plus_delta); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_minus_delta_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvLineIterator_minus_delta_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_delta_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_minus_delta_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->minus_delta = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_minus_delta_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvLineIterator_minus_delta_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_delta_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - result = (int) ((arg1)->minus_delta); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_plus_step_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvLineIterator_plus_step_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_step_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_plus_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->plus_step = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_plus_step_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvLineIterator_plus_step_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_plus_step_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - result = (int) ((arg1)->plus_step); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_minus_step_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvLineIterator_minus_step_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_step_set" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvLineIterator_minus_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->minus_step = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvLineIterator_minus_step_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvLineIterator_minus_step_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvLineIterator_minus_step_get" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - result = (int) ((arg1)->minus_step); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvLineIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvLineIterator")) SWIG_fail; - { - try { - result = (CvLineIterator *)new CvLineIterator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvLineIterator, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvLineIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLineIterator *arg1 = (CvLineIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvLineIterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLineIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvLineIterator" "', argument " "1"" of type '" "CvLineIterator *""'"); - } - arg1 = reinterpret_cast< CvLineIterator * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvLineIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvLineIterator, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSlice_start_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice *arg1 = (CvSlice *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSlice_start_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_start_index_set" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = reinterpret_cast< CvSlice * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSlice_start_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->start_index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSlice_start_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice *arg1 = (CvSlice *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSlice_start_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_start_index_get" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = reinterpret_cast< CvSlice * >(argp1); - result = (int) ((arg1)->start_index); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSlice_end_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice *arg1 = (CvSlice *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSlice_end_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_end_index_set" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = reinterpret_cast< CvSlice * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSlice_end_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->end_index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSlice_end_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice *arg1 = (CvSlice *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSlice_end_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSlice, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSlice_end_index_get" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = reinterpret_cast< CvSlice * >(argp1); - result = (int) ((arg1)->end_index); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSlice")) SWIG_fail; - { - try { - result = (CvSlice *)new CvSlice(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSlice, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice *arg1 = (CvSlice *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSlice",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSlice, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSlice" "', argument " "1"" of type '" "CvSlice *""'"); - } - arg1 = reinterpret_cast< CvSlice * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSlice_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSlice, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSlice result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSlice",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSlice" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSlice" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvSlice(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSlice(static_cast< const CvSlice& >(result))), SWIGTYPE_p_CvSlice, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvScalar_val_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - double *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvScalar_val_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar_val_set" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvScalar_val_set" "', argument " "2"" of type '" "double [4]""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""double [4]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvScalar_val_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvScalar_val_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar_val_get" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - result = (double *)(double *) ((arg1)->val); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvScalar___str__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvScalar___str__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___str__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - { - try { - result = (char *)CvScalar___str__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvScalar___repr__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvScalar___repr__",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___repr__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - { - try { - result = (char *)CvScalar___repr__(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvScalar___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvScalar___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___getitem__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvScalar___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (double)CvScalar___getitem__(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvScalar___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - int arg2 ; - double arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvScalar___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvScalar___setitem__" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvScalar___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvScalar___setitem__" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - CvScalar___setitem__(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvScalar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvScalar")) SWIG_fail; - { - try { - result = (CvScalar *)new CvScalar(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvScalar, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvScalar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvScalar",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvScalar" "', argument " "1"" of type '" "CvScalar *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvScalar_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvScalar, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvScalar__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double arg3 ; - double arg4 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvScalar",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvScalar" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvScalar" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvScalar" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - result = cvScalar(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScalar__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvScalar",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvScalar" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvScalar" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = cvScalar(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScalar__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvScalar",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvScalar" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - result = cvScalar(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScalar__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvScalar",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = cvScalar(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScalar(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_3(self, args); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_2(self, args); - } - } - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvScalar__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvScalar'.\n" - " Possible C/C++ prototypes are:\n" - " cvScalar(double,double,double,double)\n" - " cvScalar(double,double,double)\n" - " cvScalar(double,double)\n" - " cvScalar(double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRealScalar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRealScalar",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRealScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = cvRealScalar(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScalarAll(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvScalarAll",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvScalarAll" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - { - try { - result = cvScalarAll(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemBlock_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemBlock_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_prev_set" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = reinterpret_cast< CvMemBlock * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemBlock_prev_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = reinterpret_cast< CvMemBlock * >(argp2); - if (arg1) (arg1)->prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemBlock_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemBlock_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_prev_get" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = reinterpret_cast< CvMemBlock * >(argp1); - result = (CvMemBlock *) ((arg1)->prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemBlock_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemBlock_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_next_set" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = reinterpret_cast< CvMemBlock * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemBlock_next_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = reinterpret_cast< CvMemBlock * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemBlock_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemBlock_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemBlock_next_get" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = reinterpret_cast< CvMemBlock * >(argp1); - result = (CvMemBlock *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMemBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMemBlock")) SWIG_fail; - { - try { - result = (CvMemBlock *)new CvMemBlock(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMemBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemBlock *arg1 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMemBlock",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMemBlock" "', argument " "1"" of type '" "CvMemBlock *""'"); - } - arg1 = reinterpret_cast< CvMemBlock * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMemBlock_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMemBlock, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMemStorage_signature_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStorage_signature_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_signature_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStorage_signature_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->signature = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_signature_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStorage_signature_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_signature_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (int) ((arg1)->signature); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_bottom_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStorage_bottom_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_bottom_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStorage_bottom_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = reinterpret_cast< CvMemBlock * >(argp2); - if (arg1) (arg1)->bottom = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_bottom_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStorage_bottom_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_bottom_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (CvMemBlock *) ((arg1)->bottom); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_top_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStorage_top_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_top_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStorage_top_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = reinterpret_cast< CvMemBlock * >(argp2); - if (arg1) (arg1)->top = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_top_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStorage_top_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_top_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (CvMemBlock *) ((arg1)->top); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_parent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStorage_parent_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_parent_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStorage_parent_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->parent = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_parent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStorage_parent_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_parent_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (CvMemStorage *) ((arg1)->parent); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_block_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStorage_block_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_block_size_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStorage_block_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->block_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_block_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStorage_block_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_block_size_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (int) ((arg1)->block_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_free_space_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStorage_free_space_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_free_space_set" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStorage_free_space_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->free_space = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStorage_free_space_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStorage_free_space_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStorage_free_space_get" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - result = (int) ((arg1)->free_space); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMemStorage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMemStorage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMemStorage" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - { - try { - delete_CvMemStorage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMemStorage_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMemStorage, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMemStoragePos_top_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - CvMemBlock *arg2 = (CvMemBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStoragePos_top_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_top_set" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = reinterpret_cast< CvMemStoragePos * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMemStoragePos_top_set" "', argument " "2"" of type '" "CvMemBlock *""'"); - } - arg2 = reinterpret_cast< CvMemBlock * >(argp2); - if (arg1) (arg1)->top = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStoragePos_top_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStoragePos_top_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_top_get" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = reinterpret_cast< CvMemStoragePos * >(argp1); - result = (CvMemBlock *) ((arg1)->top); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStoragePos_free_space_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMemStoragePos_free_space_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_free_space_set" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = reinterpret_cast< CvMemStoragePos * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMemStoragePos_free_space_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->free_space = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMemStoragePos_free_space_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMemStoragePos_free_space_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMemStoragePos_free_space_get" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = reinterpret_cast< CvMemStoragePos * >(argp1); - result = (int) ((arg1)->free_space); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMemStoragePos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStoragePos *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMemStoragePos")) SWIG_fail; - { - try { - result = (CvMemStoragePos *)new CvMemStoragePos(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStoragePos, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMemStoragePos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStoragePos *arg1 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMemStoragePos",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStoragePos, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMemStoragePos" "', argument " "1"" of type '" "CvMemStoragePos *""'"); - } - arg1 = reinterpret_cast< CvMemStoragePos * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMemStoragePos_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMemStoragePos, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeqBlock_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqBlock_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_prev_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqBlock_prev_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqBlock_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_prev_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - result = (CvSeqBlock *) ((arg1)->prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqBlock_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_next_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqBlock_next_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqBlock_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_next_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - result = (CvSeqBlock *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_start_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqBlock_start_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_start_index_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqBlock_start_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->start_index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_start_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqBlock_start_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_start_index_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - result = (int) ((arg1)->start_index); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqBlock_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_count_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqBlock_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqBlock_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_count_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_data_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqBlock_data_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_data_set" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqBlock_data_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->data = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqBlock_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqBlock_data_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqBlock_data_get" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - result = (schar *) ((arg1)->data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeqBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeqBlock")) SWIG_fail; - { - try { - result = (CvSeqBlock *)new CvSeqBlock(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeqBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqBlock *arg1 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeqBlock",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeqBlock" "', argument " "1"" of type '" "CvSeqBlock *""'"); - } - arg1 = reinterpret_cast< CvSeqBlock * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeqBlock_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSeqBlock, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_flags_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_flags_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_header_size_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_header_size_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_h_prev_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_h_prev_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_h_next_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_h_next_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_v_prev_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_v_prev_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_v_next_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_v_next_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_total_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_total_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_elem_size_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_elem_size_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_block_max_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_block_max_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_ptr_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_ptr_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_delta_elems_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_delta_elems_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_storage_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_storage_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_free_blocks_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_free_blocks_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_first_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_first_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq")) SWIG_fail; - { - try { - result = (CvSeq *)new CvSeq(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSeq, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSetElem_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSetElem *arg1 = (CvSetElem *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSetElem_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_flags_set" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = reinterpret_cast< CvSetElem * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSetElem_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSetElem_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSetElem *arg1 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSetElem_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_flags_get" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = reinterpret_cast< CvSetElem * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSetElem_next_free_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSetElem *arg1 = (CvSetElem *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSetElem_next_free_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_next_free_set" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = reinterpret_cast< CvSetElem * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSetElem_next_free_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = reinterpret_cast< CvSetElem * >(argp2); - if (arg1) (arg1)->next_free = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSetElem_next_free_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSetElem *arg1 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSetElem_next_free_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSetElem_next_free_get" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = reinterpret_cast< CvSetElem * >(argp1); - result = (CvSetElem *) ((arg1)->next_free); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSetElem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSetElem")) SWIG_fail; - { - try { - result = (CvSetElem *)new CvSetElem(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSetElem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSetElem *arg1 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSetElem",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSetElem" "', argument " "1"" of type '" "CvSetElem *""'"); - } - arg1 = reinterpret_cast< CvSetElem * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSetElem_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSetElem, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSet_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_flags_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_flags_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_header_size_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_header_size_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_h_prev_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_h_prev_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_h_next_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_h_next_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_v_prev_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_v_prev_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_v_next_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_v_next_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_total_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_total_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_elem_size_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_elem_size_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_block_max_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_block_max_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_ptr_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_ptr_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_delta_elems_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_delta_elems_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_storage_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_storage_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_free_blocks_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_free_blocks_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_first_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_first_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_free_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_free_elems_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSet_free_elems_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = reinterpret_cast< CvSetElem * >(argp2); - if (arg1) (arg1)->free_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_free_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_free_elems_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (CvSetElem *) ((arg1)->free_elems); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_active_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSet_active_count_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSet_active_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->active_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSet_active_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSet_active_count_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - result = (int) ((arg1)->active_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSet")) SWIG_fail; - { - try { - result = (CvSet *)new CvSet(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSet",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSet_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSet, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvGraphEdge_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphEdge_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_flags_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphEdge_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphEdge_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_flags_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_weight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphEdge_weight_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_weight_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphEdge_weight_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->weight = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_weight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphEdge_weight_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_weight_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - result = (float) ((arg1)->weight); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - CvGraphEdge **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphEdge_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_next_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphEdge_next_set" "', argument " "2"" of type '" "CvGraphEdge *[2]""'"); - } - arg2 = reinterpret_cast< CvGraphEdge ** >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->next[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""next""' of type '""CvGraphEdge *[2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphEdge **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphEdge_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_next_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - result = (CvGraphEdge **)(CvGraphEdge **) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_vtx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - CvGraphVtx **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphEdge_vtx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_vtx_set" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphEdge_vtx_set" "', argument " "2"" of type '" "CvGraphVtx *[2]""'"); - } - arg2 = reinterpret_cast< CvGraphVtx ** >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->vtx[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""vtx""' of type '""CvGraphVtx *[2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphEdge_vtx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphVtx **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphEdge_vtx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphEdge_vtx_get" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - result = (CvGraphVtx **)(CvGraphVtx **) ((arg1)->vtx); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvGraphVtx, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvGraphEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvGraphEdge")) SWIG_fail; - { - try { - result = (CvGraphEdge *)new CvGraphEdge(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvGraphEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphEdge *arg1 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvGraphEdge",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphEdge" "', argument " "1"" of type '" "CvGraphEdge *""'"); - } - arg1 = reinterpret_cast< CvGraphEdge * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvGraphEdge_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvGraphEdge, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvGraphVtx_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphVtx_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_flags_set" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphVtx_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphVtx_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_flags_get" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphVtx_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_first_set" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphVtx_first_set" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = reinterpret_cast< CvGraphEdge * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphVtx_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx_first_get" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx * >(argp1); - result = (CvGraphEdge *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvGraphVtx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvGraphVtx")) SWIG_fail; - { - try { - result = (CvGraphVtx *)new CvGraphVtx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvGraphVtx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx *arg1 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvGraphVtx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphVtx" "', argument " "1"" of type '" "CvGraphVtx *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvGraphVtx_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvGraphVtx, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvGraphVtx2D_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphVtx2D_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_flags_set" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphVtx2D_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx2D_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphVtx2D_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_flags_get" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx2D_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphVtx2D_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_first_set" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphVtx2D_first_set" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = reinterpret_cast< CvGraphEdge * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx2D_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphVtx2D_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_first_get" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - result = (CvGraphEdge *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx2D_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphVtx2D_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_ptr_set" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphVtx2D_ptr_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphVtx2D_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphVtx2D_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphVtx2D_ptr_get" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - result = (CvPoint2D32f *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvGraphVtx2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvGraphVtx2D")) SWIG_fail; - { - try { - result = (CvGraphVtx2D *)new CvGraphVtx2D(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx2D, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvGraphVtx2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphVtx2D *arg1 = (CvGraphVtx2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvGraphVtx2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphVtx2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphVtx2D" "', argument " "1"" of type '" "CvGraphVtx2D *""'"); - } - arg1 = reinterpret_cast< CvGraphVtx2D * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvGraphVtx2D_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvGraphVtx2D, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvGraph_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_flags_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_flags_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_header_size_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_header_size_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_h_prev_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_h_prev_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_h_next_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_h_next_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_v_prev_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_v_prev_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_v_next_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_v_next_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_total_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_total_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_elem_size_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_elem_size_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_block_max_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_block_max_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - schar *arg2 = (schar *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_ptr_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_ptr_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_delta_elems_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_delta_elems_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_storage_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_storage_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_free_blocks_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_free_blocks_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_first_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_first_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_free_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_free_elems_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraph_free_elems_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = reinterpret_cast< CvSetElem * >(argp2); - if (arg1) (arg1)->free_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_free_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_free_elems_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSetElem *) ((arg1)->free_elems); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_active_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_active_count_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraph_active_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->active_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_active_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_active_count_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (int) ((arg1)->active_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_edges_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *ptr1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraph_edges_set",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->edges = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraph_edges_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraph_edges_get",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - result = (CvSet *) ((arg1)->edges); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvGraph(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvGraph")) SWIG_fail; - { - try { - result = (CvGraph *)new CvGraph(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraph, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvGraph(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvGraph",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvGraph_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvGraph, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvChain_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_flags_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_flags_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_header_size_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_header_size_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_h_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_prev_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_h_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_prev_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_h_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_next_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_h_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_h_next_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_v_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_prev_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_v_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_prev_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_v_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_next_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_v_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_v_next_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_total_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_total_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_total_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_total_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_elem_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_elem_size_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_elem_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_elem_size_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_block_max_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_block_max_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_ptr_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_ptr_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_delta_elems_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_delta_elems_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChain_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_delta_elems_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_delta_elems_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_storage_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_storage_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_free_blocks_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_free_blocks_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_free_blocks_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_free_blocks_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_first_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_first_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_origin_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChain_origin_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_origin_set" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChain_origin_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->origin = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChain_origin_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChain_origin_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChain_origin_get" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - result = (CvPoint *)& ((arg1)->origin); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvChain(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvChain")) SWIG_fail; - { - try { - result = (CvChain *)new CvChain(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvChain, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvChain(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvChain",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvChain" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvChain_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvChain, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvContour_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_flags_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_flags_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_header_size_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_header_size_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_h_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_prev_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_h_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_prev_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_h_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_next_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_h_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_h_next_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_v_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_prev_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_v_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_prev_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_v_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_next_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_v_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_v_next_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_total_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_total_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_total_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_total_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_elem_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_elem_size_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_elem_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_elem_size_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_block_max_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_block_max_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_ptr_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_ptr_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_delta_elems_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_delta_elems_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_delta_elems_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_delta_elems_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_storage_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_storage_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_free_blocks_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_free_blocks_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_free_blocks_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_free_blocks_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_first_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_first_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_rect_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_rect_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_rect_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_rect_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = reinterpret_cast< CvRect * >(argp2); - if (arg1) (arg1)->rect = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_rect_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_rect_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_rect_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (CvRect *)& ((arg1)->rect); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_color_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_color_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_color_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContour_color_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->color = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_color_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_color_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_color_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int) ((arg1)->color); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_reserved_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - int *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContour_reserved_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_reserved_set" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContour_reserved_set" "', argument " "2"" of type '" "int [3]""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)3; ++ii) arg1->reserved[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""reserved""' of type '""int [3]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContour_reserved_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContour_reserved_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContour_reserved_get" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - result = (int *)(int *) ((arg1)->reserved); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvContour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvContour")) SWIG_fail; - { - try { - result = (CvContour *)new CvContour(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvContour, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvContour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContour *arg1 = (CvContour *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvContour",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContour, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvContour" "', argument " "1"" of type '" "CvContour *""'"); - } - arg1 = reinterpret_cast< CvContour * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvContour_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvContour, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeqWriter_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqWriter_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_header_size_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqWriter_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqWriter_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_header_size_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_seq_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqWriter_seq_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_seq_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_seq_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqWriter_seq_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_seq_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - result = (CvSeq *) ((arg1)->seq); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_block_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqWriter_block_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_block_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->block = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_block_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqWriter_block_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - result = (CvSeqBlock *) ((arg1)->block); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqWriter_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_ptr_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqWriter_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_ptr_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_block_min_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqWriter_block_min_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_min_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_block_min_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_min = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_block_min_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqWriter_block_min_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_min_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - result = (schar *) ((arg1)->block_min); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqWriter_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_max_set" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqWriter_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqWriter_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqWriter_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqWriter_block_max_get" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeqWriter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeqWriter")) SWIG_fail; - { - try { - result = (CvSeqWriter *)new CvSeqWriter(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqWriter, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeqWriter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeqWriter",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeqWriter" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeqWriter_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSeqWriter, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeqReader_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_header_size_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqReader_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_header_size_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_seq_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_seq_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_seq_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_seq_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_seq_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_seq_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (CvSeq *) ((arg1)->seq); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_block_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_block_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_block_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->block = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_block_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_block_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (CvSeqBlock *) ((arg1)->block); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_ptr_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_ptr_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_block_min_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_block_min_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_min_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_block_min_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_min = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_block_min_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_block_min_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_min_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (schar *) ((arg1)->block_min); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_max_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_block_max_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_delta_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_delta_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_delta_index_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeqReader_delta_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_delta_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_delta_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_delta_index_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (int) ((arg1)->delta_index); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_prev_elem_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeqReader_prev_elem_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_prev_elem_set" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeqReader_prev_elem_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->prev_elem = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeqReader_prev_elem_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeqReader_prev_elem_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeqReader_prev_elem_get" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - result = (schar *) ((arg1)->prev_elem); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeqReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeqReader")) SWIG_fail; - { - try { - result = (CvSeqReader *)new CvSeqReader(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqReader, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeqReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeqReader",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeqReader" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeqReader_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSeqReader, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvAttrList_attr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *arg1 = (CvAttrList *) 0 ; - char **arg2 = (char **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - char *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvAttrList_attr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_attr_set" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = reinterpret_cast< CvAttrList * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer2 = (char *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->attr = (char const **)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvAttrList_attr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *arg1 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvAttrList_attr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_attr_get" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = reinterpret_cast< CvAttrList * >(argp1); - result = (char **) ((arg1)->attr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvAttrList_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *arg1 = (CvAttrList *) 0 ; - CvAttrList *arg2 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvAttrList_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_next_set" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = reinterpret_cast< CvAttrList * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvAttrList, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvAttrList_next_set" "', argument " "2"" of type '" "CvAttrList *""'"); - } - arg2 = reinterpret_cast< CvAttrList * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvAttrList_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *arg1 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvAttrList *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvAttrList_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAttrList_next_get" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = reinterpret_cast< CvAttrList * >(argp1); - result = (CvAttrList *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvAttrList, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvAttrList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvAttrList")) SWIG_fail; - { - try { - result = (CvAttrList *)new CvAttrList(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvAttrList, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvAttrList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *arg1 = (CvAttrList *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvAttrList",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAttrList, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvAttrList" "', argument " "1"" of type '" "CvAttrList *""'"); - } - arg1 = reinterpret_cast< CvAttrList * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvAttrList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvAttrList, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvAttrList__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char **arg1 = (char **) 0 ; - CvAttrList *arg2 = (CvAttrList *) 0 ; - void *vptr1 ; - char *buffer1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvAttrList result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvAttrList",&obj0,&obj1)) SWIG_fail; - { - if ((SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer1 = (char *) vptr1; - arg1=&buffer1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvAttrList" "', argument " "2"" of type '" "CvAttrList *""'"); - } - arg2 = reinterpret_cast< CvAttrList * >(argp2); - { - try { - result = cvAttrList((char const **)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvAttrList(static_cast< const CvAttrList& >(result))), SWIGTYPE_p_CvAttrList, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAttrList__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char **arg1 = (char **) 0 ; - void *vptr1 ; - char *buffer1 ; - PyObject * obj0 = 0 ; - CvAttrList result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvAttrList",&obj0)) SWIG_fail; - { - if ((SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer1 = (char *) vptr1; - arg1=&buffer1; - } - { - try { - result = cvAttrList((char const **)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvAttrList(static_cast< const CvAttrList& >(result))), SWIGTYPE_p_CvAttrList, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAttrList__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList result; - - if (!PyArg_ParseTuple(args,(char *)":cvAttrList")) SWIG_fail; - { - try { - result = cvAttrList(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvAttrList(static_cast< const CvAttrList& >(result))), SWIGTYPE_p_CvAttrList, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAttrList(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_cvAttrList__SWIG_2(self, args); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_p_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvAttrList__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_p_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvAttrList, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvAttrList__SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvAttrList'.\n" - " Possible C/C++ prototypes are:\n" - " cvAttrList(char const **,CvAttrList *)\n" - " cvAttrList(char const **)\n" - " cvAttrList()\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvString_len_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvString *arg1 = (CvString *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvString_len_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_len_set" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = reinterpret_cast< CvString * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvString_len_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->len = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvString_len_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvString *arg1 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvString_len_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_len_get" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = reinterpret_cast< CvString * >(argp1); - result = (int) ((arg1)->len); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvString_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvString *arg1 = (CvString *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvString_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_ptr_set" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = reinterpret_cast< CvString * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvString_ptr_set" "', argument " "2"" of type '" "char *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (arg1->ptr) delete[] arg1->ptr; - if (arg2) { - size_t size = strlen(reinterpret_cast< const char * >(arg2)) + 1; - arg1->ptr = (char *)reinterpret_cast< char* >(memcpy((new char[size]), reinterpret_cast< const char * >(arg2), sizeof(char)*(size))); - } else { - arg1->ptr = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvString_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvString *arg1 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvString_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvString_ptr_get" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = reinterpret_cast< CvString * >(argp1); - result = (char *) ((arg1)->ptr); - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvString *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvString")) SWIG_fail; - { - try { - result = (CvString *)new CvString(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvString, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvString *arg1 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvString",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvString, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvString" "', argument " "1"" of type '" "CvString *""'"); - } - arg1 = reinterpret_cast< CvString * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvString_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvString, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvStringHashNode_hashval_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - unsigned int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - unsigned int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStringHashNode_hashval_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_hashval_set" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - ecode2 = SWIG_AsVal_unsigned_SS_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStringHashNode_hashval_set" "', argument " "2"" of type '" "unsigned int""'"); - } - arg2 = static_cast< unsigned int >(val2); - if (arg1) (arg1)->hashval = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStringHashNode_hashval_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - unsigned int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStringHashNode_hashval_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_hashval_get" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - result = (unsigned int) ((arg1)->hashval); - resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStringHashNode_str_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - CvString *arg2 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStringHashNode_str_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_str_set" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStringHashNode_str_set" "', argument " "2"" of type '" "CvString *""'"); - } - arg2 = reinterpret_cast< CvString * >(argp2); - if (arg1) (arg1)->str = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStringHashNode_str_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvString *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStringHashNode_str_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_str_get" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - result = (CvString *)& ((arg1)->str); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvString, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStringHashNode_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - CvStringHashNode *arg2 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStringHashNode_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_next_set" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvStringHashNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStringHashNode_next_set" "', argument " "2"" of type '" "CvStringHashNode *""'"); - } - arg2 = reinterpret_cast< CvStringHashNode * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStringHashNode_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvStringHashNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStringHashNode_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStringHashNode_next_get" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - result = (CvStringHashNode *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvStringHashNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvStringHashNode")) SWIG_fail; - { - try { - result = (CvStringHashNode *)new CvStringHashNode(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStringHashNode, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvStringHashNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStringHashNode *arg1 = (CvStringHashNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvStringHashNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStringHashNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStringHashNode" "', argument " "1"" of type '" "CvStringHashNode *""'"); - } - arg1 = reinterpret_cast< CvStringHashNode * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvStringHashNode_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvStringHashNode, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvFileNode_tag_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_tag_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_tag_set" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFileNode_tag_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->tag = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_tag_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_tag_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_tag_get" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - result = (int) ((arg1)->tag); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_info_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_info_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_info_set" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFileNode_info_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = reinterpret_cast< CvTypeInfo * >(argp2); - if (arg1) (arg1)->info = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_info_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_info_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_info_get" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - result = (CvTypeInfo *) ((arg1)->info); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvFileNode_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_data_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_get" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - result = (CvFileNode_data *)& ((arg1)->data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvFileNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvFileNode")) SWIG_fail; - { - try { - result = (CvFileNode *)new CvFileNode(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvFileNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvFileNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvFileNode" "', argument " "1"" of type '" "CvFileNode *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvFileNode_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvFileNode, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvFileNode_data_f_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_data_f_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_f_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFileNode_data_f_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->f = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_f_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_data_f_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_f_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - result = (double) ((arg1)->f); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_i_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_data_i_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_i_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFileNode_data_i_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->i = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_i_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_data_i_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_i_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - result = (int) ((arg1)->i); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_str_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - CvString *arg2 = (CvString *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_data_str_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_str_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvString, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFileNode_data_str_set" "', argument " "2"" of type '" "CvString *""'"); - } - arg2 = reinterpret_cast< CvString * >(argp2); - if (arg1) (arg1)->str = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_str_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvString *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_data_str_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_str_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - result = (CvString *)& ((arg1)->str); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvString, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_seq_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_data_seq_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_seq_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_seq_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_data_seq_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_seq_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - result = (CvSeq *) ((arg1)->seq); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_map_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - CvFileNodeHash *arg2 = (CvFileNodeHash *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFileNode_data_map_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_map_set" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGenericHash, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFileNode_data_map_set" "', argument " "2"" of type '" "CvFileNodeHash *""'"); - } - arg2 = reinterpret_cast< CvFileNodeHash * >(argp2); - if (arg1) (arg1)->map = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFileNode_data_map_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvFileNodeHash *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFileNode_data_map_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFileNode_data_map_get" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - result = (CvFileNodeHash *) ((arg1)->map); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGenericHash, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvFileNode_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvFileNode_data")) SWIG_fail; - { - try { - result = (CvFileNode_data *)new CvFileNode_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode_data, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvFileNode_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode_data *arg1 = (CvFileNode_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvFileNode_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvFileNode_data" "', argument " "1"" of type '" "CvFileNode_data *""'"); - } - arg1 = reinterpret_cast< CvFileNode_data * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvFileNode_data_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvFileNode_data, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvTypeInfo_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_flags_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTypeInfo_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_flags_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_header_size_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTypeInfo_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_header_size_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_prev_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTypeInfo_prev_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = reinterpret_cast< CvTypeInfo * >(argp2); - if (arg1) (arg1)->prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_prev_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvTypeInfo *) ((arg1)->prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_next_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTypeInfo_next_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = reinterpret_cast< CvTypeInfo * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_next_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvTypeInfo *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_type_name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_type_name_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_type_name_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTypeInfo_type_name_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (arg2) { - size_t size = strlen(reinterpret_cast< const char * >(reinterpret_cast< const char * >(arg2))) + 1; - arg1->type_name = (char const *)reinterpret_cast< char* >(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->type_name = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_type_name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_type_name_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_type_name_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (char *) ((arg1)->type_name); - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_is_instance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_is_instance_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_is_instance_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_is_instance_set" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - if (arg1) (arg1)->is_instance = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_is_instance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvIsInstanceFunc result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_is_instance_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_is_instance_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvIsInstanceFunc) ((arg1)->is_instance); - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__void__int); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_release_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvReleaseFunc arg2 = (CvReleaseFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_release_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_release_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_release_set" "', argument " "2"" of type '" "CvReleaseFunc""'"); - } - } - if (arg1) (arg1)->release = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_release_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvReleaseFunc result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_release_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_release_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvReleaseFunc) ((arg1)->release); - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void__void); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_read_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvReadFunc arg2 = (CvReadFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_read_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_read_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_read_set" "', argument " "2"" of type '" "CvReadFunc""'"); - } - } - if (arg1) (arg1)->read = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_read_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvReadFunc result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_read_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_read_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvReadFunc) ((arg1)->read); - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_write_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvWriteFunc arg2 = (CvWriteFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_write_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_write_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_write_set" "', argument " "2"" of type '" "CvWriteFunc""'"); - } - } - if (arg1) (arg1)->write = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_write_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvWriteFunc result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_write_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_write_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvWriteFunc) ((arg1)->write); - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_clone_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - CvCloneFunc arg2 = (CvCloneFunc) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTypeInfo_clone_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_clone_set" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvTypeInfo_clone_set" "', argument " "2"" of type '" "CvCloneFunc""'"); - } - } - if (arg1) (arg1)->clone = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTypeInfo_clone_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvCloneFunc result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTypeInfo_clone_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTypeInfo_clone_get" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - result = (CvCloneFunc) ((arg1)->clone); - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__void__p_void); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTypeInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTypeInfo")) SWIG_fail; - { - try { - result = (CvTypeInfo *)new CvTypeInfo(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTypeInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTypeInfo",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTypeInfo" "', argument " "1"" of type '" "CvTypeInfo *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTypeInfo_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypeInfo, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_func_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void **arg2 = (void **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - void *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPluginFuncInfo_func_addr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_addr_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer2 = (void *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->func_addr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_func_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - void **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPluginFuncInfo_func_addr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_addr_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - result = (void **) ((arg1)->func_addr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_default_func_addr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *arg2 = (void *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPluginFuncInfo_default_func_addr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_default_func_addr_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPluginFuncInfo_default_func_addr_set" "', argument " "2"" of type '" "void *""'"); - } - if (arg1) (arg1)->default_func_addr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_default_func_addr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPluginFuncInfo_default_func_addr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_default_func_addr_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - result = (void *) ((arg1)->default_func_addr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_func_names_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPluginFuncInfo_func_names_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_names_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPluginFuncInfo_func_names_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (arg2) { - size_t size = strlen(reinterpret_cast< const char * >(reinterpret_cast< const char * >(arg2))) + 1; - arg1->func_names = (char const *)reinterpret_cast< char* >(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->func_names = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_func_names_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPluginFuncInfo_func_names_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_func_names_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - result = (char *) ((arg1)->func_names); - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_search_modules_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPluginFuncInfo_search_modules_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_search_modules_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPluginFuncInfo_search_modules_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->search_modules = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_search_modules_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPluginFuncInfo_search_modules_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_search_modules_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - result = (int) ((arg1)->search_modules); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_loaded_from_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPluginFuncInfo_loaded_from_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_loaded_from_set" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvPluginFuncInfo_loaded_from_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->loaded_from = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPluginFuncInfo_loaded_from_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPluginFuncInfo_loaded_from_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPluginFuncInfo_loaded_from_get" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - result = (int) ((arg1)->loaded_from); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPluginFuncInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPluginFuncInfo")) SWIG_fail; - { - try { - result = (CvPluginFuncInfo *)new CvPluginFuncInfo(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPluginFuncInfo, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPluginFuncInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPluginFuncInfo *arg1 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPluginFuncInfo",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPluginFuncInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPluginFuncInfo" "', argument " "1"" of type '" "CvPluginFuncInfo *""'"); - } - arg1 = reinterpret_cast< CvPluginFuncInfo * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPluginFuncInfo_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPluginFuncInfo, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvModuleInfo_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - CvModuleInfo *arg2 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvModuleInfo_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_next_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_next_set" "', argument " "2"" of type '" "CvModuleInfo *""'"); - } - arg2 = reinterpret_cast< CvModuleInfo * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvModuleInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvModuleInfo_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_next_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - result = (CvModuleInfo *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_name_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvModuleInfo_name_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_name_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_name_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (arg2) { - size_t size = strlen(reinterpret_cast< const char * >(reinterpret_cast< const char * >(arg2))) + 1; - arg1->name = (char const *)reinterpret_cast< char* >(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->name = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_name_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvModuleInfo_name_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_name_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - result = (char *) ((arg1)->name); - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_version_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvModuleInfo_version_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_version_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_version_set" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (arg2) { - size_t size = strlen(reinterpret_cast< const char * >(reinterpret_cast< const char * >(arg2))) + 1; - arg1->version = (char const *)reinterpret_cast< char* >(memcpy((new char[size]), arg2, sizeof(char)*(size))); - } else { - arg1->version = 0; - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_version_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvModuleInfo_version_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_version_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - result = (char *) ((arg1)->version); - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_func_tab_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - CvPluginFuncInfo *arg2 = (CvPluginFuncInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvModuleInfo_func_tab_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_func_tab_set" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPluginFuncInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModuleInfo_func_tab_set" "', argument " "2"" of type '" "CvPluginFuncInfo *""'"); - } - arg2 = reinterpret_cast< CvPluginFuncInfo * >(argp2); - if (arg1) (arg1)->func_tab = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModuleInfo_func_tab_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPluginFuncInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvModuleInfo_func_tab_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModuleInfo_func_tab_get" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - result = (CvPluginFuncInfo *) ((arg1)->func_tab); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPluginFuncInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvModuleInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvModuleInfo")) SWIG_fail; - { - try { - result = (CvModuleInfo *)new CvModuleInfo(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvModuleInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvModuleInfo",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvModuleInfo" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvModuleInfo_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvModuleInfo, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvAlloc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - size_t arg1 ; - size_t val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvAlloc",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvAlloc" "', argument " "1"" of type '" "size_t""'"); - } - arg1 = static_cast< size_t >(val1); - { - try { - result = (void *)cvAlloc(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFree_(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int res1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFree_",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFree_" "', argument " "1"" of type '" "void *""'"); - } - { - try { - cvFree_(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvResetImageROI(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvResetImageROI",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - cvResetImageROI(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateMatHeader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCreateMatHeader",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateMatHeader" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateMatHeader" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateMatHeader" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMat *)cvCreateMatHeader(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitMatHeader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *arg5 = (void *) NULL ; - int arg6 = (int) 0x7fffffff ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int res5 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OO:cvInitMatHeader",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvInitMatHeader" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInitMatHeader" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvInitMatHeader" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - if (obj4) { - res5 = SWIG_ConvertPtr(obj4,SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvInitMatHeader" "', argument " "5"" of type '" "void *""'"); - } - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvInitMatHeader" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - result = (CvMat *)cvInitMatHeader(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCreateMat",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateMat" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateMat" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateMat" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMat *)cvCreateMat(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDecRefData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvDecRefData",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - cvDecRefData(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvIncRefData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvIncRefData",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)cvIncRefData(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCloneMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCloneMat",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvMat *)cvCloneMat((CvMat const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetSubRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvRect arg3 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - CvRect temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetSubRect",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"iiii", & temp3.x, & temp3.y, & temp3.width, & temp3.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - result = (CvMat *)cvGetSubRect((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetRows(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 ; - int arg5 = (int) 1 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvGetRows",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetRows" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetRows" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - if (obj3) { - ecode5 = SWIG_AsVal_int(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvGetRows" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - result = (CvMat *)cvGetRows((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetRow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetRow",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetRow" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMat *)cvGetRow((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetCols(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetCols",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetCols" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetCols" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (CvMat *)cvGetCols((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetCol(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetCol",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetCol" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMat *)cvGetCol((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetDiag(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 = (int) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"O|O:cvGetDiag",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetDiag" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = (CvMat *)cvGetDiag((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScalarToRawData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvScalar *arg1 = (CvScalar *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvScalarToRawData",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvScalarToRawData" "', argument " "1"" of type '" "CvScalar const *""'"); - } - arg1 = reinterpret_cast< CvScalar * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvScalarToRawData" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvScalarToRawData" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvScalarToRawData" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvScalarToRawData((CvScalar const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRawDataToScalar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int arg2 ; - CvScalar *arg3 = (CvScalar *) 0 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvRawDataToScalar",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRawDataToScalar" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRawDataToScalar" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvRawDataToScalar" "', argument " "3"" of type '" "CvScalar *""'"); - } - arg3 = reinterpret_cast< CvScalar * >(argp3); - { - try { - cvRawDataToScalar((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateMatNDHeader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int *arg2 = (int *) 0 ; - int arg3 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMatND *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCreateMatNDHeader",&obj0,&obj1)) SWIG_fail; - { - int i; - - /* get the size of the dimention array */ - arg1 = PyList_Size (obj0); - - /* allocate the needed memory */ - arg2 = (int *)malloc (arg1 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < arg1; i++) { - PyObject *item = PyList_GetItem (obj0, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateMatNDHeader" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMatND *)cvCreateMatNDHeader(arg1,(int const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateMatND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int *arg2 = (int *) 0 ; - int arg3 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMatND *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCreateMatND",&obj0,&obj1)) SWIG_fail; - { - int i; - - /* get the size of the dimention array */ - arg1 = PyList_Size (obj0); - - /* allocate the needed memory */ - arg2 = (int *)malloc (arg1 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < arg1; i++) { - PyObject *item = PyList_GetItem (obj0, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateMatND" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMatND *)cvCreateMatND(arg1,(int const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitMatNDHeader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - int arg2 ; - int *arg3 = (int *) 0 ; - int arg4 ; - void *arg5 = (void *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - int val4 ; - int ecode4 = 0 ; - int res5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMatND *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvInitMatNDHeader",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInitMatNDHeader" "', argument " "1"" of type '" "CvMatND *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - { - int i; - - /* get the size of the dimention array */ - arg2 = PyList_Size (obj1); - - /* allocate the needed memory */ - arg3 = (int *)malloc (arg2 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < arg2; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg3 [i] = (int)PyInt_AsLong (item); - } - } - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvInitMatNDHeader" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - if (obj3) { - res5 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvInitMatNDHeader" "', argument " "5"" of type '" "void *""'"); - } - } - { - try { - result = (CvMatND *)cvInitMatNDHeader(arg1,arg2,(int const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCloneMatND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatND *arg1 = (CvMatND *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatND *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCloneMatND",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCloneMatND" "', argument " "1"" of type '" "CvMatND const *""'"); - } - arg1 = reinterpret_cast< CvMatND * >(argp1); - { - try { - result = (CvMatND *)cvCloneMatND((CvMatND const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatND, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSparseMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int *arg2 = (int *) 0 ; - int arg3 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSparseMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCreateSparseMat",&obj0,&obj1)) SWIG_fail; - { - int i; - - /* get the size of the dimention array */ - arg1 = PyList_Size (obj0); - - /* allocate the needed memory */ - arg2 = (int *)malloc (arg1 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < arg1; i++) { - PyObject *item = PyList_GetItem (obj0, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateSparseMat" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvSparseMat *)cvCreateSparseMat(arg1,(int const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCloneSparseMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSparseMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCloneSparseMat",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCloneSparseMat" "', argument " "1"" of type '" "CvSparseMat const *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - { - try { - result = (CvSparseMat *)cvCloneSparseMat((CvSparseMat const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseMat, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitSparseMatIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMat *arg1 = (CvSparseMat *) 0 ; - CvSparseMatIterator *arg2 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSparseNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvInitSparseMatIterator",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInitSparseMatIterator" "', argument " "1"" of type '" "CvSparseMat const *""'"); - } - arg1 = reinterpret_cast< CvSparseMat * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvInitSparseMatIterator" "', argument " "2"" of type '" "CvSparseMatIterator *""'"); - } - arg2 = reinterpret_cast< CvSparseMatIterator * >(argp2); - { - try { - result = (CvSparseNode *)cvInitSparseMatIterator((CvSparseMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetNextSparseNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSparseMatIterator *arg1 = (CvSparseMatIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSparseNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetNextSparseNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSparseMatIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetNextSparseNode" "', argument " "1"" of type '" "CvSparseMatIterator *""'"); - } - arg1 = reinterpret_cast< CvSparseMatIterator * >(argp1); - { - try { - result = (CvSparseNode *)cvGetNextSparseNode(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSparseNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNArrayIterator_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_count_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvNArrayIterator_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNArrayIterator_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_count_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_dims_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNArrayIterator_dims_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_dims_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvNArrayIterator_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->dims = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_dims_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNArrayIterator_dims_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_dims_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - result = (int) ((arg1)->dims); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - CvSize *arg2 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNArrayIterator_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_size_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_size_set" "', argument " "2"" of type '" "CvSize *""'"); - } - arg2 = reinterpret_cast< CvSize * >(argp2); - if (arg1) (arg1)->size = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNArrayIterator_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_size_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - result = (CvSize *)& ((arg1)->size); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - uchar **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNArrayIterator_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_ptr_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_ptr_set" "', argument " "2"" of type '" "uchar *[10]""'"); - } - arg2 = reinterpret_cast< uchar ** >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)10; ++ii) arg1->ptr[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""ptr""' of type '""uchar *[10]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNArrayIterator_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_ptr_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - result = (uchar **)(uchar **) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_stack_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - int *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNArrayIterator_stack_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_stack_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_stack_set" "', argument " "2"" of type '" "int [32]""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)32; ++ii) arg1->stack[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""stack""' of type '""int [32]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_stack_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNArrayIterator_stack_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_stack_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - result = (int *)(int *) ((arg1)->stack); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_hdr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - CvMatND **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNArrayIterator_hdr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_hdr_set" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNArrayIterator_hdr_set" "', argument " "2"" of type '" "CvMatND *[10]""'"); - } - arg2 = reinterpret_cast< CvMatND ** >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)10; ++ii) arg1->hdr[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""hdr""' of type '""CvMatND *[10]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNArrayIterator_hdr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatND **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNArrayIterator_hdr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNArrayIterator_hdr_get" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - result = (CvMatND **)(CvMatND **) ((arg1)->hdr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvMatND, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvNArrayIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvNArrayIterator")) SWIG_fail; - { - try { - result = (CvNArrayIterator *)new CvNArrayIterator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNArrayIterator, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvNArrayIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvNArrayIterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvNArrayIterator" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvNArrayIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvNArrayIterator, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvInitNArrayIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - CvArr **arg2 = (CvArr **) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvMatND *arg4 = (CvMatND *) 0 ; - CvNArrayIterator *arg5 = (CvNArrayIterator *) 0 ; - int arg6 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - void *vptr2 ; - CvArr *buffer2 ; - bool freearg3 = false ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvInitNArrayIterator",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvInitNArrayIterator" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvArr *) vptr2; - arg2=&buffer2; - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMatND, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvInitNArrayIterator" "', argument " "4"" of type '" "CvMatND *""'"); - } - arg4 = reinterpret_cast< CvMatND * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvInitNArrayIterator" "', argument " "5"" of type '" "CvNArrayIterator *""'"); - } - arg5 = reinterpret_cast< CvNArrayIterator * >(argp5); - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvInitNArrayIterator" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - result = (int)cvInitNArrayIterator(arg1,arg2,(void const *)arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNextNArraySlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNArrayIterator *arg1 = (CvNArrayIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvNextNArraySlice",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNArrayIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNextNArraySlice" "', argument " "1"" of type '" "CvNArrayIterator *""'"); - } - arg1 = reinterpret_cast< CvNArrayIterator * >(argp1); - { - try { - result = (int)cvNextNArraySlice(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetElemType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetElemType",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)cvGetElemType((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetDims(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) NULL ; - void *myarr1 ; - int mysizes1[CV_MAX_DIM] ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetDims",&obj0)) SWIG_fail; - { - SWIG_Python_ConvertPtr(obj0, &myarr1, 0, SWIG_POINTER_EXCEPTION); - arg1=(CvArr *)myarr1; - arg2=mysizes1; - } - { - try { - result = (int)cvGetDims((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - int len = PyInt_AsLong( resultobj ); - PyObject * obj = PyTuple_FromIntArray( arg2, len ); - Py_DECREF( resultobj ); - resultobj = obj; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetDimSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetDimSize",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetDimSize" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (int)cvGetDimSize((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPtr1D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int *arg3 = (int *) NULL ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvPtr1D",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPtr1D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvPtr1D" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - } - { - try { - result = (uchar *)cvPtr1D((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPtr2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - int *arg4 = (int *) NULL ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvPtr2D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPtr2D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPtr2D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvPtr2D" "', argument " "4"" of type '" "int *""'"); - } - arg4 = reinterpret_cast< int * >(argp4); - } - { - try { - result = (uchar *)cvPtr2D((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPtr3D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - int *arg5 = (int *) NULL ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvPtr3D",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvPtr3D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPtr3D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvPtr3D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - if (obj4) { - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvPtr3D" "', argument " "5"" of type '" "int *""'"); - } - arg5 = reinterpret_cast< int * >(argp5); - } - { - try { - result = (uchar *)cvPtr3D((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPtrND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) 0 ; - int *arg3 = (int *) NULL ; - int arg4 = (int) 1 ; - unsigned int *arg5 = (unsigned int *) NULL ; - bool freearg1 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOO:cvPtrND",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size (obj1); - - /* allocate the needed memory */ - arg2 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvPtrND" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvPtrND" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_unsigned_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvPtrND" "', argument " "5"" of type '" "unsigned int *""'"); - } - arg5 = reinterpret_cast< unsigned int * >(argp5); - } - { - try { - result = (uchar *)cvPtrND((void const *)arg1,(int const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGet1D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGet1D",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGet1D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvGet1D((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGet2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGet2D",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGet2D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGet2D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = cvGet2D((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGet3D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvGet3D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGet3D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGet3D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGet3D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = cvGet3D((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetND",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size (obj1); - - /* allocate the needed memory */ - arg2 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - { - try { - result = cvGetND((void const *)arg1,(int const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetReal1D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetReal1D",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetReal1D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (double)cvGetReal1D((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetReal2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetReal2D",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetReal2D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetReal2D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvGetReal2D((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetReal3D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvGetReal3D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetReal3D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetReal3D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetReal3D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (double)cvGetReal3D((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetRealND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetRealND",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size (obj1); - - /* allocate the needed memory */ - arg2 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - { - try { - result = (double)cvGetRealND((void const *)arg1,(int const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSet1D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - CvScalar arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSet1D",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSet1D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - try { - cvSet1D(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSet2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - CvScalar arg4 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvSet2D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSet2D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSet2D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - { - try { - cvSet2D(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSet3D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - CvScalar arg5 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSet3D",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSet3D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSet3D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSet3D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - { - try { - cvSet3D(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) 0 ; - CvScalar arg3 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetND",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size (obj1); - - /* allocate the needed memory */ - arg2 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - try { - cvSetND(arg1,(int const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetReal1D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - double arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetReal1D",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetReal1D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetReal1D" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - cvSetReal1D(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetReal2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - double arg4 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvSetReal2D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetReal2D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetReal2D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSetReal2D" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - cvSetReal2D(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetReal3D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - double arg5 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSetReal3D",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetReal3D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetReal3D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSetReal3D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSetReal3D" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - { - try { - cvSetReal3D(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetRealND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) 0 ; - double arg3 ; - bool freearg1 = false ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetRealND",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size (obj1); - - /* allocate the needed memory */ - arg2 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetRealND" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - cvSetRealND(arg1,(int const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int *arg2 = (int *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvClearND",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size (obj1); - - /* allocate the needed memory */ - arg2 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem (obj1, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - { - try { - cvClearND(arg1,(int const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int *arg3 = (int *) NULL ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvGetMat",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - res3 = SWIG_ConvertPtr(obj1, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGetMat" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - } - if (obj2) { - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetMat" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (CvMat *)cvGetMat((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReshapeMatND(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 ; - int arg5 ; - int *arg6 = (int *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvArr *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvReshapeMatND",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvReshapeMatND" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReshapeMatND" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvReshapeMatND" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvReshapeMatND" "', argument " "6"" of type '" "int *""'"); - } - arg6 = reinterpret_cast< int * >(argp6); - { - try { - result = (CvArr *)cvReshapeMatND((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReshape(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - CvMat *header2 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - { - header2 = (CvMat *)cvAlloc(sizeof(CvMat)); - arg2 = header2; - } - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvReshape",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvReshape" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj2) { - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReshape" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (CvMat *)cvReshape((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - { - arg2->hdr_refcount = ((CvMat *)arg1)->hdr_refcount; - arg2->refcount = ((CvMat *)arg1)->refcount; - cvIncRefData(arg2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRepeat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvRepeat",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvRepeat((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCreateData",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - cvCreateData(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleaseData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleaseData",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - cvReleaseData(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - bool freearg1 = false ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetData",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSetData" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetData" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvSetData(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetRawData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - uchar **arg2 = (uchar **) 0 ; - int *arg3 = (int *) NULL ; - CvSize *arg4 = (CvSize *) NULL ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvGetRawData",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetRawData" "', argument " "2"" of type '" "uchar **""'"); - } - arg2 = reinterpret_cast< uchar ** >(argp2); - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGetRawData" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - } - if (obj3) { - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvGetRawData" "', argument " "4"" of type '" "CvSize *""'"); - } - arg4 = reinterpret_cast< CvSize * >(argp4); - } - { - try { - cvGetRawData((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvSize result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetSize",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = cvGetSize((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSize(static_cast< const CvSize& >(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCopy(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvCopy",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - { - try { - cvCopy((void const *)arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSet",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - { - try { - cvSet(arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetZero(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSetZero",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - cvSetZero(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSplit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSplit",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - cvSplit((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMerge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvMerge",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - cvMerge((void const *)arg1,(void const *)arg2,(void const *)arg3,(void const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMixChannels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr **arg1 = (CvArr **) 0 ; - int arg2 ; - CvArr **arg3 = (CvArr **) 0 ; - int arg4 ; - int *arg5 = (int *) 0 ; - int arg6 ; - void *vptr1 ; - CvArr *buffer1 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - CvArr *buffer3 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvMixChannels",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - if ((SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer1 = (CvArr *) vptr1; - arg1=&buffer1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMixChannels" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvArr *) vptr3; - arg3=&buffer3; - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMixChannels" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvMixChannels" "', argument " "5"" of type '" "int const *""'"); - } - arg5 = reinterpret_cast< int * >(argp5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvMixChannels" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - try { - cvMixChannels((void const **)arg1,arg2,arg3,arg4,(int const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvertScale(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 = (double) 1 ; - double arg4 = (double) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvConvertScale",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvConvertScale" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvConvertScale" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - cvConvertScale((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvertScaleAbs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 = (double) 1 ; - double arg4 = (double) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvConvertScaleAbs",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvConvertScaleAbs" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvConvertScaleAbs" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - cvConvertScaleAbs((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCheckTermCriteria(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria arg1 ; - double arg2 ; - int arg3 ; - CvTermCriteria temp1 ; - double val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvTermCriteria result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCheckTermCriteria",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"iid", & temp1.type, & temp1.max_iter, & temp1.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCheckTermCriteria" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCheckTermCriteria" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = cvCheckTermCriteria(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvTermCriteria(static_cast< const CvTermCriteria& >(result))), SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAdd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvAdd",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvAdd((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAddS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvAddS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvAddS((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSub(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvSub",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvSub((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvSubS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvSubS((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubRS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvSubRS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvSubRS((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMul(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 = (double) 1 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvMul",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMul" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - cvMul((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDiv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 = (double) 1 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvDiv",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvDiv" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - cvDiv((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvScaleAdd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvScaleAdd",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvScaleAdd((void const *)arg1,arg2,(void const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAddWeighted(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 ; - double arg5 ; - CvArr *arg6 = (CvArr *) 0 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvAddWeighted",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvAddWeighted" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvAddWeighted" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvAddWeighted" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - { - arg6 = PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - cvAddWeighted((void const *)arg1,arg2,(void const *)arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDotProduct(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvDotProduct",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (double)cvDotProduct((void const *)arg1,(void const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAnd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvAnd",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvAnd((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAndS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvAndS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvAndS((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvOr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvOr",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvOr((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvOrS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvOrS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvOrS((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvXor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvXor",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvXor((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvXorS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvXorS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvXorS((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNot(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvNot",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvNot((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInRange(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvInRange",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvInRange((void const *)arg1,(void const *)arg2,(void const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInRangeS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 ; - CvScalar arg3 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvInRangeS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvInRangeS((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCmp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvCmp",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCmp" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - cvCmp((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCmpS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvCmpS",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCmpS" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCmpS" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - cvCmpS((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMin",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvMin((void const *)arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMax(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMax",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvMax((void const *)arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMinS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMinS",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMinS" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvMinS((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMaxS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMaxS",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMaxS" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvMaxS((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAbsDiff(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvAbsDiff",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvAbsDiff((void const *)arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAbsDiffS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvScalar arg3 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvAbsDiffS",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - try { - cvAbsDiffS((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCartToPolar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - int arg5 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvCartToPolar",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCartToPolar" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvCartToPolar((void const *)arg1,(void const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPolarToCart(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - int arg5 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvPolarToCart",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvPolarToCart" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvPolarToCart((void const *)arg1,(void const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvPow",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPow" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - cvPow((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvExp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvExp",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvExp((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLog(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvLog",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvLog((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFastArctan(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - float arg1 ; - float arg2 ; - float val1 ; - int ecode1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvFastArctan",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_float(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvFastArctan" "', argument " "1"" of type '" "float""'"); - } - arg1 = static_cast< float >(val1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvFastArctan" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - { - try { - result = (float)cvFastArctan(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCbrt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - float arg1 ; - float val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCbrt",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_float(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCbrt" "', argument " "1"" of type '" "float""'"); - } - arg1 = static_cast< float >(val1); - { - try { - result = (float)cvCbrt(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCheckArr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 = (int) 0 ; - double arg3 = (double) 0 ; - double arg4 = (double) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O|OOO:cvCheckArr",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCheckArr" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCheckArr" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCheckArr" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - result = (int)cvCheckArr((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRandArr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG *arg1 = (CvRNG *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - CvScalar arg4 ; - CvScalar arg5 ; - void *vptr1 ; - CvRNG_Wrapper *wrapper1 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvRandArr",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - if(SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper1 = (CvRNG_Wrapper *) vptr1; - arg1 = wrapper1->ptr(); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRandArr" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - { - try { - cvRandArr(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRandShuffle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvRNG *arg2 = (CvRNG *) 0 ; - double arg3 = (double) 1. ; - bool freearg1 = false ; - void *vptr2 ; - CvRNG_Wrapper *wrapper2 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvRandShuffle",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if(SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper2 = (CvRNG_Wrapper *) vptr2; - arg2 = wrapper2->ptr(); - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRandShuffle" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - { - try { - cvRandShuffle(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSort(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) NULL ; - CvArr *arg3 = (CvArr *) NULL ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|OOO:cvSort",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSort" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvSort((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSolveCubic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSolveCubic",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - int m = arg1->rows * arg1->cols; - if (m<2) { - PyErr_SetString (PyExc_TypeError,"must give at least 2 coefficients"); - return NULL; - } - arg2 = cvCreateMat(m-1, 1, CV_MAKETYPE(CV_MAT_DEPTH(arg1->type),1)); - } - { - try { - result = (int)cvSolveCubic((CvMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg2, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSolvePoly(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 = (int) 20 ; - int arg4 = (int) 100 ; - bool freearg1 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvSolvePoly",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - int m = arg1->rows * arg1->cols; - if (m<2) { - PyErr_SetString (PyExc_TypeError,"must give at least 2 coefficients"); - return NULL; - } - arg2 = cvCreateMat(m-1, 1, CV_MAKETYPE(CV_MAT_DEPTH(arg1->type),2)); - } - if (obj1) { - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSolvePoly" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj2) { - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSolvePoly" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvSolvePoly((CvMat const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg2, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCrossProduct(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCrossProduct",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvCrossProduct((void const *)arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGEMM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - CvArr *arg4 = (CvArr *) 0 ; - double arg5 ; - CvArr *arg6 = (CvArr *) 0 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - double val5 ; - int ecode5 = 0 ; - bool freearg6 = false ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|O:cvGEMM",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGEMM" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvGEMM" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - { - arg6 = PyObject_to_CvArr(obj5, &freearg6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvGEMM" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvGEMM((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvTransform",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvTransform((void const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPerspectiveTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvPerspectiveTransform",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvPerspectiveTransform((void const *)arg1,arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMulTransposed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - CvArr *arg4 = (CvArr *) NULL ; - double arg5 = (double) 1. ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvMulTransposed",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMulTransposed" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - if (obj4) { - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvMulTransposed" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - } - { - try { - cvMulTransposed((void const *)arg1,arg2,arg3,(void const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTranspose(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvTranspose",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvTranspose((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCompleteSymm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 = (int) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvCompleteSymm",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCompleteSymm" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - cvCompleteSymm(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFlip(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) NULL ; - int arg3 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvFlip",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvFlip" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvFlip((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSVD(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) NULL ; - CvArr *arg4 = (CvArr *) NULL ; - int arg5 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOO:cvSVD",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSVD" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvSVD(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSVBkSb(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - int arg6 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvSVBkSb",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvSVBkSb" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - try { - cvSVBkSb((void const *)arg1,(void const *)arg2,(void const *)arg3,(void const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInvert(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvInvert",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInvert" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = (double)cvInvert((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSolve(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvSolve",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSolve" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (int)cvSolve((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvDet",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (double)cvDet((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTrace(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvTrace",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = cvTrace((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEigenVV(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 = (double) 0 ; - int arg5 = (int) -1 ; - int arg6 = (int) -1 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOO:cvEigenVV",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvEigenVV" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvEigenVV" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvEigenVV" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvEigenVV(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetIdentity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar arg2 = (CvScalar) cvRealScalar(1) ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvSetIdentity",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - arg2 = PyObject_to_CvScalar( obj1 ); - } - } - { - try { - cvSetIdentity(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRange(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double arg2 ; - double arg3 ; - bool freearg1 = false ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvArr *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvRange",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRange" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRange" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = (CvArr *)cvRange(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcCovarMatrix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr **arg1 = (CvArr **) 0 ; - int arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - int arg5 ; - CvArr *one_image1 = NULL ; - bool free_one_arg1 = false ; - CvArr **many_images1 = NULL ; - bool *free_many_args1 = NULL ; - int nimages1 = 0 ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCalcCovarMatrix",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - /* first, check if this is a tuple */ - if PyTuple_Check (obj0) { - /* This is a tuple, so we need to test each element and pass - them to the called function */ - - int i; - - /* get the size of the tuple */ - nimages1 = PyTuple_Size (obj0); - - /* allocate the necessary place */ - many_images1 = (CvArr **)malloc (nimages1 * sizeof (CvArr *)); - free_many_args1 = (bool *)malloc(nimages1 * sizeof(bool)); - - for (i = 0; i < nimages1; i++) { - /* convert the current tuple element to a CvArr *, and - store to many_images1 [i] */ - many_images1[i] = PyObject_to_CvArr (PyTuple_GetItem (obj0, i), - free_many_args1+i); - - /* check that the current item is a correct type */ - if(!many_images1[i]) { - /* incorrect ! */ - SWIG_fail; - } - } - - /* what to give to the called function */ - arg1 = many_images1; - - } else if((one_image1 = PyObject_to_CvArr( obj0, &free_one_arg1 ))){ - /* this is just one CvArr *, so one_image1 will receive it */ - arg1 = &one_image1; - - } else { - /* not a CvArr *, not a tuple, this is wrong */ - SWIG_fail; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCalcCovarMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcCovarMatrix" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - cvCalcCovarMatrix((void const **)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(free_one_arg1){ - cvFree(&(one_image1)); - } - else if(free_many_args1){ - int i; - for (i=0; i(val5); - { - try { - cvCalcPCA((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvProjectPCA(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvProjectPCA",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvProjectPCA((void const *)arg1,(void const *)arg2,(void const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvBackProjectPCA(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvBackProjectPCA",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvBackProjectPCA((void const *)arg1,(void const *)arg2,(void const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMahalanobis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMahalanobis",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (double)cvMahalanobis((void const *)arg1,(void const *)arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSum",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = cvSum((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCountNonZero(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCountNonZero",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)cvCountNonZero((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAvg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvAvg",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - } - { - try { - result = cvAvg((void const *)arg1,(void const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAvgSdv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvScalar *arg2 = (CvScalar *) 0 ; - CvScalar *arg3 = (CvScalar *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvAvgSdv",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvAvgSdv" "', argument " "2"" of type '" "CvScalar *""'"); - } - arg2 = reinterpret_cast< CvScalar * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvAvgSdv" "', argument " "3"" of type '" "CvScalar *""'"); - } - arg3 = reinterpret_cast< CvScalar * >(argp3); - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvAvgSdv((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMinMaxLoc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - double *arg2 = (double *) 0 ; - double *arg3 = (double *) 0 ; - CvPoint *arg4 = (CvPoint *) NULL ; - CvPoint *arg5 = (CvPoint *) NULL ; - CvArr *arg6 = (CvArr *) NULL ; - bool freearg1 = false ; - double temp2 ; - int res2 = SWIG_TMPOBJ ; - double temp3 ; - int res3 = SWIG_TMPOBJ ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - arg2 = &temp2; - arg3 = &temp3; - { - arg4 = (CvPoint *) malloc(sizeof(CvPoint)); - } - { - arg5 = (CvPoint *) malloc(sizeof(CvPoint)); - } - if (!PyArg_ParseTuple(args,(char *)"O|O:cvMinMaxLoc",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - arg6 = PyObject_to_CvArr(obj1, &freearg6); - } - } - { - try { - cvMinMaxLoc((void const *)arg1,arg2,arg3,arg4,arg5,(void const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (SWIG_IsTmpObj(res2)) { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg2))); - } else { - int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_double, new_flags)); - } - if (SWIG_IsTmpObj(res3)) { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_double((*arg3))); - } else { - int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_double, new_flags)); - } - { - PyObject * to_add = SWIG_NewPointerObj (arg4, SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN); - resultobj = SWIG_Python_AppendOutput(resultobj, to_add); - } - { - PyObject * to_add = SWIG_NewPointerObj (arg5, SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN); - resultobj = SWIG_Python_AppendOutput(resultobj, to_add); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNorm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) NULL ; - int arg3 = (int) 4 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O|OOO:cvNorm",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvNorm" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - result = (double)cvNorm((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNormalize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 = (double) 1. ; - double arg4 = (double) 0. ; - int arg5 = (int) 4 ; - CvArr *arg6 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOO:cvNormalize",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvNormalize" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvNormalize" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvNormalize" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - { - arg6 = PyObject_to_CvArr(obj5, &freearg6); - } - } - { - try { - cvNormalize((void const *)arg1,arg2,arg3,arg4,arg5,(void const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReduce(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) -1 ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvReduce",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvReduce" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReduce" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvReduce((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDFT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvDFT",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvDFT" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvDFT" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvDFT((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMulSpectrums(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvMulSpectrums",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMulSpectrums" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - cvMulSpectrums((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetOptimalDFTSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetOptimalDFTSize",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvGetOptimalDFTSize" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (int)cvGetOptimalDFTSize(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDCT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvDCT",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvDCT" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvDCT((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSliceLength(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSlice arg1 ; - CvSeq *arg2 = (CvSeq *) 0 ; - CvSlice temp1 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSliceLength",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.start_index, & temp1.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg1 = *ptr; - } - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - { - try { - result = (int)cvSliceLength(arg1,(CvSeq const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateMemStorage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"|O:cvCreateMemStorage",&obj0)) SWIG_fail; - if (obj0) { - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateMemStorage" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - } - { - try { - result = (CvMemStorage *)cvCreateMemStorage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateChildMemStorage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCreateChildMemStorage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateChildMemStorage" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - { - try { - result = (CvMemStorage *)cvCreateChildMemStorage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearMemStorage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClearMemStorage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvClearMemStorage" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - { - try { - cvClearMemStorage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSaveMemStoragePos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemStoragePos *arg2 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSaveMemStoragePos",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSaveMemStoragePos" "', argument " "1"" of type '" "CvMemStorage const *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSaveMemStoragePos" "', argument " "2"" of type '" "CvMemStoragePos *""'"); - } - arg2 = reinterpret_cast< CvMemStoragePos * >(argp2); - { - try { - cvSaveMemStoragePos((CvMemStorage const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRestoreMemStoragePos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - CvMemStoragePos *arg2 = (CvMemStoragePos *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvRestoreMemStoragePos",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRestoreMemStoragePos" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStoragePos, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRestoreMemStoragePos" "', argument " "2"" of type '" "CvMemStoragePos *""'"); - } - arg2 = reinterpret_cast< CvMemStoragePos * >(argp2); - { - try { - cvRestoreMemStoragePos(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMemStorageAlloc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - size_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvMemStorageAlloc",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvMemStorageAlloc" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMemStorageAlloc" "', argument " "2"" of type '" "size_t""'"); - } - arg2 = static_cast< size_t >(val2); - { - try { - result = (void *)cvMemStorageAlloc(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMemStorageAllocString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMemStorage *arg1 = (CvMemStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 = (int) -1 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvString result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvMemStorageAllocString",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvMemStorageAllocString" "', argument " "1"" of type '" "CvMemStorage *""'"); - } - arg1 = reinterpret_cast< CvMemStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvMemStorageAllocString" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMemStorageAllocString" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = cvMemStorageAllocString(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvString(static_cast< const CvString& >(result))), SWIGTYPE_p_CvString, SWIG_POINTER_OWN | 0 ); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvCreateSeq",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateSeq" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateSeq" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateSeq" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCreateSeq" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = reinterpret_cast< CvMemStorage * >(argp4); - { - try { - result = (CvSeq *)cvCreateSeq(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetSeqBlockSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSetSeqBlockSize",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetSeqBlockSize" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - cvSetSeqBlockSize(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPush(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) NULL ; - void *ptr1 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvSeqPush",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPush" "', argument " "2"" of type '" "void const *""'"); - } - } - { - try { - result = (schar *)cvSeqPush(arg1,(void const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPushFront(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) NULL ; - void *ptr1 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvSeqPushFront",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPushFront" "', argument " "2"" of type '" "void const *""'"); - } - } - { - try { - result = (schar *)cvSeqPushFront(arg1,(void const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) NULL ; - void *ptr1 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvSeqPop",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPop" "', argument " "2"" of type '" "void *""'"); - } - } - { - try { - cvSeqPop(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPopFront(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) NULL ; - void *ptr1 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvSeqPopFront",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPopFront" "', argument " "2"" of type '" "void *""'"); - } - } - { - try { - cvSeqPopFront(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPushMulti(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - void *ptr1 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvSeqPushMulti",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPushMulti" "', argument " "2"" of type '" "void const *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSeqPushMulti" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSeqPushMulti" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvSeqPushMulti(arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPopMulti(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - int arg4 = (int) 0 ; - void *ptr1 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvSeqPopMulti",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPopMulti" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSeqPopMulti" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSeqPopMulti" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvSeqPopMulti(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqInsert(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *arg3 = (void *) NULL ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSeqInsert",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSeqInsert" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (obj2) { - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSeqInsert" "', argument " "3"" of type '" "void const *""'"); - } - } - { - try { - result = (schar *)cvSeqInsert(arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqRemove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSeqRemove",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSeqRemove" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - cvSeqRemove(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClearSeq",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - cvClearSeq(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetSeqElem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetSeqElem",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetSeqElem" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (schar *)cvGetSeqElem((CvSeq const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqElemIdx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) 0 ; - CvSeqBlock **arg3 = (CvSeqBlock **) NULL ; - void *ptr1 ; - int res2 ; - void *vptr3 ; - CvSeqBlock *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSeqElemIdx",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqElemIdx" "', argument " "2"" of type '" "void const *""'"); - } - if (obj2) { - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvSeqBlock, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSeqBlock *) vptr3; - arg3=&buffer3; - } - } - { - try { - result = (int)cvSeqElemIdx((CvSeq const *)arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartAppendToSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeqWriter *arg2 = (CvSeqWriter *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvStartAppendToSeq",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStartAppendToSeq" "', argument " "2"" of type '" "CvSeqWriter *""'"); - } - arg2 = reinterpret_cast< CvSeqWriter * >(argp2); - { - try { - cvStartAppendToSeq(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartWriteSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - CvSeqWriter *arg5 = (CvSeqWriter *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvStartWriteSeq",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvStartWriteSeq" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvStartWriteSeq" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStartWriteSeq" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvStartWriteSeq" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = reinterpret_cast< CvMemStorage * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvStartWriteSeq" "', argument " "5"" of type '" "CvSeqWriter *""'"); - } - arg5 = reinterpret_cast< CvSeqWriter * >(argp5); - { - try { - cvStartWriteSeq(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEndWriteSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvEndWriteSeq",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvEndWriteSeq" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - { - try { - result = (CvSeq *)cvEndWriteSeq(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFlushSeqWriter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFlushSeqWriter",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFlushSeqWriter" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - { - try { - cvFlushSeqWriter(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartReadSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSeqReader *arg2 = (CvSeqReader *) 0 ; - int arg3 = (int) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvStartReadSeq",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStartReadSeq" "', argument " "2"" of type '" "CvSeqReader *""'"); - } - arg2 = reinterpret_cast< CvSeqReader * >(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStartReadSeq" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvStartReadSeq((CvSeq const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetSeqReaderPos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetSeqReaderPos",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetSeqReaderPos" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - { - try { - result = (int)cvGetSeqReaderPos(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetSeqReaderPos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqReader *arg1 = (CvSeqReader *) 0 ; - int arg2 ; - int arg3 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSetSeqReaderPos",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetSeqReaderPos" "', argument " "1"" of type '" "CvSeqReader *""'"); - } - arg1 = reinterpret_cast< CvSeqReader * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetSeqReaderPos" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetSeqReaderPos" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvSetSeqReaderPos(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMakeSeqHeaderForArray(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int arg5 ; - CvSeq *arg6 = (CvSeq *) 0 ; - CvSeqBlock *arg7 = (CvSeqBlock *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - int val5 ; - int ecode5 = 0 ; - void *ptr6 ; - void *argp7 = 0 ; - int res7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:cvMakeSeqHeaderForArray",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvMakeSeqHeaderForArray" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMakeSeqHeaderForArray" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMakeSeqHeaderForArray" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvMakeSeqHeaderForArray" "', argument " "4"" of type '" "void *""'"); - } - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvMakeSeqHeaderForArray" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - if( SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj5, &ptr6, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg6 = (CvSeq *) ptr6; - } - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvMakeSeqHeaderForArray" "', argument " "7"" of type '" "CvSeqBlock *""'"); - } - arg7 = reinterpret_cast< CvSeqBlock * >(argp7); - { - try { - result = (CvSeq *)cvMakeSeqHeaderForArray(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSlice arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) NULL ; - int arg4 = (int) 0 ; - void *ptr1 ; - CvSlice temp2 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvSeqSlice",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.start_index, & temp2.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg2 = *ptr; - } - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSeqSlice" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSeqSlice" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (CvSeq *)cvSeqSlice((CvSeq const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCloneSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) NULL ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvCloneSeq",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCloneSeq" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - } - { - try { - result = (CvSeq *)cvCloneSeq((CvSeq const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqRemoveSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvSlice arg2 ; - void *ptr1 ; - CvSlice temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSeqRemoveSlice",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.start_index, & temp2.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - cvSeqRemoveSlice(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqInsertSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - int arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSeqInsertSlice",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSeqInsertSlice" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvSeqInsertSlice(arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqSort(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvCmpFunc arg2 = (CvCmpFunc) 0 ; - void *arg3 = (void *) NULL ; - void *ptr1 ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSeqSort",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void_p_q_const__void_p_void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSeqSort" "', argument " "2"" of type '" "CvCmpFunc""'"); - } - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSeqSort" "', argument " "3"" of type '" "void *""'"); - } - } - { - try { - cvSeqSort(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqSearch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *arg2 = (void *) 0 ; - CvCmpFunc arg3 = (CvCmpFunc) 0 ; - int arg4 ; - int *arg5 = (int *) 0 ; - void *arg6 = (void *) NULL ; - void *ptr1 ; - int res2 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - int res6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvSeqSearch",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqSearch" "', argument " "2"" of type '" "void const *""'"); - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p_q_const__void_p_q_const__void_p_void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSeqSearch" "', argument " "3"" of type '" "CvCmpFunc""'"); - } - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSeqSearch" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvSeqSearch" "', argument " "5"" of type '" "int *""'"); - } - arg5 = reinterpret_cast< int * >(argp5); - if (obj5) { - res6 = SWIG_ConvertPtr(obj5,SWIG_as_voidptrptr(&arg6), 0, 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvSeqSearch" "', argument " "6"" of type '" "void *""'"); - } - } - { - try { - result = (schar *)cvSeqSearch(arg1,(void const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqInvert(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSeqInvert",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - cvSeqInvert(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSeqPartition(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - CvSeq **arg3 = (CvSeq **) 0 ; - CvCmpFunc arg4 = (CvCmpFunc) 0 ; - void *arg5 = (void *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *vptr3 ; - CvSeq *buffer3 ; - int res5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSeqPartition",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSeqPartition" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSeq *) vptr3; - arg3=&buffer3; - } - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_p_q_const__void_p_q_const__void_p_void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSeqPartition" "', argument " "4"" of type '" "CvCmpFunc""'"); - } - } - res5 = SWIG_ConvertPtr(obj4,SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvSeqPartition" "', argument " "5"" of type '" "void *""'"); - } - { - try { - result = (int)cvSeqPartition((CvSeq const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvChangeSeqBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int arg2 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvChangeSeqBlock",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvChangeSeqBlock" "', argument " "1"" of type '" "void *""'"); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvChangeSeqBlock" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - cvChangeSeqBlock(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSeqBlock(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeqWriter *arg1 = (CvSeqWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCreateSeqBlock",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSeqWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateSeqBlock" "', argument " "1"" of type '" "CvSeqWriter *""'"); - } - arg1 = reinterpret_cast< CvSeqWriter * >(argp1); - { - try { - cvCreateSeqBlock(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvCreateSet",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateSet" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateSet" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateSet" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCreateSet" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = reinterpret_cast< CvMemStorage * >(argp4); - { - try { - result = (CvSet *)cvCreateSet(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetAdd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - CvSetElem *arg2 = (CvSetElem *) NULL ; - CvSetElem **arg3 = (CvSetElem **) NULL ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *vptr3 ; - CvSetElem *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvSetAdd",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSetElem, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSetAdd" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = reinterpret_cast< CvSetElem * >(argp2); - } - if (obj2) { - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvSetElem, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSetElem *) vptr3; - arg3=&buffer3; - } - } - { - try { - result = (int)cvSetAdd(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetNew(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSetNew",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - try { - result = (CvSetElem *)cvSetNew(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetRemoveByPtr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *arg2 = (void *) 0 ; - void *ptr1 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSetRemoveByPtr",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSetRemoveByPtr" "', argument " "2"" of type '" "void *""'"); - } - { - try { - cvSetRemoveByPtr(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetRemove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSetRemove",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetRemove" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - cvSetRemove(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetSetElem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetSetElem",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetSetElem" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvSetElem *)cvGetSetElem((CvSet const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSet *arg1 = (CvSet *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClearSet",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg1 = (CvSet *)ptr1; - } - { - try { - cvClearSet(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateGraph(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - CvMemStorage *arg5 = (CvMemStorage *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvGraph *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCreateGraph",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateGraph" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateGraph" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateGraph" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateGraph" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvCreateGraph" "', argument " "5"" of type '" "CvMemStorage *""'"); - } - arg5 = reinterpret_cast< CvMemStorage * >(argp5); - { - try { - result = (CvGraph *)cvCreateGraph(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraph, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphAddVtx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) NULL ; - CvGraphVtx **arg3 = (CvGraphVtx **) NULL ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *vptr3 ; - CvGraphVtx *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvGraphAddVtx",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphAddVtx" "', argument " "2"" of type '" "CvGraphVtx const *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - } - if (obj2) { - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvGraphVtx, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvGraphVtx *) vptr3; - arg3=&buffer3; - } - } - { - try { - result = (int)cvGraphAddVtx(arg1,(CvGraphVtx const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphRemoveVtx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGraphRemoveVtx",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGraphRemoveVtx" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (int)cvGraphRemoveVtx(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphRemoveVtxByPtr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGraphRemoveVtxByPtr",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphRemoveVtxByPtr" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - { - try { - result = (int)cvGraphRemoveVtxByPtr(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphAddEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - int arg3 ; - CvGraphEdge *arg4 = (CvGraphEdge *) NULL ; - CvGraphEdge **arg5 = (CvGraphEdge **) NULL ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *vptr5 ; - CvGraphEdge *buffer5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvGraphAddEdge",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGraphAddEdge" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGraphAddEdge" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvGraphAddEdge" "', argument " "4"" of type '" "CvGraphEdge const *""'"); - } - arg4 = reinterpret_cast< CvGraphEdge * >(argp4); - } - if (obj4) { - { - if ((SWIG_ConvertPtr(obj4, &vptr5, SWIGTYPE_p_CvGraphEdge, 1)) == -1){ - SWIG_fail; - } - buffer5 = (CvGraphEdge *) vptr5; - arg5=&buffer5; - } - } - { - try { - result = (int)cvGraphAddEdge(arg1,arg2,arg3,(CvGraphEdge const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphAddEdgeByPtr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - CvGraphVtx *arg3 = (CvGraphVtx *) 0 ; - CvGraphEdge *arg4 = (CvGraphEdge *) NULL ; - CvGraphEdge **arg5 = (CvGraphEdge **) NULL ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *vptr5 ; - CvGraphEdge *buffer5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvGraphAddEdgeByPtr",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphAddEdgeByPtr" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGraphAddEdgeByPtr" "', argument " "3"" of type '" "CvGraphVtx *""'"); - } - arg3 = reinterpret_cast< CvGraphVtx * >(argp3); - if (obj3) { - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvGraphAddEdgeByPtr" "', argument " "4"" of type '" "CvGraphEdge const *""'"); - } - arg4 = reinterpret_cast< CvGraphEdge * >(argp4); - } - if (obj4) { - { - if ((SWIG_ConvertPtr(obj4, &vptr5, SWIGTYPE_p_CvGraphEdge, 1)) == -1){ - SWIG_fail; - } - buffer5 = (CvGraphEdge *) vptr5; - arg5=&buffer5; - } - } - { - try { - result = (int)cvGraphAddEdgeByPtr(arg1,arg2,arg3,(CvGraphEdge const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphRemoveEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - int arg3 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGraphRemoveEdge",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGraphRemoveEdge" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGraphRemoveEdge" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvGraphRemoveEdge(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphRemoveEdgeByPtr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - CvGraphVtx *arg3 = (CvGraphVtx *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGraphRemoveEdgeByPtr",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphRemoveEdgeByPtr" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGraphRemoveEdgeByPtr" "', argument " "3"" of type '" "CvGraphVtx *""'"); - } - arg3 = reinterpret_cast< CvGraphVtx * >(argp3); - { - try { - cvGraphRemoveEdgeByPtr(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindGraphEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - int arg3 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvFindGraphEdge",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvFindGraphEdge" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvFindGraphEdge" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvGraphEdge *)cvFindGraphEdge((CvGraph const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindGraphEdgeByPtr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - CvGraphVtx *arg3 = (CvGraphVtx *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvFindGraphEdgeByPtr",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvFindGraphEdgeByPtr" "', argument " "2"" of type '" "CvGraphVtx const *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvFindGraphEdgeByPtr" "', argument " "3"" of type '" "CvGraphVtx const *""'"); - } - arg3 = reinterpret_cast< CvGraphVtx * >(argp3); - { - try { - result = (CvGraphEdge *)cvFindGraphEdgeByPtr((CvGraph const *)arg1,(CvGraphVtx const *)arg2,(CvGraphVtx const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearGraph(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClearGraph",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - { - try { - cvClearGraph(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphVtxDegree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - int arg2 ; - void *ptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGraphVtxDegree",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGraphVtxDegree" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (int)cvGraphVtxDegree((CvGraph const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGraphVtxDegreeByPtr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGraphVtxDegreeByPtr",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGraphVtxDegreeByPtr" "', argument " "2"" of type '" "CvGraphVtx const *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - { - try { - result = (int)cvGraphVtxDegreeByPtr((CvGraph const *)arg1,(CvGraphVtx const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_vtx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_vtx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_vtx_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphScanner_vtx_set" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - if (arg1) (arg1)->vtx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_vtx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphVtx *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_vtx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_vtx_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (CvGraphVtx *) ((arg1)->vtx); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_dst_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_dst_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_dst_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphScanner_dst_set" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - if (arg1) (arg1)->dst = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_dst_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphVtx *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_dst_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_dst_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (CvGraphVtx *) ((arg1)->dst); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_edge_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraphEdge *arg2 = (CvGraphEdge *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_edge_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_edge_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphEdge, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvGraphScanner_edge_set" "', argument " "2"" of type '" "CvGraphEdge *""'"); - } - arg2 = reinterpret_cast< CvGraphEdge * >(argp2); - if (arg1) (arg1)->edge = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_edge_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraphEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_edge_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_edge_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (CvGraphEdge *) ((arg1)->edge); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphEdge, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_graph_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvGraph *arg2 = (CvGraph *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_graph_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_graph_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg2 = (CvGraph *)ptr2; - } - if (arg1) (arg1)->graph = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_graph_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvGraph *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_graph_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_graph_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (CvGraph *) ((arg1)->graph); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraph, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_stack_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_stack_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_stack_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->stack = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_stack_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_stack_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_stack_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (CvSeq *) ((arg1)->stack); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_index_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphScanner_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_index_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (int) ((arg1)->index); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_mask_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvGraphScanner_mask_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_mask_set" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvGraphScanner_mask_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->mask = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvGraphScanner_mask_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvGraphScanner_mask_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvGraphScanner_mask_get" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - result = (int) ((arg1)->mask); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvGraphScanner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvGraphScanner",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvGraphScanner" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - { - try { - delete_CvGraphScanner(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvGraphScanner_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvGraphScanner, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvCreateGraphScanner(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvGraphVtx *arg2 = (CvGraphVtx *) NULL ; - int arg3 = (int) -1 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvGraphScanner *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvCreateGraphScanner",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvGraphVtx, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCreateGraphScanner" "', argument " "2"" of type '" "CvGraphVtx *""'"); - } - arg2 = reinterpret_cast< CvGraphVtx * >(argp2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateGraphScanner" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = (CvGraphScanner *)cvCreateGraphScanner(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraphScanner, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNextGraphItem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraphScanner *arg1 = (CvGraphScanner *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvNextGraphItem",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvGraphScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNextGraphItem" "', argument " "1"" of type '" "CvGraphScanner *""'"); - } - arg1 = reinterpret_cast< CvGraphScanner * >(argp1); - { - try { - result = (int)cvNextGraphItem(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCloneGraph(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvGraph *arg1 = (CvGraph *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvGraph *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCloneGraph",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - arg1 = (CvGraph *)ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCloneGraph" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - { - try { - result = (CvGraph *)cvCloneGraph((CvGraph const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvGraph, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - CvPoint arg3 ; - CvScalar arg4 ; - int arg5 = (int) 1 ; - int arg6 = (int) 8 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - CvPoint temp2 ; - CvPoint temp3 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OOO:cvLine",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvLine" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvLine" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvLine" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvLine(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRectangle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - CvPoint arg3 ; - CvScalar arg4 ; - int arg5 = (int) 1 ; - int arg6 = (int) 8 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - CvPoint temp2 ; - CvPoint temp3 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OOO:cvRectangle",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvRectangle" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvRectangle" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvRectangle" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvRectangle(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCircle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - int arg3 ; - CvScalar arg4 ; - int arg5 = (int) 1 ; - int arg6 = (int) 8 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - CvPoint temp2 ; - int val3 ; - int ecode3 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OOO:cvCircle",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCircle" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCircle" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCircle" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvCircle" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvCircle(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEllipse(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - CvSize arg3 ; - double arg4 ; - double arg5 ; - double arg6 ; - CvScalar arg7 ; - int arg8 = (int) 1 ; - int arg9 = (int) 8 ; - int arg10 = (int) 0 ; - bool freearg1 = false ; - CvPoint temp2 ; - CvSize temp3 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - int val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - int val10 ; - int ecode10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO|OOO:cvEllipse",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.width, & temp3.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg3 = *ptr; - } - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvEllipse" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvEllipse" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvEllipse" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - { - arg7 = PyObject_to_CvScalar( obj6 ); - } - if (obj7) { - ecode8 = SWIG_AsVal_int(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvEllipse" "', argument " "8"" of type '" "int""'"); - } - arg8 = static_cast< int >(val8); - } - if (obj8) { - ecode9 = SWIG_AsVal_int(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvEllipse" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - } - if (obj9) { - ecode10 = SWIG_AsVal_int(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "cvEllipse" "', argument " "10"" of type '" "int""'"); - } - arg10 = static_cast< int >(val10); - } - { - try { - cvEllipse(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEllipseBox(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvBox2D arg2 ; - CvScalar arg3 ; - int arg4 = (int) 1 ; - int arg5 = (int) 8 ; - int arg6 = (int) 0 ; - bool freearg1 = false ; - CvBox2D temp2 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOO:cvEllipseBox",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"fffff", & temp2.center.x, & temp2.center.y, & temp2.size.width, & temp2.size.height, & temp2.angle)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 5 floats (center_x, center_y, width, height, angle)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvBox2D * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvBox2D, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvBox2D"); - return NULL; - } - arg2 = *ptr; - } - } - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvEllipseBox" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvEllipseBox" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvEllipseBox" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvEllipseBox(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFillConvexPoly(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - int arg3 ; - CvScalar arg4 ; - int arg5 = (int) 8 ; - int arg6 = (int) 0 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OO:cvFillConvexPoly",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvFillConvexPoly" "', argument " "2"" of type '" "CvPoint const *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvFillConvexPoly" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFillConvexPoly" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFillConvexPoly" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvFillConvexPoly(arg1,(CvPoint const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFillPoly(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint **arg2 = (CvPoint **) 0 ; - int *arg3 = (int *) 0 ; - int arg4 ; - CvScalar arg5 ; - int arg6 = (int) 8 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - void *vptr2 ; - CvPoint *buffer2 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|OO:cvFillPoly",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvPoint, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvPoint *) vptr2; - arg2=&buffer2; - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvFillPoly" "', argument " "3"" of type '" "int const *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvFillPoly" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFillPoly" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvFillPoly" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvFillPoly(arg1,arg2,(int const *)arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPolyLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint **arg2 = (CvPoint **) 0 ; - int *arg3 = (int *) 0 ; - int arg4 ; - int arg5 ; - CvScalar arg6 ; - int arg7 = (int) 1 ; - int arg8 = (int) 8 ; - int arg9 = (int) 0 ; - bool freearg1 = false ; - void *vptr2 ; - CvPoint *buffer2 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val7 ; - int ecode7 = 0 ; - int val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|OOO:cvPolyLine",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvPoint, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvPoint *) vptr2; - arg2=&buffer2; - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvPolyLine" "', argument " "3"" of type '" "int const *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvPolyLine" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvPolyLine" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - arg6 = PyObject_to_CvScalar( obj5 ); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvPolyLine" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - if (obj7) { - ecode8 = SWIG_AsVal_int(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvPolyLine" "', argument " "8"" of type '" "int""'"); - } - arg8 = static_cast< int >(val8); - } - if (obj8) { - ecode9 = SWIG_AsVal_int(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvPolyLine" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - } - { - try { - cvPolyLine(arg1,arg2,(int const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClipLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize arg1 ; - CvPoint *arg2 = (CvPoint *) 0 ; - CvPoint *arg3 = (CvPoint *) 0 ; - CvSize temp1 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvClipLine",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.width, & temp1.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg1 = *ptr; - } - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvClipLine" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvClipLine" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = reinterpret_cast< CvPoint * >(argp3); - { - try { - result = (int)cvClipLine(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitLineIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - CvPoint arg3 ; - CvLineIterator *arg4 = (CvLineIterator *) 0 ; - int arg5 = (int) 8 ; - int arg6 = (int) 0 ; - bool freearg1 = false ; - CvPoint temp2 ; - CvPoint temp3 ; - void *argp4 = 0 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OO:cvInitLineIterator",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvLineIterator, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvInitLineIterator" "', argument " "4"" of type '" "CvLineIterator *""'"); - } - arg4 = reinterpret_cast< CvLineIterator * >(argp4); - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvInitLineIterator" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvInitLineIterator" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - result = (int)cvInitLineIterator((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_font_face_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_font_face_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_font_face_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_font_face_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->font_face = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_font_face_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_font_face_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_font_face_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (int) ((arg1)->font_face); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_ascii_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_ascii_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_ascii_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFont_ascii_set" "', argument " "2"" of type '" "int const *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->ascii = (int const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_ascii_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_ascii_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_ascii_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (int *) ((arg1)->ascii); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_greek_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_greek_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_greek_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFont_greek_set" "', argument " "2"" of type '" "int const *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->greek = (int const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_greek_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_greek_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_greek_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (int *) ((arg1)->greek); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_cyrillic_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_cyrillic_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_cyrillic_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvFont_cyrillic_set" "', argument " "2"" of type '" "int const *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->cyrillic = (int const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_cyrillic_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_cyrillic_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_cyrillic_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (int *) ((arg1)->cyrillic); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_hscale_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_hscale_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_hscale_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_hscale_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->hscale = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_hscale_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_hscale_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_hscale_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (float) ((arg1)->hscale); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_vscale_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_vscale_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_vscale_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_vscale_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->vscale = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_vscale_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_vscale_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_vscale_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (float) ((arg1)->vscale); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_shear_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_shear_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_shear_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_shear_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->shear = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_shear_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_shear_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_shear_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (float) ((arg1)->shear); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_thickness_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_thickness_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_thickness_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_thickness_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->thickness = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_thickness_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_thickness_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_thickness_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (int) ((arg1)->thickness); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_dx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_dx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_dx_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_dx_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->dx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_dx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_dx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_dx_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (float) ((arg1)->dx); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_line_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvFont_line_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_line_type_set" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvFont_line_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->line_type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvFont_line_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvFont_line_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvFont_line_type_get" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - result = (int) ((arg1)->line_type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvFont")) SWIG_fail; - { - try { - result = (CvFont *)new CvFont(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFont, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvFont",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFont, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvFont" "', argument " "1"" of type '" "CvFont *""'"); - } - arg1 = reinterpret_cast< CvFont * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvFont_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvFont, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvInitFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFont *arg1 = (CvFont *) 0 ; - int arg2 ; - double arg3 ; - double arg4 ; - double arg5 = (double) 0 ; - int arg6 = (int) 1 ; - int arg7 = (int) 8 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOO:cvInitFont",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvFont *)malloc (sizeof (CvFont)); - arg2 = (int)PyInt_AsLong (obj0); - if (SWIG_arg_fail(1)) SWIG_fail; - } - ecode3 = SWIG_AsVal_double(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInitFont" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvInitFont" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - if (obj3) { - ecode5 = SWIG_AsVal_double(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvInitFont" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - } - if (obj4) { - ecode6 = SWIG_AsVal_int(obj4, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvInitFont" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj5) { - ecode7 = SWIG_AsVal_int(obj5, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvInitFont" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvInitFont(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - PyObject *to_add; - - /* extract the pointer we want to add to the returned tuple */ - to_add = SWIG_NewPointerObj (arg1, SWIGTYPE_p_CvFont, 0); - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFont(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - int arg2 = (int) 1 ; - double val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvFont result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvFont",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvFont" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvFont" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = cvFont(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvFont(static_cast< const CvFont& >(result))), SWIGTYPE_p_CvFont, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPutText(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - char *arg2 = (char *) 0 ; - CvPoint arg3 ; - CvFont *arg4 = (CvFont *) 0 ; - CvScalar arg5 ; - bool freearg1 = false ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - CvPoint temp3 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvPutText",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvPutText" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvPutText" "', argument " "4"" of type '" "CvFont const *""'"); - } - arg4 = reinterpret_cast< CvFont * >(argp4); - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - { - try { - cvPutText(arg1,(char const *)arg2,arg3,(CvFont const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetTextSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvFont *arg2 = (CvFont *) 0 ; - CvSize *arg3 = (CvSize *) 0 ; - int *arg4 = (int *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - { - CvSize *size = (CvSize *)malloc (sizeof (CvSize)); - int *baseline = (int *)malloc (sizeof (int)); - arg3 = size; - arg4 = baseline; - } - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetTextSize",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetTextSize" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFont, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetTextSize" "', argument " "2"" of type '" "CvFont const *""'"); - } - arg2 = reinterpret_cast< CvFont * >(argp2); - { - try { - cvGetTextSize((char const *)arg1,(CvFont const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - PyObject * to_add[2]; - - /* extract the pointers we want to add to the returned tuple */ - to_add [0] = SWIG_NewPointerObj (arg3, SWIGTYPE_p_CvSize, 0); - to_add [1] = PyInt_FromLong (*arg4); - - resultobj = SWIG_AppendResult(resultobj, to_add, 2); - } - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvColorToScalar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - int arg2 ; - double val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvScalar result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvColorToScalar",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvColorToScalar" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvColorToScalar" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvColorToScalar(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvScalar(static_cast< const CvScalar& >(result))), SWIGTYPE_p_CvScalar, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEllipse2Poly(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - CvSize arg2 ; - int arg3 ; - int arg4 ; - int arg5 ; - CvPoint *arg6 = (CvPoint *) 0 ; - int arg7 ; - CvPoint temp1 ; - CvSize temp2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:cvEllipse2Poly",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg2 = *ptr; - } - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvEllipse2Poly" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvEllipse2Poly" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvEllipse2Poly" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvEllipse2Poly" "', argument " "6"" of type '" "CvPoint *""'"); - } - arg6 = reinterpret_cast< CvPoint * >(argp6); - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvEllipse2Poly" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - try { - result = (int)cvEllipse2Poly(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDrawContours(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - CvScalar arg3 ; - CvScalar arg4 ; - int arg5 ; - int arg6 = (int) 1 ; - int arg7 = (int) 8 ; - CvPoint arg8 = (CvPoint) cvPoint(0,0) ; - bool freearg1 = false ; - void *ptr2 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - CvPoint temp8 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|OOO:cvDrawContours",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvDrawContours" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvDrawContours" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvDrawContours" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - if (obj7) { - { - if (PyTuple_Check(obj7)) - { - if (!PyArg_ParseTuple(obj7,"ii", & temp8.x, & temp8.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg8 = temp8; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj7, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg8 = *ptr; - } - } - } - { - try { - cvDrawContours(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLUT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvLUT",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvLUT((void const *)arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTreeNodeIterator_node_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *arg2 = (void *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTreeNodeIterator_node_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_node_set" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTreeNodeIterator_node_set" "', argument " "2"" of type '" "void const *""'"); - } - if (arg1) (arg1)->node = (void const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTreeNodeIterator_node_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTreeNodeIterator_node_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_node_get" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - result = (void *) ((arg1)->node); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTreeNodeIterator_level_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTreeNodeIterator_level_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_level_set" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTreeNodeIterator_level_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->level = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTreeNodeIterator_level_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTreeNodeIterator_level_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_level_get" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - result = (int) ((arg1)->level); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTreeNodeIterator_max_level_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTreeNodeIterator_max_level_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_max_level_set" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTreeNodeIterator_max_level_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->max_level = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTreeNodeIterator_max_level_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTreeNodeIterator_max_level_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTreeNodeIterator_max_level_get" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - result = (int) ((arg1)->max_level); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTreeNodeIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTreeNodeIterator")) SWIG_fail; - { - try { - result = (CvTreeNodeIterator *)new CvTreeNodeIterator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTreeNodeIterator, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTreeNodeIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTreeNodeIterator",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTreeNodeIterator" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTreeNodeIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTreeNodeIterator, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvInitTreeNodeIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvInitTreeNodeIterator",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInitTreeNodeIterator" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvInitTreeNodeIterator" "', argument " "2"" of type '" "void const *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvInitTreeNodeIterator" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvInitTreeNodeIterator(arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNextTreeNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvNextTreeNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNextTreeNode" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - { - try { - result = (void *)cvNextTreeNode(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPrevTreeNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTreeNodeIterator *arg1 = (CvTreeNodeIterator *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvPrevTreeNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTreeNodeIterator, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvPrevTreeNode" "', argument " "1"" of type '" "CvTreeNodeIterator *""'"); - } - arg1 = reinterpret_cast< CvTreeNodeIterator * >(argp1); - { - try { - result = (void *)cvPrevTreeNode(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInsertNodeIntoTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - void *arg2 = (void *) 0 ; - void *arg3 = (void *) 0 ; - int res1 ; - int res2 ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvInsertNodeIntoTree",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInsertNodeIntoTree" "', argument " "1"" of type '" "void *""'"); - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvInsertNodeIntoTree" "', argument " "2"" of type '" "void *""'"); - } - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvInsertNodeIntoTree" "', argument " "3"" of type '" "void *""'"); - } - { - try { - cvInsertNodeIntoTree(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRemoveNodeFromTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - void *arg2 = (void *) 0 ; - int res1 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvRemoveNodeFromTree",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRemoveNodeFromTree" "', argument " "1"" of type '" "void *""'"); - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRemoveNodeFromTree" "', argument " "2"" of type '" "void *""'"); - } - { - try { - cvRemoveNodeFromTree(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTreeToNodeSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int arg2 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - int res1 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvTreeToNodeSeq",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvTreeToNodeSeq" "', argument " "1"" of type '" "void const *""'"); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvTreeToNodeSeq" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvTreeToNodeSeq" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - { - try { - result = (CvSeq *)cvTreeToNodeSeq((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvKMeans2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - CvArr *arg3 = (CvArr *) 0 ; - CvTermCriteria arg4 ; - int arg5 = (int) 1 ; - CvRNG *arg6 = (CvRNG *) 0 ; - int arg7 = (int) 0 ; - CvArr *arg8 = (CvArr *) 0 ; - double *arg9 = (double *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - CvTermCriteria temp4 ; - int val5 ; - int ecode5 = 0 ; - void *vptr6 ; - CvRNG_Wrapper *wrapper6 ; - int val7 ; - int ecode7 = 0 ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OOOOO:cvKMeans2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvKMeans2" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvKMeans2" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - { - if(SWIG_ConvertPtr(obj5, &vptr6, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper6 = (CvRNG_Wrapper *) vptr6; - arg6 = wrapper6->ptr(); - } - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvKMeans2" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - if (obj7) { - { - arg8 = PyObject_to_CvArr(obj7, &freearg8); - } - } - if (obj8) { - res9 = SWIG_ConvertPtr(obj8, &argp9,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "cvKMeans2" "', argument " "9"" of type '" "double *""'"); - } - arg9 = reinterpret_cast< double * >(argp9); - } - { - try { - result = (int)cvKMeans2((void const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRegisterModule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRegisterModule",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRegisterModule" "', argument " "1"" of type '" "CvModuleInfo const *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - { - try { - result = (int)cvRegisterModule((CvModuleInfo const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvUseOptimized(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvUseOptimized",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvUseOptimized" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (int)cvUseOptimized(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetModuleInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char **arg2 = (char **) 0 ; - char **arg3 = (char **) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - void *vptr2 ; - char *buffer2 ; - void *vptr3 ; - char *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetModuleInfo",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetModuleInfo" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer2 = (char *) vptr2; - arg2=&buffer2; - } - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer3 = (char *) vptr3; - arg3=&buffer3; - } - { - try { - cvGetModuleInfo((char const *)arg1,(char const **)arg2,(char const **)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetErrStatus(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int result; - - if (!PyArg_ParseTuple(args,(char *)":cvGetErrStatus")) SWIG_fail; - { - try { - result = (int)cvGetErrStatus(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetErrStatus(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSetErrStatus",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSetErrStatus" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - cvSetErrStatus(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetErrMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int result; - - if (!PyArg_ParseTuple(args,(char *)":cvGetErrMode")) SWIG_fail; - { - try { - result = (int)cvGetErrMode(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetErrMode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSetErrMode",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSetErrMode" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (int)cvSetErrMode(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvError(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - int arg5 ; - int val1 ; - int ecode1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvError",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvError" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvError" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvError" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvError" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvError" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - cvError(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvErrorStr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvErrorStr",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvErrorStr" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (char *)cvErrorStr(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetErrInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char **arg1 = (char **) 0 ; - char **arg2 = (char **) 0 ; - char **arg3 = (char **) 0 ; - int *arg4 = (int *) 0 ; - void *vptr1 ; - char *buffer1 ; - void *vptr2 ; - char *buffer2 ; - void *vptr3 ; - char *buffer3 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvGetErrInfo",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - if ((SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer1 = (char *) vptr1; - arg1=&buffer1; - } - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer2 = (char *) vptr2; - arg2=&buffer2; - } - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer3 = (char *) vptr3; - arg3=&buffer3; - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvGetErrInfo" "', argument " "4"" of type '" "int *""'"); - } - arg4 = reinterpret_cast< int * >(argp4); - { - try { - result = (int)cvGetErrInfo((char const **)arg1,(char const **)arg2,(char const **)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvErrorFromIppStatus(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvErrorFromIppStatus",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvErrorFromIppStatus" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (int)cvErrorFromIppStatus(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRedirectError(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvErrorCallback arg1 = (CvErrorCallback) 0 ; - void *arg2 = (void *) NULL ; - void **arg3 = (void **) NULL ; - int res2 ; - void *vptr3 ; - void *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvErrorCallback result; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvRedirectError",&obj0,&obj1,&obj2)) SWIG_fail; - { - int res = SWIG_ConvertFunctionPtr(obj0, (void**)(&arg1), SWIGTYPE_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvRedirectError" "', argument " "1"" of type '" "CvErrorCallback""'"); - } - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRedirectError" "', argument " "2"" of type '" "void *""'"); - } - } - if (obj2) { - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_void, 1)) == -1){ - SWIG_fail; - } - buffer3 = (void *) vptr3; - arg3=&buffer3; - } - } - { - try { - result = (CvErrorCallback)cvRedirectError(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNulDevReport(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - int arg5 ; - void *arg6 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int res6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvNulDevReport",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvNulDevReport" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvNulDevReport" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvNulDevReport" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvNulDevReport" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvNulDevReport" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5,SWIG_as_voidptrptr(&arg6), 0, 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvNulDevReport" "', argument " "6"" of type '" "void *""'"); - } - { - try { - result = (int)cvNulDevReport(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStdErrReport(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - int arg5 ; - void *arg6 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int res6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvStdErrReport",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvStdErrReport" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStdErrReport" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvStdErrReport" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvStdErrReport" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvStdErrReport" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5,SWIG_as_voidptrptr(&arg6), 0, 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvStdErrReport" "', argument " "6"" of type '" "void *""'"); - } - { - try { - result = (int)cvStdErrReport(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGuiBoxReport(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - int arg5 ; - void *arg6 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int res6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvGuiBoxReport",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvGuiBoxReport" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGuiBoxReport" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGuiBoxReport" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvGuiBoxReport" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvGuiBoxReport" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5,SWIG_as_voidptrptr(&arg6), 0, 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvGuiBoxReport" "', argument " "6"" of type '" "void *""'"); - } - { - try { - result = (int)cvGuiBoxReport(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetMemoryManager(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAllocFunc arg1 = (CvAllocFunc) NULL ; - CvFreeFunc arg2 = (CvFreeFunc) NULL ; - void *arg3 = (void *) NULL ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"|OOO:cvSetMemoryManager",&obj0,&obj1,&obj2)) SWIG_fail; - if (obj0) { - { - int res = SWIG_ConvertFunctionPtr(obj0, (void**)(&arg1), SWIGTYPE_p_f_size_t_p_void__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetMemoryManager" "', argument " "1"" of type '" "CvAllocFunc""'"); - } - } - } - if (obj1) { - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_void_p_void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetMemoryManager" "', argument " "2"" of type '" "CvFreeFunc""'"); - } - } - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSetMemoryManager" "', argument " "3"" of type '" "void *""'"); - } - } - { - try { - cvSetMemoryManager(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetIPLAllocators(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - Cv_iplCreateImageHeader arg1 = (Cv_iplCreateImageHeader) 0 ; - Cv_iplAllocateImageData arg2 = (Cv_iplAllocateImageData) 0 ; - Cv_iplDeallocate arg3 = (Cv_iplDeallocate) 0 ; - Cv_iplCreateROI arg4 = (Cv_iplCreateROI) 0 ; - Cv_iplCloneImage arg5 = (Cv_iplCloneImage) 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSetIPLAllocators",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - int res = SWIG_ConvertFunctionPtr(obj0, (void**)(&arg1), SWIGTYPE_p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetIPLAllocators" "', argument " "1"" of type '" "Cv_iplCreateImageHeader""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p__IplImage_int_int__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetIPLAllocators" "', argument " "2"" of type '" "Cv_iplAllocateImageData""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p__IplImage_int__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetIPLAllocators" "', argument " "3"" of type '" "Cv_iplDeallocate""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_int_int_int_int_int__p__IplROI); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetIPLAllocators" "', argument " "4"" of type '" "Cv_iplCreateROI""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj4, (void**)(&arg5), SWIGTYPE_p_f_p_q_const__IplImage__p__IplImage); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetIPLAllocators" "', argument " "5"" of type '" "Cv_iplCloneImage""'"); - } - } - { - try { - cvSetIPLAllocators(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvOpenFileStorage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvFileStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvOpenFileStorage",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvOpenFileStorage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvOpenFileStorage" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvOpenFileStorage" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvFileStorage *)cvOpenFileStorage((char const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileStorage, SWIG_POINTER_OWN | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleaseFileStorage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage **arg1 = (CvFileStorage **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleaseFileStorage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleaseFileStorage" "', argument " "1"" of type '" "CvFileStorage **""'"); - } - arg1 = reinterpret_cast< CvFileStorage ** >(argp1); - { - try { - cvReleaseFileStorage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAttrValue(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAttrList *arg1 = (CvAttrList *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvAttrValue",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvAttrValue" "', argument " "1"" of type '" "CvAttrList const *""'"); - } - arg1 = reinterpret_cast< CvAttrList * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvAttrValue" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (char *)cvAttrValue((CvAttrList const *)arg1,(char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartWriteStruct(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - char *arg4 = (char *) NULL ; - CvAttrList arg5 = (CvAttrList) cvAttrList() ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - void *argp5 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvStartWriteStruct",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvStartWriteStruct" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStartWriteStruct" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStartWriteStruct" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvStartWriteStruct" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - } - if (obj4) { - { - res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_CvAttrList, 0 | 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvStartWriteStruct" "', argument " "5"" of type '" "CvAttrList""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvStartWriteStruct" "', argument " "5"" of type '" "CvAttrList""'"); - } else { - CvAttrList * temp = reinterpret_cast< CvAttrList * >(argp5); - arg5 = *temp; - if (SWIG_IsNewObj(res5)) delete temp; - } - } - } - { - try { - cvStartWriteStruct(arg1,(char const *)arg2,arg3,(char const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEndWriteStruct(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvEndWriteStruct",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvEndWriteStruct" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - { - try { - cvEndWriteStruct(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteInt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvWriteInt",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteInt" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWriteInt" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvWriteInt" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvWriteInt(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteReal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - double arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvWriteReal",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteReal" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWriteReal" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvWriteReal" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - cvWriteReal(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvWriteString",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteString" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWriteString" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvWriteString" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvWriteString" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvWriteString(arg1,(char const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteComment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvWriteComment",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteComment" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWriteComment" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvWriteComment" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvWriteComment(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWrite(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - void *arg3 = (void *) 0 ; - CvAttrList arg4 = (CvAttrList) cvAttrList() ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - void *argp4 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvWrite",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWrite" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWrite" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvWrite" "', argument " "3"" of type '" "void const *""'"); - } - if (obj3) { - { - res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_CvAttrList, 0 | 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvWrite" "', argument " "4"" of type '" "CvAttrList""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvWrite" "', argument " "4"" of type '" "CvAttrList""'"); - } else { - CvAttrList * temp = reinterpret_cast< CvAttrList * >(argp4); - arg4 = *temp; - if (SWIG_IsNewObj(res4)) delete temp; - } - } - } - { - try { - cvWrite(arg1,(char const *)arg2,(void const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartNextStream(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvStartNextStream",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvStartNextStream" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - { - try { - cvStartNextStream(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteRawData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - char *arg4 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvWriteRawData",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteRawData" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWriteRawData" "', argument " "2"" of type '" "void const *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvWriteRawData" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvWriteRawData" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - { - try { - cvWriteRawData(arg1,(void const *)arg2,arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetHashedKey(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 = (int) -1 ; - int arg4 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvStringHashNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvGetHashedKey",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetHashedKey" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetHashedKey" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetHashedKey" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetHashedKey" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (CvStringHashNode *)cvGetHashedKey(arg1,(char const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetRootFileNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - int arg2 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvFileNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvGetRootFileNode",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetRootFileNode" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetRootFileNode" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (CvFileNode *)cvGetRootFileNode((CvFileStorage const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetFileNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - CvStringHashNode *arg3 = (CvStringHashNode *) 0 ; - int arg4 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvFileNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvGetFileNode",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetFileNode" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetFileNode" "', argument " "2"" of type '" "CvFileNode *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvStringHashNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGetFileNode" "', argument " "3"" of type '" "CvStringHashNode const *""'"); - } - arg3 = reinterpret_cast< CvStringHashNode * >(argp3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvGetFileNode" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (CvFileNode *)cvGetFileNode(arg1,arg2,(CvStringHashNode const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetFileNodeByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvFileNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetFileNodeByName",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetFileNodeByName" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetFileNodeByName" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGetFileNodeByName" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - result = (CvFileNode *)cvGetFileNodeByName((CvFileStorage const *)arg1,(CvFileNode const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadInt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - int arg2 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvReadInt",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadInt" "', argument " "1"" of type '" "CvFileNode const *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvReadInt" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (int)cvReadInt((CvFileNode const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadIntByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvReadIntByName",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadIntByName" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadIntByName" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvReadIntByName" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReadIntByName" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - result = (int)cvReadIntByName((CvFileStorage const *)arg1,(CvFileNode const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadReal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - double arg2 = (double) 0. ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvReadReal",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadReal" "', argument " "1"" of type '" "CvFileNode const *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - if (obj1) { - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvReadReal" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - } - { - try { - result = (double)cvReadReal((CvFileNode const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadRealByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - char *arg3 = (char *) 0 ; - double arg4 = (double) 0. ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvReadRealByName",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadRealByName" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadRealByName" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvReadRealByName" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReadRealByName" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - result = (double)cvReadRealByName((CvFileStorage const *)arg1,(CvFileNode const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadString(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - char *arg2 = (char *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvReadString",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadString" "', argument " "1"" of type '" "CvFileNode const *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - if (obj1) { - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadString" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - } - { - try { - result = (char *)cvReadString((CvFileNode const *)arg1,(char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadStringByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvReadStringByName",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadStringByName" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadStringByName" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvReadStringByName" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - if (obj3) { - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvReadStringByName" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - } - { - try { - result = (char *)cvReadStringByName((CvFileStorage const *)arg1,(CvFileNode const *)arg2,(char const *)arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRead(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - CvAttrList *arg3 = (CvAttrList *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvRead",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRead" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRead" "', argument " "2"" of type '" "CvFileNode *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvRead" "', argument " "3"" of type '" "CvAttrList *""'"); - } - arg3 = reinterpret_cast< CvAttrList * >(argp3); - } - { - try { - result = (void *)cvRead(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadByName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - char *arg3 = (char *) 0 ; - CvAttrList *arg4 = (CvAttrList *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvReadByName",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadByName" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadByName" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvReadByName" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - if (obj3) { - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvAttrList, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvReadByName" "', argument " "4"" of type '" "CvAttrList *""'"); - } - arg4 = reinterpret_cast< CvAttrList * >(argp4); - } - { - try { - result = (void *)cvReadByName(arg1,(CvFileNode const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartReadRawData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - CvSeqReader *arg3 = (CvSeqReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvStartReadRawData",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvStartReadRawData" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStartReadRawData" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvStartReadRawData" "', argument " "3"" of type '" "CvSeqReader *""'"); - } - arg3 = reinterpret_cast< CvSeqReader * >(argp3); - { - try { - cvStartReadRawData((CvFileStorage const *)arg1,(CvFileNode const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadRawDataSlice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvSeqReader *arg2 = (CvSeqReader *) 0 ; - int arg3 ; - void *arg4 = (void *) 0 ; - char *arg5 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - int res5 ; - char *buf5 = 0 ; - int alloc5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvReadRawDataSlice",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadRawDataSlice" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqReader, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadRawDataSlice" "', argument " "2"" of type '" "CvSeqReader *""'"); - } - arg2 = reinterpret_cast< CvSeqReader * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvReadRawDataSlice" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvReadRawDataSlice" "', argument " "4"" of type '" "void *""'"); - } - res5 = SWIG_AsCharPtrAndSize(obj4, &buf5, NULL, &alloc5); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvReadRawDataSlice" "', argument " "5"" of type '" "char const *""'"); - } - arg5 = reinterpret_cast< char * >(buf5); - { - try { - cvReadRawDataSlice((CvFileStorage const *)arg1,arg2,arg3,arg4,(char const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc5 == SWIG_NEWOBJ) delete[] buf5; - return resultobj; -fail: - if (alloc5 == SWIG_NEWOBJ) delete[] buf5; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadRawData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - CvFileNode *arg2 = (CvFileNode *) 0 ; - void *arg3 = (void *) 0 ; - char *arg4 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvReadRawData",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadRawData" "', argument " "1"" of type '" "CvFileStorage const *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvReadRawData" "', argument " "2"" of type '" "CvFileNode const *""'"); - } - arg2 = reinterpret_cast< CvFileNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvReadRawData" "', argument " "3"" of type '" "void *""'"); - } - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvReadRawData" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - { - try { - cvReadRawData((CvFileStorage const *)arg1,(CvFileNode const *)arg2,arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteFileNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvWriteFileNode",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteFileNode" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvWriteFileNode" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvWriteFileNode" "', argument " "3"" of type '" "CvFileNode const *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvWriteFileNode" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - cvWriteFileNode(arg1,(char const *)arg2,(CvFileNode const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetFileNodeName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileNode *arg1 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetFileNodeName",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetFileNodeName" "', argument " "1"" of type '" "CvFileNode const *""'"); - } - arg1 = reinterpret_cast< CvFileNode * >(argp1); - { - try { - result = (char *)cvGetFileNodeName((CvFileNode const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRegisterType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *arg1 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRegisterType",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRegisterType" "', argument " "1"" of type '" "CvTypeInfo const *""'"); - } - arg1 = reinterpret_cast< CvTypeInfo * >(argp1); - { - try { - cvRegisterType((CvTypeInfo const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvUnregisterType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvUnregisterType",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvUnregisterType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - cvUnregisterType((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFirstType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":cvFirstType")) SWIG_fail; - { - try { - result = (CvTypeInfo *)cvFirstType(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFindType",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFindType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - result = (CvTypeInfo *)cvFindType((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTypeOf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int res1 ; - PyObject * obj0 = 0 ; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvTypeOf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvTypeOf" "', argument " "1"" of type '" "void const *""'"); - } - { - try { - result = (CvTypeInfo *)cvTypeOf((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int res1 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClone",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvClone" "', argument " "1"" of type '" "void const *""'"); - } - { - try { - result = (void *)cvClone((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSave(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - void *arg2 = (void *) 0 ; - char *arg3 = (char *) NULL ; - char *arg4 = (char *) NULL ; - CvAttrList arg5 = (CvAttrList) cvAttrList() ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - void *argp5 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOO:cvSave",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSave" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSave" "', argument " "2"" of type '" "void const *""'"); - } - if (obj2) { - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSave" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - } - if (obj3) { - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvSave" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - } - if (obj4) { - { - res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_CvAttrList, 0 | 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvSave" "', argument " "5"" of type '" "CvAttrList""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvSave" "', argument " "5"" of type '" "CvAttrList""'"); - } else { - CvAttrList * temp = reinterpret_cast< CvAttrList * >(argp5); - arg5 = *temp; - if (SWIG_IsNewObj(res5)) delete temp; - } - } - } - { - try { - cvSave((char const *)arg1,(void const *)arg2,(char const *)arg3,(char const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLoad(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) NULL ; - char *arg3 = (char *) NULL ; - char **arg4 = (char **) NULL ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - void *vptr4 ; - char *buffer4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|OOO:cvLoad",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoad" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - if (obj1) { - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvLoad" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - } - if (obj2) { - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvLoad" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - } - if (obj3) { - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer4 = (char *) vptr4; - arg4=&buffer4; - } - } - { - try { - result = (void *)cvLoad((char const *)arg1,arg2,(char const *)arg3,(char const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetTickCount(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int64 result; - - if (!PyArg_ParseTuple(args,(char *)":cvGetTickCount")) SWIG_fail; - { - try { - result = cvGetTickCount(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new int64(static_cast< const int64& >(result))), SWIGTYPE_p_int64_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetTickFrequency(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double result; - - if (!PyArg_ParseTuple(args,(char *)":cvGetTickFrequency")) SWIG_fail; - { - try { - result = (double)cvGetTickFrequency(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetNumThreads(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int result; - - if (!PyArg_ParseTuple(args,(char *)":cvGetNumThreads")) SWIG_fail; - { - try { - result = (int)cvGetNumThreads(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetNumThreads(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"|O:cvSetNumThreads",&obj0)) SWIG_fail; - if (obj0) { - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSetNumThreads" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - } - { - try { - cvSetNumThreads(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetThreadNum(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int result; - - if (!PyArg_ParseTuple(args,(char *)":cvGetThreadNum")) SWIG_fail; - { - try { - result = (int)cvGetThreadNum(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetImageIOFunctions(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLoadImageFunc arg1 = (CvLoadImageFunc) 0 ; - CvLoadImageMFunc arg2 = (CvLoadImageMFunc) 0 ; - CvSaveImageFunc arg3 = (CvSaveImageFunc) 0 ; - CvShowImageFunc arg4 = (CvShowImageFunc) 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvSetImageIOFunctions",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - int res = SWIG_ConvertFunctionPtr(obj0, (void**)(&arg1), SWIGTYPE_p_f_p_q_const__char_int__p__IplImage); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetImageIOFunctions" "', argument " "1"" of type '" "CvLoadImageFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_int__p_CvMat); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetImageIOFunctions" "', argument " "2"" of type '" "CvLoadImageMFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p_q_const__char_p_q_const__void_p_q_const__int__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetImageIOFunctions" "', argument " "3"" of type '" "CvSaveImageFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_p_q_const__char_p_q_const__void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetImageIOFunctions" "', argument " "4"" of type '" "CvShowImageFunc""'"); - } - } - { - try { - result = (int)cvSetImageIOFunctions(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvImage")) SWIG_fail; - { - try { - result = (CvImage *)new CvImage(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSize arg1 ; - int arg2 ; - int arg3 ; - CvSize temp1 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvImage",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.width, & temp1.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvImage" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvImage" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvImage *)new CvImage(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage header1 ; - PyObject * obj0 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvImage",&obj0)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - try { - result = (CvImage *)new CvImage(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvImage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvImage, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvImage" "', argument " "1"" of type '" "CvImage const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvImage" "', argument " "1"" of type '" "CvImage const &""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (CvImage *)new CvImage((CvImage const &)*arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvImage",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvImage" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvImage" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvImage *)new CvImage((char const *)arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvImage",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvImage" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (CvImage *)new CvImage((char const *)arg1,(char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvImage",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - result = (CvImage *)new CvImage((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvImage",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvImage" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvImage" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvImage" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - result = (CvImage *)new CvImage(arg1,(char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvImage",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvImage" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvImage" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvImage" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvImage *)new CvImage(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvImage, SWIG_POINTER_NEW | 0 ); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvImage(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvImage__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvImage__SWIG_2(self, args); - } - } - if (argc == 1) { - int _v; - int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvImage__SWIG_3(self, args); - } - } - if (argc == 1) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvImage__SWIG_6(self, args); - } - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvImage__SWIG_5(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_CvSize, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvImage__SWIG_1(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvImage__SWIG_8(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvImage__SWIG_7(self, args); - } - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvImage__SWIG_4(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvImage'.\n" - " Possible C/C++ prototypes are:\n" - " CvImage()\n" - " CvImage(CvSize,int,int)\n" - " CvImage(IplImage *)\n" - " CvImage(CvImage const &)\n" - " CvImage(char const *,char const *,int)\n" - " CvImage(char const *,char const *)\n" - " CvImage(char const *)\n" - " CvImage(CvFileStorage *,char const *,char const *)\n" - " CvImage(CvFileStorage *,char const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvImage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvImage" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_clone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvImage result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_clone",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_clone" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (arg1)->clone(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvImage(static_cast< const CvImage& >(result))), SWIGTYPE_p_CvImage, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_create(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - CvSize arg2 ; - int arg3 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvSize temp2 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvImage_create",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_create" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg2 = *ptr; - } - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvImage_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvImage_create" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - (arg1)->create(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_release(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_release",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_release" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - (arg1)->release(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_clear" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_attach__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - bool val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvImage_attach",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_attach" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(obj1, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - ecode3 = SWIG_AsVal_bool(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvImage_attach" "', argument " "3"" of type '" "bool""'"); - } - arg3 = static_cast< bool >(val3); - { - try { - (arg1)->attach(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_attach__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_attach",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_attach" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(obj1, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - { - try { - (arg1)->attach(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_attach(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_attach__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_attach__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvImage_attach'.\n" - " Possible C/C++ prototypes are:\n" - " attach(CvImage *,IplImage *,bool)\n" - " attach(CvImage *,IplImage *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_detach(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_detach",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_detach" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - (arg1)->detach(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_load__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvImage_load",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_load" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvImage_load" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_load__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvImage_load",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_load" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_load__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_load",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_load" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (bool)(arg1)->load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_load(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_load__SWIG_2(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_load__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_load__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvImage_load'.\n" - " Possible C/C++ prototypes are:\n" - " load(CvImage *,char const *,char const *,int)\n" - " load(CvImage *,char const *,char const *)\n" - " load(CvImage *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_read__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvImage_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_read" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvImage_read" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_read__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvImage_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_read" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvImage_read" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_read(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_read__SWIG_1(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_read__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvImage_read'.\n" - " Possible C/C++ prototypes are:\n" - " read(CvImage *,CvFileStorage *,char const *,char const *)\n" - " read(CvImage *,CvFileStorage *,char const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_save__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int *arg4 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvImage_save",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_save" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvImage_save" "', argument " "4"" of type '" "int const *""'"); - } - arg4 = reinterpret_cast< int * >(argp4); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3,(int const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_save__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvImage_save",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_save" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_save(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_save__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_int, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_save__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvImage_save'.\n" - " Possible C/C++ prototypes are:\n" - " save(CvImage *,char const *,char const *,int const *)\n" - " save(CvImage *,char const *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvImage_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_write" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvImage_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - (arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_show(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_show",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_show" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvImage_show" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - (arg1)->show((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_is_valid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_is_valid",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_is_valid" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (bool)(arg1)->is_valid(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_width(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_width",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_width" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->width(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_height(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_height",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_height" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->height(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_size" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = ((CvImage const *)arg1)->size(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSize(static_cast< const CvSize& >(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_roi_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_roi_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi_size" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = ((CvImage const *)arg1)->roi_size(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSize(static_cast< const CvSize& >(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_roi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_roi",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = ((CvImage const *)arg1)->roi(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvRect(static_cast< const CvRect& >(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_coi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_coi",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_coi" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->coi(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_set_roi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - CvRect arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvRect temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_set_roi",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_set_roi" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"iiii", & temp2.x, & temp2.y, & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - (arg1)->set_roi(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_reset_roi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_reset_roi",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_reset_roi" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - (arg1)->reset_roi(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_set_coi(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_set_coi",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_set_coi" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvImage_set_coi" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - (arg1)->set_coi(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_depth(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_depth",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_depth" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->depth(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_channels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_channels",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_channels" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->channels(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_pix_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_pix_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_pix_size" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->pix_size(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_data__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_data" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (uchar *)(arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_data__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_data" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (uchar *)((CvImage const *)arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_data(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[2]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 1); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_data__SWIG_0(self, args); - } - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvImage_data__SWIG_1(self, args); - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvImage_data'.\n" - " Possible C/C++ prototypes are:\n" - " data(CvImage *)\n" - " data(CvImage const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_step(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_step",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_step" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->step(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_origin(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_origin",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_origin" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (int)((CvImage const *)arg1)->origin(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_roi_row__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_roi_row",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi_row" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvImage_roi_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (uchar *)(arg1)->roi_row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_roi_row__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvImage_roi_row",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_roi_row" "', argument " "1"" of type '" "CvImage const *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvImage_roi_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (uchar *)((CvImage const *)arg1)->roi_row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_roi_row(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_roi_row__SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvImage_roi_row__SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvImage_roi_row'.\n" - " Possible C/C++ prototypes are:\n" - " roi_row(CvImage *,int)\n" - " roi_row(CvImage const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvImage_asIplImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvImage *arg1 = (CvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvImage_asIplImage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvImage_asIplImage" "', argument " "1"" of type '" "CvImage *""'"); - } - arg1 = reinterpret_cast< CvImage * >(argp1); - { - try { - result = (IplImage *)(arg1)->operator IplImage*(); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvImage_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvImage, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMatrix")) SWIG_fail; - { - try { - result = (CvMatrix *)new CvMatrix(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvMatrix",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *arg5 = (void *) 0 ; - int arg6 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - int res5 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - res5 = SWIG_ConvertPtr(obj4,SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "void *""'"); - } - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "new_CvMatrix" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *arg5 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - int res5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - res5 = SWIG_ConvertPtr(obj4,SWIG_as_voidptrptr(&arg5), 0, 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "void *""'"); - } - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - bool arg5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = reinterpret_cast< CvMemStorage * >(argp4); - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = reinterpret_cast< CvMemStorage * >(argp4); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int arg5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "void *""'"); - } - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvMatrix" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - void *arg4 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int res4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvMatrix",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvMatrix" "', argument " "4"" of type '" "void *""'"); - } - { - try { - result = (CvMatrix *)new CvMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_9(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvMatrix",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvMatrix *)new CvMatrix(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_10(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvMatrix",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_CvMatrix, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvMatrix const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvMatrix const &""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (CvMatrix *)new CvMatrix((CvMatrix const &)*arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_11(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvMatrix",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMatrix *)new CvMatrix((char const *)arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_12(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvMatrix",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (CvMatrix *)new CvMatrix((char const *)arg1,(char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_13(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvMatrix",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - result = (CvMatrix *)new CvMatrix((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_14(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvMatrix",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,(char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix__SWIG_15(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFileStorage *arg1 = (CvFileStorage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMatrix *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvMatrix",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvMatrix" "', argument " "1"" of type '" "CvFileStorage *""'"); - } - arg1 = reinterpret_cast< CvFileStorage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_CvMatrix" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvMatrix" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvMatrix *)new CvMatrix(arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix, SWIG_POINTER_NEW | 0 ); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvMatrix__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_9(self, args); - } - } - if (argc == 1) { - int _v; - int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_10(self, args); - } - } - if (argc == 1) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_13(self, args); - } - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_12(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_15(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_14(self, args); - } - } - } - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_1(self, args); - } - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_11(self, args); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_6(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_4(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[3], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_8(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_5(self, args); - } - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[4], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvMatrix__SWIG_3(self, args); - } - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[3], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_7(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[4], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvMatrix__SWIG_2(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvMatrix'.\n" - " Possible C/C++ prototypes are:\n" - " CvMatrix()\n" - " CvMatrix(int,int,int)\n" - " CvMatrix(int,int,int,CvMat *,void *,int)\n" - " CvMatrix(int,int,int,CvMat *,void *)\n" - " CvMatrix(int,int,int,CvMat *)\n" - " CvMatrix(int,int,int,CvMemStorage *,bool)\n" - " CvMatrix(int,int,int,CvMemStorage *)\n" - " CvMatrix(int,int,int,void *,int)\n" - " CvMatrix(int,int,int,void *)\n" - " CvMatrix(CvMat *)\n" - " CvMatrix(CvMatrix const &)\n" - " CvMatrix(char const *,char const *,int)\n" - " CvMatrix(char const *,char const *)\n" - " CvMatrix(char const *)\n" - " CvMatrix(CvFileStorage *,char const *,char const *)\n" - " CvMatrix(CvFileStorage *,char const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMatrix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMatrix",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatrix" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_clone(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMatrix result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_clone",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_clone" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (arg1)->clone(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvMatrix(static_cast< const CvMatrix& >(result))), SWIGTYPE_p_CvMatrix, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMatrix_set",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_set" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_bool(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMatrix_set" "', argument " "3"" of type '" "bool""'"); - } - arg3 = static_cast< bool >(val3); - { - try { - (arg1)->set(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_create(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvMatrix_create",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_create" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatrix_create" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMatrix_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvMatrix_create" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - (arg1)->create(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_addref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_addref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_addref" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - ((CvMatrix const *)arg1)->addref(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_release(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_release",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_release" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - (arg1)->release(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_clear" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_load__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvMatrix_load",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_load" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvMatrix_load" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_load__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMatrix_load",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_load" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - result = (bool)(arg1)->load((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_load__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatrix_load",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_load" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (bool)(arg1)->load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_load(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_load__SWIG_2(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_load__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_load__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMatrix_load'.\n" - " Possible C/C++ prototypes are:\n" - " load(CvMatrix *,char const *,char const *,int)\n" - " load(CvMatrix *,char const *,char const *)\n" - " load(CvMatrix *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_read__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvMatrix_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_read" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvMatrix_read" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,(char const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_read__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvMatrix_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_read" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_read" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvMatrix_read" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (bool)(arg1)->read(arg2,(char const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_read(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_read__SWIG_1(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[3], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_read__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMatrix_read'.\n" - " Possible C/C++ prototypes are:\n" - " read(CvMatrix *,CvFileStorage *,char const *,char const *)\n" - " read(CvMatrix *,CvFileStorage *,char const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_save__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - int *arg4 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvMatrix_save",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_save" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvMatrix_save" "', argument " "4"" of type '" "int const *""'"); - } - arg4 = reinterpret_cast< int * >(argp4); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3,(int const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_save__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMatrix_save",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_save" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - (arg1)->save((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_save(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_save__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_int, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_save__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMatrix_save'.\n" - " Possible C/C++ prototypes are:\n" - " save(CvMatrix *,char const *,char const *,int const *)\n" - " save(CvMatrix *,char const *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMatrix_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_write" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvMatrix_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - (arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_show(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatrix_show",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_show" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_show" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - (arg1)->show((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_is_valid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_is_valid",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_is_valid" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (bool)(arg1)->is_valid(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_rows(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_rows",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_rows" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->rows(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_cols(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_cols",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_cols" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->cols(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_size" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = ((CvMatrix const *)arg1)->size(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSize(static_cast< const CvSize& >(result))), SWIGTYPE_p_CvSize, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_type",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_type" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->type(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_depth(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_depth",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_depth" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->depth(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_channels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_channels",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_channels" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->channels(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_pix_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_pix_size",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_pix_size" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->pix_size(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_data__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_data" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (uchar *)(arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_data__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_data" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (uchar *)((CvMatrix const *)arg1)->data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_data(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[2]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 1); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_data__SWIG_0(self, args); - } - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_data__SWIG_1(self, args); - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMatrix_data'.\n" - " Possible C/C++ prototypes are:\n" - " data(CvMatrix *)\n" - " data(CvMatrix const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_step(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_step",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_step" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (int)((CvMatrix const *)arg1)->step(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_set_data__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMatrix_set_data",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_set_data" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_set_data" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMatrix_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - (arg1)->set_data(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_set_data__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *arg2 = (void *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatrix_set_data",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_set_data" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix_set_data" "', argument " "2"" of type '" "void *""'"); - } - { - try { - (arg1)->set_data(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_set_data(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[1], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvMatrix_set_data__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertPtr(argv[1], &ptr, 0, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_set_data__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMatrix_set_data'.\n" - " Possible C/C++ prototypes are:\n" - " set_data(CvMatrix *,void *,int)\n" - " set_data(CvMatrix *,void *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_row__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatrix_row",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_row" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatrix_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (uchar *)(arg1)->row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_row__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - uchar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatrix_row",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_row" "', argument " "1"" of type '" "CvMatrix const *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMatrix_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (uchar *)((CvMatrix const *)arg1)->row(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_row(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_row__SWIG_0(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMatrix, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvMatrix_row__SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvMatrix_row'.\n" - " Possible C/C++ prototypes are:\n" - " row(CvMatrix *,int)\n" - " row(CvMatrix const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix_asCvMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix *arg1 = (CvMatrix *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix_asCvMat",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix_asCvMat" "', argument " "1"" of type '" "CvMatrix *""'"); - } - arg1 = reinterpret_cast< CvMatrix * >(argp1); - { - try { - result = (CvMat *)(arg1)->operator CvMat*(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMatrix_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMatrix, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvModule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModuleInfo *arg1 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvModule *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvModule",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvModule" "', argument " "1"" of type '" "CvModuleInfo *""'"); - } - arg1 = reinterpret_cast< CvModuleInfo * >(argp1); - { - try { - result = (CvModule *)new CvModule(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModule, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvModule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModule *arg1 = (CvModule *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvModule",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModule, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvModule" "', argument " "1"" of type '" "CvModule *""'"); - } - arg1 = reinterpret_cast< CvModule * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModule_info_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModule *arg1 = (CvModule *) 0 ; - CvModuleInfo *arg2 = (CvModuleInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvModule_info_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModule, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModule_info_set" "', argument " "1"" of type '" "CvModule *""'"); - } - arg1 = reinterpret_cast< CvModule * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvModuleInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvModule_info_set" "', argument " "2"" of type '" "CvModuleInfo *""'"); - } - arg2 = reinterpret_cast< CvModuleInfo * >(argp2); - if (arg1) (arg1)->info = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvModule_info_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvModule *arg1 = (CvModule *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvModuleInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvModule_info_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvModule, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvModule_info_get" "', argument " "1"" of type '" "CvModule *""'"); - } - arg1 = reinterpret_cast< CvModule * >(argp1); - result = (CvModuleInfo *) ((arg1)->info); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvModuleInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN int Swig_var_CvModule_first_set(PyObject *_val) { - { - void *argp = 0; - int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_CvModuleInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvModule::first""' of type '""CvModuleInfo *""'"); - } - CvModule::first = reinterpret_cast< CvModuleInfo * >(argp); - } - return 0; -fail: - return 1; -} - - -SWIGINTERN PyObject *Swig_var_CvModule_first_get(void) { - PyObject *pyobj = 0; - - pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(CvModule::first), SWIGTYPE_p_CvModuleInfo, 0 ); - return pyobj; -} - - -SWIGINTERN PyObject *_wrap_CvModule_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(args)) { - return Swig_var_CvModule_first_get(); -} - - -SWIGINTERN PyObject *_wrap_CvModule_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *value; - int res; - - if (!PyArg_ParseTuple(args,(char *)"O:set",&value)) return NULL; - res = Swig_var_CvModule_first_set(value); - return !res ? SWIG_Py_Void() : NULL; -} - - -SWIGINTERN int Swig_var_CvModule_last_set(PyObject *_val) { - { - void *argp = 0; - int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_CvModuleInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvModule::last""' of type '""CvModuleInfo *""'"); - } - CvModule::last = reinterpret_cast< CvModuleInfo * >(argp); - } - return 0; -fail: - return 1; -} - - -SWIGINTERN PyObject *Swig_var_CvModule_last_get(void) { - PyObject *pyobj = 0; - - pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(CvModule::last), SWIGTYPE_p_CvModuleInfo, 0 ); - return pyobj; -} - - -SWIGINTERN PyObject *_wrap_CvModule_last_get(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(args)) { - return Swig_var_CvModule_last_get(); -} - - -SWIGINTERN PyObject *_wrap_CvModule_last_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *value; - int res; - - if (!PyArg_ParseTuple(args,(char *)"O:set",&value)) return NULL; - res = Swig_var_CvModule_last_set(value); - return !res ? SWIG_Py_Void() : NULL; -} - - -SWIGINTERN PyObject *CvModule_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvModule, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvType__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - CvReadFunc arg4 = (CvReadFunc) 0 ; - CvWriteFunc arg5 = (CvWriteFunc) 0 ; - CvCloneFunc arg6 = (CvCloneFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvType *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:new_CvType",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "4"" of type '" "CvReadFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj4, (void**)(&arg5), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "5"" of type '" "CvWriteFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj5, (void**)(&arg6), SWIGTYPE_p_f_p_q_const__void__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "6"" of type '" "CvCloneFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvType__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - CvReadFunc arg4 = (CvReadFunc) 0 ; - CvWriteFunc arg5 = (CvWriteFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvType *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvType",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "4"" of type '" "CvReadFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj4, (void**)(&arg5), SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "5"" of type '" "CvWriteFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvType__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - CvReadFunc arg4 = (CvReadFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvType *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvType",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "4"" of type '" "CvReadFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvType__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - CvReleaseFunc arg3 = (CvReleaseFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvType *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvType",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - int res = SWIG_ConvertFunctionPtr(obj2, (void**)(&arg3), SWIGTYPE_p_f_p_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "3"" of type '" "CvReleaseFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvType__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvIsInstanceFunc arg2 = (CvIsInstanceFunc) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvType *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvType",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvType" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_p_q_const__void__int); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvType" "', argument " "2"" of type '" "CvIsInstanceFunc""'"); - } - } - { - try { - result = (CvType *)new CvType((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvType, SWIG_POINTER_NEW | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvType(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_4(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_3(self, args); - } - } - } - } - if (argc == 4) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[3], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[3], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[4], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_1(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[1], &ptr, SWIGTYPE_p_f_p_q_const__void__int); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[2], &ptr, SWIGTYPE_p_f_p_p_void__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[3], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_CvFileNode__p_void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[4], &ptr, SWIGTYPE_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void); - _v = SWIG_CheckState(res); - if (_v) { - void *ptr = 0; - int res = SWIG_ConvertFunctionPtr(argv[5], &ptr, SWIGTYPE_p_f_p_q_const__void__p_void); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvType__SWIG_0(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvType'.\n" - " Possible C/C++ prototypes are:\n" - " CvType(char const *,CvIsInstanceFunc,CvReleaseFunc,CvReadFunc,CvWriteFunc,CvCloneFunc)\n" - " CvType(char const *,CvIsInstanceFunc,CvReleaseFunc,CvReadFunc,CvWriteFunc)\n" - " CvType(char const *,CvIsInstanceFunc,CvReleaseFunc,CvReadFunc)\n" - " CvType(char const *,CvIsInstanceFunc,CvReleaseFunc)\n" - " CvType(char const *,CvIsInstanceFunc)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvType(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvType *arg1 = (CvType *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvType",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvType, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvType" "', argument " "1"" of type '" "CvType *""'"); - } - arg1 = reinterpret_cast< CvType * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvType_info_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvType *arg1 = (CvType *) 0 ; - CvTypeInfo *arg2 = (CvTypeInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvType_info_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvType, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvType_info_set" "', argument " "1"" of type '" "CvType *""'"); - } - arg1 = reinterpret_cast< CvType * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTypeInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvType_info_set" "', argument " "2"" of type '" "CvTypeInfo *""'"); - } - arg2 = reinterpret_cast< CvTypeInfo * >(argp2); - if (arg1) (arg1)->info = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvType_info_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvType *arg1 = (CvType *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTypeInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvType_info_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvType, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvType_info_get" "', argument " "1"" of type '" "CvType *""'"); - } - arg1 = reinterpret_cast< CvType * >(argp1); - result = (CvTypeInfo *) ((arg1)->info); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypeInfo, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN int Swig_var_CvType_first_set(PyObject *_val) { - { - void *argp = 0; - int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_CvTypeInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvType::first""' of type '""CvTypeInfo *""'"); - } - CvType::first = reinterpret_cast< CvTypeInfo * >(argp); - } - return 0; -fail: - return 1; -} - - -SWIGINTERN PyObject *Swig_var_CvType_first_get(void) { - PyObject *pyobj = 0; - - pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(CvType::first), SWIGTYPE_p_CvTypeInfo, 0 ); - return pyobj; -} - - -SWIGINTERN PyObject *_wrap_CvType_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(args)) { - return Swig_var_CvType_first_get(); -} - - -SWIGINTERN PyObject *_wrap_CvType_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *value; - int res; - - if (!PyArg_ParseTuple(args,(char *)"O:set",&value)) return NULL; - res = Swig_var_CvType_first_set(value); - return !res ? SWIG_Py_Void() : NULL; -} - - -SWIGINTERN int Swig_var_CvType_last_set(PyObject *_val) { - { - void *argp = 0; - int res = SWIG_ConvertPtr(_val, &argp, SWIGTYPE_p_CvTypeInfo, 0 ); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in variable '""CvType::last""' of type '""CvTypeInfo *""'"); - } - CvType::last = reinterpret_cast< CvTypeInfo * >(argp); - } - return 0; -fail: - return 1; -} - - -SWIGINTERN PyObject *Swig_var_CvType_last_get(void) { - PyObject *pyobj = 0; - - pyobj = SWIG_NewPointerObj(SWIG_as_voidptr(CvType::last), SWIGTYPE_p_CvTypeInfo, 0 ); - return pyobj; -} - - -SWIGINTERN PyObject *_wrap_CvType_last_get(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(args)) { - return Swig_var_CvType_last_get(); -} - - -SWIGINTERN PyObject *_wrap_CvType_last_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *value; - int res; - - if (!PyArg_ParseTuple(args,(char *)"O:set",&value)) return NULL; - res = Swig_var_CvType_last_set(value); - return !res ? SWIG_Py_Void() : NULL; -} - - -SWIGINTERN PyObject *CvType_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvType, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMoments_m00_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m00_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m00_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m00_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m00 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m00_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m00_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m00_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m00); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m10_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m10_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m10_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m10_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m10 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m10_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m10_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m10_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m10); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m01_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m01_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m01_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m01_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m01 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m01_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m01_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m01_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m01); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m20_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m20_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m20_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m20_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m20 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m20_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m20_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m20_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m20); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m11_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m11_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m11_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m11_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m11 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m11_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m11_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m11_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m11); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m02_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m02_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m02_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m02_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m02 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m02_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m02_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m02_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m02); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m30_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m30_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m30_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m30_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m30 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m30_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m30_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m30_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m30); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m21_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m21_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m21_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m21_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m21 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m21_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m21_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m21_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m21); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m12_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m12_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m12_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m12_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m12 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m12_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m12_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m12_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m12); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m03_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_m03_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m03_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_m03_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->m03 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_m03_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_m03_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_m03_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->m03); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu20_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu20_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu20_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu20_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu20 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu20_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu20_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu20_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu20); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu11_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu11_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu11_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu11_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu11 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu11_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu11_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu11_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu11); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu02_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu02_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu02_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu02_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu02 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu02_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu02_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu02_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu02); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu30_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu30_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu30_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu30_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu30 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu30_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu30_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu30_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu30); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu21_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu21_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu21_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu21_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu21 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu21_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu21_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu21_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu21); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu12_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu12_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu12_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu12_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu12 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu12_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu12_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu12_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu12); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu03_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_mu03_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu03_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_mu03_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->mu03 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_mu03_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_mu03_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_mu03_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->mu03); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_inv_sqrt_m00_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMoments_inv_sqrt_m00_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_inv_sqrt_m00_set" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMoments_inv_sqrt_m00_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->inv_sqrt_m00 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMoments_inv_sqrt_m00_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMoments_inv_sqrt_m00_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMoments_inv_sqrt_m00_get" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - result = (double) ((arg1)->inv_sqrt_m00); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMoments(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMoments")) SWIG_fail; - { - try { - result = (CvMoments *)new CvMoments(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMoments, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMoments(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMoments",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMoments" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMoments_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMoments, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu1_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu1_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu1_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu1 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu1_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu1_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu1); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu2_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu2_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu2_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu2 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu2_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu2_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu2); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu3_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu3_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu3_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu3_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu3 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu3_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu3_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu3_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu3); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu4_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu4_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu4_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu4_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu4 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu4_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu4_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu4_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu4); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu5_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu5_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu5_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu5_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu5 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu5_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu5_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu5_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu5); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu6_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu6_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu6_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu6_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu6 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu6_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu6_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu6_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu6); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu7_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHuMoments_hu7_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu7_set" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHuMoments_hu7_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hu7 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHuMoments_hu7_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHuMoments_hu7_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHuMoments_hu7_get" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - result = (double) ((arg1)->hu7); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvHuMoments(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvHuMoments")) SWIG_fail; - { - try { - result = (CvHuMoments *)new CvHuMoments(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHuMoments, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHuMoments(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHuMoments *arg1 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHuMoments",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHuMoments, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHuMoments" "', argument " "1"" of type '" "CvHuMoments *""'"); - } - arg1 = reinterpret_cast< CvHuMoments * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHuMoments_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHuMoments, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvConnectedComp_area_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConnectedComp_area_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_area_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConnectedComp_area_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->area = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_area_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConnectedComp_area_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_area_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - result = (double) ((arg1)->area); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_value_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - CvScalar *arg2 = (CvScalar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConnectedComp_value_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_value_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvScalar, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConnectedComp_value_set" "', argument " "2"" of type '" "CvScalar *""'"); - } - arg2 = reinterpret_cast< CvScalar * >(argp2); - if (arg1) (arg1)->value = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_value_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvScalar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConnectedComp_value_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_value_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - result = (CvScalar *)& ((arg1)->value); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvScalar, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_rect_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConnectedComp_rect_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_rect_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConnectedComp_rect_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = reinterpret_cast< CvRect * >(argp2); - if (arg1) (arg1)->rect = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_rect_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConnectedComp_rect_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_rect_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - result = (CvRect *)& ((arg1)->rect); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_contour_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConnectedComp_contour_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_contour_set" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->contour = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConnectedComp_contour_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConnectedComp_contour_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConnectedComp_contour_get" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - result = (CvSeq *) ((arg1)->contour); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvConnectedComp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvConnectedComp")) SWIG_fail; - { - try { - result = (CvConnectedComp *)new CvConnectedComp(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvConnectedComp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConnectedComp *arg1 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvConnectedComp",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConnectedComp, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvConnectedComp" "', argument " "1"" of type '" "CvConnectedComp *""'"); - } - arg1 = reinterpret_cast< CvConnectedComp * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvConnectedComp_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvConnectedComp, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvChainPtReader_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_header_size_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChainPtReader_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_header_size_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_seq_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_seq_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_seq_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->seq = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_seq_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_seq_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_seq_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (CvSeq *) ((arg1)->seq); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_block_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_block_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_block_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->block = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_block_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_block_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (CvSeqBlock *) ((arg1)->block); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_ptr_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_ptr_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_block_min_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_block_min_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_min_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_block_min_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_min = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_block_min_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_block_min_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_min_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (schar *) ((arg1)->block_min); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_max_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_block_max_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_delta_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_delta_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_delta_index_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChainPtReader_delta_index_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_delta_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_delta_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_delta_index_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (int) ((arg1)->delta_index); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_prev_elem_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_prev_elem_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_prev_elem_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_prev_elem_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->prev_elem = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_prev_elem_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_prev_elem_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_prev_elem_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (schar *) ((arg1)->prev_elem); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_code_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - char arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - char val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_code_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_code_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - ecode2 = SWIG_AsVal_char(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvChainPtReader_code_set" "', argument " "2"" of type '" "char""'"); - } - arg2 = static_cast< char >(val2); - if (arg1) (arg1)->code = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_code_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_code_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_code_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (char) ((arg1)->code); - resultobj = SWIG_From_char(static_cast< char >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_pt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_pt_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_pt_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_pt_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->pt = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_pt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_pt_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_pt_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (CvPoint *)& ((arg1)->pt); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_deltas_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - schar (*arg2)[2] ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvChainPtReader_deltas_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_deltas_set" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_a_2__signed_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvChainPtReader_deltas_set" "', argument " "2"" of type '" "schar [8][2]""'"); - } - arg2 = reinterpret_cast< schar (*)[2] >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)8; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)2; ++jj) arg1->deltas[ii][jj] = arg2[ii][jj]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""deltas""' of type '""schar [8][2]""'"); - } - } - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""deltas""' of type '""schar [8][2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvChainPtReader_deltas_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar (*result)[2] = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvChainPtReader_deltas_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvChainPtReader_deltas_get" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - result = (schar (*)[2])(schar (*)[2]) ((arg1)->deltas); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_2__signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvChainPtReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvChainPtReader")) SWIG_fail; - { - try { - result = (CvChainPtReader *)new CvChainPtReader(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvChainPtReader, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvChainPtReader(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvChainPtReader",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvChainPtReader" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvChainPtReader_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvChainPtReader, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvContourTree_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_flags_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_flags_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_header_size_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_header_size_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_h_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_prev_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_h_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_prev_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_h_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_next_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_h_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_h_next_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_v_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_prev_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_v_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_prev_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_v_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_next_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_v_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_v_next_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_total_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_total_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_total_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_total_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_elem_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_elem_size_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_elem_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_elem_size_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_block_max_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_block_max_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_ptr_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_ptr_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_delta_elems_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_delta_elems_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvContourTree_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_delta_elems_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_delta_elems_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_storage_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_storage_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_free_blocks_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_free_blocks_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_free_blocks_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_free_blocks_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_first_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_first_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_p1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_p1_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p1_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_p1_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->p1 = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_p1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_p1_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p1_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvPoint *)& ((arg1)->p1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_p2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvContourTree_p2_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p2_set" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvContourTree_p2_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->p2 = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvContourTree_p2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvContourTree_p2_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvContourTree_p2_get" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - result = (CvPoint *)& ((arg1)->p2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvContourTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvContourTree")) SWIG_fail; - { - try { - result = (CvContourTree *)new CvContourTree(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvContourTree, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvContourTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvContourTree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvContourTree" "', argument " "1"" of type '" "CvContourTree *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvContourTree_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvContourTree, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_start_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConvexityDefect_start_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_start_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConvexityDefect_start_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->start = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_start_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConvexityDefect_start_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_start_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - result = (CvPoint *) ((arg1)->start); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_end_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConvexityDefect_end_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_end_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConvexityDefect_end_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->end = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_end_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConvexityDefect_end_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_end_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - result = (CvPoint *) ((arg1)->end); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_depth_point_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConvexityDefect_depth_point_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_point_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConvexityDefect_depth_point_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->depth_point = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_depth_point_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConvexityDefect_depth_point_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_point_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - result = (CvPoint *) ((arg1)->depth_point); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_depth_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConvexityDefect_depth_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_set" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConvexityDefect_depth_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->depth = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConvexityDefect_depth_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConvexityDefect_depth_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConvexityDefect_depth_get" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - result = (float) ((arg1)->depth); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvConvexityDefect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvConvexityDefect")) SWIG_fail; - { - try { - result = (CvConvexityDefect *)new CvConvexityDefect(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConvexityDefect, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvConvexityDefect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConvexityDefect *arg1 = (CvConvexityDefect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvConvexityDefect",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConvexityDefect, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvConvexityDefect" "', argument " "1"" of type '" "CvConvexityDefect *""'"); - } - arg1 = reinterpret_cast< CvConvexityDefect * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvConvexityDefect_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvConvexityDefect, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvQuadEdge2D_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvQuadEdge2D_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_flags_set" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvQuadEdge2D_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvQuadEdge2D_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvQuadEdge2D_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_flags_get" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvQuadEdge2D_pt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - CvSubdiv2DPoint **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvQuadEdge2D_pt_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_pt_set" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvQuadEdge2D_pt_set" "', argument " "2"" of type '" "CvSubdiv2DPoint *[4]""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DPoint ** >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) arg1->pt[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""pt""' of type '""CvSubdiv2DPoint *[4]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvQuadEdge2D_pt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DPoint **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvQuadEdge2D_pt_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_pt_get" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - result = (CvSubdiv2DPoint **)(CvSubdiv2DPoint **) ((arg1)->pt); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSubdiv2DPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvQuadEdge2D_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - CvSubdiv2DEdge *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvQuadEdge2D_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_next_set" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_size_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvQuadEdge2D_next_set" "', argument " "2"" of type '" "CvSubdiv2DEdge [4]""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)4; ++ii) arg1->next[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""next""' of type '""CvSubdiv2DEdge [4]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvQuadEdge2D_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvQuadEdge2D_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvQuadEdge2D_next_get" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - result = (CvSubdiv2DEdge *)(CvSubdiv2DEdge *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvQuadEdge2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvQuadEdge2D")) SWIG_fail; - { - try { - result = (CvQuadEdge2D *)new CvQuadEdge2D(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvQuadEdge2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvQuadEdge2D *arg1 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvQuadEdge2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvQuadEdge2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvQuadEdge2D" "', argument " "1"" of type '" "CvQuadEdge2D *""'"); - } - arg1 = reinterpret_cast< CvQuadEdge2D * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvQuadEdge2D_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvQuadEdge2D, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSubdiv2DPoint_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DPoint_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_flags_set" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2DPoint_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DPoint_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DPoint_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_flags_get" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DPoint_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - CvSubdiv2DEdge arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvSubdiv2DEdge_Wrapper *wrapper2 ; - CvQuadEdge2D *qedge2 ; - void *vptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DPoint_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_first_set" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper2 = (CvSubdiv2DEdge_Wrapper *) vptr2; - arg2 = wrapper2->ref(); - } - else if( SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge2 = (CvQuadEdge2D *) vptr2; - arg2 = (CvSubdiv2DEdge)qedge2; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DPoint_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DPoint_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_first_get" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - result = ((arg1)->first); - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DPoint_pt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DPoint_pt_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_pt_set" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DPoint_pt_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - if (arg1) (arg1)->pt = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DPoint_pt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DPoint_pt_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DPoint_pt_get" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - result = (CvPoint2D32f *)& ((arg1)->pt); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSubdiv2DPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSubdiv2DPoint")) SWIG_fail; - { - try { - result = (CvSubdiv2DPoint *)new CvSubdiv2DPoint(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSubdiv2DPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DPoint *arg1 = (CvSubdiv2DPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSubdiv2DPoint",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DPoint" "', argument " "1"" of type '" "CvSubdiv2DPoint *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DPoint * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSubdiv2DPoint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSubdiv2DPoint, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_flags_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_flags_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_header_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_header_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_header_size_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_header_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->header_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_header_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_header_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_header_size_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->header_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_h_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_h_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_prev_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_h_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_h_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_prev_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSeq *) ((arg1)->h_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_h_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_h_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_next_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->h_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_h_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_h_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_h_next_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSeq *) ((arg1)->h_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_v_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_v_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_prev_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_v_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_v_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_prev_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSeq *) ((arg1)->v_prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_v_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_v_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_next_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - if (arg1) (arg1)->v_next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_v_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_v_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_v_next_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSeq *) ((arg1)->v_next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_total_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_total_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_total_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_total_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->total = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_total_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_total_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_total_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->total); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_elem_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_elem_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_elem_size_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_elem_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->elem_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_elem_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_elem_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_elem_size_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->elem_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_block_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_block_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_block_max_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_block_max_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->block_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_block_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_block_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_block_max_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (schar *) ((arg1)->block_max); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_ptr_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_ptr_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_ptr_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (schar *) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_delta_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_delta_elems_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_delta_elems_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_delta_elems_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_delta_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_delta_elems_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_delta_elems_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->delta_elems); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_storage_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_storage_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_free_blocks_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_free_blocks_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_blocks_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_free_blocks_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->free_blocks = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_free_blocks_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_free_blocks_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_blocks_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSeqBlock *) ((arg1)->free_blocks); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_first_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSeqBlock *arg2 = (CvSeqBlock *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_first_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_first_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSeqBlock, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_first_set" "', argument " "2"" of type '" "CvSeqBlock *""'"); - } - arg2 = reinterpret_cast< CvSeqBlock * >(argp2); - if (arg1) (arg1)->first = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_first_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeqBlock *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_first_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_first_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSeqBlock *) ((arg1)->first); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_free_elems_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSetElem *arg2 = (CvSetElem *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_free_elems_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_elems_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSetElem, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_free_elems_set" "', argument " "2"" of type '" "CvSetElem *""'"); - } - arg2 = reinterpret_cast< CvSetElem * >(argp2); - if (arg1) (arg1)->free_elems = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_free_elems_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSetElem *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_free_elems_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_free_elems_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvSetElem *) ((arg1)->free_elems); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSetElem, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_active_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_active_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_active_count_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_active_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->active_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_active_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_active_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_active_count_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->active_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_quad_edges_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_quad_edges_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_quad_edges_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_quad_edges_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->quad_edges = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_quad_edges_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_quad_edges_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_quad_edges_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->quad_edges); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_is_geometry_valid_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_is_geometry_valid_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_is_geometry_valid_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSubdiv2D_is_geometry_valid_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->is_geometry_valid = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_is_geometry_valid_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_is_geometry_valid_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_is_geometry_valid_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (int) ((arg1)->is_geometry_valid); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_recent_edge_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvSubdiv2DEdge arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvSubdiv2DEdge_Wrapper *wrapper2 ; - CvQuadEdge2D *qedge2 ; - void *vptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_recent_edge_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_recent_edge_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper2 = (CvSubdiv2DEdge_Wrapper *) vptr2; - arg2 = wrapper2->ref(); - } - else if( SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge2 = (CvQuadEdge2D *) vptr2; - arg2 = (CvSubdiv2DEdge)qedge2; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - if (arg1) (arg1)->recent_edge = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_recent_edge_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_recent_edge_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_recent_edge_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = ((arg1)->recent_edge); - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_topleft_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_topleft_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_topleft_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_topleft_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - if (arg1) (arg1)->topleft = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_topleft_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_topleft_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_topleft_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvPoint2D32f *)& ((arg1)->topleft); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_bottomright_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_bottomright_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_bottomright_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_bottomright_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - if (arg1) (arg1)->bottomright = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_bottomright_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_bottomright_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_bottomright_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - result = (CvPoint2D32f *)& ((arg1)->bottomright); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_edges_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvTypedSeq< CvQuadEdge2D > *arg2 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_edges_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_edges_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_edges_set" "', argument " "2"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg2 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp2); - { - try { - CvSubdiv2D_typed_edges_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_edges_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_edges_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_edges_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)CvSubdiv2D_typed_edges_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_typed_edges_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2D_typed_edges_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_typed_edges_get" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)CvSubdiv2D_typed_edges_get(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2D_typed_edges_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvTypedSeq< CvQuadEdge2D > *arg2 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2D_typed_edges_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2D_typed_edges_set" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2D_typed_edges_set" "', argument " "2"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg2 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp2); - { - try { - CvSubdiv2D_typed_edges_set(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSubdiv2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSubdiv2D")) SWIG_fail; - { - try { - result = (CvSubdiv2D *)new CvSubdiv2D(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2D, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSubdiv2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSubdiv2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2D" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSubdiv2D_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSubdiv2D, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvMatrix3_m_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix3 *arg1 = (CvMatrix3 *) 0 ; - float (*arg2)[3] ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMatrix3_m_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix3, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix3_m_set" "', argument " "1"" of type '" "CvMatrix3 *""'"); - } - arg1 = reinterpret_cast< CvMatrix3 * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_a_3__float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMatrix3_m_set" "', argument " "2"" of type '" "float [3][3]""'"); - } - arg2 = reinterpret_cast< float (*)[3] >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)3; ++ii) { - if (arg2[ii]) { - size_t jj = 0; - for (; jj < (size_t)3; ++jj) arg1->m[ii][jj] = arg2[ii][jj]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""m""' of type '""float [3][3]""'"); - } - } - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""m""' of type '""float [3][3]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMatrix3_m_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix3 *arg1 = (CvMatrix3 *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float (*result)[3] = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMatrix3_m_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix3, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMatrix3_m_get" "', argument " "1"" of type '" "CvMatrix3 *""'"); - } - arg1 = reinterpret_cast< CvMatrix3 * >(argp1); - result = (float (*)[3])(float (*)[3]) ((arg1)->m); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_a_3__float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMatrix3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix3 *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMatrix3")) SWIG_fail; - { - try { - result = (CvMatrix3 *)new CvMatrix3(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMatrix3, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMatrix3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMatrix3 *arg1 = (CvMatrix3 *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMatrix3",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMatrix3, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMatrix3" "', argument " "1"" of type '" "CvMatrix3 *""'"); - } - arg1 = reinterpret_cast< CvMatrix3 * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMatrix3_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMatrix3, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvConDensation_MP_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_MP_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_MP_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConDensation_MP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->MP = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_MP_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_MP_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_MP_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (int) ((arg1)->MP); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_DP_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_DP_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DP_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConDensation_DP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->DP = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_DP_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_DP_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DP_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (int) ((arg1)->DP); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_DynamMatr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_DynamMatr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DynamMatr_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_DynamMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->DynamMatr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_DynamMatr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_DynamMatr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_DynamMatr_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float *) ((arg1)->DynamMatr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_State_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_State_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_State_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_State_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->State = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_State_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_State_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_State_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float *) ((arg1)->State); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_SamplesNum_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_SamplesNum_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_SamplesNum_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvConDensation_SamplesNum_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->SamplesNum = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_SamplesNum_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_SamplesNum_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_SamplesNum_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (int) ((arg1)->SamplesNum); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flSamples_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_flSamples_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flSamples_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->flSamples = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flSamples_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_flSamples_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flSamples_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float **) ((arg1)->flSamples); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flNewSamples_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_flNewSamples_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flNewSamples_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->flNewSamples = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flNewSamples_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_flNewSamples_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flNewSamples_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float **) ((arg1)->flNewSamples); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flConfidence_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_flConfidence_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flConfidence_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_flConfidence_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->flConfidence = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flConfidence_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_flConfidence_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flConfidence_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float *) ((arg1)->flConfidence); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flCumulative_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_flCumulative_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flCumulative_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_flCumulative_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->flCumulative = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_flCumulative_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_flCumulative_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_flCumulative_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float *) ((arg1)->flCumulative); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_Temp_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_Temp_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_Temp_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_Temp_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->Temp = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_Temp_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_Temp_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_Temp_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float *) ((arg1)->Temp); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_RandomSample_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_RandomSample_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandomSample_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_RandomSample_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->RandomSample = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_RandomSample_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_RandomSample_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandomSample_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (float *) ((arg1)->RandomSample); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_RandS_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - CvRandState *arg2 = (CvRandState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvConDensation_RandS_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandS_set" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRandState, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvConDensation_RandS_set" "', argument " "2"" of type '" "CvRandState *""'"); - } - arg2 = reinterpret_cast< CvRandState * >(argp2); - if (arg1) (arg1)->RandS = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvConDensation_RandS_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRandState *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvConDensation_RandS_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvConDensation_RandS_get" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - result = (CvRandState *) ((arg1)->RandS); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRandState, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvConDensation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvConDensation",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvConDensation" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - { - try { - delete_CvConDensation(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvConDensation_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvConDensation, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvKalman_MP_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_MP_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MP_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvKalman_MP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->MP = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_MP_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_MP_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MP_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (int) ((arg1)->MP); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_DP_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_DP_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DP_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvKalman_DP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->DP = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_DP_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_DP_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DP_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (int) ((arg1)->DP); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_CP_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_CP_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_CP_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvKalman_CP_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->CP = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_CP_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_CP_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_CP_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (int) ((arg1)->CP); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PosterState_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_PosterState_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterState_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PosterState_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->PosterState = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PosterState_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_PosterState_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterState_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->PosterState); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PriorState_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_PriorState_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorState_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PriorState_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->PriorState = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PriorState_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_PriorState_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorState_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->PriorState); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_DynamMatr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_DynamMatr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DynamMatr_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_DynamMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->DynamMatr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_DynamMatr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_DynamMatr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_DynamMatr_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->DynamMatr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_MeasurementMatr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_MeasurementMatr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MeasurementMatr_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_MeasurementMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->MeasurementMatr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_MeasurementMatr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_MeasurementMatr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MeasurementMatr_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->MeasurementMatr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_MNCovariance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_MNCovariance_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MNCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_MNCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->MNCovariance = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_MNCovariance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_MNCovariance_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_MNCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->MNCovariance); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PNCovariance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_PNCovariance_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PNCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PNCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->PNCovariance = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PNCovariance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_PNCovariance_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PNCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->PNCovariance); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_KalmGainMatr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_KalmGainMatr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_KalmGainMatr_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_KalmGainMatr_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->KalmGainMatr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_KalmGainMatr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_KalmGainMatr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_KalmGainMatr_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->KalmGainMatr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PriorErrorCovariance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_PriorErrorCovariance_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorErrorCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PriorErrorCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->PriorErrorCovariance = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PriorErrorCovariance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_PriorErrorCovariance_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PriorErrorCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->PriorErrorCovariance); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PosterErrorCovariance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_PosterErrorCovariance_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterErrorCovariance_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_PosterErrorCovariance_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->PosterErrorCovariance = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_PosterErrorCovariance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_PosterErrorCovariance_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_PosterErrorCovariance_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->PosterErrorCovariance); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_Temp1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_Temp1_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp1_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_Temp1_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->Temp1 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_Temp1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_Temp1_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp1_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->Temp1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_Temp2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_Temp2_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp2_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvKalman_Temp2_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->Temp2 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_Temp2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_Temp2_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_Temp2_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (float *) ((arg1)->Temp2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_state_pre_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_state_pre_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_pre_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->state_pre = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_state_pre_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_state_pre_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_pre_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->state_pre); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_state_post_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_state_post_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_post_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->state_post = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_state_post_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_state_post_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_state_post_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->state_post); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_transition_matrix_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_transition_matrix_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_transition_matrix_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->transition_matrix = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_transition_matrix_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_transition_matrix_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_transition_matrix_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->transition_matrix); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_control_matrix_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_control_matrix_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_control_matrix_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->control_matrix = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_control_matrix_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_control_matrix_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_control_matrix_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->control_matrix); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_measurement_matrix_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_measurement_matrix_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_matrix_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->measurement_matrix = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_measurement_matrix_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_measurement_matrix_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_matrix_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->measurement_matrix); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_process_noise_cov_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_process_noise_cov_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_process_noise_cov_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->process_noise_cov = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_process_noise_cov_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_process_noise_cov_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_process_noise_cov_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->process_noise_cov); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_measurement_noise_cov_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_measurement_noise_cov_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_noise_cov_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->measurement_noise_cov = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_measurement_noise_cov_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_measurement_noise_cov_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_measurement_noise_cov_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->measurement_noise_cov); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_error_cov_pre_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_error_cov_pre_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_pre_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->error_cov_pre = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_error_cov_pre_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_error_cov_pre_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_pre_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->error_cov_pre); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_gain_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_gain_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_gain_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->gain = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_gain_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_gain_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_gain_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->gain); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_error_cov_post_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_error_cov_post_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_post_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->error_cov_post = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_error_cov_post_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_error_cov_post_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_error_cov_post_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->error_cov_post); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_temp1_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp1_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->temp1 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_temp1_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp1_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->temp1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_temp2_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp2_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->temp2 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_temp2_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp2_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->temp2); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp3_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_temp3_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp3_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->temp3 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp3_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_temp3_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp3_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->temp3); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp4_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_temp4_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp4_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->temp4 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp4_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_temp4_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp4_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->temp4); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp5_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvKalman_temp5_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp5_set" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->temp5 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKalman_temp5_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKalman_temp5_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKalman_temp5_get" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - result = (CvMat *) ((arg1)->temp5); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvKalman(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvKalman",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvKalman" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - try { - delete_CvKalman(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvKalman_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvKalman, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHaarFeature_tilted_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarFeature_tilted_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_tilted_set" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarFeature_tilted_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->tilted = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarFeature_tilted_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarFeature_tilted_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_tilted_get" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature * >(argp1); - result = (int) ((arg1)->tilted); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarFeature_rect_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvHaarFeature_rect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarFeature_rect_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_get" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature * >(argp1); - result = (CvHaarFeature_rect *)(CvHaarFeature_rect *) ((arg1)->rect); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvHaarFeature(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvHaarFeature")) SWIG_fail; - { - try { - result = (CvHaarFeature *)new CvHaarFeature(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHaarFeature(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature *arg1 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHaarFeature",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarFeature" "', argument " "1"" of type '" "CvHaarFeature *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHaarFeature_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHaarFeature, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHaarFeature_rect_r_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarFeature_rect_r_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_r_set" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature_rect * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarFeature_rect_r_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = reinterpret_cast< CvRect * >(argp2); - if (arg1) (arg1)->r = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarFeature_rect_r_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarFeature_rect_r_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_r_get" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature_rect * >(argp1); - result = (CvRect *)& ((arg1)->r); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarFeature_rect_weight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarFeature_rect_weight_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_weight_set" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature_rect * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarFeature_rect_weight_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->weight = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarFeature_rect_weight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarFeature_rect_weight_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature_rect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarFeature_rect_weight_get" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature_rect * >(argp1); - result = (float) ((arg1)->weight); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvHaarFeature_rect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature_rect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvHaarFeature_rect")) SWIG_fail; - { - try { - result = (CvHaarFeature_rect *)new CvHaarFeature_rect(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature_rect, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHaarFeature_rect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarFeature_rect *arg1 = (CvHaarFeature_rect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHaarFeature_rect",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarFeature_rect, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarFeature_rect" "', argument " "1"" of type '" "CvHaarFeature_rect *""'"); - } - arg1 = reinterpret_cast< CvHaarFeature_rect * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHaarFeature_rect_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHaarFeature_rect, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifier_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_count_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifier_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifier_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_count_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_haar_feature_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - CvHaarFeature *arg2 = (CvHaarFeature *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifier_haar_feature_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_haar_feature_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarFeature, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_haar_feature_set" "', argument " "2"" of type '" "CvHaarFeature *""'"); - } - arg2 = reinterpret_cast< CvHaarFeature * >(argp2); - if (arg1) (arg1)->haar_feature = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_haar_feature_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvHaarFeature *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifier_haar_feature_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_haar_feature_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - result = (CvHaarFeature *) ((arg1)->haar_feature); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarFeature, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_threshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifier_threshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_threshold_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_threshold_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->threshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_threshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifier_threshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_threshold_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - result = (float *) ((arg1)->threshold); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_left_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifier_left_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_left_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_left_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->left = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_left_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifier_left_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_left_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - result = (int *) ((arg1)->left); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_right_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifier_right_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_right_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_right_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->right = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_right_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifier_right_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_right_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - result = (int *) ((arg1)->right); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_alpha_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifier_alpha_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_alpha_set" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifier_alpha_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->alpha = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifier_alpha_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifier_alpha_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifier_alpha_get" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - result = (float *) ((arg1)->alpha); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvHaarClassifier(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvHaarClassifier")) SWIG_fail; - { - try { - result = (CvHaarClassifier *)new CvHaarClassifier(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarClassifier, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHaarClassifier(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifier *arg1 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHaarClassifier",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarClassifier" "', argument " "1"" of type '" "CvHaarClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifier * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHaarClassifier_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHaarClassifier, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarStageClassifier_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_count_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarStageClassifier_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_count_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_threshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarStageClassifier_threshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_threshold_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_threshold_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->threshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_threshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarStageClassifier_threshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_threshold_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - result = (float) ((arg1)->threshold); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_classifier_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - CvHaarClassifier *arg2 = (CvHaarClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarStageClassifier_classifier_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_classifier_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarStageClassifier_classifier_set" "', argument " "2"" of type '" "CvHaarClassifier *""'"); - } - arg2 = reinterpret_cast< CvHaarClassifier * >(argp2); - if (arg1) (arg1)->classifier = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_classifier_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvHaarClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarStageClassifier_classifier_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_classifier_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - result = (CvHaarClassifier *) ((arg1)->classifier); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarClassifier, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarStageClassifier_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_next_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_next_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarStageClassifier_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_next_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - result = (int) ((arg1)->next); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_child_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarStageClassifier_child_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_child_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_child_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->child = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_child_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarStageClassifier_child_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_child_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - result = (int) ((arg1)->child); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_parent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarStageClassifier_parent_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_parent_set" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarStageClassifier_parent_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->parent = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarStageClassifier_parent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarStageClassifier_parent_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarStageClassifier_parent_get" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - result = (int) ((arg1)->parent); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvHaarStageClassifier(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvHaarStageClassifier")) SWIG_fail; - { - try { - result = (CvHaarStageClassifier *)new CvHaarStageClassifier(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarStageClassifier, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHaarStageClassifier(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarStageClassifier *arg1 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHaarStageClassifier",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarStageClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarStageClassifier" "', argument " "1"" of type '" "CvHaarStageClassifier *""'"); - } - arg1 = reinterpret_cast< CvHaarStageClassifier * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHaarStageClassifier_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHaarStageClassifier, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_flags_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_flags_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_flags_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifierCascade_flags_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->flags = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_flags_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_flags_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_flags_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (int) ((arg1)->flags); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_count_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifierCascade_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_count_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_orig_window_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvSize *arg2 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_orig_window_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_orig_window_size_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_orig_window_size_set" "', argument " "2"" of type '" "CvSize *""'"); - } - arg2 = reinterpret_cast< CvSize * >(argp2); - if (arg1) (arg1)->orig_window_size = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_orig_window_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_orig_window_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_orig_window_size_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (CvSize *)& ((arg1)->orig_window_size); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_real_window_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvSize *arg2 = (CvSize *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_real_window_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_real_window_size_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_real_window_size_set" "', argument " "2"" of type '" "CvSize *""'"); - } - arg2 = reinterpret_cast< CvSize * >(argp2); - if (arg1) (arg1)->real_window_size = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_real_window_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSize *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_real_window_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_real_window_size_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (CvSize *)& ((arg1)->real_window_size); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSize, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_scale_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_scale_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_scale_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvHaarClassifierCascade_scale_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->scale = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_scale_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_scale_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_scale_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (double) ((arg1)->scale); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_stage_classifier_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvHaarStageClassifier *arg2 = (CvHaarStageClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_stage_classifier_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_stage_classifier_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHaarStageClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_stage_classifier_set" "', argument " "2"" of type '" "CvHaarStageClassifier *""'"); - } - arg2 = reinterpret_cast< CvHaarStageClassifier * >(argp2); - if (arg1) (arg1)->stage_classifier = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_stage_classifier_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvHaarStageClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_stage_classifier_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_stage_classifier_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (CvHaarStageClassifier *) ((arg1)->stage_classifier); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarStageClassifier, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_hid_cascade_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvHidHaarClassifierCascade *arg2 = (CvHidHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvHaarClassifierCascade_hid_cascade_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_hid_cascade_set" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHidHaarClassifierCascade, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvHaarClassifierCascade_hid_cascade_set" "', argument " "2"" of type '" "CvHidHaarClassifierCascade *""'"); - } - arg2 = reinterpret_cast< CvHidHaarClassifierCascade * >(argp2); - if (arg1) (arg1)->hid_cascade = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvHaarClassifierCascade_hid_cascade_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvHidHaarClassifierCascade *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvHaarClassifierCascade_hid_cascade_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvHaarClassifierCascade_hid_cascade_get" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - result = (CvHidHaarClassifierCascade *) ((arg1)->hid_cascade); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHidHaarClassifierCascade, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvHaarClassifierCascade(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvHaarClassifierCascade",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvHaarClassifierCascade" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - { - try { - delete_CvHaarClassifierCascade(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvHaarClassifierCascade_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvHaarClassifierCascade, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvAvgComp_rect_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvAvgComp_rect_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_rect_set" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = reinterpret_cast< CvAvgComp * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvAvgComp_rect_set" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = reinterpret_cast< CvRect * >(argp2); - if (arg1) (arg1)->rect = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvAvgComp_rect_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvAvgComp_rect_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_rect_get" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = reinterpret_cast< CvAvgComp * >(argp1); - result = (CvRect *)& ((arg1)->rect); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvAvgComp_neighbors_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvAvgComp_neighbors_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_neighbors_set" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = reinterpret_cast< CvAvgComp * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvAvgComp_neighbors_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->neighbors = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvAvgComp_neighbors_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvAvgComp_neighbors_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAvgComp, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvAvgComp_neighbors_get" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = reinterpret_cast< CvAvgComp * >(argp1); - result = (int) ((arg1)->neighbors); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvAvgComp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAvgComp *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvAvgComp")) SWIG_fail; - { - try { - result = (CvAvgComp *)new CvAvgComp(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvAvgComp, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvAvgComp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvAvgComp *arg1 = (CvAvgComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvAvgComp",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvAvgComp, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvAvgComp" "', argument " "1"" of type '" "CvAvgComp *""'"); - } - arg1 = reinterpret_cast< CvAvgComp * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvAvgComp_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvAvgComp, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvCopyMakeBorder(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvPoint arg3 ; - int arg4 ; - CvScalar arg5 = (CvScalar) cvScalarAll(0) ; - bool freearg1 = false ; - bool freearg2 = false ; - CvPoint temp3 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvCopyMakeBorder",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCopyMakeBorder" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - if (obj4) { - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - } - { - try { - cvCopyMakeBorder((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSmooth(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 2 ; - int arg4 = (int) 3 ; - int arg5 = (int) 0 ; - double arg6 = (double) 0 ; - double arg7 = (double) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOOO:cvSmooth",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSmooth" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSmooth" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSmooth" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvSmooth" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvSmooth" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - { - try { - cvSmooth((void const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFilter2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvPoint arg4 = (CvPoint) cvPoint(-1,-1) ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - CvPoint temp4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvFilter2D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp4.x, & temp4.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg4 = *ptr; - } - } - } - { - try { - cvFilter2D((void const *)arg1,arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvIntegral(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) NULL ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvIntegral",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvIntegral((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPyrDown(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) CV_GAUSSIAN_5x5 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvPyrDown",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPyrDown" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvPyrDown((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPyrUp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) CV_GAUSSIAN_5x5 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvPyrUp",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPyrUp" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvPyrUp((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreatePyramid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - double arg3 ; - CvSize *arg4 = (CvSize *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - int arg6 = (int) 1 ; - int arg7 = (int) CV_GAUSSIAN_5x5 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool freearg5 = false ; - int val6 ; - int ecode6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvMat **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOOO:cvCreatePyramid",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreatePyramid" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreatePyramid" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - if (obj3) { - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvSize, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCreatePyramid" "', argument " "4"" of type '" "CvSize const *""'"); - } - arg4 = reinterpret_cast< CvSize * >(argp4); - } - if (obj4) { - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCreatePyramid" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvCreatePyramid" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - result = (CvMat **)cvCreatePyramid((void const *)arg1,arg2,arg3,(CvSize const *)arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvMat, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleasePyramid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat ***arg1 = (CvMat ***) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvReleasePyramid",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleasePyramid" "', argument " "1"" of type '" "CvMat ***""'"); - } - arg1 = reinterpret_cast< CvMat *** >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvReleasePyramid" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - cvReleasePyramid(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPyrSegmentationUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - IplImage *arg1 = (IplImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) 0 ; - CvSeq **arg4 = (CvSeq **) 0 ; - int arg5 ; - double arg6 ; - double arg7 ; - IplImage header1 ; - IplImage header2 ; - void *argp3 = 0 ; - int res3 = 0 ; - CvSeq *seq4 ; - int val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - { - arg4 = &seq4; - } - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvPyrSegmentationUntyped",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - void * vptr; - int res = SWIG_ConvertPtr(obj0, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg1 = cvGetImage((CvMat *)vptr, &header1); - } - { - void * vptr; - int res = SWIG_ConvertPtr(obj1, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvPyrSegmentationUntyped" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - ecode5 = SWIG_AsVal_int(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvPyrSegmentationUntyped" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_double(obj4, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvPyrSegmentationUntyped" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - ecode7 = SWIG_AsVal_double(obj5, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvPyrSegmentationUntyped" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - { - try { - cvPyrSegmentation(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - PyObject *to_add; - - /* extract the pointer we want to add to the returned tuple */ - /* sequence is allocated in CvMemStorage, so python_ownership=0 */ - to_add = SWIG_NewPointerObj (*arg4, SWIGTYPE_p_CvSeq, 0); - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPyrMeanShiftFiltering(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - double arg4 ; - int arg5 = (int) 1 ; - CvTermCriteria arg6 = (CvTermCriteria) cvTermCriteria(1 +2,5,1) ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - CvTermCriteria temp6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OO:cvPyrMeanShiftFiltering",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPyrMeanShiftFiltering" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvPyrMeanShiftFiltering" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvPyrMeanShiftFiltering" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - { - if (PyTuple_Check(obj5)) - { - if (!PyArg_ParseTuple(obj5,"iid", & temp6.type, & temp6.max_iter, & temp6.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg6 = temp6; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj5, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg6 = *ptr; - } - } - } - { - try { - cvPyrMeanShiftFiltering((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWatershed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvWatershed",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvWatershed((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInpaint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 ; - int arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvInpaint",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvInpaint" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvInpaint" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - cvInpaint((void const *)arg1,(void const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSobel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - int arg4 ; - int arg5 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvSobel",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSobel" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSobel" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSobel" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvSobel((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLaplace(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvLaplace",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvLaplace" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvLaplace((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCvtColor(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCvtColor",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCvtColor" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvCvtColor((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvResize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 1 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvResize",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvResize" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvResize((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWarpAffine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 = (int) 1+8 ; - CvScalar arg5 = (CvScalar) cvScalarAll(0) ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvWarpAffine",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvWarpAffine" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - } - { - try { - cvWarpAffine((void const *)arg1,arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetAffineTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetAffineTransform",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetAffineTransform" "', argument " "1"" of type '" "CvPoint2D32f const *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetAffineTransform" "', argument " "2"" of type '" "CvPoint2D32f const *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvMat *)cvGetAffineTransform((CvPoint2D32f const *)arg1,(CvPoint2D32f const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cv2DRotationMatrix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f arg1 ; - double arg2 ; - double arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvPoint2D32f temp1 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cv2DRotationMatrix",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ff", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cv2DRotationMatrix" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cv2DRotationMatrix" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvMat *)cv2DRotationMatrix(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWarpPerspective(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 = (int) 1+8 ; - CvScalar arg5 = (CvScalar) cvScalarAll(0) ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvWarpPerspective",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvWarpPerspective" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - } - { - try { - cvWarpPerspective((void const *)arg1,arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetPerspectiveTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f *arg1 = (CvPoint2D32f *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetPerspectiveTransform",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetPerspectiveTransform" "', argument " "1"" of type '" "CvPoint2D32f const *""'"); - } - arg1 = reinterpret_cast< CvPoint2D32f * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetPerspectiveTransform" "', argument " "2"" of type '" "CvPoint2D32f const *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvMat *)cvGetPerspectiveTransform((CvPoint2D32f const *)arg1,(CvPoint2D32f const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRemap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - int arg5 = (int) 1+8 ; - CvScalar arg6 = (CvScalar) cvScalarAll(0) ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OO:cvRemap",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvRemap" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - { - arg6 = PyObject_to_CvScalar( obj5 ); - } - } - { - try { - cvRemap((void const *)arg1,arg2,(void const *)arg3,(void const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvertMaps(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvConvertMaps",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvConvertMaps((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLogPolar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvPoint2D32f arg3 ; - double arg4 ; - int arg5 = (int) 1+8 ; - bool freearg1 = false ; - bool freearg2 = false ; - CvPoint2D32f temp3 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvLogPolar",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ff", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg3 = *ptr; - } - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvLogPolar" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvLogPolar" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvLogPolar((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLinearPolar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvPoint2D32f arg3 ; - double arg4 ; - int arg5 = (int) 1+8 ; - bool freearg1 = false ; - bool freearg2 = false ; - CvPoint2D32f temp3 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvLinearPolar",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ff", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg3 = *ptr; - } - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvLinearPolar" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvLinearPolar" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvLinearPolar((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateStructuringElementEx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - int arg5 ; - int *arg6 = (int *) NULL ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - IplConvKernel *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvCreateStructuringElementEx",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateStructuringElementEx" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateStructuringElementEx" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateStructuringElementEx" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateStructuringElementEx" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCreateStructuringElementEx" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - if (obj5) { - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvCreateStructuringElementEx" "', argument " "6"" of type '" "int *""'"); - } - arg6 = reinterpret_cast< int * >(argp6); - } - { - try { - result = (IplConvKernel *)cvCreateStructuringElementEx(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__IplConvKernel, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvErode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplConvKernel *arg3 = (IplConvKernel *) NULL ; - int arg4 = (int) 1 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvErode",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvErode" "', argument " "3"" of type '" "IplConvKernel *""'"); - } - arg3 = reinterpret_cast< IplConvKernel * >(argp3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvErode" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvErode((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDilate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - IplConvKernel *arg3 = (IplConvKernel *) NULL ; - int arg4 = (int) 1 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvDilate",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvDilate" "', argument " "3"" of type '" "IplConvKernel *""'"); - } - arg3 = reinterpret_cast< IplConvKernel * >(argp3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvDilate" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvDilate((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMorphologyEx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - IplConvKernel *arg4 = (IplConvKernel *) 0 ; - int arg5 ; - int arg6 = (int) 1 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - void *argp4 = 0 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvMorphologyEx",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p__IplConvKernel, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvMorphologyEx" "', argument " "4"" of type '" "IplConvKernel *""'"); - } - arg4 = reinterpret_cast< IplConvKernel * >(argp4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvMorphologyEx" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvMorphologyEx" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvMorphologyEx((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMoments(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMoments *arg2 = (CvMoments *) 0 ; - int arg3 = (int) 0 ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvMoments",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvMoments" "', argument " "2"" of type '" "CvMoments *""'"); - } - arg2 = reinterpret_cast< CvMoments * >(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMoments" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvMoments((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetSpatialMoment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetSpatialMoment",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetSpatialMoment" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetSpatialMoment" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetSpatialMoment" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvGetSpatialMoment(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetCentralMoment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetCentralMoment",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetCentralMoment" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetCentralMoment" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetCentralMoment" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvGetCentralMoment(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetNormalizedCentralMoment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetNormalizedCentralMoment",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetNormalizedCentralMoment" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetNormalizedCentralMoment" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvGetNormalizedCentralMoment" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvGetNormalizedCentralMoment(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetHuMoments(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMoments *arg1 = (CvMoments *) 0 ; - CvHuMoments *arg2 = (CvHuMoments *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetHuMoments",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMoments, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetHuMoments" "', argument " "1"" of type '" "CvMoments *""'"); - } - arg1 = reinterpret_cast< CvMoments * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHuMoments, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetHuMoments" "', argument " "2"" of type '" "CvHuMoments *""'"); - } - arg2 = reinterpret_cast< CvHuMoments * >(argp2); - { - try { - cvGetHuMoments(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSampleLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - CvPoint arg3 ; - void *arg4 = (void *) 0 ; - int arg5 = (int) 8 ; - bool freearg1 = false ; - CvPoint temp2 ; - CvPoint temp3 ; - int res4 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvSampleLine",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg3 = *ptr; - } - } - res4 = SWIG_ConvertPtr(obj3,SWIG_as_voidptrptr(&arg4), 0, 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvSampleLine" "', argument " "4"" of type '" "void *""'"); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSampleLine" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - result = (int)cvSampleLine((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetRectSubPix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvPoint2D32f arg3 ; - bool freearg1 = false ; - bool freearg2 = false ; - CvPoint2D32f temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetRectSubPix",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ff", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - cvGetRectSubPix((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetQuadrangleSubPix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvGetQuadrangleSubPix",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvGetQuadrangleSubPix((void const *)arg1,arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMatchTemplate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - int arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvMatchTemplate",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMatchTemplate" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - cvMatchTemplate((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcEMD2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - CvDistanceFunction arg4 = (CvDistanceFunction) NULL ; - CvArr *arg5 = (CvArr *) NULL ; - CvArr *arg6 = (CvArr *) NULL ; - float *arg7 = (float *) NULL ; - void *arg8 = (void *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg5 = false ; - bool freearg6 = false ; - void *argp7 = 0 ; - int res7 = 0 ; - int res8 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOOOO:cvCalcEMD2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCalcEMD2" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - { - int res = SWIG_ConvertFunctionPtr(obj3, (void**)(&arg4), SWIGTYPE_p_f_p_q_const__float_p_q_const__float_p_void__float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvCalcEMD2" "', argument " "4"" of type '" "CvDistanceFunction""'"); - } - } - } - if (obj4) { - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - } - if (obj5) { - { - arg6 = PyObject_to_CvArr(obj5, &freearg6); - } - } - if (obj6) { - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvCalcEMD2" "', argument " "7"" of type '" "float *""'"); - } - arg7 = reinterpret_cast< float * >(argp7); - } - if (obj7) { - res8 = SWIG_ConvertPtr(obj7,SWIG_as_voidptrptr(&arg8), 0, 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "cvCalcEMD2" "', argument " "8"" of type '" "void *""'"); - } - } - { - try { - result = (float)cvCalcEMD2((void const *)arg1,(void const *)arg2,arg3,arg4,(void const *)arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindContoursUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - CvSeq **arg3 = (CvSeq **) 0 ; - int arg4 = (int) sizeof(CvContour) ; - int arg5 = (int) 1 ; - int arg6 = (int) 2 ; - CvPoint arg7 = (CvPoint) cvPoint(0,0) ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - CvSeq *seq3 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - CvPoint temp7 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - { - arg3 = &seq3; - } - if (!PyArg_ParseTuple(args,(char *)"OO|OOOO:cvFindContoursUntyped",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvFindContoursUntyped" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (obj2) { - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvFindContoursUntyped" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj3) { - ecode5 = SWIG_AsVal_int(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFindContoursUntyped" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj4) { - ecode6 = SWIG_AsVal_int(obj4, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFindContoursUntyped" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj5) { - { - if (PyTuple_Check(obj5)) - { - if (!PyArg_ParseTuple(obj5,"ii", & temp7.x, & temp7.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg7 = temp7; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj5, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg7 = *ptr; - } - } - } - { - try { - result = (int)cvFindContours(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - PyObject *to_add; - - /* extract the pointer we want to add to the returned tuple */ - /* sequence is allocated in CvMemStorage, so python_ownership=0 */ - to_add = SWIG_NewPointerObj (*arg3, SWIGTYPE_p_CvSeq, 0); - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartFindContours(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - int arg3 = (int) sizeof(CvContour) ; - int arg4 = (int) 1 ; - int arg5 = (int) 2 ; - CvPoint arg6 = (CvPoint) cvPoint(0,0) ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - CvPoint temp6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvContourScanner result; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOO:cvStartFindContours",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStartFindContours" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStartFindContours" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvStartFindContours" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvStartFindContours" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - { - if (PyTuple_Check(obj5)) - { - if (!PyArg_ParseTuple(obj5,"ii", & temp6.x, & temp6.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg6 = temp6; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj5, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg6 = *ptr; - } - } - } - { - try { - result = (CvContourScanner)cvStartFindContours(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p__CvContourScanner, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindNextContour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourScanner arg1 = (CvContourScanner) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFindNextContour",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__CvContourScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFindNextContour" "', argument " "1"" of type '" "CvContourScanner""'"); - } - arg1 = reinterpret_cast< CvContourScanner >(argp1); - { - try { - result = (CvSeq *)cvFindNextContour(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubstituteContour(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourScanner arg1 = (CvContourScanner) 0 ; - CvSeq *arg2 = (CvSeq *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSubstituteContour",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p__CvContourScanner, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSubstituteContour" "', argument " "1"" of type '" "CvContourScanner""'"); - } - arg1 = reinterpret_cast< CvContourScanner >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg2 = (CvSeq *) ptr2; - } - { - try { - cvSubstituteContour(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEndFindContours(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourScanner *arg1 = (CvContourScanner *) 0 ; - void *vptr1 ; - CvContourScanner buffer1 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvEndFindContours",&obj0)) SWIG_fail; - { - if ((SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p__CvContourScanner, 1)) == -1){ - SWIG_fail; - } - buffer1 = (CvContourScanner) vptr1; - arg1=&buffer1; - } - { - try { - result = (CvSeq *)cvEndFindContours(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvApproxChainsUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - int arg3 = (int) 2 ; - double arg4 = (double) 0 ; - int arg5 = (int) 0 ; - int arg6 = (int) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOO:cvApproxChainsUntyped",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvApproxChainsUntyped" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvApproxChainsUntyped" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvApproxChainsUntyped" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvApproxChainsUntyped" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvApproxChainsUntyped" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - result = (CvSeq *)cvApproxChains(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartReadChainPoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChain *arg1 = (CvChain *) 0 ; - CvChainPtReader *arg2 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvStartReadChainPoints",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChain, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvStartReadChainPoints" "', argument " "1"" of type '" "CvChain *""'"); - } - arg1 = reinterpret_cast< CvChain * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvStartReadChainPoints" "', argument " "2"" of type '" "CvChainPtReader *""'"); - } - arg2 = reinterpret_cast< CvChainPtReader * >(argp2); - { - try { - cvStartReadChainPoints(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReadChainPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvChainPtReader *arg1 = (CvChainPtReader *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReadChainPoint",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvChainPtReader, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReadChainPoint" "', argument " "1"" of type '" "CvChainPtReader *""'"); - } - arg1 = reinterpret_cast< CvChainPtReader * >(argp1); - { - try { - result = cvReadChainPoint(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvPoint(static_cast< const CvPoint& >(result))), SWIGTYPE_p_CvPoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcOpticalFlowLK(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSize arg3 ; - CvArr *arg4 = (CvArr *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - CvSize temp3 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCalcOpticalFlowLK",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.width, & temp3.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg3 = *ptr; - } - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - cvCalcOpticalFlowLK((void const *)arg1,(void const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcOpticalFlowBM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSize arg3 ; - CvSize arg4 ; - CvSize arg5 ; - int arg6 ; - CvArr *arg7 = (CvArr *) 0 ; - CvArr *arg8 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - CvSize temp3 ; - CvSize temp4 ; - CvSize temp5 ; - int val6 ; - int ecode6 = 0 ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:cvCalcOpticalFlowBM",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp3.width, & temp3.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg3 = *ptr; - } - } - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg4 = *ptr; - } - } - { - if (PyTuple_Check(obj4)) - { - if (!PyArg_ParseTuple(obj4,"ii", & temp5.width, & temp5.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg5 = temp5; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj4, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg5 = *ptr; - } - } - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCalcOpticalFlowBM" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - arg7 = PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - cvCalcOpticalFlowBM((void const *)arg1,(void const *)arg2,arg3,arg4,arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg7!=NULL && freearg7) - { - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg7!=NULL && freearg7) - { - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcOpticalFlowHS(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - CvArr *arg4 = (CvArr *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - double arg6 ; - CvTermCriteria arg7 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - double val6 ; - int ecode6 = 0 ; - CvTermCriteria temp7 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:cvCalcOpticalFlowHS",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCalcOpticalFlowHS" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCalcOpticalFlowHS" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - { - if (PyTuple_Check(obj6)) - { - if (!PyArg_ParseTuple(obj6,"iid", & temp7.type, & temp7.max_iter, & temp7.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg7 = temp7; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj6, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg7 = *ptr; - } - } - { - try { - cvCalcOpticalFlowHS((void const *)arg1,(void const *)arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcOpticalFlowPyrLK(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvPoint2D32f *arg5 = (CvPoint2D32f *) 0 ; - CvPoint2D32f *arg6 = (CvPoint2D32f *) 0 ; - int arg7 ; - CvSize arg8 ; - int arg9 ; - char *arg10 = (char *) 0 ; - float *arg11 = (float *) 0 ; - CvTermCriteria arg12 ; - int arg13 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - int tmpCount6 ; - CvSize temp8 ; - int val9 ; - int ecode9 = 0 ; - int tmpCountStatus10 ; - void *argp11 = 0 ; - int res11 = 0 ; - CvTermCriteria temp12 ; - int val13 ; - int ecode13 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOO:cvCalcOpticalFlowPyrLK",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - int i; - int size; - - /* get the size of the input array */ - size = PyList_Size (obj4); - - /* allocate the needed memory */ - CvPoint2D32f * features = (CvPoint2D32f *) malloc (size * sizeof (CvPoint2D32f)); - - /* extract all the points values from the list */ - for (i = 0; i < size; i++) - { - PyObject *item = PyList_GetItem (obj4, i); - - void * vptr; - SWIG_Python_ConvertPtr (item, &vptr, - SWIGTYPE_p_CvPoint2D32f, - SWIG_POINTER_EXCEPTION); - CvPoint2D32f *p = (CvPoint2D32f *)vptr; - features[i].x = p->x; - features[i].y = p->y; - } - - // these are the arguments passed to the OpenCV function - arg5 = features; - } - { - /* as input, we only need the size of the wanted features */ - - /* memorize the size of the wanted features */ - tmpCount6 = (int)PyInt_AsLong (obj5); - - /* create the array for the C call */ - arg6 = (CvPoint2D32f *) malloc(tmpCount6 * sizeof (CvPoint2D32f)); - - /* the size of the array for the C call */ - arg7 = tmpCount6; - } - { - if (PyTuple_Check(obj6)) - { - if (!PyArg_ParseTuple(obj6,"ii", & temp8.width, & temp8.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg8 = temp8; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj6, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg8 = *ptr; - } - } - ecode9 = SWIG_AsVal_int(obj7, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - { - /* as input, we still need the size of the status array */ - - /* memorize the size of the status array */ - tmpCountStatus10 = (int)PyInt_AsLong (obj8); - - /* create the status array for the C call */ - arg10 = (char *)malloc (tmpCountStatus10 * sizeof (char)); - } - res11 = SWIG_ConvertPtr(obj9, &argp11,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "11"" of type '" "float *""'"); - } - arg11 = reinterpret_cast< float * >(argp11); - { - if (PyTuple_Check(obj10)) - { - if (!PyArg_ParseTuple(obj10,"iid", & temp12.type, & temp12.max_iter, & temp12.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg12 = temp12; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj10, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg12 = *ptr; - } - } - ecode13 = SWIG_AsVal_int(obj11, &val13); - if (!SWIG_IsOK(ecode13)) { - SWIG_exception_fail(SWIG_ArgError(ecode13), "in method '" "cvCalcOpticalFlowPyrLK" "', argument " "13"" of type '" "int""'"); - } - arg13 = static_cast< int >(val13); - { - try { - cvCalcOpticalFlowPyrLK((void const *)arg1,(void const *)arg2,arg3,arg4,(CvPoint2D32f const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (tmpCount6); - - /* extract all the points values of the result, and add it to the - final resulting list */ - for (i = 0; i < tmpCount6; i++) { - PyList_SetItem (to_add, i, - SWIG_NewPointerObj (&(arg6 [i]), - SWIGTYPE_p_CvPoint2D32f, 0)); - } - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (tmpCountStatus10); - - /* extract all the integer values of the result, and add it to the - final resulting list */ - for (i = 0; i < tmpCountStatus10; i++) { - PyList_SetItem (to_add, i, PyBool_FromLong (arg10 [i])); - } - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - { - PyObject * to_add = SWIG_NewPointerObj (arg11, SWIGTYPE_p_float, SWIG_POINTER_OWN); - resultobj = SWIG_Python_AppendOutput(resultobj, to_add); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcAffineFlowPyrLK(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvPoint2D32f *arg5 = (CvPoint2D32f *) 0 ; - CvPoint2D32f *arg6 = (CvPoint2D32f *) 0 ; - float *arg7 = (float *) 0 ; - int arg8 ; - CvSize arg9 ; - int arg10 ; - char *arg11 = (char *) 0 ; - float *arg12 = (float *) 0 ; - CvTermCriteria arg13 ; - int arg14 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - int val8 ; - int ecode8 = 0 ; - CvSize temp9 ; - int val10 ; - int ecode10 = 0 ; - int tmpCountStatus11 ; - void *argp12 = 0 ; - int res12 = 0 ; - CvTermCriteria temp13 ; - int val14 ; - int ecode14 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - PyObject * obj13 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOOO:cvCalcAffineFlowPyrLK",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - int i; - int size; - - /* get the size of the input array */ - size = PyList_Size (obj4); - - /* allocate the needed memory */ - CvPoint2D32f * features = (CvPoint2D32f *) malloc (size * sizeof (CvPoint2D32f)); - - /* extract all the points values from the list */ - for (i = 0; i < size; i++) - { - PyObject *item = PyList_GetItem (obj4, i); - - void * vptr; - SWIG_Python_ConvertPtr (item, &vptr, - SWIGTYPE_p_CvPoint2D32f, - SWIG_POINTER_EXCEPTION); - CvPoint2D32f *p = (CvPoint2D32f *)vptr; - features[i].x = p->x; - features[i].y = p->y; - } - - // these are the arguments passed to the OpenCV function - arg5 = features; - } - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "6"" of type '" "CvPoint2D32f *""'"); - } - arg6 = reinterpret_cast< CvPoint2D32f * >(argp6); - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "7"" of type '" "float *""'"); - } - arg7 = reinterpret_cast< float * >(argp7); - ecode8 = SWIG_AsVal_int(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "8"" of type '" "int""'"); - } - arg8 = static_cast< int >(val8); - { - if (PyTuple_Check(obj8)) - { - if (!PyArg_ParseTuple(obj8,"ii", & temp9.width, & temp9.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg9 = temp9; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj8, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg9 = *ptr; - } - } - ecode10 = SWIG_AsVal_int(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "10"" of type '" "int""'"); - } - arg10 = static_cast< int >(val10); - { - /* as input, we still need the size of the status array */ - - /* memorize the size of the status array */ - tmpCountStatus11 = (int)PyInt_AsLong (obj10); - - /* create the status array for the C call */ - arg11 = (char *)malloc (tmpCountStatus11 * sizeof (char)); - } - res12 = SWIG_ConvertPtr(obj11, &argp12,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "12"" of type '" "float *""'"); - } - arg12 = reinterpret_cast< float * >(argp12); - { - if (PyTuple_Check(obj12)) - { - if (!PyArg_ParseTuple(obj12,"iid", & temp13.type, & temp13.max_iter, & temp13.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg13 = temp13; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj12, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg13 = *ptr; - } - } - ecode14 = SWIG_AsVal_int(obj13, &val14); - if (!SWIG_IsOK(ecode14)) { - SWIG_exception_fail(SWIG_ArgError(ecode14), "in method '" "cvCalcAffineFlowPyrLK" "', argument " "14"" of type '" "int""'"); - } - arg14 = static_cast< int >(val14); - { - try { - cvCalcAffineFlowPyrLK((void const *)arg1,(void const *)arg2,arg3,arg4,(CvPoint2D32f const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (tmpCountStatus11); - - /* extract all the integer values of the result, and add it to the - final resulting list */ - for (i = 0; i < tmpCountStatus11; i++) { - PyList_SetItem (to_add, i, PyBool_FromLong (arg11 [i])); - } - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - { - PyObject * to_add = SWIG_NewPointerObj (arg12, SWIGTYPE_p_float, SWIG_POINTER_OWN); - resultobj = SWIG_Python_AppendOutput(resultobj, to_add); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEstimateRigidTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvEstimateRigidTransform",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvEstimateRigidTransform" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (int)cvEstimateRigidTransform((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvUpdateMotionHistory(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - double arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvUpdateMotionHistory",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvUpdateMotionHistory" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvUpdateMotionHistory" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - cvUpdateMotionHistory((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcMotionGradient(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 ; - double arg5 ; - int arg6 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvCalcMotionGradient",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCalcMotionGradient" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcMotionGradient" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCalcMotionGradient" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvCalcMotionGradient((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcGlobalOrientation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - double arg4 ; - double arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCalcGlobalOrientation",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCalcGlobalOrientation" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcGlobalOrientation" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - { - try { - result = (double)cvCalcGlobalOrientation((void const *)arg1,(void const *)arg2,(void const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvAcc",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - { - try { - cvAcc((void const *)arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSquareAcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSquareAcc",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - } - { - try { - cvSquareAcc((void const *)arg1,arg2,(void const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMultiplyAcc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvMultiplyAcc",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvMultiplyAcc((void const *)arg1,(void const *)arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRunningAvg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - CvArr *arg4 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvRunningAvg",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRunningAvg" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvRunningAvg((void const *)arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCamShift(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvRect arg2 ; - CvTermCriteria arg3 ; - CvConnectedComp *arg4 = (CvConnectedComp *) 0 ; - CvBox2D *arg5 = (CvBox2D *) NULL ; - bool freearg1 = false ; - CvRect temp2 ; - CvTermCriteria temp3 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvCamShift",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"iiii", & temp2.x, & temp2.y, & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"iid", & temp3.type, & temp3.max_iter, & temp3.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg3 = *ptr; - } - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCamShift" "', argument " "4"" of type '" "CvConnectedComp *""'"); - } - arg4 = reinterpret_cast< CvConnectedComp * >(argp4); - if (obj4) { - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvBox2D, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvCamShift" "', argument " "5"" of type '" "CvBox2D *""'"); - } - arg5 = reinterpret_cast< CvBox2D * >(argp5); - } - { - try { - result = (int)cvCamShift((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMeanShift(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvRect arg2 ; - CvTermCriteria arg3 ; - CvConnectedComp *arg4 = (CvConnectedComp *) 0 ; - bool freearg1 = false ; - CvRect temp2 ; - CvTermCriteria temp3 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvMeanShift",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"iiii", & temp2.x, & temp2.y, & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"iid", & temp3.type, & temp3.max_iter, & temp3.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg3 = *ptr; - } - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvMeanShift" "', argument " "4"" of type '" "CvConnectedComp *""'"); - } - arg4 = reinterpret_cast< CvConnectedComp * >(argp4); - { - try { - result = (int)cvMeanShift((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateConDensation(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvConDensation *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCreateConDensation",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateConDensation" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateConDensation" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateConDensation" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvConDensation *)cvCreateConDensation(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConDensation, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConDensUpdateByTime(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvConDensUpdateByTime",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvConDensUpdateByTime" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - { - try { - cvConDensUpdateByTime(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConDensInitSampleSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvConDensation *arg1 = (CvConDensation *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvConDensInitSampleSet",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvConDensation, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvConDensInitSampleSet" "', argument " "1"" of type '" "CvConDensation *""'"); - } - arg1 = reinterpret_cast< CvConDensation * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - cvConDensInitSampleSet(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateKalman(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvKalman *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvCreateKalman",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateKalman" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateKalman" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateKalman" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = (CvKalman *)cvCreateKalman(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKalman, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvKalmanPredict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvKalmanPredict",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvKalmanPredict" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - if (obj1) { - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - } - { - try { - result = (CvMat *)cvKalmanPredict(arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvKalmanCorrect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKalman *arg1 = (CvKalman *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvKalmanCorrect",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKalman, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvKalmanCorrect" "', argument " "1"" of type '" "CvKalman *""'"); - } - arg1 = reinterpret_cast< CvKalman * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvMat *)cvKalmanCorrect(arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitSubdivDelaunay2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvRect arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvRect temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvInitSubdivDelaunay2D",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvInitSubdivDelaunay2D" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"iiii", & temp2.x, & temp2.y, & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - cvInitSubdivDelaunay2D(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSubdiv2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int arg4 ; - CvMemStorage *arg5 = (CvMemStorage *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvSubdiv2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCreateSubdiv2D",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateSubdiv2D" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateSubdiv2D" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateSubdiv2D" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateSubdiv2D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvCreateSubdiv2D" "', argument " "5"" of type '" "CvMemStorage *""'"); - } - arg5 = reinterpret_cast< CvMemStorage * >(argp5); - { - try { - result = (CvSubdiv2D *)cvCreateSubdiv2D(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSubdivDelaunay2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect arg1 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - CvRect temp1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSubdiv2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCreateSubdivDelaunay2D",&obj0,&obj1)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"iiii", & temp1.x, & temp1.y, & temp1.width, & temp1.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg1 = *ptr; - } - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCreateSubdivDelaunay2D" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - { - try { - result = (CvSubdiv2D *)cvCreateSubdivDelaunay2D(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdivDelaunay2DInsert(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvPoint2D32f temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSubdiv2DPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSubdivDelaunay2DInsert",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSubdivDelaunay2DInsert" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ff", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - result = (CvSubdiv2DPoint *)cvSubdivDelaunay2DInsert(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DLocate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f arg2 ; - CvSubdiv2DEdge *arg3 = (CvSubdiv2DEdge *) 0 ; - CvSubdiv2DPoint **arg4 = (CvSubdiv2DPoint **) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - CvPoint2D32f temp2 ; - CvSubdiv2DEdge tmpEdge3 ; - CvSubdiv2DPoint *tmpVertex3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSubdiv2DPointLocation result; - - { - arg3 = &tmpEdge3; - arg4 = &tmpVertex3; - } - if (!PyArg_ParseTuple(args,(char *)"OO:cvSubdiv2DLocate",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSubdiv2DLocate" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ff", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - result = (CvSubdiv2DPointLocation)cvSubdiv2DLocate(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - PyObject * to_add[2] = { - NULL, NULL - }; - if(result==CV_PTLOC_INSIDE || result==CV_PTLOC_ON_EDGE){ - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( tmpEdge3 ); - to_add[0] = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0); - to_add[1] = Py_None; - } - if(result==CV_PTLOC_VERTEX){ - to_add[0] = Py_None; - to_add[1] = SWIG_NewPointerObj( tmpVertex3, SWIGTYPE_p_CvSubdiv2DPoint, 0); - } - - resultobj = SWIG_AppendResult(resultobj, to_add, 2); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcSubdivVoronoi2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCalcSubdivVoronoi2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalcSubdivVoronoi2D" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - try { - cvCalcSubdivVoronoi2D(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearSubdivVoronoi2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClearSubdivVoronoi2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvClearSubdivVoronoi2D" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - try { - cvClearSubdivVoronoi2D(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindNearestPoint2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2D *arg1 = (CvSubdiv2D *) 0 ; - CvPoint2D32f arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvPoint2D32f temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSubdiv2DPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvFindNearestPoint2D",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2D, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFindNearestPoint2D" "', argument " "1"" of type '" "CvSubdiv2D *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2D * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ff", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - result = (CvSubdiv2DPoint *)cvFindNearestPoint2D(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DNextEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSubdiv2DNextEdge",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - { - try { - result = cvSubdiv2DNextEdge(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DRotateEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - int arg2 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSubdiv2DEdge result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSubdiv2DRotateEdge",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSubdiv2DRotateEdge" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = cvSubdiv2DRotateEdge(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DSymEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSubdiv2DSymEdge",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - { - try { - result = cvSubdiv2DSymEdge(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DGetEdge(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - CvNextEdgeType arg2 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSubdiv2DEdge result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSubdiv2DGetEdge",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSubdiv2DGetEdge" "', argument " "2"" of type '" "CvNextEdgeType""'"); - } - arg2 = static_cast< CvNextEdgeType >(val2); - { - try { - result = cvSubdiv2DGetEdge(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DEdgeOrg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - PyObject * obj0 = 0 ; - CvSubdiv2DPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSubdiv2DEdgeOrg",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - { - try { - result = (CvSubdiv2DPoint *)cvSubdiv2DEdgeOrg(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSubdiv2DEdgeDst(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge arg1 ; - CvSubdiv2DEdge_Wrapper *wrapper1 ; - CvQuadEdge2D *qedge1 ; - void *vptr1 ; - PyObject * obj0 = 0 ; - CvSubdiv2DPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvSubdiv2DEdgeDst",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0) != -1 ){ - wrapper1 = (CvSubdiv2DEdge_Wrapper *) vptr1; - arg1 = wrapper1->ref(); - } - else if( SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvQuadEdge2D, 0) != -1 ){ - qedge1 = (CvQuadEdge2D *) vptr1; - arg1 = (CvSubdiv2DEdge)qedge1; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } - } - { - try { - result = (CvSubdiv2DPoint *)cvSubdiv2DEdgeDst(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTriangleArea(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f arg1 ; - CvPoint2D32f arg2 ; - CvPoint2D32f arg3 ; - CvPoint2D32f temp1 ; - CvPoint2D32f temp2 ; - CvPoint2D32f temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvTriangleArea",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ff", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg1 = *ptr; - } - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ff", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg2 = *ptr; - } - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ff", & temp3.x, & temp3.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - result = (double)cvTriangleArea(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindDominantPoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - int arg3 = (int) 1 ; - double arg4 = (double) 0 ; - double arg5 = (double) 0 ; - double arg6 = (double) 0 ; - double arg7 = (double) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOOO:cvFindDominantPoints",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvFindDominantPoints" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvFindDominantPoints" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvFindDominantPoints" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFindDominantPoints" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFindDominantPoints" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvFindDominantPoints" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - { - try { - result = (CvSeq *)cvFindDominantPoints(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvArcLength(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - CvSlice arg2 = (CvSlice) cvSlice(0, 0x3fffffff) ; - int arg3 = (int) -1 ; - int res1 ; - CvSlice temp2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O|OO:cvArcLength",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvArcLength" "', argument " "1"" of type '" "void const *""'"); - } - if (obj1) { - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.start_index, & temp2.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg2 = *ptr; - } - } - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvArcLength" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = (double)cvArcLength((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvBoundingRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 = (int) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvRect result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvBoundingRect",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvBoundingRect" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = cvBoundingRect(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvRect(static_cast< const CvRect& >(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvContourArea(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvSlice arg2 = (CvSlice) cvSlice(0, 0x3fffffff) ; - bool freearg1 = false ; - CvSlice temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvContourArea",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.start_index, & temp2.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg2 = *ptr; - } - } - } - { - try { - result = (double)cvContourArea((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMinAreaRect2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) NULL ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvBox2D result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvMinAreaRect2",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvMinAreaRect2" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - } - { - try { - result = cvMinAreaRect2((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvBox2D(static_cast< const CvBox2D& >(result))), SWIGTYPE_p_CvBox2D, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMinEnclosingCircle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - float *arg3 = (float *) 0 ; - bool freearg1 = false ; - CvPoint2D32f *tmp_center2 ; - float tmp_radius2 ; - PyObject * obj0 = 0 ; - int result; - - { - tmp_center2 = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)); - arg2 = tmp_center2; - arg3 = &tmp_radius2; - } - if (!PyArg_ParseTuple(args,(char *)"O:cvMinEnclosingCircle",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)cvMinEnclosingCircle((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - PyObject * to_add[2] = { - NULL, NULL - }; - to_add[0] = SWIG_NewPointerObj( tmp_center2, SWIGTYPE_p_CvPoint2D32f, 1); - to_add[1] = PyFloat_FromDouble( tmp_radius2 ); - - resultobj = SWIG_AppendResult(resultobj, to_add, 2); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMatchShapes(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - double arg4 = (double) 0 ; - int res1 ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvMatchShapes",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvMatchShapes" "', argument " "1"" of type '" "void const *""'"); - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvMatchShapes" "', argument " "2"" of type '" "void const *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMatchShapes" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMatchShapes" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - result = (double)cvMatchShapes((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateContourTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - double arg3 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvContourTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCreateContourTree",&obj0,&obj1,&obj2)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCreateContourTree" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateContourTree" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = (CvContourTree *)cvCreateContourTree((CvSeq const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvContourTree, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvContourFromContourTreeUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - CvTermCriteria arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - CvTermCriteria temp3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvContourFromContourTreeUntyped",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvContourFromContourTreeUntyped" "', argument " "1"" of type '" "CvContourTree const *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvContourFromContourTreeUntyped" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"iid", & temp3.type, & temp3.max_iter, & temp3.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg3 = temp3; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg3 = *ptr; - } - } - { - try { - result = (CvSeq *)cvContourFromContourTree((CvContourTree const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMatchContourTrees(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvContourTree *arg1 = (CvContourTree *) 0 ; - CvContourTree *arg2 = (CvContourTree *) 0 ; - int arg3 ; - double arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvMatchContourTrees",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvMatchContourTrees" "', argument " "1"" of type '" "CvContourTree const *""'"); - } - arg1 = reinterpret_cast< CvContourTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvContourTree, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvMatchContourTrees" "', argument " "2"" of type '" "CvContourTree const *""'"); - } - arg2 = reinterpret_cast< CvContourTree * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMatchContourTrees" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMatchContourTrees" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - result = (double)cvMatchContourTrees((CvContourTree const *)arg1,(CvContourTree const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcPGH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - CvHistogram *arg2 = (CvHistogram *) 0 ; - void *ptr1 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCalcPGH",&obj0,&obj1)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCalcPGH" "', argument " "2"" of type '" "CvHistogram *""'"); - } - arg2 = reinterpret_cast< CvHistogram * >(argp2); - { - try { - cvCalcPGH((CvSeq const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCheckContourConvexity(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCheckContourConvexity",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (int)cvCheckContourConvexity((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvexityDefectsUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMemStorage *arg3 = (CvMemStorage *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvConvexityDefectsUntyped",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvConvexityDefectsUntyped" "', argument " "3"" of type '" "CvMemStorage *""'"); - } - arg3 = reinterpret_cast< CvMemStorage * >(argp3); - } - { - try { - result = (CvSeq *)cvConvexityDefects((void const *)arg1,(void const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFitEllipse2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvBox2D result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvFitEllipse2",&obj0)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = cvFitEllipse2((void const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvBox2D(static_cast< const CvBox2D& >(result))), SWIGTYPE_p_CvBox2D, SWIG_POINTER_OWN | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMaxRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRect *arg1 = (CvRect *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvRect result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvMaxRect",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvMaxRect" "', argument " "1"" of type '" "CvRect const *""'"); - } - arg1 = reinterpret_cast< CvRect * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvMaxRect" "', argument " "2"" of type '" "CvRect const *""'"); - } - arg2 = reinterpret_cast< CvRect * >(argp2); - { - try { - result = cvMaxRect((CvRect const *)arg1,(CvRect const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvRect(static_cast< const CvRect& >(result))), SWIGTYPE_p_CvRect, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvBoxPoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBox2D arg1 ; - CvPoint2D32f *arg2 ; - CvBox2D temp1 ; - CvPoint2D32f tmp_pts2[4] ; - PyObject * obj0 = 0 ; - - { - arg2 = tmp_pts2; - } - if (!PyArg_ParseTuple(args,(char *)"O:cvBoxPoints",&obj0)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"fffff", & temp1.center.x, & temp1.center.y, & temp1.size.width, & temp1.size.height, & temp1.angle)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 5 floats (center_x, center_y, width, height, angle)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvBox2D * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvBox2D, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvBox2D"); - return NULL; - } - arg1 = *ptr; - } - } - { - try { - cvBoxPoints(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - PyObject * to_add = PyList_New(4); - int i; - for(i=0; i<4; i++){ - CvPoint2D32f * p = new CvPoint2D32f; - *p = tmp_pts2[i]; - PyList_SetItem(to_add, i, SWIG_NewPointerObj( p, SWIGTYPE_p_CvPoint2D32f, 1 ) ); - } - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPointSeqFromMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - CvArr *arg2 = (CvArr *) 0 ; - CvContour *arg3 = (CvContour *) 0 ; - CvSeqBlock *arg4 = (CvSeqBlock *) 0 ; - int val1 ; - int ecode1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvPointSeqFromMat",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvPointSeqFromMat" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvContour, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvPointSeqFromMat" "', argument " "3"" of type '" "CvContour *""'"); - } - arg3 = reinterpret_cast< CvContour * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvSeqBlock, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvPointSeqFromMat" "', argument " "4"" of type '" "CvSeqBlock *""'"); - } - arg4 = reinterpret_cast< CvSeqBlock * >(argp4); - { - try { - result = (CvSeq *)cvPointSeqFromMat(arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPointPolygonTest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint2D32f arg2 ; - int arg3 ; - bool freearg1 = false ; - CvPoint2D32f temp2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvPointPolygonTest",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ff", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg2 = *ptr; - } - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPointPolygonTest" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvPointPolygonTest((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int *arg2 = (int *) 0 ; - int arg3 ; - float **arg4 = (float **) NULL ; - int arg5 = (int) 1 ; - int val3 ; - int ecode3 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvHistogram *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvCreateHist",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - int i; - - /* get the size of the dimention array */ - arg1 = PyList_Size (obj0); - - /* allocate the needed memory */ - arg2 = (int *)malloc (arg1 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < arg1; i++) { - PyObject *item = PyList_GetItem (obj0, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - ecode3 = SWIG_AsVal_int(obj1, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateHist" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj2) { - { - int i1; - int i2; - int size1; - int size2 = 0; - - /* get the number of lines of the matrix */ - size1 = PyList_Size (obj2); - - /* allocate the correct number of lines for the destination matrix */ - arg4 = (float **)malloc (size1 * sizeof (float *)); - - for (i1 = 0; i1 < size1; i1++) { - /* extract all the lines of the matrix */ - PyObject *list = PyList_GetItem (obj2, i1); - - if (size2 == 0) { - /* size 2 wasn't computed before */ - size2 = PyList_Size (list); - } else if (size2 != PyList_Size (list)) { - /* the current line as a different size than the previous one */ - /* so, generate an exception */ - SWIG_exception (SWIG_ValueError, "Lines must be the same size"); - } - - /* allocate the correct number of rows for the current line */ - arg4 [i1] = (float *)malloc (size2 * sizeof (float)); - - /* extract all the float values of this row */ - for (i2 = 0; i2 < size2; i2++) { - PyObject *item = PyList_GetItem (list, i2); - arg4 [i1][i2] = (float)PyFloat_AsDouble (item); - } - } - } - } - if (obj3) { - ecode5 = SWIG_AsVal_int(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCreateHist" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - result = (CvHistogram *)cvCreateHist(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHistogram, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetHistBinRanges(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - float **arg2 = (float **) 0 ; - int arg3 = (int) 1 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSetHistBinRanges",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetHistBinRanges" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - int i1; - int i2; - int size1; - int size2 = 0; - - /* get the number of lines of the matrix */ - size1 = PyList_Size (obj1); - - /* allocate the correct number of lines for the destination matrix */ - arg2 = (float **)malloc (size1 * sizeof (float *)); - - for (i1 = 0; i1 < size1; i1++) { - /* extract all the lines of the matrix */ - PyObject *list = PyList_GetItem (obj1, i1); - - if (size2 == 0) { - /* size 2 wasn't computed before */ - size2 = PyList_Size (list); - } else if (size2 != PyList_Size (list)) { - /* the current line as a different size than the previous one */ - /* so, generate an exception */ - SWIG_exception (SWIG_ValueError, "Lines must be the same size"); - } - - /* allocate the correct number of rows for the current line */ - arg2 [i1] = (float *)malloc (size2 * sizeof (float)); - - /* extract all the float values of this row */ - for (i2 = 0; i2 < size2; i2++) { - PyObject *item = PyList_GetItem (list, i2); - arg2 [i1][i2] = (float)PyFloat_AsDouble (item); - } - } - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetHistBinRanges" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvSetHistBinRanges(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMakeHistHeaderForArray(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int *arg2 = (int *) 0 ; - CvHistogram *arg3 = (CvHistogram *) 0 ; - float *arg4 = (float *) 0 ; - float **arg5 = (float **) NULL ; - int arg6 = (int) 1 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvHistogram *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvMakeHistHeaderForArray",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - int i; - - /* get the size of the dimention array */ - arg1 = PyList_Size (obj0); - - /* allocate the needed memory */ - arg2 = (int *)malloc (arg1 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < arg1; i++) { - PyObject *item = PyList_GetItem (obj0, i); - arg2 [i] = (int)PyInt_AsLong (item); - } - } - res3 = SWIG_ConvertPtr(obj1, &argp3,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvMakeHistHeaderForArray" "', argument " "3"" of type '" "CvHistogram *""'"); - } - arg3 = reinterpret_cast< CvHistogram * >(argp3); - res4 = SWIG_ConvertPtr(obj2, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvMakeHistHeaderForArray" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - if (obj3) { - { - int i1; - int i2; - int size1; - int size2 = 0; - - /* get the number of lines of the matrix */ - size1 = PyList_Size (obj3); - - /* allocate the correct number of lines for the destination matrix */ - arg5 = (float **)malloc (size1 * sizeof (float *)); - - for (i1 = 0; i1 < size1; i1++) { - /* extract all the lines of the matrix */ - PyObject *list = PyList_GetItem (obj3, i1); - - if (size2 == 0) { - /* size 2 wasn't computed before */ - size2 = PyList_Size (list); - } else if (size2 != PyList_Size (list)) { - /* the current line as a different size than the previous one */ - /* so, generate an exception */ - SWIG_exception (SWIG_ValueError, "Lines must be the same size"); - } - - /* allocate the correct number of rows for the current line */ - arg5 [i1] = (float *)malloc (size2 * sizeof (float)); - - /* extract all the float values of this row */ - for (i2 = 0; i2 < size2; i2++) { - PyObject *item = PyList_GetItem (list, i2); - arg5 [i1][i2] = (float)PyFloat_AsDouble (item); - } - } - } - } - if (obj4) { - ecode6 = SWIG_AsVal_int(obj4, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvMakeHistHeaderForArray" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - result = (CvHistogram *)cvMakeHistHeaderForArray(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHistogram, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvClearHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvClearHist",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvClearHist" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - try { - cvClearHist(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetMinMaxHistValue(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - float *arg2 = (float *) 0 ; - float *arg3 = (float *) 0 ; - int *arg4 = (int *) NULL ; - int *arg5 = (int *) NULL ; - void *argp1 = 0 ; - int res1 = 0 ; - float temp2 ; - int res2 = SWIG_TMPOBJ ; - float temp3 ; - int res3 = SWIG_TMPOBJ ; - int temp4 ; - int res4 = SWIG_TMPOBJ ; - int temp5 ; - int res5 = SWIG_TMPOBJ ; - PyObject * obj0 = 0 ; - - arg2 = &temp2; - arg3 = &temp3; - arg4 = &temp4; - arg5 = &temp5; - if (!PyArg_ParseTuple(args,(char *)"O:cvGetMinMaxHistValue",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetMinMaxHistValue" "', argument " "1"" of type '" "CvHistogram const *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - try { - cvGetMinMaxHistValue((CvHistogram const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (SWIG_IsTmpObj(res2)) { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_float((*arg2))); - } else { - int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0 ) : 0 ; - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_float, new_flags)); - } - if (SWIG_IsTmpObj(res3)) { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_float((*arg3))); - } else { - int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0 ) : 0 ; - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_float, new_flags)); - } - if (SWIG_IsTmpObj(res4)) { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg4))); - } else { - int new_flags = SWIG_IsNewObj(res4) ? (SWIG_POINTER_OWN | 0 ) : 0 ; - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg4), SWIGTYPE_p_int, new_flags)); - } - if (SWIG_IsTmpObj(res5)) { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_From_int((*arg5))); - } else { - int new_flags = SWIG_IsNewObj(res5) ? (SWIG_POINTER_OWN | 0 ) : 0 ; - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj((void*)(arg5), SWIGTYPE_p_int, new_flags)); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNormalizeHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvNormalizeHist",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNormalizeHist" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvNormalizeHist" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - cvNormalizeHist(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvThreshHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvThreshHist",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvThreshHist" "', argument " "1"" of type '" "CvHistogram *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvThreshHist" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - cvThreshHist(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCompareHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - CvHistogram *arg2 = (CvHistogram *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCompareHist",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCompareHist" "', argument " "1"" of type '" "CvHistogram const *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCompareHist" "', argument " "2"" of type '" "CvHistogram const *""'"); - } - arg2 = reinterpret_cast< CvHistogram * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCompareHist" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (double)cvCompareHist((CvHistogram const *)arg1,(CvHistogram const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCopyHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram *arg1 = (CvHistogram *) 0 ; - CvHistogram **arg2 = (CvHistogram **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - CvHistogram *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCopyHist",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCopyHist" "', argument " "1"" of type '" "CvHistogram const *""'"); - } - arg1 = reinterpret_cast< CvHistogram * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvHistogram, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvHistogram *) vptr2; - arg2=&buffer2; - } - { - try { - cvCopyHist((CvHistogram const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcBayesianProb(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHistogram **arg1 = (CvHistogram **) 0 ; - int arg2 ; - CvHistogram **arg3 = (CvHistogram **) 0 ; - void *vptr1 ; - CvHistogram *buffer1 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - CvHistogram *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCalcBayesianProb",&obj0,&obj1,&obj2)) SWIG_fail; - { - if ((SWIG_ConvertPtr(obj0, &vptr1, SWIGTYPE_p_CvHistogram, 1)) == -1){ - SWIG_fail; - } - buffer1 = (CvHistogram *) vptr1; - arg1=&buffer1; - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCalcBayesianProb" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvHistogram, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvHistogram *) vptr3; - arg3=&buffer3; - } - { - try { - cvCalcBayesianProb(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcArrHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr **arg1 = (CvArr **) 0 ; - CvHistogram *arg2 = (CvHistogram *) 0 ; - int arg3 = (int) 0 ; - CvArr *arg4 = (CvArr *) NULL ; - CvArr *one_image1 = NULL ; - bool free_one_arg1 = false ; - CvArr **many_images1 = NULL ; - bool *free_many_args1 = NULL ; - int nimages1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OO:cvCalcArrHist",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - /* first, check if this is a tuple */ - if PyTuple_Check (obj0) { - /* This is a tuple, so we need to test each element and pass - them to the called function */ - - int i; - - /* get the size of the tuple */ - nimages1 = PyTuple_Size (obj0); - - /* allocate the necessary place */ - many_images1 = (CvArr **)malloc (nimages1 * sizeof (CvArr *)); - free_many_args1 = (bool *)malloc(nimages1 * sizeof(bool)); - - for (i = 0; i < nimages1; i++) { - /* convert the current tuple element to a CvArr *, and - store to many_images1 [i] */ - many_images1[i] = PyObject_to_CvArr (PyTuple_GetItem (obj0, i), - free_many_args1+i); - - /* check that the current item is a correct type */ - if(!many_images1[i]) { - /* incorrect ! */ - SWIG_fail; - } - } - - /* what to give to the called function */ - arg1 = many_images1; - - } else if((one_image1 = PyObject_to_CvArr( obj0, &free_one_arg1 ))){ - /* this is just one CvArr *, so one_image1 will receive it */ - arg1 = &one_image1; - - } else { - /* not a CvArr *, not a tuple, this is wrong */ - SWIG_fail; - } - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCalcArrHist" "', argument " "2"" of type '" "CvHistogram *""'"); - } - arg2 = reinterpret_cast< CvHistogram * >(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCalcArrHist" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvCalcArrHist(arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(free_one_arg1){ - cvFree(&(one_image1)); - } - else if(free_many_args1){ - int i; - for (i=0; i(argp2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCalcHist" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - } - { - try { - cvCalcHist(arg1,arg2,arg3,(void const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcArrBackProject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr **arg1 = (CvArr **) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvHistogram *arg3 = (CvHistogram *) 0 ; - CvArr *one_image1 = NULL ; - bool free_one_arg1 = false ; - CvArr **many_images1 = NULL ; - bool *free_many_args1 = NULL ; - int nimages1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvCalcArrBackProject",&obj0,&obj1,&obj2)) SWIG_fail; - { - /* first, check if this is a tuple */ - if PyTuple_Check (obj0) { - /* This is a tuple, so we need to test each element and pass - them to the called function */ - - int i; - - /* get the size of the tuple */ - nimages1 = PyTuple_Size (obj0); - - /* allocate the necessary place */ - many_images1 = (CvArr **)malloc (nimages1 * sizeof (CvArr *)); - free_many_args1 = (bool *)malloc(nimages1 * sizeof(bool)); - - for (i = 0; i < nimages1; i++) { - /* convert the current tuple element to a CvArr *, and - store to many_images1 [i] */ - many_images1[i] = PyObject_to_CvArr (PyTuple_GetItem (obj0, i), - free_many_args1+i); - - /* check that the current item is a correct type */ - if(!many_images1[i]) { - /* incorrect ! */ - SWIG_fail; - } - } - - /* what to give to the called function */ - arg1 = many_images1; - - } else if((one_image1 = PyObject_to_CvArr( obj0, &free_one_arg1 ))){ - /* this is just one CvArr *, so one_image1 will receive it */ - arg1 = &one_image1; - - } else { - /* not a CvArr *, not a tuple, this is wrong */ - SWIG_fail; - } - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalcArrBackProject" "', argument " "3"" of type '" "CvHistogram const *""'"); - } - arg3 = reinterpret_cast< CvHistogram * >(argp3); - { - try { - cvCalcArrBackProject(arg1,arg2,(CvHistogram const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(free_one_arg1){ - cvFree(&(one_image1)); - } - else if(free_many_args1){ - int i; - for (i=0; i(argp4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCalcArrBackProjectPatch" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCalcArrBackProjectPatch" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - { - try { - cvCalcArrBackProjectPatch(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(free_one_arg1){ - cvFree(&(one_image1)); - } - else if(free_many_args1){ - int i; - for (i=0; i(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCalcProbDensity" "', argument " "2"" of type '" "CvHistogram const *""'"); - } - arg2 = reinterpret_cast< CvHistogram * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvHistogram, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalcProbDensity" "', argument " "3"" of type '" "CvHistogram *""'"); - } - arg3 = reinterpret_cast< CvHistogram * >(argp3); - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCalcProbDensity" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - cvCalcProbDensity((CvHistogram const *)arg1,(CvHistogram const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEqualizeHist(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvEqualizeHist",&obj0,&obj1)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvEqualizeHist((void const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcImageHomography(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - float *arg1 = (float *) 0 ; - CvPoint3D32f *arg2 = (CvPoint3D32f *) 0 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvCalcImageHomography",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCalcImageHomography" "', argument " "1"" of type '" "float *""'"); - } - arg1 = reinterpret_cast< float * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCalcImageHomography" "', argument " "2"" of type '" "CvPoint3D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint3D32f * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvCalcImageHomography" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvCalcImageHomography" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - { - try { - cvCalcImageHomography(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDistTransform(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 2 ; - int arg4 = (int) 3 ; - float *arg5 = (float *) NULL ; - CvArr *arg6 = (CvArr *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOO:cvDistTransform",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvDistTransform" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvDistTransform" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvDistTransform" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - } - if (obj5) { - { - arg6 = PyObject_to_CvArr(obj5, &freearg6); - } - } - { - try { - cvDistTransform((void const *)arg1,arg2,arg3,arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvThreshold(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - double arg4 ; - int arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvThreshold",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvThreshold" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvThreshold" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvThreshold" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - result = (double)cvThreshold((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvAdaptiveThreshold(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - int arg4 = (int) 0 ; - int arg5 = (int) 0 ; - int arg6 = (int) 3 ; - double arg7 = (double) 5 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOOO:cvAdaptiveThreshold",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvAdaptiveThreshold" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvAdaptiveThreshold" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvAdaptiveThreshold" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvAdaptiveThreshold" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvAdaptiveThreshold" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - { - try { - cvAdaptiveThreshold((void const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFloodFill(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint arg2 ; - CvScalar arg3 ; - CvScalar arg4 = (CvScalar) cvScalarAll(0) ; - CvScalar arg5 = (CvScalar) cvScalarAll(0) ; - CvConnectedComp *arg6 = (CvConnectedComp *) NULL ; - int arg7 = (int) 4 ; - CvArr *arg8 = (CvArr *) NULL ; - bool freearg1 = false ; - CvPoint temp2 ; - void *argp6 = 0 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOOOO:cvFloodFill",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - { - arg3 = PyObject_to_CvScalar( obj2 ); - } - if (obj3) { - { - arg4 = PyObject_to_CvScalar( obj3 ); - } - } - if (obj4) { - { - arg5 = PyObject_to_CvScalar( obj4 ); - } - } - if (obj5) { - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvFloodFill" "', argument " "6"" of type '" "CvConnectedComp *""'"); - } - arg6 = reinterpret_cast< CvConnectedComp * >(argp6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvFloodFill" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - if (obj7) { - { - arg8 = PyObject_to_CvArr(obj7, &freearg8); - } - } - { - try { - cvFloodFill(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCanny(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - double arg3 ; - double arg4 ; - int arg5 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvCanny",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCanny" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCanny" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCanny" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - cvCanny((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPreCornerDetect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvPreCornerDetect",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPreCornerDetect" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvPreCornerDetect((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCornerEigenValsAndVecs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - int arg4 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvCornerEigenValsAndVecs",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCornerEigenValsAndVecs" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCornerEigenValsAndVecs" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvCornerEigenValsAndVecs((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCornerMinEigenVal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - int arg4 = (int) 3 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvCornerMinEigenVal",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCornerMinEigenVal" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCornerMinEigenVal" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvCornerMinEigenVal((void const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCornerHarris(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 ; - int arg4 = (int) 3 ; - double arg5 = (double) 0.04 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvCornerHarris",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCornerHarris" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCornerHarris" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCornerHarris" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - } - { - try { - cvCornerHarris((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindCornerSubPix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - int arg3 ; - CvSize arg4 ; - CvSize arg5 ; - CvTermCriteria arg6 ; - bool freearg1 = false ; - int cornersCount2 ; - CvPoint2D32f *corners2 ; - CvSize temp4 ; - CvSize temp5 ; - CvTermCriteria temp6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvFindCornerSubPix",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if(! PySequence_Check (obj1)) - { - PyErr_SetString(PyExc_TypeError, "Expected a list or tuple"); - return NULL; - } - - // TODO: will this ever be freed? - cornersCount2 = PySequence_Size (obj1); - corners2 = (CvPoint2D32f *) malloc (cornersCount2 * sizeof (CvPoint2D32f)); - - // extract all the points values from the list */ - CvPoint2D32f * corner = corners2; - for (int i = 0; i < cornersCount2; i++, corner++) - { - PyObject * item = PySequence_GetItem (obj1, i); - - if (PySequence_Check(item) && PySequence_Length(item) == 2) - { - PyObject * tuple = PySequence_Tuple (item); - if (!PyArg_ParseTuple (tuple, "ff", & corner->x, & corner->y)) - { - PyErr_SetString(PyExc_TypeError,"each entry must consist of 2 floats (x, y)"); - Py_DECREF (tuple); - Py_DECREF (item); - return NULL; - } - Py_DECREF (tuple); - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (item, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a sequence of 2 floats (x, y) or a CvPoint2D32f"); - Py_DECREF (item); - return NULL; - } - *corner = *ptr; - } - - Py_DECREF (item); - } - - // these are the arguments passed to the OpenCV function - arg2 = corners2; - arg3 = cornersCount2; - } - { - if (PyTuple_Check(obj2)) - { - if (!PyArg_ParseTuple(obj2,"ii", & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj2, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg4 = *ptr; - } - } - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp5.width, & temp5.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg5 = temp5; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg5 = *ptr; - } - } - { - if (PyTuple_Check(obj4)) - { - if (!PyArg_ParseTuple(obj4,"iid", & temp6.type, & temp6.max_iter, & temp6.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg6 = temp6; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj4, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg6 = *ptr; - } - } - { - try { - cvFindCornerSubPix((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (cornersCount2); - - /* extract all the corner values of the result, and add it to the - final resulting list */ - for (i = 0; i < cornersCount2; i++) - PyList_SetItem (to_add, i, SWIG_NewPointerObj (&(corners2 [i]), SWIGTYPE_p_CvPoint2D32f, 0)); - - resultobj = SWIG_AppendResult( resultobj, &to_add, 1); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGoodFeaturesToTrack(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvPoint2D32f *arg4 = (CvPoint2D32f *) 0 ; - int *arg5 = (int *) 0 ; - double arg6 ; - double arg7 ; - CvArr *arg8 = (CvArr *) NULL ; - int arg9 = (int) 3 ; - int arg10 = (int) 0 ; - double arg11 = (double) 0.04 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int tmpCount4 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - bool freearg8 = false ; - int val9 ; - int ecode9 = 0 ; - int val10 ; - int ecode10 = 0 ; - double val11 ; - int ecode11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|OOOO:cvGoodFeaturesToTrack",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - /* as input, we still need the size of the corners array */ - - /* memorize the size of the status corners */ - tmpCount4 = (int) PyInt_AsLong (obj3); - - // these are the arguments passed to the OpenCV function - arg4 = (CvPoint2D32f *) malloc (tmpCount4 * sizeof (CvPoint2D32f)); - arg5 = &tmpCount4; - } - ecode6 = SWIG_AsVal_double(obj4, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvGoodFeaturesToTrack" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - ecode7 = SWIG_AsVal_double(obj5, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvGoodFeaturesToTrack" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - if (obj6) { - { - arg8 = PyObject_to_CvArr(obj6, &freearg8); - } - } - if (obj7) { - ecode9 = SWIG_AsVal_int(obj7, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvGoodFeaturesToTrack" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - } - if (obj8) { - ecode10 = SWIG_AsVal_int(obj8, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "cvGoodFeaturesToTrack" "', argument " "10"" of type '" "int""'"); - } - arg10 = static_cast< int >(val10); - } - if (obj9) { - ecode11 = SWIG_AsVal_double(obj9, &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "cvGoodFeaturesToTrack" "', argument " "11"" of type '" "double""'"); - } - arg11 = static_cast< double >(val11); - } - { - try { - cvGoodFeaturesToTrack((void const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7,(void const *)arg8,arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (tmpCount4); - - /* extract all the integer values of the result, and add it to the final resulting list */ - for (i = 0; i < tmpCount4; i++) - PyList_SetItem (to_add, i, SWIG_NewPointerObj (&(arg4 [i]), SWIGTYPE_p_CvPoint2D32f, 0)); - - resultobj = SWIG_AppendResult(resultobj, &to_add, 1); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg8!=NULL && freearg8) - { - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHoughLinesUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - double arg4 ; - double arg5 ; - int arg6 ; - double arg7 = (double) 0 ; - double arg8 = (double) 0 ; - bool freearg1 = false ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|OO:cvHoughLinesUntyped",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHoughLinesUntyped" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvHoughLinesUntyped" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHoughLinesUntyped" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHoughLinesUntyped" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvHoughLinesUntyped" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvHoughLinesUntyped" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - if (obj7) { - ecode8 = SWIG_AsVal_double(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvHoughLinesUntyped" "', argument " "8"" of type '" "double""'"); - } - arg8 = static_cast< double >(val8); - } - { - try { - result = (CvSeq *)cvHoughLines2(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvHoughCirclesUntyped(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - void *arg2 = (void *) 0 ; - int arg3 ; - double arg4 ; - double arg5 ; - double arg6 = (double) 100 ; - double arg7 = (double) 100 ; - int arg8 = (int) 0 ; - int arg9 = (int) 0 ; - bool freearg1 = false ; - int res2 ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - int val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|OOOO:cvHoughCirclesUntyped",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1,SWIG_as_voidptrptr(&arg2), 0, 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvHoughCirclesUntyped" "', argument " "2"" of type '" "void *""'"); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvHoughCirclesUntyped" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvHoughCirclesUntyped" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvHoughCirclesUntyped" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvHoughCirclesUntyped" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvHoughCirclesUntyped" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - if (obj7) { - ecode8 = SWIG_AsVal_int(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvHoughCirclesUntyped" "', argument " "8"" of type '" "int""'"); - } - arg8 = static_cast< int >(val8); - } - if (obj8) { - ecode9 = SWIG_AsVal_int(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvHoughCirclesUntyped" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - } - { - try { - result = (CvSeq *)cvHoughCircles(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFitLine(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - int arg2 ; - double arg3 ; - double arg4 ; - double arg5 ; - float *arg6 = (float *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvFitLine",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvFitLine" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvFitLine" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvFitLine" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFitLine" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvFitLine" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - cvFitLine((void const *)arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateKDTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvFeatureTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCreateKDTree",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvFeatureTree *)cvCreateKDTree(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFeatureTree, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateSpillTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 = (int) (int)50 ; - double arg3 = (double) (double).7 ; - double arg4 = (double) (double).1 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvFeatureTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|OOO:cvCreateSpillTree",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateSpillTree" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateSpillTree" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateSpillTree" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - { - try { - result = (CvFeatureTree *)cvCreateSpillTree((CvMat const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvFeatureTree, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleaseFeatureTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFeatureTree *arg1 = (CvFeatureTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleaseFeatureTree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFeatureTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleaseFeatureTree" "', argument " "1"" of type '" "CvFeatureTree *""'"); - } - arg1 = reinterpret_cast< CvFeatureTree * >(argp1); - { - try { - cvReleaseFeatureTree(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindFeatures(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFeatureTree *arg1 = (CvFeatureTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - int arg5 ; - int arg6 = (int) 20 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int num_query_points2 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvFindFeatures",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFeatureTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFindFeatures" "', argument " "1"" of type '" "CvFeatureTree *""'"); - } - arg1 = reinterpret_cast< CvFeatureTree * >(argp1); - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - num_query_points2 = arg2->rows; - { - arg5 = (int)PyInt_AsLong(obj2); - arg3 = cvCreateMat(num_query_points2, arg5, CV_32SC1); - arg4 = cvCreateMat(num_query_points2, arg5, CV_64FC1); - } - if (obj3) { - ecode6 = SWIG_AsVal_int(obj3, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFindFeatures" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvFindFeatures(arg1,(CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg3, SWIGTYPE_p_CvMat, 1)); - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg4, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindFeaturesBoxed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvFeatureTree *arg1 = (CvFeatureTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvFindFeaturesBoxed",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvFeatureTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFindFeaturesBoxed" "', argument " "1"" of type '" "CvFeatureTree *""'"); - } - arg1 = reinterpret_cast< CvFeatureTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - int max_out_indices = (int)PyInt_AsLong(obj3); - arg4 = cvCreateMat(max_out_indices, 1, CV_32SC1 ); - } - { - try { - result = (int)cvFindFeaturesBoxed(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg4, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateLSH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSHOperations *arg1 = (CvLSHOperations *) 0 ; - int arg2 ; - int arg3 = (int) 10 ; - int arg4 = (int) 10 ; - int arg5 = (int) (((6) &((1 << 3) -1)) +(((1) -1) << 3)) ; - double arg6 = (double) 4 ; - int64 arg7 = (int64) -1 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - void *argp7 ; - int res7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvLSH *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOOO:cvCreateLSH",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLSHOperations, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateLSH" "', argument " "1"" of type '" "CvLSHOperations *""'"); - } - arg1 = reinterpret_cast< CvLSHOperations * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateLSH" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateLSH" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateLSH" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCreateLSH" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCreateLSH" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - if (obj6) { - { - res7 = SWIG_ConvertPtr(obj6, &argp7, SWIGTYPE_p_int64_t, 0 | 0); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvCreateLSH" "', argument " "7"" of type '" "int64""'"); - } - if (!argp7) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCreateLSH" "', argument " "7"" of type '" "int64""'"); - } else { - int64 * temp = reinterpret_cast< int64 * >(argp7); - arg7 = *temp; - if (SWIG_IsNewObj(res7)) delete temp; - } - } - } - { - try { - result = (CvLSH *)cvCreateLSH(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvLSH, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateMemoryLSH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 = (int) 10 ; - int arg4 = (int) 10 ; - int arg5 = (int) (((6) &((1 << 3) -1)) +(((1) -1) << 3)) ; - double arg6 = (double) 4 ; - int64 arg7 = (int64) -1 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - void *argp7 ; - int res7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvLSH *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOOO:cvCreateMemoryLSH",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateMemoryLSH" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateMemoryLSH" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateMemoryLSH" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateMemoryLSH" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCreateMemoryLSH" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCreateMemoryLSH" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - if (obj6) { - { - res7 = SWIG_ConvertPtr(obj6, &argp7, SWIGTYPE_p_int64_t, 0 | 0); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvCreateMemoryLSH" "', argument " "7"" of type '" "int64""'"); - } - if (!argp7) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvCreateMemoryLSH" "', argument " "7"" of type '" "int64""'"); - } else { - int64 * temp = reinterpret_cast< int64 * >(argp7); - arg7 = *temp; - if (SWIG_IsNewObj(res7)) delete temp; - } - } - } - { - try { - result = (CvLSH *)cvCreateMemoryLSH(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvLSH, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleaseLSH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSH **arg1 = (CvLSH **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleaseLSH",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_CvLSH, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleaseLSH" "', argument " "1"" of type '" "CvLSH **""'"); - } - arg1 = reinterpret_cast< CvLSH ** >(argp1); - { - try { - cvReleaseLSH(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_LSHSize(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSH *arg1 = (CvLSH *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - unsigned int result; - - if (!PyArg_ParseTuple(args,(char *)"O:LSHSize",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLSH, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LSHSize" "', argument " "1"" of type '" "CvLSH *""'"); - } - arg1 = reinterpret_cast< CvLSH * >(argp1); - { - try { - result = (unsigned int)LSHSize(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_unsigned_SS_int(static_cast< unsigned int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLSHAdd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSH *arg1 = (CvLSH *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvLSHAdd",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLSH, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLSHAdd" "', argument " "1"" of type '" "CvLSH *""'"); - } - arg1 = reinterpret_cast< CvLSH * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - CvMat* m = (CvMat*)arg2; - arg3 = cvCreateMat(m->rows, 1, CV_32SC1 ); - } - { - try { - cvLSHAdd(arg1,(CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg3, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLSHRemove(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSH *arg1 = (CvLSH *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvLSHRemove",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLSH, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLSHRemove" "', argument " "1"" of type '" "CvLSH *""'"); - } - arg1 = reinterpret_cast< CvLSH * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvLSHRemove(arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLSHQuery(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSH *arg1 = (CvLSH *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - int arg5 ; - int arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int num_query_points2 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvLSHQuery",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLSH, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLSHQuery" "', argument " "1"" of type '" "CvLSH *""'"); - } - arg1 = reinterpret_cast< CvLSH * >(argp1); - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - num_query_points2 = arg2->rows; - { - arg5 = (int)PyInt_AsLong(obj2); - arg3 = cvCreateMat(num_query_points2, arg5, CV_32SC1); - arg4 = cvCreateMat(num_query_points2, arg5, CV_64FC1); - } - ecode6 = SWIG_AsVal_int(obj3, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvLSHQuery" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - try { - cvLSHQuery(arg1,(CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg3, SWIGTYPE_p_CvMat, 1)); - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg4, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_pt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFPoint_pt_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_pt_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSURFPoint_pt_set" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - if (arg1) (arg1)->pt = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_pt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFPoint_pt_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_pt_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - result = (CvPoint2D32f *)& ((arg1)->pt); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_laplacian_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFPoint_laplacian_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_laplacian_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_laplacian_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->laplacian = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_laplacian_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFPoint_laplacian_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_laplacian_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - result = (int) ((arg1)->laplacian); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFPoint_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_size_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFPoint_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_size_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - result = (int) ((arg1)->size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_dir_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFPoint_dir_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_dir_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_dir_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->dir = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_dir_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFPoint_dir_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_dir_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - result = (float) ((arg1)->dir); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_hessian_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFPoint_hessian_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_hessian_set" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFPoint_hessian_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->hessian = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFPoint_hessian_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFPoint_hessian_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFPoint_hessian_get" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - result = (float) ((arg1)->hessian); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSURFPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSURFPoint")) SWIG_fail; - { - try { - result = (CvSURFPoint *)new CvSURFPoint(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSURFPoint, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSURFPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFPoint *arg1 = (CvSURFPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSURFPoint",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFPoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSURFPoint" "', argument " "1"" of type '" "CvSURFPoint *""'"); - } - arg1 = reinterpret_cast< CvSURFPoint * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSURFPoint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSURFPoint, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvSURFPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint2D32f arg1 ; - int arg2 ; - int arg3 ; - float arg4 = (float) 0 ; - float arg5 = (float) 0 ; - CvPoint2D32f temp1 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - float val4 ; - int ecode4 = 0 ; - float val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvSURFPoint result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OO:cvSURFPoint",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ff", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSURFPoint" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSURFPoint" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - if (obj3) { - ecode4 = SWIG_AsVal_float(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvSURFPoint" "', argument " "4"" of type '" "float""'"); - } - arg4 = static_cast< float >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_float(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSURFPoint" "', argument " "5"" of type '" "float""'"); - } - arg5 = static_cast< float >(val5); - } - { - try { - result = cvSURFPoint(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSURFPoint(static_cast< const CvSURFPoint& >(result))), SWIGTYPE_p_CvSURFPoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_extended_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFParams_extended_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_extended_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_extended_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->extended = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_extended_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFParams_extended_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_extended_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - result = (int) ((arg1)->extended); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_hessianThreshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFParams_hessianThreshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_hessianThreshold_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_hessianThreshold_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->hessianThreshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_hessianThreshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFParams_hessianThreshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_hessianThreshold_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - result = (double) ((arg1)->hessianThreshold); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_nOctaves_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFParams_nOctaves_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaves_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_nOctaves_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nOctaves = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_nOctaves_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFParams_nOctaves_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaves_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - result = (int) ((arg1)->nOctaves); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_nOctaveLayers_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSURFParams_nOctaveLayers_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaveLayers_set" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSURFParams_nOctaveLayers_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nOctaveLayers = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSURFParams_nOctaveLayers_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSURFParams_nOctaveLayers_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSURFParams_nOctaveLayers_get" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - result = (int) ((arg1)->nOctaveLayers); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSURFParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSURFParams")) SWIG_fail; - { - try { - result = (CvSURFParams *)new CvSURFParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSURFParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSURFParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSURFParams *arg1 = (CvSURFParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSURFParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSURFParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSURFParams" "', argument " "1"" of type '" "CvSURFParams *""'"); - } - arg1 = reinterpret_cast< CvSURFParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSURFParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSURFParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvSURFParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - int arg2 = (int) 0 ; - double val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSURFParams result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvSURFParams",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvSURFParams" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSURFParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = cvSURFParams(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSURFParams(static_cast< const CvSURFParams& >(result))), SWIGTYPE_p_CvSURFParams, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvExtractSURF(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSeq **arg3 = (CvSeq **) 0 ; - CvSeq **arg4 = (CvSeq **) 0 ; - CvMemStorage *arg5 = (CvMemStorage *) 0 ; - CvSURFParams arg6 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - CvSeq *keypoints3 = 0 ; - CvSeq *descriptors3 = 0 ; - CvMemStorage *storage3 ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - { - storage3 = cvCreateMemStorage(); - arg3 = &keypoints3; - arg4 = &descriptors3; - arg5 = storage3; - } - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvExtractSURF",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - res6 = SWIG_ConvertPtr(obj2, &argp6, SWIGTYPE_p_CvSURFParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvExtractSURF" "', argument " "6"" of type '" "CvSURFParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvExtractSURF" "', argument " "6"" of type '" "CvSURFParams""'"); - } else { - CvSURFParams * temp = reinterpret_cast< CvSURFParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - if (obj3) { - ecode7 = SWIG_AsVal_int(obj3, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvExtractSURF" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvExtractSURF((void const *)arg1,(void const *)arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - const int n1 = 6; - int n2 = (*arg4)->elem_size / sizeof(float); - assert((*arg4)->elem_size == 64 * sizeof(float) || - (*arg4)->elem_size == 128 * sizeof(float)); - assert((*arg4)->total == (*arg3)->total); - CvMat* m1 = cvCreateMat((*arg4)->total,n1,CV_32FC1); - CvMat* m2 = cvCreateMat((*arg4)->total,n2,CV_32FC1); - CvSeqReader r1; - cvStartReadSeq(*arg3, &r1); - float* m1p = m1->data.fl; - for (int j=0;j<(*arg4)->total;++j) { - CvSURFPoint* sp = (CvSURFPoint*)r1.ptr; - m1p[0] = sp->pt.x; - m1p[1] = sp->pt.y; - m1p[2] = sp->laplacian; - m1p[3] = sp->size; - m1p[4] = sp->dir; - m1p[5] = sp->hessian; - m1p += n1; - CV_NEXT_SEQ_ELEM((*arg3)->elem_size, r1); - } - CvSeqReader r2; - cvStartReadSeq(*arg4, &r2); - float* m2p = m2->data.fl; - for (int j=0;j<(*arg4)->total;++j) { - memcpy(m2p,r2.ptr,n2*sizeof(float)); - m2p += n2; - CV_NEXT_SEQ_ELEM((*arg4)->elem_size, r2); - } - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(m1, SWIGTYPE_p_CvMat, 1)); - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(m2, SWIGTYPE_p_CvMat, 1)); - cvReleaseMemStorage(&arg5); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_delta_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_delta_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_delta_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_delta_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->delta = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_delta_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_delta_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_delta_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (int) ((arg1)->delta); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_maxArea_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_maxArea_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxArea_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_maxArea_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->maxArea = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_maxArea_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_maxArea_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxArea_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (int) ((arg1)->maxArea); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_minArea_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_minArea_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minArea_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_minArea_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->minArea = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_minArea_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_minArea_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minArea_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (int) ((arg1)->minArea); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_maxVariation_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_maxVariation_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxVariation_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_maxVariation_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->maxVariation = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_maxVariation_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_maxVariation_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxVariation_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (float) ((arg1)->maxVariation); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_minDiversity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_minDiversity_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minDiversity_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_minDiversity_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->minDiversity = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_minDiversity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_minDiversity_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minDiversity_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (float) ((arg1)->minDiversity); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_maxEvolution_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_maxEvolution_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxEvolution_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_maxEvolution_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->maxEvolution = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_maxEvolution_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_maxEvolution_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_maxEvolution_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (int) ((arg1)->maxEvolution); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_areaThreshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_areaThreshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_areaThreshold_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_areaThreshold_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->areaThreshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_areaThreshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_areaThreshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_areaThreshold_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (double) ((arg1)->areaThreshold); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_minMargin_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_minMargin_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minMargin_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_minMargin_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->minMargin = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_minMargin_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_minMargin_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_minMargin_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (double) ((arg1)->minMargin); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_edgeBlurSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMSERParams_edgeBlurSize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_edgeBlurSize_set" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMSERParams_edgeBlurSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->edgeBlurSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMSERParams_edgeBlurSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMSERParams_edgeBlurSize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMSERParams_edgeBlurSize_get" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - result = (int) ((arg1)->edgeBlurSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvMSERParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMSERParams")) SWIG_fail; - { - try { - result = (CvMSERParams *)new CvMSERParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMSERParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMSERParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMSERParams *arg1 = (CvMSERParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMSERParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMSERParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMSERParams" "', argument " "1"" of type '" "CvMSERParams *""'"); - } - arg1 = reinterpret_cast< CvMSERParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMSERParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMSERParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvMSERParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 = (int) 5 ; - int arg2 = (int) 60 ; - int arg3 = (int) 14400 ; - float arg4 = (float) .25 ; - float arg5 = (float) .2 ; - int arg6 = (int) 200 ; - double arg7 = (double) 1.01 ; - double arg8 = (double) .003 ; - int arg9 = (int) 5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - float val4 ; - int ecode4 = 0 ; - float val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - CvMSERParams result; - - if (!PyArg_ParseTuple(args,(char *)"|OOOOOOOOO:cvMSERParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - if (obj0) { - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvMSERParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMSERParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMSERParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_float(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvMSERParams" "', argument " "4"" of type '" "float""'"); - } - arg4 = static_cast< float >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_float(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvMSERParams" "', argument " "5"" of type '" "float""'"); - } - arg5 = static_cast< float >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvMSERParams" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvMSERParams" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - if (obj7) { - ecode8 = SWIG_AsVal_double(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "cvMSERParams" "', argument " "8"" of type '" "double""'"); - } - arg8 = static_cast< double >(val8); - } - if (obj8) { - ecode9 = SWIG_AsVal_int(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvMSERParams" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - } - { - try { - result = cvMSERParams(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvMSERParams(static_cast< const CvMSERParams& >(result))), SWIGTYPE_p_CvMSERParams, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvExtractMSER(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvSeq **arg3 = (CvSeq **) 0 ; - CvMemStorage *arg4 = (CvMemStorage *) 0 ; - CvMSERParams arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *vptr3 ; - CvSeq *buffer3 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvExtractMSER",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSeq *) vptr3; - arg3=&buffer3; - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvExtractMSER" "', argument " "4"" of type '" "CvMemStorage *""'"); - } - arg4 = reinterpret_cast< CvMemStorage * >(argp4); - { - res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_CvMSERParams, 0 | 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvExtractMSER" "', argument " "5"" of type '" "CvMSERParams""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvExtractMSER" "', argument " "5"" of type '" "CvMSERParams""'"); - } else { - CvMSERParams * temp = reinterpret_cast< CvMSERParams * >(argp5); - arg5 = *temp; - if (SWIG_IsNewObj(res5)) delete temp; - } - } - { - try { - cvExtractMSER(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarKeypoint_pt_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarKeypoint_pt_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_pt_set" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStarKeypoint_pt_set" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - if (arg1) (arg1)->pt = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarKeypoint_pt_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarKeypoint_pt_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_pt_get" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - result = (CvPoint *)& ((arg1)->pt); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarKeypoint_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarKeypoint_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_size_set" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarKeypoint_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarKeypoint_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarKeypoint_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_size_get" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - result = (int) ((arg1)->size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarKeypoint_response_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarKeypoint_response_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_response_set" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarKeypoint_response_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->response = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarKeypoint_response_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarKeypoint_response_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarKeypoint_response_get" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - result = (float) ((arg1)->response); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvStarKeypoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvStarKeypoint")) SWIG_fail; - { - try { - result = (CvStarKeypoint *)new CvStarKeypoint(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStarKeypoint, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvStarKeypoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarKeypoint *arg1 = (CvStarKeypoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvStarKeypoint",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarKeypoint, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStarKeypoint" "', argument " "1"" of type '" "CvStarKeypoint *""'"); - } - arg1 = reinterpret_cast< CvStarKeypoint * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvStarKeypoint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvStarKeypoint, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvStarKeypoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint arg1 ; - int arg2 ; - float arg3 ; - CvPoint temp1 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvStarKeypoint result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvStarKeypoint",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"ii", & temp1.x, & temp1.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvStarKeypoint" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStarKeypoint" "', argument " "3"" of type '" "float""'"); - } - arg3 = static_cast< float >(val3); - { - try { - result = cvStarKeypoint(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvStarKeypoint(static_cast< const CvStarKeypoint& >(result))), SWIGTYPE_p_CvStarKeypoint, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_maxSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarDetectorParams_maxSize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_maxSize_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_maxSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->maxSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_maxSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarDetectorParams_maxSize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_maxSize_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - result = (int) ((arg1)->maxSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_responseThreshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarDetectorParams_responseThreshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_responseThreshold_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_responseThreshold_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->responseThreshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_responseThreshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarDetectorParams_responseThreshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_responseThreshold_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - result = (int) ((arg1)->responseThreshold); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_lineThresholdProjected_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarDetectorParams_lineThresholdProjected_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdProjected_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_lineThresholdProjected_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->lineThresholdProjected = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_lineThresholdProjected_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarDetectorParams_lineThresholdProjected_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdProjected_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - result = (int) ((arg1)->lineThresholdProjected); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_lineThresholdBinarized_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarDetectorParams_lineThresholdBinarized_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdBinarized_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_lineThresholdBinarized_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->lineThresholdBinarized = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_lineThresholdBinarized_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarDetectorParams_lineThresholdBinarized_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_lineThresholdBinarized_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - result = (int) ((arg1)->lineThresholdBinarized); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_suppressNonmaxSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStarDetectorParams_suppressNonmaxSize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_suppressNonmaxSize_set" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStarDetectorParams_suppressNonmaxSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->suppressNonmaxSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStarDetectorParams_suppressNonmaxSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStarDetectorParams_suppressNonmaxSize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStarDetectorParams_suppressNonmaxSize_get" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - result = (int) ((arg1)->suppressNonmaxSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvStarDetectorParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvStarDetectorParams")) SWIG_fail; - { - try { - result = (CvStarDetectorParams *)new CvStarDetectorParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStarDetectorParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvStarDetectorParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStarDetectorParams *arg1 = (CvStarDetectorParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvStarDetectorParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStarDetectorParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStarDetectorParams" "', argument " "1"" of type '" "CvStarDetectorParams *""'"); - } - arg1 = reinterpret_cast< CvStarDetectorParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvStarDetectorParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvStarDetectorParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvStarDetectorParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 = (int) 45 ; - int arg2 = (int) 30 ; - int arg3 = (int) 10 ; - int arg4 = (int) 8 ; - int arg5 = (int) 5 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvStarDetectorParams result; - - if (!PyArg_ParseTuple(args,(char *)"|OOOOO:cvStarDetectorParams",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - if (obj0) { - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvStarDetectorParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvStarDetectorParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvStarDetectorParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvStarDetectorParams" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvStarDetectorParams" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - result = cvStarDetectorParams(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvStarDetectorParams(static_cast< const CvStarDetectorParams& >(result))), SWIGTYPE_p_CvStarDetectorParams, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetStarKeypoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - CvStarDetectorParams arg3 = (CvStarDetectorParams) cvStarDetectorParams() ; - bool freearg1 = false ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvGetStarKeypoints",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetStarKeypoints" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (obj2) { - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvStarDetectorParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvGetStarKeypoints" "', argument " "3"" of type '" "CvStarDetectorParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "cvGetStarKeypoints" "', argument " "3"" of type '" "CvStarDetectorParams""'"); - } else { - CvStarDetectorParams * temp = reinterpret_cast< CvStarDetectorParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - } - { - try { - result = (CvSeq *)cvGetStarKeypoints((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLoadHaarClassifierCascade(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvSize arg2 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - CvSize temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvHaarClassifierCascade *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvLoadHaarClassifierCascade",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoadHaarClassifierCascade" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - result = (CvHaarClassifierCascade *)cvLoadHaarClassifierCascade((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvHaarClassifierCascade, SWIG_POINTER_OWN | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetImagesForHaarClassifierCascade(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - double arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvSetImagesForHaarClassifierCascade",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetImagesForHaarClassifierCascade" "', argument " "1"" of type '" "CvHaarClassifierCascade *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvSetImagesForHaarClassifierCascade" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - { - try { - cvSetImagesForHaarClassifierCascade(arg1,(void const *)arg2,(void const *)arg3,(void const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRunHaarClassifierCascade(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvHaarClassifierCascade *arg1 = (CvHaarClassifierCascade *) 0 ; - CvPoint arg2 ; - int arg3 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvPoint temp2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvRunHaarClassifierCascade",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvHaarClassifierCascade, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRunHaarClassifierCascade" "', argument " "1"" of type '" "CvHaarClassifierCascade const *""'"); - } - arg1 = reinterpret_cast< CvHaarClassifierCascade * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.x, & temp2.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - arg2 = *ptr; - } - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRunHaarClassifierCascade" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - result = (int)cvRunHaarClassifierCascade((CvHaarClassifierCascade const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvUndistort2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvUndistort2",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvUndistort2((void const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitUndistortMap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvInitUndistortMap",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvInitUndistortMap((CvMat const *)arg1,(CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitUndistortRectifyMap(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvArr *arg5 = (CvArr *) 0 ; - CvArr *arg6 = (CvArr *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvInitUndistortRectifyMap",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - cvInitUndistortRectifyMap((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5) - { - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6) - { - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvUndistortPoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OO:cvUndistortPoints",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - if (obj4) { - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - } - if (obj5) { - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - } - { - try { - cvUndistortPoints((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRodrigues2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvRodrigues2",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - } - { - try { - result = (int)cvRodrigues2((CvMat const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindHomography(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 = (int) 0 ; - double arg5 = (double) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - { - arg3 = cvCreateMat(3,3,CV_64FC1); - } - if (!PyArg_ParseTuple(args,(char *)"OO|OOO:cvFindHomography",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode4 = SWIG_AsVal_int(obj2, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvFindHomography" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj3) { - ecode5 = SWIG_AsVal_double(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFindHomography" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - } - if (obj4) { - { - arg6 = (CvMat*)PyObject_to_CvArr(obj4, &freearg6); - } - } - { - try { - result = (int)cvFindHomography((CvMat const *)arg1,(CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - resultobj = SWIG_Python_AppendOutput(resultobj, SWIG_NewPointerObj(arg3, SWIGTYPE_p_CvMat, 1)); - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRQDecomp3x3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) NULL ; - CvMat *arg5 = (CvMat *) NULL ; - CvMat *arg6 = (CvMat *) NULL ; - CvPoint3D64f *arg7 = (CvPoint3D64f *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - void *argp7 = 0 ; - int res7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOOO:cvRQDecomp3x3",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - } - if (obj4) { - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - } - if (obj5) { - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - } - if (obj6) { - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvRQDecomp3x3" "', argument " "7"" of type '" "CvPoint3D64f *""'"); - } - arg7 = reinterpret_cast< CvPoint3D64f * >(argp7); - } - { - try { - cvRQDecomp3x3((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDecomposeProjectionMatrix(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) NULL ; - CvMat *arg6 = (CvMat *) NULL ; - CvMat *arg7 = (CvMat *) NULL ; - CvPoint3D64f *arg8 = (CvPoint3D64f *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - void *argp8 = 0 ; - int res8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|OOOO:cvDecomposeProjectionMatrix",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - if (obj4) { - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - } - if (obj5) { - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - } - if (obj6) { - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - } - if (obj7) { - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_CvPoint3D64f, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "cvDecomposeProjectionMatrix" "', argument " "8"" of type '" "CvPoint3D64f *""'"); - } - arg8 = reinterpret_cast< CvPoint3D64f * >(argp8); - } - { - try { - cvDecomposeProjectionMatrix((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalcMatMulDeriv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvCalcMatMulDeriv",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvCalcMatMulDeriv((CvMat const *)arg1,(CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvComposeRT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvMat *arg9 = (CvMat *) 0 ; - CvMat *arg10 = (CvMat *) 0 ; - CvMat *arg11 = (CvMat *) 0 ; - CvMat *arg12 = (CvMat *) 0 ; - CvMat *arg13 = (CvMat *) 0 ; - CvMat *arg14 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - bool freearg9 = false ; - bool freearg10 = false ; - bool freearg11 = false ; - bool freearg12 = false ; - bool freearg13 = false ; - bool freearg14 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - PyObject * obj13 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|OOOOOOOO:cvComposeRT",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - if (obj6) { - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - } - if (obj7) { - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - } - if (obj8) { - { - arg9 = (CvMat*)PyObject_to_CvArr(obj8, &freearg9); - } - } - if (obj9) { - { - arg10 = (CvMat*)PyObject_to_CvArr(obj9, &freearg10); - } - } - if (obj10) { - { - arg11 = (CvMat*)PyObject_to_CvArr(obj10, &freearg11); - } - } - if (obj11) { - { - arg12 = (CvMat*)PyObject_to_CvArr(obj11, &freearg12); - } - } - if (obj12) { - { - arg13 = (CvMat*)PyObject_to_CvArr(obj12, &freearg13); - } - } - if (obj13) { - { - arg14 = (CvMat*)PyObject_to_CvArr(obj13, &freearg14); - } - } - { - try { - cvComposeRT((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - { - if(arg12!=NULL && freearg12){ - cvReleaseData( arg12 ); - cvFree(&(arg12)); - } - } - { - if(arg13!=NULL && freearg13){ - cvReleaseData( arg13 ); - cvFree(&(arg13)); - } - } - { - if(arg14!=NULL && freearg14){ - cvReleaseData( arg14 ); - cvFree(&(arg14)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - { - if(arg12!=NULL && freearg12){ - cvReleaseData( arg12 ); - cvFree(&(arg12)); - } - } - { - if(arg13!=NULL && freearg13){ - cvReleaseData( arg13 ); - cvFree(&(arg13)); - } - } - { - if(arg14!=NULL && freearg14){ - cvReleaseData( arg14 ); - cvFree(&(arg14)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvProjectPoints2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) NULL ; - CvMat *arg8 = (CvMat *) NULL ; - CvMat *arg9 = (CvMat *) NULL ; - CvMat *arg10 = (CvMat *) NULL ; - CvMat *arg11 = (CvMat *) NULL ; - double arg12 = (double) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - bool freearg9 = false ; - bool freearg10 = false ; - bool freearg11 = false ; - double val12 ; - int ecode12 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|OOOOOO:cvProjectPoints2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - if (obj6) { - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - } - if (obj7) { - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - } - if (obj8) { - { - arg9 = (CvMat*)PyObject_to_CvArr(obj8, &freearg9); - } - } - if (obj9) { - { - arg10 = (CvMat*)PyObject_to_CvArr(obj9, &freearg10); - } - } - if (obj10) { - { - arg11 = (CvMat*)PyObject_to_CvArr(obj10, &freearg11); - } - } - if (obj11) { - ecode12 = SWIG_AsVal_double(obj11, &val12); - if (!SWIG_IsOK(ecode12)) { - SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "cvProjectPoints2" "', argument " "12"" of type '" "double""'"); - } - arg12 = static_cast< double >(val12); - } - { - try { - cvProjectPoints2((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindExtrinsicCameraParams2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - int arg7 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|O:cvFindExtrinsicCameraParams2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - if (obj6) { - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvFindExtrinsicCameraParams2" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - } - { - try { - cvFindExtrinsicCameraParams2((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitIntrinsicParams2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvSize arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - double arg6 = (double) 1. ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - CvSize temp4 ; - bool freearg5 = false ; - double val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvInitIntrinsicParams2D",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvInitIntrinsicParams2D" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - { - try { - cvInitIntrinsicParams2D((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindChessboardCorners(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - CvSize arg2 ; - CvPoint2D32f *arg3 = (CvPoint2D32f *) 0 ; - int *arg4 = (int *) NULL ; - int arg5 = (int) 1+2 ; - int res1 ; - CvSize *pattern_size2 ; - CvPoint2D32f *tmp_corners2 ; - int tmp_ncorners2 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvFindChessboardCorners",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvFindChessboardCorners" "', argument " "1"" of type '" "void const *""'"); - } - { - void * vptr; - if( SWIG_ConvertPtr(obj1, &vptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION ) == -1){ - return NULL; - } - pattern_size2=(CvSize *)vptr; - tmp_ncorners2 = pattern_size2->width*pattern_size2->height; - - tmp_corners2 = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)*tmp_ncorners2); - arg2 = *pattern_size2; - arg3 = tmp_corners2; - arg4 = &tmp_ncorners2; - } - if (obj2) { - ecode5 = SWIG_AsVal_int(obj2, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFindChessboardCorners" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - result = (int)cvFindChessboardCorners((void const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New ( tmp_ncorners2 ); - - /* extract all the corner values of the result, and add it to the - final resulting list */ - for (i = 0; i < tmp_ncorners2; i++) { - CvPoint2D32f * pt = new CvPoint2D32f; - pt->x = tmp_corners2[i].x; - pt->y = tmp_corners2[i].y; - - PyList_SetItem (to_add, i, - SWIG_NewPointerObj( pt, SWIGTYPE_p_CvPoint2D32f, 0)); - } - - resultobj = SWIG_AppendResult( resultobj, &to_add, 1); - free(tmp_corners2); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDrawChessboardCorners(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvSize arg2 ; - CvPoint2D32f *arg3 = (CvPoint2D32f *) 0 ; - int arg4 ; - int arg5 ; - bool freearg1 = false ; - CvSize temp2 ; - int cornersCount3 ; - CvPoint2D32f *corners3 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvDrawChessboardCorners",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg2 = *ptr; - } - } - { - if(! PySequence_Check (obj2)) - { - PyErr_SetString(PyExc_TypeError, "Expected a list or tuple"); - return NULL; - } - - // TODO: will this ever be freed? - cornersCount3 = PySequence_Size (obj2); - corners3 = (CvPoint2D32f *) malloc (cornersCount3 * sizeof (CvPoint2D32f)); - - // extract all the points values from the list */ - CvPoint2D32f * corner = corners3; - for (int i = 0; i < cornersCount3; i++, corner++) - { - PyObject * item = PySequence_GetItem (obj2, i); - - if (PySequence_Check(item) && PySequence_Length(item) == 2) - { - PyObject * tuple = PySequence_Tuple (item); - if (!PyArg_ParseTuple (tuple, "ff", & corner->x, & corner->y)) - { - PyErr_SetString(PyExc_TypeError,"each entry must consist of 2 floats (x, y)"); - Py_DECREF (tuple); - Py_DECREF (item); - return NULL; - } - Py_DECREF (tuple); - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (item, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a sequence of 2 floats (x, y) or a CvPoint2D32f"); - Py_DECREF (item); - return NULL; - } - *corner = *ptr; - } - - Py_DECREF (item); - } - - // these are the arguments passed to the OpenCV function - arg3 = corners3; - arg4 = cornersCount3; - } - ecode5 = SWIG_AsVal_int(obj3, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvDrawChessboardCorners" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - cvDrawChessboardCorners(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (cornersCount3); - - /* extract all the corner values of the result, and add it to the - final resulting list */ - for (i = 0; i < cornersCount3; i++) - PyList_SetItem (to_add, i, SWIG_NewPointerObj (&(corners3 [i]), SWIGTYPE_p_CvPoint2D32f, 0)); - - resultobj = SWIG_AppendResult( resultobj, &to_add, 1); - } - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalibrateCamera2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvSize arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) NULL ; - CvMat *arg8 = (CvMat *) NULL ; - int arg9 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - CvSize temp4 ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - int val9 ; - int ecode9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|OOO:cvCalibrateCamera2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - if (obj6) { - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - } - if (obj7) { - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - } - if (obj8) { - ecode9 = SWIG_AsVal_int(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "cvCalibrateCamera2" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - } - { - try { - cvCalibrateCamera2((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCalibrationMatrixValues(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvSize arg2 ; - double arg3 = (double) 0 ; - double arg4 = (double) 0 ; - double *arg5 = (double *) NULL ; - double *arg6 = (double *) NULL ; - double *arg7 = (double *) NULL ; - CvPoint2D64f *arg8 = (CvPoint2D64f *) NULL ; - double *arg9 = (double *) NULL ; - bool freearg1 = false ; - CvSize temp2 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|OOOOOOO:cvCalibrationMatrixValues",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.width, & temp2.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg2 = *ptr; - } - } - if (obj2) { - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCalibrationMatrixValues" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - } - if (obj3) { - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCalibrationMatrixValues" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - } - if (obj4) { - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvCalibrationMatrixValues" "', argument " "5"" of type '" "double *""'"); - } - arg5 = reinterpret_cast< double * >(argp5); - } - if (obj5) { - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvCalibrationMatrixValues" "', argument " "6"" of type '" "double *""'"); - } - arg6 = reinterpret_cast< double * >(argp6); - } - if (obj6) { - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "cvCalibrationMatrixValues" "', argument " "7"" of type '" "double *""'"); - } - arg7 = reinterpret_cast< double * >(argp7); - } - if (obj7) { - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_CvPoint2D64f, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "cvCalibrationMatrixValues" "', argument " "8"" of type '" "CvPoint2D64f *""'"); - } - arg8 = reinterpret_cast< CvPoint2D64f * >(argp8); - } - if (obj8) { - res9 = SWIG_ConvertPtr(obj8, &argp9,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "cvCalibrationMatrixValues" "', argument " "9"" of type '" "double *""'"); - } - arg9 = reinterpret_cast< double * >(argp9); - } - { - try { - cvCalibrationMatrixValues((CvMat const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStereoCalibrate(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvSize arg9 ; - CvMat *arg10 = (CvMat *) 0 ; - CvMat *arg11 = (CvMat *) 0 ; - CvMat *arg12 = (CvMat *) 0 ; - CvMat *arg13 = (CvMat *) 0 ; - CvTermCriteria arg14 = (CvTermCriteria) cvTermCriteria( 1 +2,30,1e-6) ; - int arg15 = (int) 256 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - CvSize temp9 ; - bool freearg10 = false ; - bool freearg11 = false ; - bool freearg12 = false ; - bool freearg13 = false ; - CvTermCriteria temp14 ; - int val15 ; - int ecode15 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - PyObject * obj13 = 0 ; - PyObject * obj14 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO|OOOO:cvStereoCalibrate",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13,&obj14)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - if (PyTuple_Check(obj8)) - { - if (!PyArg_ParseTuple(obj8,"ii", & temp9.width, & temp9.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg9 = temp9; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj8, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg9 = *ptr; - } - } - { - arg10 = (CvMat*)PyObject_to_CvArr(obj9, &freearg10); - } - { - arg11 = (CvMat*)PyObject_to_CvArr(obj10, &freearg11); - } - if (obj11) { - { - arg12 = (CvMat*)PyObject_to_CvArr(obj11, &freearg12); - } - } - if (obj12) { - { - arg13 = (CvMat*)PyObject_to_CvArr(obj12, &freearg13); - } - } - if (obj13) { - { - if (PyTuple_Check(obj13)) - { - if (!PyArg_ParseTuple(obj13,"iid", & temp14.type, & temp14.max_iter, & temp14.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg14 = temp14; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj13, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg14 = *ptr; - } - } - } - if (obj14) { - ecode15 = SWIG_AsVal_int(obj14, &val15); - if (!SWIG_IsOK(ecode15)) { - SWIG_exception_fail(SWIG_ArgError(ecode15), "in method '" "cvStereoCalibrate" "', argument " "15"" of type '" "int""'"); - } - arg15 = static_cast< int >(val15); - } - { - try { - cvStereoCalibrate((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14,arg15); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - { - if(arg12!=NULL && freearg12){ - cvReleaseData( arg12 ); - cvFree(&(arg12)); - } - } - { - if(arg13!=NULL && freearg13){ - cvReleaseData( arg13 ); - cvFree(&(arg13)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - { - if(arg12!=NULL && freearg12){ - cvReleaseData( arg12 ); - cvFree(&(arg12)); - } - } - { - if(arg13!=NULL && freearg13){ - cvReleaseData( arg13 ); - cvFree(&(arg13)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStereoRectify(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSize arg5 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvMat *arg9 = (CvMat *) 0 ; - CvMat *arg10 = (CvMat *) 0 ; - CvMat *arg11 = (CvMat *) 0 ; - CvMat *arg12 = (CvMat *) 0 ; - int arg13 = (int) 1024 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - CvSize temp5 ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - bool freearg9 = false ; - bool freearg10 = false ; - bool freearg11 = false ; - bool freearg12 = false ; - int val13 ; - int ecode13 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO|OO:cvStereoRectify",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if (PyTuple_Check(obj4)) - { - if (!PyArg_ParseTuple(obj4,"ii", & temp5.width, & temp5.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg5 = temp5; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj4, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg5 = *ptr; - } - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - arg9 = (CvMat*)PyObject_to_CvArr(obj8, &freearg9); - } - { - arg10 = (CvMat*)PyObject_to_CvArr(obj9, &freearg10); - } - { - arg11 = (CvMat*)PyObject_to_CvArr(obj10, &freearg11); - } - if (obj11) { - { - arg12 = (CvMat*)PyObject_to_CvArr(obj11, &freearg12); - } - } - if (obj12) { - ecode13 = SWIG_AsVal_int(obj12, &val13); - if (!SWIG_IsOK(ecode13)) { - SWIG_exception_fail(SWIG_ArgError(ecode13), "in method '" "cvStereoRectify" "', argument " "13"" of type '" "int""'"); - } - arg13 = static_cast< int >(val13); - } - { - try { - cvStereoRectify((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,(CvMat const *)arg6,(CvMat const *)arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - { - if(arg12!=NULL && freearg12){ - cvReleaseData( arg12 ); - cvFree(&(arg12)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - { - if(arg10!=NULL && freearg10){ - cvReleaseData( arg10 ); - cvFree(&(arg10)); - } - } - { - if(arg11!=NULL && freearg11){ - cvReleaseData( arg11 ); - cvFree(&(arg11)); - } - } - { - if(arg12!=NULL && freearg12){ - cvReleaseData( arg12 ); - cvFree(&(arg12)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStereoRectifyUncalibrated(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvSize arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - double arg7 = (double) 5 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - CvSize temp4 ; - bool freearg5 = false ; - bool freearg6 = false ; - double val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO|O:cvStereoRectifyUncalibrated",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - if (obj6) { - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "cvStereoRectifyUncalibrated" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - } - { - try { - result = (int)cvStereoRectifyUncalibrated((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreatePOSITObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPoint3D32f *arg1 = (CvPoint3D32f *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPOSITObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCreatePOSITObject",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPoint3D32f, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreatePOSITObject" "', argument " "1"" of type '" "CvPoint3D32f *""'"); - } - arg1 = reinterpret_cast< CvPoint3D32f * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreatePOSITObject" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvPOSITObject *)cvCreatePOSITObject(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPOSITObject, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvPOSIT(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPOSITObject *arg1 = (CvPOSITObject *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - double arg3 ; - CvTermCriteria arg4 ; - CvMatr32f arg5 = (CvMatr32f) 0 ; - CvVect32f arg6 = (CvVect32f) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - double val3 ; - int ecode3 = 0 ; - CvTermCriteria temp4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvPOSIT",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPOSITObject, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvPOSIT" "', argument " "1"" of type '" "CvPOSITObject *""'"); - } - arg1 = reinterpret_cast< CvPOSITObject * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvPOSIT" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvPOSIT" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvPOSIT" "', argument " "5"" of type '" "CvMatr32f""'"); - } - arg5 = reinterpret_cast< CvMatr32f >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvPOSIT" "', argument " "6"" of type '" "CvVect32f""'"); - } - arg6 = reinterpret_cast< CvVect32f >(argp6); - { - try { - cvPOSIT(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleasePOSITObject(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPOSITObject **arg1 = (CvPOSITObject **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleasePOSITObject",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_CvPOSITObject, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleasePOSITObject" "', argument " "1"" of type '" "CvPOSITObject **""'"); - } - arg1 = reinterpret_cast< CvPOSITObject ** >(argp1); - { - try { - cvReleasePOSITObject(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRANSACUpdateNumIters(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - int arg3 ; - int arg4 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvRANSACUpdateNumIters",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvRANSACUpdateNumIters" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRANSACUpdateNumIters" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvRANSACUpdateNumIters" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvRANSACUpdateNumIters" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (int)cvRANSACUpdateNumIters(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvertPointsHomogeneous(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvConvertPointsHomogeneous",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvConvertPointsHomogeneous((CvMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindFundamentalMat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 = (int) 8 ; - double arg5 = (double) 3. ; - double arg6 = (double) 0.99 ; - CvMat *arg7 = (CvMat *) NULL ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO|OOOO:cvFindFundamentalMat",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvFindFundamentalMat" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - if (obj4) { - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvFindFundamentalMat" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - } - if (obj5) { - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFindFundamentalMat" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - } - if (obj6) { - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - } - { - try { - result = (int)cvFindFundamentalMat((CvMat const *)arg1,(CvMat const *)arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvComputeCorrespondEpilines(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvComputeCorrespondEpilines",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvComputeCorrespondEpilines" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - cvComputeCorrespondEpilines((CvMat const *)arg1,arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvTriangulatePoints(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvTriangulatePoints",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - cvTriangulatePoints(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCorrectMatches(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCorrectMatches",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - cvCorrectMatches(arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilterType_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_preFilterType_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterType_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_preFilterType_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->preFilterType = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilterType_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_preFilterType_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterType_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->preFilterType); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilterSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_preFilterSize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterSize_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_preFilterSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->preFilterSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilterSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_preFilterSize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterSize_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->preFilterSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilterCap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_preFilterCap_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterCap_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_preFilterCap_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->preFilterCap = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilterCap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_preFilterCap_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilterCap_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->preFilterCap); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_SADWindowSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_SADWindowSize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_SADWindowSize_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_SADWindowSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->SADWindowSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_SADWindowSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_SADWindowSize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_SADWindowSize_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->SADWindowSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_minDisparity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_minDisparity_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_minDisparity_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_minDisparity_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->minDisparity = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_minDisparity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_minDisparity_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_minDisparity_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->minDisparity); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_numberOfDisparities_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_numberOfDisparities_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_numberOfDisparities_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_numberOfDisparities_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->numberOfDisparities = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_numberOfDisparities_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_numberOfDisparities_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_numberOfDisparities_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->numberOfDisparities); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_textureThreshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_textureThreshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_textureThreshold_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_textureThreshold_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->textureThreshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_textureThreshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_textureThreshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_textureThreshold_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->textureThreshold); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_uniquenessRatio_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_uniquenessRatio_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_uniquenessRatio_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_uniquenessRatio_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->uniquenessRatio = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_uniquenessRatio_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_uniquenessRatio_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_uniquenessRatio_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->uniquenessRatio); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_speckleWindowSize_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_speckleWindowSize_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleWindowSize_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_speckleWindowSize_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->speckleWindowSize = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_speckleWindowSize_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_speckleWindowSize_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleWindowSize_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->speckleWindowSize); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_speckleRange_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_speckleRange_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleRange_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_speckleRange_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->speckleRange = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_speckleRange_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_speckleRange_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_speckleRange_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->speckleRange); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_trySmallerWindows_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_trySmallerWindows_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_trySmallerWindows_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoBMState_trySmallerWindows_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->trySmallerWindows = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_trySmallerWindows_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_trySmallerWindows_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_trySmallerWindows_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (int) ((arg1)->trySmallerWindows); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilteredImg0_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_preFilteredImg0_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg0_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->preFilteredImg0 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilteredImg0_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_preFilteredImg0_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg0_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (CvMat *) ((arg1)->preFilteredImg0); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilteredImg1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_preFilteredImg1_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg1_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->preFilteredImg1 = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_preFilteredImg1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_preFilteredImg1_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_preFilteredImg1_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (CvMat *) ((arg1)->preFilteredImg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_slidingSumBuf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_slidingSumBuf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_slidingSumBuf_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->slidingSumBuf = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_slidingSumBuf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_slidingSumBuf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_slidingSumBuf_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (CvMat *) ((arg1)->slidingSumBuf); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_dbmin_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_dbmin_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmin_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->dbmin = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_dbmin_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_dbmin_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmin_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (CvMat *) ((arg1)->dbmin); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_dbmax_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoBMState_dbmax_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmax_set" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->dbmax = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoBMState_dbmax_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoBMState_dbmax_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoBMState_dbmax_get" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - result = (CvMat *) ((arg1)->dbmax); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvStereoBMState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvStereoBMState")) SWIG_fail; - { - try { - result = (CvStereoBMState *)new CvStereoBMState(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoBMState, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvStereoBMState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState *arg1 = (CvStereoBMState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvStereoBMState",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoBMState, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStereoBMState" "', argument " "1"" of type '" "CvStereoBMState *""'"); - } - arg1 = reinterpret_cast< CvStereoBMState * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvStereoBMState_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvStereoBMState, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvCreateStereoBMState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 = (int) 0 ; - int arg2 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvStereoBMState *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"|OO:cvCreateStereoBMState",&obj0,&obj1)) SWIG_fail; - if (obj0) { - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateStereoBMState" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateStereoBMState" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (CvStereoBMState *)cvCreateStereoBMState(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleaseStereoBMState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoBMState **arg1 = (CvStereoBMState **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleaseStereoBMState",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleaseStereoBMState" "', argument " "1"" of type '" "CvStereoBMState **""'"); - } - arg1 = reinterpret_cast< CvStereoBMState ** >(argp1); - { - try { - cvReleaseStereoBMState(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindStereoCorrespondenceBM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvStereoBMState *arg4 = (CvStereoBMState *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:cvFindStereoCorrespondenceBM",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvStereoBMState, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "cvFindStereoCorrespondenceBM" "', argument " "4"" of type '" "CvStereoBMState *""'"); - } - arg4 = reinterpret_cast< CvStereoBMState * >(argp4); - { - try { - cvFindStereoCorrespondenceBM((void const *)arg1,(void const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_Ithreshold_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_Ithreshold_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_Ithreshold_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_Ithreshold_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->Ithreshold = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_Ithreshold_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_Ithreshold_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_Ithreshold_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (int) ((arg1)->Ithreshold); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_interactionRadius_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_interactionRadius_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_interactionRadius_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_interactionRadius_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->interactionRadius = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_interactionRadius_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_interactionRadius_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_interactionRadius_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (int) ((arg1)->interactionRadius); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_K_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_K_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_K_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_K_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->K = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_K_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_K_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_K_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (float) ((arg1)->K); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState__lambda_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState__lambda_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState__lambda_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState__lambda_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->lambda = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState__lambda_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState__lambda_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState__lambda_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (float) ((arg1)->lambda); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_lambda1_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_lambda1_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda1_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_lambda1_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->lambda1 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_lambda1_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_lambda1_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda1_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (float) ((arg1)->lambda1); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_lambda2_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_lambda2_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda2_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_lambda2_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->lambda2 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_lambda2_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_lambda2_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_lambda2_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (float) ((arg1)->lambda2); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_occlusionCost_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_occlusionCost_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_occlusionCost_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_occlusionCost_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->occlusionCost = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_occlusionCost_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_occlusionCost_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_occlusionCost_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (int) ((arg1)->occlusionCost); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_minDisparity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_minDisparity_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_minDisparity_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_minDisparity_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->minDisparity = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_minDisparity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_minDisparity_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_minDisparity_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (int) ((arg1)->minDisparity); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_numberOfDisparities_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_numberOfDisparities_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_numberOfDisparities_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_numberOfDisparities_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->numberOfDisparities = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_numberOfDisparities_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_numberOfDisparities_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_numberOfDisparities_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (int) ((arg1)->numberOfDisparities); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_maxIters_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_maxIters_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_maxIters_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvStereoGCState_maxIters_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->maxIters = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_maxIters_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_maxIters_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_maxIters_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (int) ((arg1)->maxIters); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_left_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_left_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_left_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->left = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_left_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_left_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_left_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->left); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_right_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_right_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_right_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->right = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_right_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_right_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_right_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->right); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_dispLeft_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_dispLeft_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispLeft_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->dispLeft = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_dispLeft_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_dispLeft_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispLeft_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->dispLeft); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_dispRight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_dispRight_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispRight_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->dispRight = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_dispRight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_dispRight_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_dispRight_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->dispRight); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_ptrLeft_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_ptrLeft_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrLeft_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->ptrLeft = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_ptrLeft_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_ptrLeft_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrLeft_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->ptrLeft); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_ptrRight_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_ptrRight_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrRight_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->ptrRight = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_ptrRight_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_ptrRight_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_ptrRight_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->ptrRight); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_vtxBuf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_vtxBuf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_vtxBuf_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->vtxBuf = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_vtxBuf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_vtxBuf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_vtxBuf_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->vtxBuf); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_edgeBuf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStereoGCState_edgeBuf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_edgeBuf_set" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->edgeBuf = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStereoGCState_edgeBuf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStereoGCState_edgeBuf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStereoGCState_edgeBuf_get" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - result = (CvMat *) ((arg1)->edgeBuf); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvStereoGCState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvStereoGCState")) SWIG_fail; - { - try { - result = (CvStereoGCState *)new CvStereoGCState(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoGCState, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvStereoGCState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState *arg1 = (CvStereoGCState *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvStereoGCState",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStereoGCState, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStereoGCState" "', argument " "1"" of type '" "CvStereoGCState *""'"); - } - arg1 = reinterpret_cast< CvStereoGCState * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvStereoGCState_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvStereoGCState, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvCreateStereoGCState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvStereoGCState *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvCreateStereoGCState",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateStereoGCState" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateStereoGCState" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvStereoGCState *)cvCreateStereoGCState(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReleaseStereoGCState(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStereoGCState **arg1 = (CvStereoGCState **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvReleaseStereoGCState",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvReleaseStereoGCState" "', argument " "1"" of type '" "CvStereoGCState **""'"); - } - arg1 = reinterpret_cast< CvStereoGCState ** >(argp1); - { - try { - cvReleaseStereoGCState(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvFindStereoCorrespondenceGC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvArr *arg3 = (CvArr *) 0 ; - CvArr *arg4 = (CvArr *) 0 ; - CvStereoGCState *arg5 = (CvStereoGCState *) 0 ; - int arg6 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvFindStereoCorrespondenceGC",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = PyObject_to_CvArr(obj3, &freearg4); - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvStereoGCState, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvFindStereoCorrespondenceGC" "', argument " "5"" of type '" "CvStereoGCState *""'"); - } - arg5 = reinterpret_cast< CvStereoGCState * >(argp5); - if (obj5) { - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvFindStereoCorrespondenceGC" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - } - { - try { - cvFindStereoCorrespondenceGC((void const *)arg1,(void const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3) - { - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4) - { - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvReprojectImageTo3D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - int arg4 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvReprojectImageTo3D",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvReprojectImageTo3D" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - } - { - try { - cvReprojectImageTo3D((void const *)arg1,arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvLSH(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvLSH *arg1 = (CvLSH *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvLSH",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvLSH, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvLSH" "', argument " "1"" of type '" "CvLSH *""'"); - } - arg1 = reinterpret_cast< CvLSH * >(argp1); - { - try { - delete_CvLSH(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvLSH_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvLSH, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvTuple_CvPoint_2_val_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - CvPoint *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTuple_CvPoint_2_val_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2_val_set" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTuple_CvPoint_2_val_set" "', argument " "2"" of type '" "CvPoint [2]""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""CvPoint [2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_CvPoint_2_val_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTuple_CvPoint_2_val_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2_val_get" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp1); - result = (CvPoint *)(CvPoint *) ((arg1)->val); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_CvPoint_2___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - int arg2 ; - CvPoint *arg3 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvTuple_CvPoint_2___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2___setitem__" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_CvPoint_2___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_CvPoint_2___setitem__" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = reinterpret_cast< CvPoint * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_CvPoint_2___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTuple_CvPoint_2___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_CvPoint_2___getitem__" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_CvPoint_2___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvPoint *) &(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTuple_CvPoint_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTuple_CvPoint_2")) SWIG_fail; - { - try { - result = (CvTuple< CvPoint,2 > *)new CvTuple< CvPoint,2 >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTuple_CvPoint_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< CvPoint,2 > *arg1 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTuple_CvPoint_2",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_CvPoint_2_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTuple_CvPoint_2" "', argument " "1"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTuple_CvPoint_2_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTupleT_CvPoint_2_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvTuple_float_2_val_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - float *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTuple_float_2_val_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2_val_set" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,2 > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTuple_float_2_val_set" "', argument " "2"" of type '" "float [2]""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""float [2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_float_2_val_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTuple_float_2_val_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2_val_get" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,2 > * >(argp1); - result = (float *)(float *) ((arg1)->val); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_float_2___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvTuple_float_2___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2___setitem__" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,2 > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_2___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_float_2___setitem__" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_float_2___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTuple_float_2___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_2___getitem__" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,2 > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_2___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (float *) &(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(*result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTuple_float_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,2 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTuple_float_2")) SWIG_fail; - { - try { - result = (CvTuple< float,2 > *)new CvTuple< float,2 >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTuple_float_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,2 > *arg1 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTuple_float_2",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_2_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTuple_float_2" "', argument " "1"" of type '" "CvTuple< float,2 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,2 > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTuple_float_2_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTupleT_float_2_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvTuple_float_3_val_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - float *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTuple_float_3_val_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3_val_set" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,3 > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTuple_float_3_val_set" "', argument " "2"" of type '" "float [2]""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->val[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""val""' of type '""float [2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_float_3_val_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTuple_float_3_val_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3_val_get" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,3 > * >(argp1); - result = (float *)(float *) ((arg1)->val); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_float_3___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvTuple_float_3___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3___setitem__" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,3 > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_3___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvTuple_float_3___setitem__" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTuple_float_3___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTuple_float_3___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTuple_float_3___getitem__" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,3 > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTuple_float_3___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (float *) &(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(*result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTuple_float_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,3 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTuple_float_3")) SWIG_fail; - { - try { - result = (CvTuple< float,3 > *)new CvTuple< float,3 >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTuple_float_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTuple< float,3 > *arg1 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTuple_float_3",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTupleT_float_3_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTuple_float_3" "', argument " "1"" of type '" "CvTuple< float,3 > *""'"); - } - arg1 = reinterpret_cast< CvTuple< float,3 > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTuple_float_3_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTupleT_float_3_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvPoint_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvPoint > *)CvTypedSeq< CvPoint >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvPoint___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvPoint *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - int arg2 ; - CvPoint *arg3 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvPoint___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint___setitem__" "', argument " "3"" of type '" "CvPoint *""'"); - } - arg3 = reinterpret_cast< CvPoint * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - CvPoint *arg2 = (CvPoint *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvPoint_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_append" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvPoint_append" "', argument " "2"" of type '" "CvPoint *""'"); - } - arg2 = reinterpret_cast< CvPoint * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvPoint_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_pop" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint > * >(argp1); - { - try { - result = (CvPoint *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvPoint")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvPoint > *)new CvTypedSeq< CvPoint >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvPoint(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint > *arg1 = (CvTypedSeq< CvPoint > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvPoint",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvPoint" "', argument " "1"" of type '" "CvTypedSeq< CvPoint > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvPoint_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvPoint_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint2D32f_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvPoint2D32f > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvPoint2D32f_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvPoint2D32f > *)CvTypedSeq< CvPoint2D32f >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint2D32f___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvPoint2D32f___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint2D32f > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint2D32f___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvPoint2D32f *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint2D32f___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - int arg2 ; - CvPoint2D32f *arg3 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvPoint2D32f___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint2D32f > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint2D32f___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint2D32f___setitem__" "', argument " "3"" of type '" "CvPoint2D32f *""'"); - } - arg3 = reinterpret_cast< CvPoint2D32f * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint2D32f_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - CvPoint2D32f *arg2 = (CvPoint2D32f *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvPoint2D32f_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f_append" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint2D32f > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvPoint2D32f_append" "', argument " "2"" of type '" "CvPoint2D32f *""'"); - } - arg2 = reinterpret_cast< CvPoint2D32f * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint2D32f_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvPoint2D32f *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvPoint2D32f_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint2D32f_pop" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint2D32f > * >(argp1); - { - try { - result = (CvPoint2D32f *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPoint2D32f, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvPoint2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint2D32f > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvPoint2D32f")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvPoint2D32f > *)new CvTypedSeq< CvPoint2D32f >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvPoint2D32f(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvPoint2D32f > *arg1 = (CvTypedSeq< CvPoint2D32f > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvPoint2D32f",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvPoint2D32f" "', argument " "1"" of type '" "CvTypedSeq< CvPoint2D32f > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvPoint2D32f > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvPoint2D32f_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvRect_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvRect_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvRect > *)CvTypedSeq< CvRect >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvRect___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvRect___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvRect > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvRect___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvRect *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvRect___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - int arg2 ; - CvRect *arg3 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvRect___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvRect > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvRect___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvRect___setitem__" "', argument " "3"" of type '" "CvRect *""'"); - } - arg3 = reinterpret_cast< CvRect * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvRect_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - CvRect *arg2 = (CvRect *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvRect_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect_append" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvRect > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvRect, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvRect_append" "', argument " "2"" of type '" "CvRect *""'"); - } - arg2 = reinterpret_cast< CvRect * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvRect_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRect *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvRect_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvRect_pop" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvRect > * >(argp1); - { - try { - result = (CvRect *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRect, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvRect > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvRect")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvRect > *)new CvTypedSeq< CvRect >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvRect_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvRect > *arg1 = (CvTypedSeq< CvRect > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvRect",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvRect_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvRect" "', argument " "1"" of type '" "CvTypedSeq< CvRect > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvRect > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvRect_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvRect_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvSeq_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvSeq * > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvSeq_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvSeq * > *)CvTypedSeq< CvSeq * >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvSeq___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSeq **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvSeq___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvSeq * > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvSeq___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvSeq **)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvSeq___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - int arg2 ; - CvSeq **arg3 = (CvSeq **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - CvSeq *buffer3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvSeq___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvSeq * > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvSeq___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer3 = (CvSeq *) vptr3; - arg3=&buffer3; - } - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvSeq_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - CvSeq **arg2 = (CvSeq **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - CvSeq *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvSeq_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq_append" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvSeq * > * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvSeq, 1)) == -1){ - SWIG_fail; - } - buffer2 = (CvSeq *) vptr2; - arg2=&buffer2; - } - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvSeq_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvSeq_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvSeq_pop" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvSeq * > * >(argp1); - { - try { - result = (CvSeq **)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvSeq * > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvSeq")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvSeq * > *)new CvTypedSeq< CvSeq * >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvSeq(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvSeq * > *arg1 = (CvTypedSeq< CvSeq * > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvSeq",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvSeq" "', argument " "1"" of type '" "CvTypedSeq< CvSeq * > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvSeq * > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvSeq_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvQuadEdge2D_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvQuadEdge2D_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)CvTypedSeq< CvQuadEdge2D >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvQuadEdge2D___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvQuadEdge2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvQuadEdge2D___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvQuadEdge2D___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvQuadEdge2D *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvQuadEdge2D___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - int arg2 ; - CvQuadEdge2D *arg3 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvQuadEdge2D___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvQuadEdge2D___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvQuadEdge2D___setitem__" "', argument " "3"" of type '" "CvQuadEdge2D *""'"); - } - arg3 = reinterpret_cast< CvQuadEdge2D * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvQuadEdge2D_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - CvQuadEdge2D *arg2 = (CvQuadEdge2D *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvQuadEdge2D_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D_append" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvQuadEdge2D_append" "', argument " "2"" of type '" "CvQuadEdge2D *""'"); - } - arg2 = reinterpret_cast< CvQuadEdge2D * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvQuadEdge2D_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvQuadEdge2D *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvQuadEdge2D_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvQuadEdge2D_pop" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp1); - { - try { - result = (CvQuadEdge2D *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvQuadEdge2D, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvQuadEdge2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvQuadEdge2D > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvQuadEdge2D")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvQuadEdge2D > *)new CvTypedSeq< CvQuadEdge2D >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvQuadEdge2D(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvQuadEdge2D > *arg1 = (CvTypedSeq< CvQuadEdge2D > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvQuadEdge2D",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvQuadEdge2D" "', argument " "1"" of type '" "CvTypedSeq< CvQuadEdge2D > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvQuadEdge2D > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvQuadEdge2D_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvConnectedComp_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvConnectedComp > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvConnectedComp_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvConnectedComp > *)CvTypedSeq< CvConnectedComp >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvConnectedComp___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvConnectedComp *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvConnectedComp___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvConnectedComp > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvConnectedComp___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvConnectedComp *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvConnectedComp___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - int arg2 ; - CvConnectedComp *arg3 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvConnectedComp___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvConnectedComp > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvConnectedComp___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvConnectedComp___setitem__" "', argument " "3"" of type '" "CvConnectedComp *""'"); - } - arg3 = reinterpret_cast< CvConnectedComp * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvConnectedComp_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - CvConnectedComp *arg2 = (CvConnectedComp *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvConnectedComp_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp_append" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvConnectedComp > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvConnectedComp_append" "', argument " "2"" of type '" "CvConnectedComp *""'"); - } - arg2 = reinterpret_cast< CvConnectedComp * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvConnectedComp_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvConnectedComp *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvConnectedComp_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvConnectedComp_pop" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvConnectedComp > * >(argp1); - { - try { - result = (CvConnectedComp *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvConnectedComp, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvConnectedComp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvConnectedComp > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvConnectedComp")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvConnectedComp > *)new CvTypedSeq< CvConnectedComp >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvConnectedComp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvConnectedComp > *arg1 = (CvTypedSeq< CvConnectedComp > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvConnectedComp",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvConnectedComp" "', argument " "1"" of type '" "CvTypedSeq< CvConnectedComp > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvConnectedComp > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvConnectedComp_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_2_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvTuple< CvPoint,2 > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvPoint_2_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvTuple< CvPoint,2 > > *)CvTypedSeq< CvTuple< CvPoint,2 > >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_2___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvPoint_2___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< CvPoint,2 > > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint_2___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvTuple< CvPoint,2 > *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_2___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - int arg2 ; - CvTuple< CvPoint,2 > *arg3 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_CvPoint_2___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< CvPoint,2 > > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_CvPoint_2___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_CvPoint_2___setitem__" "', argument " "3"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg3 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_2_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - CvTuple< CvPoint,2 > *arg2 = (CvTuple< CvPoint,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_CvPoint_2_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2_append" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< CvPoint,2 > > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_CvPoint_2_append" "', argument " "2"" of type '" "CvTuple< CvPoint,2 > *""'"); - } - arg2 = reinterpret_cast< CvTuple< CvPoint,2 > * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_CvPoint_2_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTuple< CvPoint,2 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_CvPoint_2_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_CvPoint_2_pop" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< CvPoint,2 > > * >(argp1); - { - try { - result = (CvTuple< CvPoint,2 > *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_CvPoint_2_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_CvPoint_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< CvPoint,2 > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_CvPoint_2")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvTuple< CvPoint,2 > > *)new CvTypedSeq< CvTuple< CvPoint,2 > >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_CvPoint_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< CvPoint,2 > > *arg1 = (CvTypedSeq< CvTuple< CvPoint,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_CvPoint_2",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_CvPoint_2" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< CvPoint,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< CvPoint,2 > > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_CvPoint_2_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_float_2_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvTuple< float,2 > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_float_2_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvTuple< float,2 > > *)CvTypedSeq< CvTuple< float,2 > >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_2___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvTuple< float,2 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_float_2___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,2 > > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_2___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvTuple< float,2 > *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_2___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - int arg2 ; - CvTuple< float,2 > *arg3 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_float_2___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,2 > > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_2___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_float_2___setitem__" "', argument " "3"" of type '" "CvTuple< float,2 > *""'"); - } - arg3 = reinterpret_cast< CvTuple< float,2 > * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_2_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - CvTuple< float,2 > *arg2 = (CvTuple< float,2 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_float_2_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2_append" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,2 > > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_float_2_append" "', argument " "2"" of type '" "CvTuple< float,2 > *""'"); - } - arg2 = reinterpret_cast< CvTuple< float,2 > * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_2_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTuple< float,2 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_float_2_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_2_pop" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,2 > > * >(argp1); - { - try { - result = (CvTuple< float,2 > *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_2_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_float_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,2 > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_float_2")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvTuple< float,2 > > *)new CvTypedSeq< CvTuple< float,2 > >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_float_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,2 > > *arg1 = (CvTypedSeq< CvTuple< float,2 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_float_2",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_float_2" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,2 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,2 > > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_float_2_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSeq_float_3_cast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSeq *arg1 = (CvSeq *) 0 ; - void *ptr1 ; - PyObject * obj0 = 0 ; - CvTypedSeq< CvTuple< float,3 > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_float_3_cast",&obj0)) SWIG_fail; - { - if( SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSeq, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvSubdiv2D, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvChain, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContour, 0) == -1 && - SWIG_ConvertPtr(obj0, &ptr1, SWIGTYPE_p_CvContourTree, 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - arg1 = (CvSeq *) ptr1; - } - { - try { - result = (CvTypedSeq< CvTuple< float,3 > > *)CvTypedSeq< CvTuple< float,3 > >::SWIGTEMPLATEDISAMBIGUATOR cast(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_3___getitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvTuple< float,3 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_float_3___getitem__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3___getitem__" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,3 > > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_3___getitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvTuple< float,3 > *)(arg1)->__getitem__(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_3___setitem__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - int arg2 ; - CvTuple< float,3 > *arg3 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSeq_float_3___setitem__",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3___setitem__" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,3 > > * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSeq_float_3___setitem__" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSeq_float_3___setitem__" "', argument " "3"" of type '" "CvTuple< float,3 > *""'"); - } - arg3 = reinterpret_cast< CvTuple< float,3 > * >(argp3); - { - try { - (arg1)->__setitem__(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_3_append(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - CvTuple< float,3 > *arg2 = (CvTuple< float,3 > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSeq_float_3_append",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3_append" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,3 > > * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSeq_float_3_append" "', argument " "2"" of type '" "CvTuple< float,3 > *""'"); - } - arg2 = reinterpret_cast< CvTuple< float,3 > * >(argp2); - { - try { - (arg1)->append(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSeq_float_3_pop(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTuple< float,3 > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSeq_float_3_pop",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSeq_float_3_pop" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,3 > > * >(argp1); - { - try { - result = (CvTuple< float,3 > *)(arg1)->pop(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTupleT_float_3_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSeq_float_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,3 > > *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSeq_float_3")) SWIG_fail; - { - try { - result = (CvTypedSeq< CvTuple< float,3 > > *)new CvTypedSeq< CvTuple< float,3 > >(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSeq_float_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTypedSeq< CvTuple< float,3 > > *arg1 = (CvTypedSeq< CvTuple< float,3 > > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSeq_float_3",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSeq_float_3" "', argument " "1"" of type '" "CvTypedSeq< CvTuple< float,3 > > *""'"); - } - arg1 = reinterpret_cast< CvTypedSeq< CvTuple< float,3 > > * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSeq_float_3_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_SendErrorToPython(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - char *arg4 = (char *) 0 ; - int arg5 ; - void *arg6 = (void *) 0 ; - int val1 ; - int ecode1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - int res4 ; - char *buf4 = 0 ; - int alloc4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int res6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:SendErrorToPython",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "SendErrorToPython" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SendErrorToPython" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "SendErrorToPython" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "SendErrorToPython" "', argument " "4"" of type '" "char const *""'"); - } - arg4 = reinterpret_cast< char * >(buf4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "SendErrorToPython" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5,SWIG_as_voidptrptr(&arg6), 0, 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "SendErrorToPython" "', argument " "6"" of type '" "void *""'"); - } - { - try { - try { - result = (int)SendErrorToPython(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5,arg6); - } - catch(int &_e) { - SWIG_Python_Raise(SWIG_From_int(static_cast< int >(_e)), "int", 0); SWIG_fail; - } - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - if (alloc4 == SWIG_NEWOBJ) delete[] buf4; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_function_ptr_generator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvErrorCallback result; - - if (!PyArg_ParseTuple(args,(char *)":function_ptr_generator")) SWIG_fail; - { - try { - result = (CvErrorCallback)function_ptr_generator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_void_ptr_generator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":void_ptr_generator")) SWIG_fail; - { - try { - result = (void *)void_ptr_generator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_void_ptrptr_generator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":void_ptrptr_generator")) SWIG_fail; - { - try { - result = (void **)void_ptrptr_generator(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_void, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -static PyMethodDef SwigMethods[] = { - { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL}, - { (char *)"new_CvRNG_Wrapper", _wrap_new_CvRNG_Wrapper, METH_VARARGS, (char *)"new_CvRNG_Wrapper(CvRNG val) -> CvRNG_Wrapper"}, - { (char *)"CvRNG_Wrapper_ptr", _wrap_CvRNG_Wrapper_ptr, METH_VARARGS, (char *)"CvRNG_Wrapper_ptr(CvRNG_Wrapper self) -> CvRNG"}, - { (char *)"CvRNG_Wrapper_ref", _wrap_CvRNG_Wrapper_ref, METH_VARARGS, (char *)"CvRNG_Wrapper_ref(CvRNG_Wrapper self) -> CvRNG"}, - { (char *)"CvRNG_Wrapper___eq__", _wrap_CvRNG_Wrapper___eq__, METH_VARARGS, (char *)"CvRNG_Wrapper___eq__(CvRNG_Wrapper self, CvRNG_Wrapper x) -> bool"}, - { (char *)"CvRNG_Wrapper___ne__", _wrap_CvRNG_Wrapper___ne__, METH_VARARGS, (char *)"CvRNG_Wrapper___ne__(CvRNG_Wrapper self, CvRNG_Wrapper x) -> bool"}, - { (char *)"delete_CvRNG_Wrapper", _wrap_delete_CvRNG_Wrapper, METH_VARARGS, (char *)"delete_CvRNG_Wrapper(CvRNG_Wrapper self)"}, - { (char *)"CvRNG_Wrapper_swigregister", CvRNG_Wrapper_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvSubdiv2DEdge_Wrapper", _wrap_new_CvSubdiv2DEdge_Wrapper, METH_VARARGS, (char *)"new_CvSubdiv2DEdge_Wrapper(CvSubdiv2DEdge val) -> CvSubdiv2DEdge_Wrapper"}, - { (char *)"CvSubdiv2DEdge_Wrapper_ptr", _wrap_CvSubdiv2DEdge_Wrapper_ptr, METH_VARARGS, (char *)"CvSubdiv2DEdge_Wrapper_ptr(CvSubdiv2DEdge_Wrapper self) -> CvSubdiv2DEdge"}, - { (char *)"CvSubdiv2DEdge_Wrapper_ref", _wrap_CvSubdiv2DEdge_Wrapper_ref, METH_VARARGS, (char *)"CvSubdiv2DEdge_Wrapper_ref(CvSubdiv2DEdge_Wrapper self) -> CvSubdiv2DEdge"}, - { (char *)"CvSubdiv2DEdge_Wrapper___eq__", _wrap_CvSubdiv2DEdge_Wrapper___eq__, METH_VARARGS, (char *)"CvSubdiv2DEdge_Wrapper___eq__(CvSubdiv2DEdge_Wrapper self, CvSubdiv2DEdge_Wrapper x) -> bool"}, - { (char *)"CvSubdiv2DEdge_Wrapper___ne__", _wrap_CvSubdiv2DEdge_Wrapper___ne__, METH_VARARGS, (char *)"CvSubdiv2DEdge_Wrapper___ne__(CvSubdiv2DEdge_Wrapper self, CvSubdiv2DEdge_Wrapper x) -> bool"}, - { (char *)"delete_CvSubdiv2DEdge_Wrapper", _wrap_delete_CvSubdiv2DEdge_Wrapper, METH_VARARGS, (char *)"delete_CvSubdiv2DEdge_Wrapper(CvSubdiv2DEdge_Wrapper self)"}, - { (char *)"CvSubdiv2DEdge_Wrapper_swigregister", CvSubdiv2DEdge_Wrapper_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_SwigPyIterator", _wrap_delete_SwigPyIterator, METH_VARARGS, (char *)"delete_SwigPyIterator(SwigPyIterator self)"}, - { (char *)"SwigPyIterator_value", _wrap_SwigPyIterator_value, METH_VARARGS, (char *)"SwigPyIterator_value(SwigPyIterator self) -> PyObject"}, - { (char *)"SwigPyIterator_incr", _wrap_SwigPyIterator_incr, METH_VARARGS, (char *)"\n" - "incr(size_t n = 1) -> SwigPyIterator\n" - "SwigPyIterator_incr(SwigPyIterator self) -> SwigPyIterator\n" - ""}, - { (char *)"SwigPyIterator_decr", _wrap_SwigPyIterator_decr, METH_VARARGS, (char *)"\n" - "decr(size_t n = 1) -> SwigPyIterator\n" - "SwigPyIterator_decr(SwigPyIterator self) -> SwigPyIterator\n" - ""}, - { (char *)"SwigPyIterator_distance", _wrap_SwigPyIterator_distance, METH_VARARGS, (char *)"SwigPyIterator_distance(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t"}, - { (char *)"SwigPyIterator_equal", _wrap_SwigPyIterator_equal, METH_VARARGS, (char *)"SwigPyIterator_equal(SwigPyIterator self, SwigPyIterator x) -> bool"}, - { (char *)"SwigPyIterator_copy", _wrap_SwigPyIterator_copy, METH_VARARGS, (char *)"SwigPyIterator_copy(SwigPyIterator self) -> SwigPyIterator"}, - { (char *)"SwigPyIterator_next", _wrap_SwigPyIterator_next, METH_VARARGS, (char *)"SwigPyIterator_next(SwigPyIterator self) -> PyObject"}, - { (char *)"SwigPyIterator___next__", _wrap_SwigPyIterator___next__, METH_VARARGS, (char *)"SwigPyIterator___next__(SwigPyIterator self) -> PyObject"}, - { (char *)"SwigPyIterator_previous", _wrap_SwigPyIterator_previous, METH_VARARGS, (char *)"SwigPyIterator_previous(SwigPyIterator self) -> PyObject"}, - { (char *)"SwigPyIterator_advance", _wrap_SwigPyIterator_advance, METH_VARARGS, (char *)"SwigPyIterator_advance(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"}, - { (char *)"SwigPyIterator___eq__", _wrap_SwigPyIterator___eq__, METH_VARARGS, (char *)"SwigPyIterator___eq__(SwigPyIterator self, SwigPyIterator x) -> bool"}, - { (char *)"SwigPyIterator___ne__", _wrap_SwigPyIterator___ne__, METH_VARARGS, (char *)"SwigPyIterator___ne__(SwigPyIterator self, SwigPyIterator x) -> bool"}, - { (char *)"SwigPyIterator___iadd__", _wrap_SwigPyIterator___iadd__, METH_VARARGS, (char *)"SwigPyIterator___iadd__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"}, - { (char *)"SwigPyIterator___isub__", _wrap_SwigPyIterator___isub__, METH_VARARGS, (char *)"SwigPyIterator___isub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"}, - { (char *)"SwigPyIterator___add__", _wrap_SwigPyIterator___add__, METH_VARARGS, (char *)"SwigPyIterator___add__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"}, - { (char *)"SwigPyIterator___sub__", _wrap_SwigPyIterator___sub__, METH_VARARGS, (char *)"\n" - "__sub__(ptrdiff_t n) -> SwigPyIterator\n" - "SwigPyIterator___sub__(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t\n" - ""}, - { (char *)"SwigPyIterator_swigregister", SwigPyIterator_swigregister, METH_VARARGS, NULL}, - { (char *)"FloatVector_iterator", _wrap_FloatVector_iterator, METH_VARARGS, (char *)"FloatVector_iterator(FloatVector self) -> SwigPyIterator"}, - { (char *)"FloatVector___nonzero__", _wrap_FloatVector___nonzero__, METH_VARARGS, (char *)"FloatVector___nonzero__(FloatVector self) -> bool"}, - { (char *)"FloatVector___bool__", _wrap_FloatVector___bool__, METH_VARARGS, (char *)"FloatVector___bool__(FloatVector self) -> bool"}, - { (char *)"FloatVector___len__", _wrap_FloatVector___len__, METH_VARARGS, (char *)"FloatVector___len__(FloatVector self) -> size_type"}, - { (char *)"FloatVector_pop", _wrap_FloatVector_pop, METH_VARARGS, (char *)"FloatVector_pop(FloatVector self) -> value_type"}, - { (char *)"FloatVector___getslice__", _wrap_FloatVector___getslice__, METH_VARARGS, (char *)"FloatVector___getslice__(FloatVector self, difference_type i, difference_type j) -> FloatVector"}, - { (char *)"FloatVector___setslice__", _wrap_FloatVector___setslice__, METH_VARARGS, (char *)"\n" - "FloatVector___setslice__(FloatVector self, difference_type i, difference_type j, \n" - " FloatVector v)\n" - ""}, - { (char *)"FloatVector___delslice__", _wrap_FloatVector___delslice__, METH_VARARGS, (char *)"FloatVector___delslice__(FloatVector self, difference_type i, difference_type j)"}, - { (char *)"FloatVector___delitem__", _wrap_FloatVector___delitem__, METH_VARARGS, (char *)"\n" - "__delitem__(difference_type i)\n" - "FloatVector___delitem__(FloatVector self, PySliceObject slice)\n" - ""}, - { (char *)"FloatVector___getitem__", _wrap_FloatVector___getitem__, METH_VARARGS, (char *)"\n" - "__getitem__(PySliceObject slice) -> FloatVector\n" - "FloatVector___getitem__(FloatVector self, difference_type i) -> value_type\n" - ""}, - { (char *)"FloatVector___setitem__", _wrap_FloatVector___setitem__, METH_VARARGS, (char *)"\n" - "__setitem__(PySliceObject slice, FloatVector v)\n" - "FloatVector___setitem__(FloatVector self, difference_type i, value_type x)\n" - ""}, - { (char *)"FloatVector_append", _wrap_FloatVector_append, METH_VARARGS, (char *)"FloatVector_append(FloatVector self, value_type x)"}, - { (char *)"FloatVector_empty", _wrap_FloatVector_empty, METH_VARARGS, (char *)"FloatVector_empty(FloatVector self) -> bool"}, - { (char *)"FloatVector_size", _wrap_FloatVector_size, METH_VARARGS, (char *)"FloatVector_size(FloatVector self) -> size_type"}, - { (char *)"FloatVector_clear", _wrap_FloatVector_clear, METH_VARARGS, (char *)"FloatVector_clear(FloatVector self)"}, - { (char *)"FloatVector_swap", _wrap_FloatVector_swap, METH_VARARGS, (char *)"FloatVector_swap(FloatVector self, FloatVector v)"}, - { (char *)"FloatVector_get_allocator", _wrap_FloatVector_get_allocator, METH_VARARGS, (char *)"FloatVector_get_allocator(FloatVector self) -> allocator_type"}, - { (char *)"FloatVector_begin", _wrap_FloatVector_begin, METH_VARARGS, (char *)"FloatVector_begin(FloatVector self) -> const_iterator"}, - { (char *)"FloatVector_end", _wrap_FloatVector_end, METH_VARARGS, (char *)"FloatVector_end(FloatVector self) -> const_iterator"}, - { (char *)"FloatVector_rbegin", _wrap_FloatVector_rbegin, METH_VARARGS, (char *)"FloatVector_rbegin(FloatVector self) -> const_reverse_iterator"}, - { (char *)"FloatVector_rend", _wrap_FloatVector_rend, METH_VARARGS, (char *)"FloatVector_rend(FloatVector self) -> const_reverse_iterator"}, - { (char *)"FloatVector_pop_back", _wrap_FloatVector_pop_back, METH_VARARGS, (char *)"FloatVector_pop_back(FloatVector self)"}, - { (char *)"FloatVector_erase", _wrap_FloatVector_erase, METH_VARARGS, (char *)"\n" - "erase(iterator pos) -> iterator\n" - "FloatVector_erase(FloatVector self, iterator first, iterator last) -> iterator\n" - ""}, - { (char *)"new_FloatVector", _wrap_new_FloatVector, METH_VARARGS, (char *)"\n" - "FloatVector()\n" - "FloatVector(FloatVector arg0)\n" - "FloatVector(size_type size)\n" - "new_FloatVector(size_type size, value_type value) -> FloatVector\n" - ""}, - { (char *)"FloatVector_push_back", _wrap_FloatVector_push_back, METH_VARARGS, (char *)"FloatVector_push_back(FloatVector self, value_type x)"}, - { (char *)"FloatVector_front", _wrap_FloatVector_front, METH_VARARGS, (char *)"FloatVector_front(FloatVector self) -> value_type"}, - { (char *)"FloatVector_back", _wrap_FloatVector_back, METH_VARARGS, (char *)"FloatVector_back(FloatVector self) -> value_type"}, - { (char *)"FloatVector_assign", _wrap_FloatVector_assign, METH_VARARGS, (char *)"FloatVector_assign(FloatVector self, size_type n, value_type x)"}, - { (char *)"FloatVector_resize", _wrap_FloatVector_resize, METH_VARARGS, (char *)"\n" - "resize(size_type new_size)\n" - "FloatVector_resize(FloatVector self, size_type new_size, value_type x)\n" - ""}, - { (char *)"FloatVector_insert", _wrap_FloatVector_insert, METH_VARARGS, (char *)"\n" - "insert(iterator pos, value_type x) -> iterator\n" - "FloatVector_insert(FloatVector self, iterator pos, size_type n, value_type x)\n" - ""}, - { (char *)"FloatVector_reserve", _wrap_FloatVector_reserve, METH_VARARGS, (char *)"FloatVector_reserve(FloatVector self, size_type n)"}, - { (char *)"FloatVector_capacity", _wrap_FloatVector_capacity, METH_VARARGS, (char *)"FloatVector_capacity(FloatVector self) -> size_type"}, - { (char *)"delete_FloatVector", _wrap_delete_FloatVector, METH_VARARGS, (char *)"delete_FloatVector(FloatVector self)"}, - { (char *)"FloatVector_swigregister", FloatVector_swigregister, METH_VARARGS, NULL}, - { (char *)"CvPointVector_iterator", _wrap_CvPointVector_iterator, METH_VARARGS, (char *)"CvPointVector_iterator(CvPointVector self) -> SwigPyIterator"}, - { (char *)"CvPointVector___nonzero__", _wrap_CvPointVector___nonzero__, METH_VARARGS, (char *)"CvPointVector___nonzero__(CvPointVector self) -> bool"}, - { (char *)"CvPointVector___bool__", _wrap_CvPointVector___bool__, METH_VARARGS, (char *)"CvPointVector___bool__(CvPointVector self) -> bool"}, - { (char *)"CvPointVector___len__", _wrap_CvPointVector___len__, METH_VARARGS, (char *)"CvPointVector___len__(CvPointVector self) -> size_type"}, - { (char *)"CvPointVector_pop", _wrap_CvPointVector_pop, METH_VARARGS, (char *)"CvPointVector_pop(CvPointVector self) -> value_type"}, - { (char *)"CvPointVector___getslice__", _wrap_CvPointVector___getslice__, METH_VARARGS, (char *)"CvPointVector___getslice__(CvPointVector self, difference_type i, difference_type j) -> CvPointVector"}, - { (char *)"CvPointVector___setslice__", _wrap_CvPointVector___setslice__, METH_VARARGS, (char *)"\n" - "CvPointVector___setslice__(CvPointVector self, difference_type i, difference_type j, \n" - " CvPointVector v)\n" - ""}, - { (char *)"CvPointVector___delslice__", _wrap_CvPointVector___delslice__, METH_VARARGS, (char *)"CvPointVector___delslice__(CvPointVector self, difference_type i, difference_type j)"}, - { (char *)"CvPointVector___delitem__", _wrap_CvPointVector___delitem__, METH_VARARGS, (char *)"\n" - "__delitem__(difference_type i)\n" - "CvPointVector___delitem__(CvPointVector self, PySliceObject slice)\n" - ""}, - { (char *)"CvPointVector___getitem__", _wrap_CvPointVector___getitem__, METH_VARARGS, (char *)"\n" - "__getitem__(PySliceObject slice) -> CvPointVector\n" - "CvPointVector___getitem__(CvPointVector self, difference_type i) -> value_type\n" - ""}, - { (char *)"CvPointVector___setitem__", _wrap_CvPointVector___setitem__, METH_VARARGS, (char *)"\n" - "__setitem__(PySliceObject slice, CvPointVector v)\n" - "CvPointVector___setitem__(CvPointVector self, difference_type i, value_type x)\n" - ""}, - { (char *)"CvPointVector_append", _wrap_CvPointVector_append, METH_VARARGS, (char *)"CvPointVector_append(CvPointVector self, value_type x)"}, - { (char *)"CvPointVector_empty", _wrap_CvPointVector_empty, METH_VARARGS, (char *)"CvPointVector_empty(CvPointVector self) -> bool"}, - { (char *)"CvPointVector_size", _wrap_CvPointVector_size, METH_VARARGS, (char *)"CvPointVector_size(CvPointVector self) -> size_type"}, - { (char *)"CvPointVector_clear", _wrap_CvPointVector_clear, METH_VARARGS, (char *)"CvPointVector_clear(CvPointVector self)"}, - { (char *)"CvPointVector_swap", _wrap_CvPointVector_swap, METH_VARARGS, (char *)"CvPointVector_swap(CvPointVector self, CvPointVector v)"}, - { (char *)"CvPointVector_get_allocator", _wrap_CvPointVector_get_allocator, METH_VARARGS, (char *)"CvPointVector_get_allocator(CvPointVector self) -> allocator_type"}, - { (char *)"CvPointVector_begin", _wrap_CvPointVector_begin, METH_VARARGS, (char *)"CvPointVector_begin(CvPointVector self) -> const_iterator"}, - { (char *)"CvPointVector_end", _wrap_CvPointVector_end, METH_VARARGS, (char *)"CvPointVector_end(CvPointVector self) -> const_iterator"}, - { (char *)"CvPointVector_rbegin", _wrap_CvPointVector_rbegin, METH_VARARGS, (char *)"CvPointVector_rbegin(CvPointVector self) -> const_reverse_iterator"}, - { (char *)"CvPointVector_rend", _wrap_CvPointVector_rend, METH_VARARGS, (char *)"CvPointVector_rend(CvPointVector self) -> const_reverse_iterator"}, - { (char *)"CvPointVector_pop_back", _wrap_CvPointVector_pop_back, METH_VARARGS, (char *)"CvPointVector_pop_back(CvPointVector self)"}, - { (char *)"CvPointVector_erase", _wrap_CvPointVector_erase, METH_VARARGS, (char *)"\n" - "erase(iterator pos) -> iterator\n" - "CvPointVector_erase(CvPointVector self, iterator first, iterator last) -> iterator\n" - ""}, - { (char *)"new_CvPointVector", _wrap_new_CvPointVector, METH_VARARGS, (char *)"\n" - "CvPointVector()\n" - "CvPointVector(CvPointVector arg0)\n" - "CvPointVector(size_type size)\n" - "new_CvPointVector(size_type size, value_type value) -> CvPointVector\n" - ""}, - { (char *)"CvPointVector_push_back", _wrap_CvPointVector_push_back, METH_VARARGS, (char *)"CvPointVector_push_back(CvPointVector self, value_type x)"}, - { (char *)"CvPointVector_front", _wrap_CvPointVector_front, METH_VARARGS, (char *)"CvPointVector_front(CvPointVector self) -> value_type"}, - { (char *)"CvPointVector_back", _wrap_CvPointVector_back, METH_VARARGS, (char *)"CvPointVector_back(CvPointVector self) -> value_type"}, - { (char *)"CvPointVector_assign", _wrap_CvPointVector_assign, METH_VARARGS, (char *)"CvPointVector_assign(CvPointVector self, size_type n, value_type x)"}, - { (char *)"CvPointVector_resize", _wrap_CvPointVector_resize, METH_VARARGS, (char *)"\n" - "resize(size_type new_size)\n" - "CvPointVector_resize(CvPointVector self, size_type new_size, value_type x)\n" - ""}, - { (char *)"CvPointVector_insert", _wrap_CvPointVector_insert, METH_VARARGS, (char *)"\n" - "insert(iterator pos, value_type x) -> iterator\n" - "CvPointVector_insert(CvPointVector self, iterator pos, size_type n, value_type x)\n" - ""}, - { (char *)"CvPointVector_reserve", _wrap_CvPointVector_reserve, METH_VARARGS, (char *)"CvPointVector_reserve(CvPointVector self, size_type n)"}, - { (char *)"CvPointVector_capacity", _wrap_CvPointVector_capacity, METH_VARARGS, (char *)"CvPointVector_capacity(CvPointVector self) -> size_type"}, - { (char *)"delete_CvPointVector", _wrap_delete_CvPointVector, METH_VARARGS, (char *)"delete_CvPointVector(CvPointVector self)"}, - { (char *)"CvPointVector_swigregister", CvPointVector_swigregister, METH_VARARGS, NULL}, - { (char *)"cvCvtSeqToArray", _wrap_cvCvtSeqToArray, METH_VARARGS, (char *)"\n" - "cvCvtSeqToArray(CvSeq seq, CvArr elements, CvSlice slice = CV_WHOLE_SEQ) -> CvArr\n" - "cvCvtSeqToArray(CvSeq seq, CvArr elements) -> CvArr\n" - ""}, - { (char *)"cvHaarDetectObjects", _wrap_cvHaarDetectObjects, METH_VARARGS, (char *)"\n" - "cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, \n" - " double scale_factor = 1.1, int min_neighbors = 3, \n" - " int flags = 0, CvSize min_size = cvSize(0,0)) -> CvSeq_CvRect\n" - "cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, \n" - " double scale_factor = 1.1, int min_neighbors = 3, \n" - " int flags = 0) -> CvSeq_CvRect\n" - "cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, \n" - " double scale_factor = 1.1, int min_neighbors = 3) -> CvSeq_CvRect\n" - "cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, \n" - " double scale_factor = 1.1) -> CvSeq_CvRect\n" - "cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage) -> CvSeq_CvRect\n" - ""}, - { (char *)"cvSegmentMotion", _wrap_cvSegmentMotion, METH_VARARGS, (char *)"\n" - "cvSegmentMotion(CvArr mhi, CvArr seg_mask, CvMemStorage storage, double timestamp, \n" - " double seg_thresh) -> CvSeq_CvConnectedComp\n" - ""}, - { (char *)"cvApproxPoly", _wrap_cvApproxPoly, METH_VARARGS, (char *)"\n" - "cvApproxPoly(void src_seq, int header_size, CvMemStorage storage, \n" - " int method, double parameter, int parameter2 = 0) -> CvSeq_CvPoint\n" - "cvApproxPoly(void src_seq, int header_size, CvMemStorage storage, \n" - " int method, double parameter) -> CvSeq_CvPoint\n" - ""}, - { (char *)"cvConvexHull2", _wrap_cvConvexHull2, METH_VARARGS, (char *)"\n" - "cvConvexHull2(CvArr points, int orientation = CV_CLOCKWISE, int return_points = 0) -> CvMat\n" - "cvConvexHull2(CvArr points, int orientation = CV_CLOCKWISE) -> CvMat\n" - "cvConvexHull2(CvArr points) -> CvMat\n" - ""}, - { (char *)"cvSnakeImage", _wrap_cvSnakeImage, METH_VARARGS, (char *)"\n" - "cvSnakeImage(CvMat image, CvPointVector points, FloatVector alpha, \n" - " FloatVector beta, FloatVector gamma, CvSize win, \n" - " CvTermCriteria criteria, int calc_gradient = 1) -> CvPointVector\n" - "cvSnakeImage(CvMat image, CvPointVector points, FloatVector alpha, \n" - " FloatVector beta, FloatVector gamma, CvSize win, \n" - " CvTermCriteria criteria) -> CvPointVector\n" - ""}, - { (char *)"cvFree", _wrap_cvFree, METH_VARARGS, (char *)"cvFree(void ptr)"}, - { (char *)"CV_READ_CHAIN_POINT", _wrap_CV_READ_CHAIN_POINT, METH_VARARGS, (char *)"CV_READ_CHAIN_POINT(CvPoint _pt, CvChainPtReader reader)"}, - { (char *)"CV_MAT_ELEM_PTR", _wrap_CV_MAT_ELEM_PTR, METH_VARARGS, (char *)"CV_MAT_ELEM_PTR(CvMat mat, int row, int col) -> void"}, - { (char *)"CV_MAT_ELEM_PTR_FAST", _wrap_CV_MAT_ELEM_PTR_FAST, METH_VARARGS, (char *)"CV_MAT_ELEM_PTR_FAST(CvMat mat, int row, int col, int pix_size) -> void"}, - { (char *)"CV_NODE_VAL", _wrap_CV_NODE_VAL, METH_VARARGS, (char *)"CV_NODE_VAL(CvSparseMat mat, CvSparseNode node) -> void"}, - { (char *)"CV_NODE_IDX", _wrap_CV_NODE_IDX, METH_VARARGS, (char *)"CV_NODE_IDX(CvSparseMat mat, CvSparseNode node) -> int"}, - { (char *)"CV_SUBDIV2D_NEXT_EDGE", _wrap_CV_SUBDIV2D_NEXT_EDGE, METH_VARARGS, (char *)"CV_SUBDIV2D_NEXT_EDGE(CvSubdiv2DEdge edge) -> CvQuadEdge2D"}, - { (char *)"CV_SWAP", _wrap_CV_SWAP, METH_VARARGS, (char *)"CV_SWAP(int a, int b, int t)"}, - { (char *)"CV_IMIN", _wrap_CV_IMIN, METH_VARARGS, (char *)"CV_IMIN(int a, int b) -> int"}, - { (char *)"CV_IMAX", _wrap_CV_IMAX, METH_VARARGS, (char *)"CV_IMAX(int a, int b) -> int"}, - { (char *)"CV_IABS", _wrap_CV_IABS, METH_VARARGS, (char *)"CV_IABS(int a) -> int"}, - { (char *)"CV_CMP", _wrap_CV_CMP, METH_VARARGS, (char *)"CV_CMP(int a, int b)"}, - { (char *)"CV_SIGN", _wrap_CV_SIGN, METH_VARARGS, (char *)"CV_SIGN(int a)"}, - { (char *)"cvInvSqrt", _wrap_cvInvSqrt, METH_VARARGS, (char *)"cvInvSqrt(double value)"}, - { (char *)"cvSqrt", _wrap_cvSqrt, METH_VARARGS, (char *)"cvSqrt(double value)"}, - { (char *)"CV_IS_IMAGE_HDR", _wrap_CV_IS_IMAGE_HDR, METH_VARARGS, (char *)"CV_IS_IMAGE_HDR(CvArr img) -> int"}, - { (char *)"CV_IS_IMAGE", _wrap_CV_IS_IMAGE, METH_VARARGS, (char *)"CV_IS_IMAGE(CvArr img) -> int"}, - { (char *)"CV_MAT_DEPTH", _wrap_CV_MAT_DEPTH, METH_VARARGS, (char *)"CV_MAT_DEPTH(int flags) -> int"}, - { (char *)"CV_MAKETYPE", _wrap_CV_MAKETYPE, METH_VARARGS, (char *)"CV_MAKETYPE(int depth, int cn) -> int"}, - { (char *)"CV_8UC", _wrap_CV_8UC, METH_VARARGS, (char *)"CV_8UC(int n) -> int"}, - { (char *)"CV_8SC", _wrap_CV_8SC, METH_VARARGS, (char *)"CV_8SC(int n) -> int"}, - { (char *)"CV_16UC", _wrap_CV_16UC, METH_VARARGS, (char *)"CV_16UC(int n) -> int"}, - { (char *)"CV_16SC", _wrap_CV_16SC, METH_VARARGS, (char *)"CV_16SC(int n) -> int"}, - { (char *)"CV_32SC", _wrap_CV_32SC, METH_VARARGS, (char *)"CV_32SC(int n) -> int"}, - { (char *)"CV_32FC", _wrap_CV_32FC, METH_VARARGS, (char *)"CV_32FC(int n) -> int"}, - { (char *)"CV_64FC", _wrap_CV_64FC, METH_VARARGS, (char *)"CV_64FC(int n) -> int"}, - { (char *)"CV_MAT_CN", _wrap_CV_MAT_CN, METH_VARARGS, (char *)"CV_MAT_CN(int flags) -> int"}, - { (char *)"CV_MAT_TYPE", _wrap_CV_MAT_TYPE, METH_VARARGS, (char *)"CV_MAT_TYPE(int flags) -> int"}, - { (char *)"CV_IS_MAT_CONT", _wrap_CV_IS_MAT_CONT, METH_VARARGS, (char *)"CV_IS_MAT_CONT(int flags) -> int"}, - { (char *)"CV_IS_TEMP_MAT", _wrap_CV_IS_TEMP_MAT, METH_VARARGS, (char *)"CV_IS_TEMP_MAT(int flags) -> int"}, - { (char *)"CV_IS_MAT_HDR", _wrap_CV_IS_MAT_HDR, METH_VARARGS, (char *)"CV_IS_MAT_HDR(CvMat mat) -> int"}, - { (char *)"CV_IS_MAT", _wrap_CV_IS_MAT, METH_VARARGS, (char *)"CV_IS_MAT(CvMat mat) -> int"}, - { (char *)"CV_IS_MASK_ARR", _wrap_CV_IS_MASK_ARR, METH_VARARGS, (char *)"CV_IS_MASK_ARR(CvMat mat) -> int"}, - { (char *)"CV_ARE_TYPES_EQ", _wrap_CV_ARE_TYPES_EQ, METH_VARARGS, (char *)"CV_ARE_TYPES_EQ(CvMat mat1, CvMat mat2) -> int"}, - { (char *)"CV_ARE_CNS_EQ", _wrap_CV_ARE_CNS_EQ, METH_VARARGS, (char *)"CV_ARE_CNS_EQ(CvMat mat1, CvMat mat2) -> int"}, - { (char *)"CV_ARE_DEPTHS_EQ", _wrap_CV_ARE_DEPTHS_EQ, METH_VARARGS, (char *)"CV_ARE_DEPTHS_EQ(CvMat mat1, CvMat mat2) -> int"}, - { (char *)"CV_ARE_SIZES_EQ", _wrap_CV_ARE_SIZES_EQ, METH_VARARGS, (char *)"CV_ARE_SIZES_EQ(CvMat mat1, CvMat mat2) -> int"}, - { (char *)"CV_IS_MAT_CONST", _wrap_CV_IS_MAT_CONST, METH_VARARGS, (char *)"CV_IS_MAT_CONST(CvMat mat) -> int"}, - { (char *)"CV_ELEM_SIZE1", _wrap_CV_ELEM_SIZE1, METH_VARARGS, (char *)"CV_ELEM_SIZE1(int type) -> int"}, - { (char *)"CV_ELEM_SIZE", _wrap_CV_ELEM_SIZE, METH_VARARGS, (char *)"CV_ELEM_SIZE(int type) -> int"}, - { (char *)"CV_IS_MATND_HDR", _wrap_CV_IS_MATND_HDR, METH_VARARGS, (char *)"CV_IS_MATND_HDR(CvMat mat) -> int"}, - { (char *)"CV_IS_MATND", _wrap_CV_IS_MATND, METH_VARARGS, (char *)"CV_IS_MATND(CvMat mat) -> int"}, - { (char *)"CV_IS_SPARSE_MAT_HDR", _wrap_CV_IS_SPARSE_MAT_HDR, METH_VARARGS, (char *)"CV_IS_SPARSE_MAT_HDR(CvMat mat) -> int"}, - { (char *)"CV_IS_SPARSE_MAT", _wrap_CV_IS_SPARSE_MAT, METH_VARARGS, (char *)"CV_IS_SPARSE_MAT(CvMat mat) -> int"}, - { (char *)"CV_IS_HIST", _wrap_CV_IS_HIST, METH_VARARGS, (char *)"CV_IS_HIST(CvHistogram hist) -> int"}, - { (char *)"CV_IS_UNIFORM_HIST", _wrap_CV_IS_UNIFORM_HIST, METH_VARARGS, (char *)"CV_IS_UNIFORM_HIST(CvHistogram hist) -> int"}, - { (char *)"CV_IS_SPARSE_HIST", _wrap_CV_IS_SPARSE_HIST, METH_VARARGS, (char *)"CV_IS_SPARSE_HIST(CvHistogram hist) -> int"}, - { (char *)"CV_HIST_HAS_RANGES", _wrap_CV_HIST_HAS_RANGES, METH_VARARGS, (char *)"CV_HIST_HAS_RANGES(CvHistogram hist) -> int"}, - { (char *)"CV_IS_STORAGE", _wrap_CV_IS_STORAGE, METH_VARARGS, (char *)"CV_IS_STORAGE(CvMemStorage storage) -> int"}, - { (char *)"CV_IS_SET_ELEM", _wrap_CV_IS_SET_ELEM, METH_VARARGS, (char *)"CV_IS_SET_ELEM(void ptr) -> int"}, - { (char *)"CV_IS_SEQ", _wrap_CV_IS_SEQ, METH_VARARGS, (char *)"CV_IS_SEQ(CvSeq seq) -> int"}, - { (char *)"CV_IS_SET", _wrap_CV_IS_SET, METH_VARARGS, (char *)"CV_IS_SET(CvSet set) -> int"}, - { (char *)"CV_SEQ_ELTYPE", _wrap_CV_SEQ_ELTYPE, METH_VARARGS, (char *)"CV_SEQ_ELTYPE(CvSeq seq) -> int"}, - { (char *)"CV_SEQ_KIND", _wrap_CV_SEQ_KIND, METH_VARARGS, (char *)"CV_SEQ_KIND(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_INDEX", _wrap_CV_IS_SEQ_INDEX, METH_VARARGS, (char *)"CV_IS_SEQ_INDEX(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_CURVE", _wrap_CV_IS_SEQ_CURVE, METH_VARARGS, (char *)"CV_IS_SEQ_CURVE(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_CLOSED", _wrap_CV_IS_SEQ_CLOSED, METH_VARARGS, (char *)"CV_IS_SEQ_CLOSED(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_CONVEX", _wrap_CV_IS_SEQ_CONVEX, METH_VARARGS, (char *)"CV_IS_SEQ_CONVEX(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_HOLE", _wrap_CV_IS_SEQ_HOLE, METH_VARARGS, (char *)"CV_IS_SEQ_HOLE(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_SIMPLE", _wrap_CV_IS_SEQ_SIMPLE, METH_VARARGS, (char *)"CV_IS_SEQ_SIMPLE(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_POINT_SET", _wrap_CV_IS_SEQ_POINT_SET, METH_VARARGS, (char *)"CV_IS_SEQ_POINT_SET(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_POINT_SUBSET", _wrap_CV_IS_SEQ_POINT_SUBSET, METH_VARARGS, (char *)"CV_IS_SEQ_POINT_SUBSET(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_POLYLINE", _wrap_CV_IS_SEQ_POLYLINE, METH_VARARGS, (char *)"CV_IS_SEQ_POLYLINE(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_POLYGON", _wrap_CV_IS_SEQ_POLYGON, METH_VARARGS, (char *)"CV_IS_SEQ_POLYGON(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_CHAIN", _wrap_CV_IS_SEQ_CHAIN, METH_VARARGS, (char *)"CV_IS_SEQ_CHAIN(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_CONTOUR", _wrap_CV_IS_SEQ_CONTOUR, METH_VARARGS, (char *)"CV_IS_SEQ_CONTOUR(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_CHAIN_CONTOUR", _wrap_CV_IS_SEQ_CHAIN_CONTOUR, METH_VARARGS, (char *)"CV_IS_SEQ_CHAIN_CONTOUR(CvSeq seq) -> int"}, - { (char *)"CV_IS_SEQ_POLYGON_TREE", _wrap_CV_IS_SEQ_POLYGON_TREE, METH_VARARGS, (char *)"CV_IS_SEQ_POLYGON_TREE(CvSeq seq) -> int"}, - { (char *)"CV_IS_GRAPH", _wrap_CV_IS_GRAPH, METH_VARARGS, (char *)"CV_IS_GRAPH(CvSeq seq) -> int"}, - { (char *)"CV_IS_GRAPH_ORIENTED", _wrap_CV_IS_GRAPH_ORIENTED, METH_VARARGS, (char *)"CV_IS_GRAPH_ORIENTED(CvSeq seq) -> int"}, - { (char *)"CV_IS_SUBDIV2D", _wrap_CV_IS_SUBDIV2D, METH_VARARGS, (char *)"CV_IS_SUBDIV2D(CvSeq seq) -> int"}, - { (char *)"CV_WRITE_SEQ_ELEM_VAR", _wrap_CV_WRITE_SEQ_ELEM_VAR, METH_VARARGS, (char *)"CV_WRITE_SEQ_ELEM_VAR(void elem_ptr, CvSeqWriter writer)"}, - { (char *)"CV_WRITE_SEQ_ELEM", _wrap_CV_WRITE_SEQ_ELEM, METH_VARARGS, (char *)"CV_WRITE_SEQ_ELEM(CvPoint elem, CvSeqWriter writer)"}, - { (char *)"CV_NEXT_SEQ_ELEM", _wrap_CV_NEXT_SEQ_ELEM, METH_VARARGS, (char *)"CV_NEXT_SEQ_ELEM(int elem_size, CvSeqReader reader)"}, - { (char *)"CV_PREV_SEQ_ELEM", _wrap_CV_PREV_SEQ_ELEM, METH_VARARGS, (char *)"CV_PREV_SEQ_ELEM(int elem_size, CvSeqReader reader)"}, - { (char *)"CV_READ_SEQ_ELEM", _wrap_CV_READ_SEQ_ELEM, METH_VARARGS, (char *)"CV_READ_SEQ_ELEM(CvPoint elem, CvSeqReader reader)"}, - { (char *)"CV_REV_READ_SEQ_ELEM", _wrap_CV_REV_READ_SEQ_ELEM, METH_VARARGS, (char *)"CV_REV_READ_SEQ_ELEM(CvPoint elem, CvSeqReader reader)"}, - { (char *)"CV_CURRENT_POINT", _wrap_CV_CURRENT_POINT, METH_VARARGS, (char *)"CV_CURRENT_POINT(CvSeqReader reader) -> CvPoint"}, - { (char *)"CV_PREV_POINT", _wrap_CV_PREV_POINT, METH_VARARGS, (char *)"CV_PREV_POINT(CvSeqReader reader) -> CvPoint"}, - { (char *)"CV_READ_EDGE", _wrap_CV_READ_EDGE, METH_VARARGS, (char *)"CV_READ_EDGE(CvPoint pt1, CvPoint pt2, CvSeqReader reader)"}, - { (char *)"CV_NEXT_GRAPH_EDGE", _wrap_CV_NEXT_GRAPH_EDGE, METH_VARARGS, (char *)"CV_NEXT_GRAPH_EDGE(CvGraphEdge edge, CvGraphVtx vertex) -> CvGraphEdge"}, - { (char *)"CV_NODE_TYPE", _wrap_CV_NODE_TYPE, METH_VARARGS, (char *)"CV_NODE_TYPE(int flags) -> int"}, - { (char *)"CV_NODE_IS_INT", _wrap_CV_NODE_IS_INT, METH_VARARGS, (char *)"CV_NODE_IS_INT(int flags) -> int"}, - { (char *)"CV_NODE_IS_REAL", _wrap_CV_NODE_IS_REAL, METH_VARARGS, (char *)"CV_NODE_IS_REAL(int flags) -> int"}, - { (char *)"CV_NODE_IS_STRING", _wrap_CV_NODE_IS_STRING, METH_VARARGS, (char *)"CV_NODE_IS_STRING(int flags) -> int"}, - { (char *)"CV_NODE_IS_SEQ", _wrap_CV_NODE_IS_SEQ, METH_VARARGS, (char *)"CV_NODE_IS_SEQ(int flags) -> int"}, - { (char *)"CV_NODE_IS_MAP", _wrap_CV_NODE_IS_MAP, METH_VARARGS, (char *)"CV_NODE_IS_MAP(int flags) -> int"}, - { (char *)"CV_NODE_IS_COLLECTION", _wrap_CV_NODE_IS_COLLECTION, METH_VARARGS, (char *)"CV_NODE_IS_COLLECTION(int flags) -> int"}, - { (char *)"CV_NODE_IS_FLOW", _wrap_CV_NODE_IS_FLOW, METH_VARARGS, (char *)"CV_NODE_IS_FLOW(int flags) -> int"}, - { (char *)"CV_NODE_IS_EMPTY", _wrap_CV_NODE_IS_EMPTY, METH_VARARGS, (char *)"CV_NODE_IS_EMPTY(int flags) -> int"}, - { (char *)"CV_NODE_IS_USER", _wrap_CV_NODE_IS_USER, METH_VARARGS, (char *)"CV_NODE_IS_USER(int flags) -> int"}, - { (char *)"CV_NODE_HAS_NAME", _wrap_CV_NODE_HAS_NAME, METH_VARARGS, (char *)"CV_NODE_HAS_NAME(int flags) -> int"}, - { (char *)"CV_NODE_SEQ_IS_SIMPLE", _wrap_CV_NODE_SEQ_IS_SIMPLE, METH_VARARGS, (char *)"CV_NODE_SEQ_IS_SIMPLE(CvSeq seq) -> int"}, - { (char *)"cvReshapeND", _wrap_cvReshapeND, METH_VARARGS, (char *)"cvReshapeND(CvArr arr, int new_cn, int new_dims, int new_sizes)"}, - { (char *)"cvConvert", _wrap_cvConvert, METH_VARARGS, (char *)"cvConvert(CvArr src, CvArr dst)"}, - { (char *)"cvAXPY", _wrap_cvAXPY, METH_VARARGS, (char *)"cvAXPY(CvArr A, double real_scalar, CvArr B, CvArr C)"}, - { (char *)"cvAbs", _wrap_cvAbs, METH_VARARGS, (char *)"cvAbs(CvArr src, CvArr dst)"}, - { (char *)"cvMatMulAdd", _wrap_cvMatMulAdd, METH_VARARGS, (char *)"cvMatMulAdd(CvArr src1, CvArr src2, CvArr src3, CvArr dst)"}, - { (char *)"cvMatMul", _wrap_cvMatMul, METH_VARARGS, (char *)"cvMatMul(CvArr src1, CvArr src2, CvArr dst)"}, - { (char *)"cvGetGraphVtx", _wrap_cvGetGraphVtx, METH_VARARGS, (char *)"cvGetGraphVtx(CvGraph graph, int idx)"}, - { (char *)"cvGraphVtxIdx", _wrap_cvGraphVtxIdx, METH_VARARGS, (char *)"cvGraphVtxIdx(CvGraph graph, CvGraphVtx vtx) -> int"}, - { (char *)"cvGraphEdgeIdx", _wrap_cvGraphEdgeIdx, METH_VARARGS, (char *)"cvGraphEdgeIdx(CvGraph graph, CvGraphEdge edge) -> int"}, - { (char *)"cvGraphGetVtxCount", _wrap_cvGraphGetVtxCount, METH_VARARGS, (char *)"cvGraphGetVtxCount(CvGraph graph) -> int"}, - { (char *)"cvGraphGetEdgeCount", _wrap_cvGraphGetEdgeCount, METH_VARARGS, (char *)"cvGraphGetEdgeCount(CvGraph graph) -> int"}, - { (char *)"CV_IS_GRAPH_VERTEX_VISITED", _wrap_CV_IS_GRAPH_VERTEX_VISITED, METH_VARARGS, (char *)"CV_IS_GRAPH_VERTEX_VISITED(CvGraphVtx vtx) -> int"}, - { (char *)"CV_IS_GRAPH_EDGE_VISITED", _wrap_CV_IS_GRAPH_EDGE_VISITED, METH_VARARGS, (char *)"CV_IS_GRAPH_EDGE_VISITED(CvGraphEdge edge) -> int"}, - { (char *)"CV_RGB", _wrap_CV_RGB, METH_VARARGS, (char *)"CV_RGB(double r, double g, int b) -> CvScalar"}, - { (char *)"CV_NEXT_LINE_POINT", _wrap_CV_NEXT_LINE_POINT, METH_VARARGS, (char *)"CV_NEXT_LINE_POINT(CvLineIterator line_iterator)"}, - { (char *)"CV_INIT_3X3_DELTAS", _wrap_CV_INIT_3X3_DELTAS, METH_VARARGS, (char *)"CV_INIT_3X3_DELTAS(double deltas, int step, int nch)"}, - { (char *)"CV_IS_HAAR_CLASSIFIER", _wrap_CV_IS_HAAR_CLASSIFIER, METH_VARARGS, (char *)"CV_IS_HAAR_CLASSIFIER(void haar) -> int"}, - { (char *)"cvContourPerimeter", _wrap_cvContourPerimeter, METH_VARARGS, (char *)"cvContourPerimeter(CvSeq contour) -> double"}, - { (char *)"cvCalcBackProject", _wrap_cvCalcBackProject, METH_VARARGS, (char *)"cvCalcBackProject( image, CvArr dst, CvHistogram hist)"}, - { (char *)"cvCalcBackProjectPatch", _wrap_cvCalcBackProjectPatch, METH_VARARGS, (char *)"\n" - "cvCalcBackProjectPatch( image, CvArr dst, CvSize range, CvHistogram hist, \n" - " int method, double factor)\n" - ""}, - { (char *)"cvCreateImage", _wrap_cvCreateImage, METH_VARARGS, (char *)"cvCreateImage(CvSize size, int depth, int channels) -> CvMat"}, - { (char *)"cvCloneImage", _wrap_cvCloneImage, METH_VARARGS, (char *)"cvCloneImage(CvMat mat) -> CvMat"}, - { (char *)"Cv32suf_i_set", _wrap_Cv32suf_i_set, METH_VARARGS, (char *)"Cv32suf_i_set(Cv32suf self, int i)"}, - { (char *)"Cv32suf_i_get", _wrap_Cv32suf_i_get, METH_VARARGS, (char *)"Cv32suf_i_get(Cv32suf self) -> int"}, - { (char *)"Cv32suf_u_set", _wrap_Cv32suf_u_set, METH_VARARGS, (char *)"Cv32suf_u_set(Cv32suf self, unsigned int u)"}, - { (char *)"Cv32suf_u_get", _wrap_Cv32suf_u_get, METH_VARARGS, (char *)"Cv32suf_u_get(Cv32suf self) -> unsigned int"}, - { (char *)"Cv32suf_f_set", _wrap_Cv32suf_f_set, METH_VARARGS, (char *)"Cv32suf_f_set(Cv32suf self, float f)"}, - { (char *)"Cv32suf_f_get", _wrap_Cv32suf_f_get, METH_VARARGS, (char *)"Cv32suf_f_get(Cv32suf self) -> float"}, - { (char *)"new_Cv32suf", _wrap_new_Cv32suf, METH_VARARGS, (char *)"new_Cv32suf() -> Cv32suf"}, - { (char *)"delete_Cv32suf", _wrap_delete_Cv32suf, METH_VARARGS, (char *)"delete_Cv32suf(Cv32suf self)"}, - { (char *)"Cv32suf_swigregister", Cv32suf_swigregister, METH_VARARGS, NULL}, - { (char *)"Cv64suf_i_set", _wrap_Cv64suf_i_set, METH_VARARGS, (char *)"Cv64suf_i_set(Cv64suf self, int64 i)"}, - { (char *)"Cv64suf_i_get", _wrap_Cv64suf_i_get, METH_VARARGS, (char *)"Cv64suf_i_get(Cv64suf self) -> int64"}, - { (char *)"Cv64suf_u_set", _wrap_Cv64suf_u_set, METH_VARARGS, (char *)"Cv64suf_u_set(Cv64suf self, uint64 u)"}, - { (char *)"Cv64suf_u_get", _wrap_Cv64suf_u_get, METH_VARARGS, (char *)"Cv64suf_u_get(Cv64suf self) -> uint64"}, - { (char *)"Cv64suf_f_set", _wrap_Cv64suf_f_set, METH_VARARGS, (char *)"Cv64suf_f_set(Cv64suf self, double f)"}, - { (char *)"Cv64suf_f_get", _wrap_Cv64suf_f_get, METH_VARARGS, (char *)"Cv64suf_f_get(Cv64suf self) -> double"}, - { (char *)"new_Cv64suf", _wrap_new_Cv64suf, METH_VARARGS, (char *)"new_Cv64suf() -> Cv64suf"}, - { (char *)"delete_Cv64suf", _wrap_delete_Cv64suf, METH_VARARGS, (char *)"delete_Cv64suf(Cv64suf self)"}, - { (char *)"Cv64suf_swigregister", Cv64suf_swigregister, METH_VARARGS, NULL}, - { (char *)"cvRound", _wrap_cvRound, METH_VARARGS, (char *)"cvRound(double value) -> int"}, - { (char *)"cvFloor", _wrap_cvFloor, METH_VARARGS, (char *)"cvFloor(double value) -> int"}, - { (char *)"cvCeil", _wrap_cvCeil, METH_VARARGS, (char *)"cvCeil(double value) -> int"}, - { (char *)"cvIsNaN", _wrap_cvIsNaN, METH_VARARGS, (char *)"cvIsNaN(double value) -> int"}, - { (char *)"cvIsInf", _wrap_cvIsInf, METH_VARARGS, (char *)"cvIsInf(double value) -> int"}, - { (char *)"cvRNG", _wrap_cvRNG, METH_VARARGS, (char *)"\n" - "cvRNG(int64 seed = -1) -> CvRNG\n" - "cvRNG() -> CvRNG\n" - ""}, - { (char *)"cvRandInt", _wrap_cvRandInt, METH_VARARGS, (char *)"cvRandInt(CvRNG rng) -> unsigned int"}, - { (char *)"cvRandReal", _wrap_cvRandReal, METH_VARARGS, (char *)"cvRandReal(CvRNG rng) -> double"}, - { (char *)"IplImage_ID_set", _wrap_IplImage_ID_set, METH_VARARGS, (char *)"IplImage_ID_set( self, int ID)"}, - { (char *)"IplImage_ID_get", _wrap_IplImage_ID_get, METH_VARARGS, (char *)"IplImage_ID_get( self) -> int"}, - { (char *)"IplImage_nChannels_set", _wrap_IplImage_nChannels_set, METH_VARARGS, (char *)"IplImage_nChannels_set( self, int nChannels)"}, - { (char *)"IplImage_nChannels_get", _wrap_IplImage_nChannels_get, METH_VARARGS, (char *)"IplImage_nChannels_get( self) -> int"}, - { (char *)"IplImage_depth_set", _wrap_IplImage_depth_set, METH_VARARGS, (char *)"IplImage_depth_set( self, int depth)"}, - { (char *)"IplImage_depth_get", _wrap_IplImage_depth_get, METH_VARARGS, (char *)"IplImage_depth_get( self) -> int"}, - { (char *)"IplImage_dataOrder_set", _wrap_IplImage_dataOrder_set, METH_VARARGS, (char *)"IplImage_dataOrder_set( self, int dataOrder)"}, - { (char *)"IplImage_dataOrder_get", _wrap_IplImage_dataOrder_get, METH_VARARGS, (char *)"IplImage_dataOrder_get( self) -> int"}, - { (char *)"IplImage_origin_set", _wrap_IplImage_origin_set, METH_VARARGS, (char *)"IplImage_origin_set( self, int origin)"}, - { (char *)"IplImage_origin_get", _wrap_IplImage_origin_get, METH_VARARGS, (char *)"IplImage_origin_get( self) -> int"}, - { (char *)"IplImage_align_set", _wrap_IplImage_align_set, METH_VARARGS, (char *)"IplImage_align_set( self, int align)"}, - { (char *)"IplImage_align_get", _wrap_IplImage_align_get, METH_VARARGS, (char *)"IplImage_align_get( self) -> int"}, - { (char *)"IplImage_width_set", _wrap_IplImage_width_set, METH_VARARGS, (char *)"IplImage_width_set( self, int width)"}, - { (char *)"IplImage_width_get", _wrap_IplImage_width_get, METH_VARARGS, (char *)"IplImage_width_get( self) -> int"}, - { (char *)"IplImage_height_set", _wrap_IplImage_height_set, METH_VARARGS, (char *)"IplImage_height_set( self, int height)"}, - { (char *)"IplImage_height_get", _wrap_IplImage_height_get, METH_VARARGS, (char *)"IplImage_height_get( self) -> int"}, - { (char *)"IplImage_roi_set", _wrap_IplImage_roi_set, METH_VARARGS, (char *)"IplImage_roi_set( self, IplROI roi)"}, - { (char *)"IplImage_roi_get", _wrap_IplImage_roi_get, METH_VARARGS, (char *)"IplImage_roi_get( self) -> IplROI"}, - { (char *)"IplImage_imageSize_set", _wrap_IplImage_imageSize_set, METH_VARARGS, (char *)"IplImage_imageSize_set( self, int imageSize)"}, - { (char *)"IplImage_imageSize_get", _wrap_IplImage_imageSize_get, METH_VARARGS, (char *)"IplImage_imageSize_get( self) -> int"}, - { (char *)"IplImage_widthStep_set", _wrap_IplImage_widthStep_set, METH_VARARGS, (char *)"IplImage_widthStep_set( self, int widthStep)"}, - { (char *)"IplImage_widthStep_get", _wrap_IplImage_widthStep_get, METH_VARARGS, (char *)"IplImage_widthStep_get( self) -> int"}, - { (char *)"delete_IplImage", _wrap_delete_IplImage, METH_VARARGS, (char *)"delete_IplImage( self)"}, - { (char *)"IplImage___add__", _wrap_IplImage___add__, METH_VARARGS, (char *)"\n" - "__add__(CvArr src)\n" - "IplImage___add__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___iadd__", _wrap_IplImage___iadd__, METH_VARARGS, (char *)"\n" - "__iadd__(CvArr src)\n" - "IplImage___iadd__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___xor__", _wrap_IplImage___xor__, METH_VARARGS, (char *)"\n" - "__xor__(CvArr src)\n" - "IplImage___xor__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___ixor__", _wrap_IplImage___ixor__, METH_VARARGS, (char *)"\n" - "__ixor__(CvArr src)\n" - "IplImage___ixor__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___sub__", _wrap_IplImage___sub__, METH_VARARGS, (char *)"\n" - "__sub__(CvArr src)\n" - "IplImage___sub__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___isub__", _wrap_IplImage___isub__, METH_VARARGS, (char *)"\n" - "__isub__(CvArr src)\n" - "IplImage___isub__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___or__", _wrap_IplImage___or__, METH_VARARGS, (char *)"\n" - "__or__(CvArr src)\n" - "IplImage___or__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___ior__", _wrap_IplImage___ior__, METH_VARARGS, (char *)"\n" - "__ior__(CvArr src)\n" - "IplImage___ior__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___and__", _wrap_IplImage___and__, METH_VARARGS, (char *)"\n" - "__and__(CvArr src)\n" - "IplImage___and__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___iand__", _wrap_IplImage___iand__, METH_VARARGS, (char *)"\n" - "__iand__(CvArr src)\n" - "IplImage___iand__( self, CvScalar val)\n" - ""}, - { (char *)"IplImage___ge__", _wrap_IplImage___ge__, METH_VARARGS, (char *)"\n" - "__ge__(CvArr src)\n" - "IplImage___ge__( self, double val)\n" - ""}, - { (char *)"IplImage___eq__", _wrap_IplImage___eq__, METH_VARARGS, (char *)"\n" - "__eq__(CvArr src)\n" - "IplImage___eq__( self, double val)\n" - ""}, - { (char *)"IplImage___le__", _wrap_IplImage___le__, METH_VARARGS, (char *)"\n" - "__le__(CvArr src)\n" - "IplImage___le__( self, double val)\n" - ""}, - { (char *)"IplImage___ne__", _wrap_IplImage___ne__, METH_VARARGS, (char *)"\n" - "__ne__(CvArr src)\n" - "IplImage___ne__( self, double val)\n" - ""}, - { (char *)"IplImage___lt__", _wrap_IplImage___lt__, METH_VARARGS, (char *)"\n" - "__lt__(CvArr src)\n" - "IplImage___lt__( self, double val)\n" - ""}, - { (char *)"IplImage___gt__", _wrap_IplImage___gt__, METH_VARARGS, (char *)"\n" - "__gt__(CvArr src)\n" - "IplImage___gt__( self, double val)\n" - ""}, - { (char *)"IplImage___mul__", _wrap_IplImage___mul__, METH_VARARGS, (char *)"\n" - "__mul__(CvArr src)\n" - "IplImage___mul__( self, double val)\n" - ""}, - { (char *)"IplImage___imul__", _wrap_IplImage___imul__, METH_VARARGS, (char *)"\n" - "__imul__(CvArr src)\n" - "IplImage___imul__( self, double val)\n" - ""}, - { (char *)"IplImage___div__", _wrap_IplImage___div__, METH_VARARGS, (char *)"\n" - "__div__(CvArr src)\n" - "IplImage___div__( self, double val)\n" - ""}, - { (char *)"IplImage___idiv__", _wrap_IplImage___idiv__, METH_VARARGS, (char *)"\n" - "__idiv__(CvArr src)\n" - "IplImage___idiv__( self, double val)\n" - ""}, - { (char *)"IplImage___rdiv__", _wrap_IplImage___rdiv__, METH_VARARGS, (char *)"IplImage___rdiv__( self, CvArr arg)"}, - { (char *)"IplImage___radd__", _wrap_IplImage___radd__, METH_VARARGS, (char *)"\n" - "__radd__(CvArr arg)\n" - "__radd__(CvScalar arg)\n" - "IplImage___radd__( self, double arg)\n" - ""}, - { (char *)"IplImage___rsub__", _wrap_IplImage___rsub__, METH_VARARGS, (char *)"\n" - "__rsub__(CvArr arg)\n" - "__rsub__(CvScalar arg)\n" - "IplImage___rsub__( self, double arg)\n" - ""}, - { (char *)"IplImage___rmul__", _wrap_IplImage___rmul__, METH_VARARGS, (char *)"\n" - "__rmul__(CvArr arg)\n" - "IplImage___rmul__( self, double arg)\n" - ""}, - { (char *)"IplImage___ror__", _wrap_IplImage___ror__, METH_VARARGS, (char *)"\n" - "__ror__(CvScalar arg)\n" - "IplImage___ror__( self, double arg)\n" - ""}, - { (char *)"IplImage___rand__", _wrap_IplImage___rand__, METH_VARARGS, (char *)"\n" - "__rand__(CvScalar arg)\n" - "IplImage___rand__( self, double arg)\n" - ""}, - { (char *)"IplImage___rxor__", _wrap_IplImage___rxor__, METH_VARARGS, (char *)"\n" - "__rxor__(CvScalar arg)\n" - "IplImage___rxor__( self, double arg)\n" - ""}, - { (char *)"IplImage___req__", _wrap_IplImage___req__, METH_VARARGS, (char *)"IplImage___req__( self, double arg)"}, - { (char *)"IplImage___rgt__", _wrap_IplImage___rgt__, METH_VARARGS, (char *)"IplImage___rgt__( self, double arg)"}, - { (char *)"IplImage___rge__", _wrap_IplImage___rge__, METH_VARARGS, (char *)"IplImage___rge__( self, double arg)"}, - { (char *)"IplImage___rlt__", _wrap_IplImage___rlt__, METH_VARARGS, (char *)"IplImage___rlt__( self, double arg)"}, - { (char *)"IplImage___rle__", _wrap_IplImage___rle__, METH_VARARGS, (char *)"IplImage___rle__( self, double arg)"}, - { (char *)"IplImage___rne__", _wrap_IplImage___rne__, METH_VARARGS, (char *)"IplImage___rne__( self, double arg)"}, - { (char *)"IplImage___pow__", _wrap_IplImage___pow__, METH_VARARGS, (char *)"IplImage___pow__( self, double arg)"}, - { (char *)"IplImage___str__", _wrap_IplImage___str__, METH_VARARGS, (char *)"IplImage___str__( self) -> char"}, - { (char *)"IplImage___setitem__", _wrap_IplImage___setitem__, METH_VARARGS, (char *)"\n" - "__setitem__(PyObject object, double val)\n" - "__setitem__(PyObject object, CvPoint val)\n" - "__setitem__(PyObject object, CvPoint2D32f val)\n" - "__setitem__(PyObject object, CvScalar val)\n" - "IplImage___setitem__( self, PyObject object, CvArr arr)\n" - ""}, - { (char *)"IplImage___getitem__", _wrap_IplImage___getitem__, METH_VARARGS, (char *)"IplImage___getitem__( self, PyObject object) -> PyObject"}, - { (char *)"IplImage_swigregister", IplImage_swigregister, METH_VARARGS, NULL}, - { (char *)"IplROI_coi_set", _wrap_IplROI_coi_set, METH_VARARGS, (char *)"IplROI_coi_set( self, int coi)"}, - { (char *)"IplROI_coi_get", _wrap_IplROI_coi_get, METH_VARARGS, (char *)"IplROI_coi_get( self) -> int"}, - { (char *)"IplROI_xOffset_set", _wrap_IplROI_xOffset_set, METH_VARARGS, (char *)"IplROI_xOffset_set( self, int xOffset)"}, - { (char *)"IplROI_xOffset_get", _wrap_IplROI_xOffset_get, METH_VARARGS, (char *)"IplROI_xOffset_get( self) -> int"}, - { (char *)"IplROI_yOffset_set", _wrap_IplROI_yOffset_set, METH_VARARGS, (char *)"IplROI_yOffset_set( self, int yOffset)"}, - { (char *)"IplROI_yOffset_get", _wrap_IplROI_yOffset_get, METH_VARARGS, (char *)"IplROI_yOffset_get( self) -> int"}, - { (char *)"IplROI_width_set", _wrap_IplROI_width_set, METH_VARARGS, (char *)"IplROI_width_set( self, int width)"}, - { (char *)"IplROI_width_get", _wrap_IplROI_width_get, METH_VARARGS, (char *)"IplROI_width_get( self) -> int"}, - { (char *)"IplROI_height_set", _wrap_IplROI_height_set, METH_VARARGS, (char *)"IplROI_height_set( self, int height)"}, - { (char *)"IplROI_height_get", _wrap_IplROI_height_get, METH_VARARGS, (char *)"IplROI_height_get( self) -> int"}, - { (char *)"new_IplROI", _wrap_new_IplROI, METH_VARARGS, (char *)"new_IplROI()"}, - { (char *)"delete_IplROI", _wrap_delete_IplROI, METH_VARARGS, (char *)"delete_IplROI( self)"}, - { (char *)"IplROI_swigregister", IplROI_swigregister, METH_VARARGS, NULL}, - { (char *)"IplConvKernel_nCols_set", _wrap_IplConvKernel_nCols_set, METH_VARARGS, (char *)"IplConvKernel_nCols_set( self, int nCols)"}, - { (char *)"IplConvKernel_nCols_get", _wrap_IplConvKernel_nCols_get, METH_VARARGS, (char *)"IplConvKernel_nCols_get( self) -> int"}, - { (char *)"IplConvKernel_nRows_set", _wrap_IplConvKernel_nRows_set, METH_VARARGS, (char *)"IplConvKernel_nRows_set( self, int nRows)"}, - { (char *)"IplConvKernel_nRows_get", _wrap_IplConvKernel_nRows_get, METH_VARARGS, (char *)"IplConvKernel_nRows_get( self) -> int"}, - { (char *)"IplConvKernel_anchorX_set", _wrap_IplConvKernel_anchorX_set, METH_VARARGS, (char *)"IplConvKernel_anchorX_set( self, int anchorX)"}, - { (char *)"IplConvKernel_anchorX_get", _wrap_IplConvKernel_anchorX_get, METH_VARARGS, (char *)"IplConvKernel_anchorX_get( self) -> int"}, - { (char *)"IplConvKernel_anchorY_set", _wrap_IplConvKernel_anchorY_set, METH_VARARGS, (char *)"IplConvKernel_anchorY_set( self, int anchorY)"}, - { (char *)"IplConvKernel_anchorY_get", _wrap_IplConvKernel_anchorY_get, METH_VARARGS, (char *)"IplConvKernel_anchorY_get( self) -> int"}, - { (char *)"IplConvKernel_values_set", _wrap_IplConvKernel_values_set, METH_VARARGS, (char *)"IplConvKernel_values_set( self, int values)"}, - { (char *)"IplConvKernel_values_get", _wrap_IplConvKernel_values_get, METH_VARARGS, (char *)"IplConvKernel_values_get( self) -> int"}, - { (char *)"IplConvKernel_nShiftR_set", _wrap_IplConvKernel_nShiftR_set, METH_VARARGS, (char *)"IplConvKernel_nShiftR_set( self, int nShiftR)"}, - { (char *)"IplConvKernel_nShiftR_get", _wrap_IplConvKernel_nShiftR_get, METH_VARARGS, (char *)"IplConvKernel_nShiftR_get( self) -> int"}, - { (char *)"delete_IplConvKernel", _wrap_delete_IplConvKernel, METH_VARARGS, (char *)"delete_IplConvKernel( self)"}, - { (char *)"IplConvKernel_swigregister", IplConvKernel_swigregister, METH_VARARGS, NULL}, - { (char *)"IplConvKernelFP_nCols_set", _wrap_IplConvKernelFP_nCols_set, METH_VARARGS, (char *)"IplConvKernelFP_nCols_set( self, int nCols)"}, - { (char *)"IplConvKernelFP_nCols_get", _wrap_IplConvKernelFP_nCols_get, METH_VARARGS, (char *)"IplConvKernelFP_nCols_get( self) -> int"}, - { (char *)"IplConvKernelFP_nRows_set", _wrap_IplConvKernelFP_nRows_set, METH_VARARGS, (char *)"IplConvKernelFP_nRows_set( self, int nRows)"}, - { (char *)"IplConvKernelFP_nRows_get", _wrap_IplConvKernelFP_nRows_get, METH_VARARGS, (char *)"IplConvKernelFP_nRows_get( self) -> int"}, - { (char *)"IplConvKernelFP_anchorX_set", _wrap_IplConvKernelFP_anchorX_set, METH_VARARGS, (char *)"IplConvKernelFP_anchorX_set( self, int anchorX)"}, - { (char *)"IplConvKernelFP_anchorX_get", _wrap_IplConvKernelFP_anchorX_get, METH_VARARGS, (char *)"IplConvKernelFP_anchorX_get( self) -> int"}, - { (char *)"IplConvKernelFP_anchorY_set", _wrap_IplConvKernelFP_anchorY_set, METH_VARARGS, (char *)"IplConvKernelFP_anchorY_set( self, int anchorY)"}, - { (char *)"IplConvKernelFP_anchorY_get", _wrap_IplConvKernelFP_anchorY_get, METH_VARARGS, (char *)"IplConvKernelFP_anchorY_get( self) -> int"}, - { (char *)"IplConvKernelFP_values_set", _wrap_IplConvKernelFP_values_set, METH_VARARGS, (char *)"IplConvKernelFP_values_set( self, float values)"}, - { (char *)"IplConvKernelFP_values_get", _wrap_IplConvKernelFP_values_get, METH_VARARGS, (char *)"IplConvKernelFP_values_get( self) -> float"}, - { (char *)"new_IplConvKernelFP", _wrap_new_IplConvKernelFP, METH_VARARGS, (char *)"new_IplConvKernelFP()"}, - { (char *)"delete_IplConvKernelFP", _wrap_delete_IplConvKernelFP, METH_VARARGS, (char *)"delete_IplConvKernelFP( self)"}, - { (char *)"IplConvKernelFP_swigregister", IplConvKernelFP_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMat_type_set", _wrap_CvMat_type_set, METH_VARARGS, (char *)"CvMat_type_set(CvMat self, int type)"}, - { (char *)"CvMat_type_get", _wrap_CvMat_type_get, METH_VARARGS, (char *)"CvMat_type_get(CvMat self) -> int"}, - { (char *)"CvMat_step_set", _wrap_CvMat_step_set, METH_VARARGS, (char *)"CvMat_step_set(CvMat self, int step)"}, - { (char *)"CvMat_step_get", _wrap_CvMat_step_get, METH_VARARGS, (char *)"CvMat_step_get(CvMat self) -> int"}, - { (char *)"CvMat_refcount_set", _wrap_CvMat_refcount_set, METH_VARARGS, (char *)"CvMat_refcount_set(CvMat self, int refcount)"}, - { (char *)"CvMat_refcount_get", _wrap_CvMat_refcount_get, METH_VARARGS, (char *)"CvMat_refcount_get(CvMat self) -> int"}, - { (char *)"CvMat_hdr_refcount_set", _wrap_CvMat_hdr_refcount_set, METH_VARARGS, (char *)"CvMat_hdr_refcount_set(CvMat self, int hdr_refcount)"}, - { (char *)"CvMat_hdr_refcount_get", _wrap_CvMat_hdr_refcount_get, METH_VARARGS, (char *)"CvMat_hdr_refcount_get(CvMat self) -> int"}, - { (char *)"CvMat_data_get", _wrap_CvMat_data_get, METH_VARARGS, (char *)"CvMat_data_get(CvMat self) -> CvMat_data"}, - { (char *)"delete_CvMat", _wrap_delete_CvMat, METH_VARARGS, (char *)"delete_CvMat(CvMat self)"}, - { (char *)"CvMat_depth_set", _wrap_CvMat_depth_set, METH_VARARGS, (char *)"CvMat_depth_set(CvMat self, int depth)"}, - { (char *)"CvMat_depth_get", _wrap_CvMat_depth_get, METH_VARARGS, (char *)"CvMat_depth_get(CvMat self) -> int"}, - { (char *)"CvMat_nChannels_set", _wrap_CvMat_nChannels_set, METH_VARARGS, (char *)"CvMat_nChannels_set(CvMat self, int nChannels)"}, - { (char *)"CvMat_nChannels_get", _wrap_CvMat_nChannels_get, METH_VARARGS, (char *)"CvMat_nChannels_get(CvMat self) -> int"}, - { (char *)"CvMat_dataOrder_set", _wrap_CvMat_dataOrder_set, METH_VARARGS, (char *)"CvMat_dataOrder_set(CvMat self, int dataOrder)"}, - { (char *)"CvMat_dataOrder_get", _wrap_CvMat_dataOrder_get, METH_VARARGS, (char *)"CvMat_dataOrder_get(CvMat self) -> int"}, - { (char *)"CvMat_origin_set", _wrap_CvMat_origin_set, METH_VARARGS, (char *)"CvMat_origin_set(CvMat self, int origin)"}, - { (char *)"CvMat_origin_get", _wrap_CvMat_origin_get, METH_VARARGS, (char *)"CvMat_origin_get(CvMat self) -> int"}, - { (char *)"CvMat_width_set", _wrap_CvMat_width_set, METH_VARARGS, (char *)"CvMat_width_set(CvMat self, int width)"}, - { (char *)"CvMat_width_get", _wrap_CvMat_width_get, METH_VARARGS, (char *)"CvMat_width_get(CvMat self) -> int"}, - { (char *)"CvMat_height_set", _wrap_CvMat_height_set, METH_VARARGS, (char *)"CvMat_height_set(CvMat self, int height)"}, - { (char *)"CvMat_height_get", _wrap_CvMat_height_get, METH_VARARGS, (char *)"CvMat_height_get(CvMat self) -> int"}, - { (char *)"CvMat_imageSize_set", _wrap_CvMat_imageSize_set, METH_VARARGS, (char *)"CvMat_imageSize_set(CvMat self, int imageSize)"}, - { (char *)"CvMat_imageSize_get", _wrap_CvMat_imageSize_get, METH_VARARGS, (char *)"CvMat_imageSize_get(CvMat self) -> int"}, - { (char *)"CvMat_widthStep_set", _wrap_CvMat_widthStep_set, METH_VARARGS, (char *)"CvMat_widthStep_set(CvMat self, int widthStep)"}, - { (char *)"CvMat_widthStep_get", _wrap_CvMat_widthStep_get, METH_VARARGS, (char *)"CvMat_widthStep_get(CvMat self) -> int"}, - { (char *)"CvMat_rows_set", _wrap_CvMat_rows_set, METH_VARARGS, (char *)"CvMat_rows_set(CvMat self, int rows)"}, - { (char *)"CvMat_rows_get", _wrap_CvMat_rows_get, METH_VARARGS, (char *)"CvMat_rows_get(CvMat self) -> int"}, - { (char *)"CvMat_cols_set", _wrap_CvMat_cols_set, METH_VARARGS, (char *)"CvMat_cols_set(CvMat self, int cols)"}, - { (char *)"CvMat_cols_get", _wrap_CvMat_cols_get, METH_VARARGS, (char *)"CvMat_cols_get(CvMat self) -> int"}, - { (char *)"CvMat___add__", _wrap_CvMat___add__, METH_VARARGS, (char *)"\n" - "__add__(CvArr src) -> CvMat\n" - "CvMat___add__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___iadd__", _wrap_CvMat___iadd__, METH_VARARGS, (char *)"\n" - "__iadd__(CvArr src) -> CvMat\n" - "CvMat___iadd__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___xor__", _wrap_CvMat___xor__, METH_VARARGS, (char *)"\n" - "__xor__(CvArr src) -> CvMat\n" - "CvMat___xor__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___ixor__", _wrap_CvMat___ixor__, METH_VARARGS, (char *)"\n" - "__ixor__(CvArr src) -> CvMat\n" - "CvMat___ixor__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___sub__", _wrap_CvMat___sub__, METH_VARARGS, (char *)"\n" - "__sub__(CvArr src) -> CvMat\n" - "CvMat___sub__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___isub__", _wrap_CvMat___isub__, METH_VARARGS, (char *)"\n" - "__isub__(CvArr src) -> CvMat\n" - "CvMat___isub__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___or__", _wrap_CvMat___or__, METH_VARARGS, (char *)"\n" - "__or__(CvArr src) -> CvMat\n" - "CvMat___or__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___ior__", _wrap_CvMat___ior__, METH_VARARGS, (char *)"\n" - "__ior__(CvArr src) -> CvMat\n" - "CvMat___ior__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___and__", _wrap_CvMat___and__, METH_VARARGS, (char *)"\n" - "__and__(CvArr src) -> CvMat\n" - "CvMat___and__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___iand__", _wrap_CvMat___iand__, METH_VARARGS, (char *)"\n" - "__iand__(CvArr src) -> CvMat\n" - "CvMat___iand__(CvMat self, CvScalar val) -> CvMat\n" - ""}, - { (char *)"CvMat___ge__", _wrap_CvMat___ge__, METH_VARARGS, (char *)"\n" - "__ge__(CvArr src) -> CvMat\n" - "CvMat___ge__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___eq__", _wrap_CvMat___eq__, METH_VARARGS, (char *)"\n" - "__eq__(CvArr src) -> CvMat\n" - "CvMat___eq__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___le__", _wrap_CvMat___le__, METH_VARARGS, (char *)"\n" - "__le__(CvArr src) -> CvMat\n" - "CvMat___le__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___ne__", _wrap_CvMat___ne__, METH_VARARGS, (char *)"\n" - "__ne__(CvArr src) -> CvMat\n" - "CvMat___ne__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___lt__", _wrap_CvMat___lt__, METH_VARARGS, (char *)"\n" - "__lt__(CvArr src) -> CvMat\n" - "CvMat___lt__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___gt__", _wrap_CvMat___gt__, METH_VARARGS, (char *)"\n" - "__gt__(CvArr src) -> CvMat\n" - "CvMat___gt__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___mul__", _wrap_CvMat___mul__, METH_VARARGS, (char *)"\n" - "__mul__(CvArr src) -> CvMat\n" - "CvMat___mul__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___imul__", _wrap_CvMat___imul__, METH_VARARGS, (char *)"\n" - "__imul__(CvArr src) -> CvMat\n" - "CvMat___imul__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___div__", _wrap_CvMat___div__, METH_VARARGS, (char *)"\n" - "__div__(CvArr src) -> CvMat\n" - "CvMat___div__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___idiv__", _wrap_CvMat___idiv__, METH_VARARGS, (char *)"\n" - "__idiv__(CvArr src) -> CvMat\n" - "CvMat___idiv__(CvMat self, double val) -> CvMat\n" - ""}, - { (char *)"CvMat___radd__", _wrap_CvMat___radd__, METH_VARARGS, (char *)"\n" - "__radd__(CvArr arg) -> CvMat\n" - "__radd__(CvScalar arg) -> CvMat\n" - "CvMat___radd__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___rsub__", _wrap_CvMat___rsub__, METH_VARARGS, (char *)"\n" - "__rsub__(CvArr arg) -> CvMat\n" - "__rsub__(CvScalar arg) -> CvMat\n" - "CvMat___rsub__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___rmul__", _wrap_CvMat___rmul__, METH_VARARGS, (char *)"\n" - "__rmul__(CvArr arg) -> CvMat\n" - "CvMat___rmul__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___ror__", _wrap_CvMat___ror__, METH_VARARGS, (char *)"\n" - "__ror__(CvScalar arg) -> CvMat\n" - "CvMat___ror__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___rand__", _wrap_CvMat___rand__, METH_VARARGS, (char *)"\n" - "__rand__(CvScalar arg) -> CvMat\n" - "CvMat___rand__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___rxor__", _wrap_CvMat___rxor__, METH_VARARGS, (char *)"\n" - "__rxor__(CvScalar arg) -> CvMat\n" - "CvMat___rxor__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___req__", _wrap_CvMat___req__, METH_VARARGS, (char *)"CvMat___req__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___rgt__", _wrap_CvMat___rgt__, METH_VARARGS, (char *)"CvMat___rgt__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___rge__", _wrap_CvMat___rge__, METH_VARARGS, (char *)"CvMat___rge__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___rlt__", _wrap_CvMat___rlt__, METH_VARARGS, (char *)"CvMat___rlt__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___rle__", _wrap_CvMat___rle__, METH_VARARGS, (char *)"CvMat___rle__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___rne__", _wrap_CvMat___rne__, METH_VARARGS, (char *)"CvMat___rne__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___rdiv__", _wrap_CvMat___rdiv__, METH_VARARGS, (char *)"\n" - "__rdiv__(CvArr arg) -> CvMat\n" - "CvMat___rdiv__(CvMat self, double arg) -> CvMat\n" - ""}, - { (char *)"CvMat___pow__", _wrap_CvMat___pow__, METH_VARARGS, (char *)"CvMat___pow__(CvMat self, double arg) -> CvMat"}, - { (char *)"CvMat___str__", _wrap_CvMat___str__, METH_VARARGS, (char *)"CvMat___str__(CvMat self) -> char"}, - { (char *)"CvMat___setitem__", _wrap_CvMat___setitem__, METH_VARARGS, (char *)"\n" - "__setitem__(PyObject object, double val)\n" - "__setitem__(PyObject object, CvPoint val)\n" - "__setitem__(PyObject object, CvPoint2D32f val)\n" - "__setitem__(PyObject object, CvScalar val)\n" - "CvMat___setitem__(CvMat self, PyObject object, CvArr arr)\n" - ""}, - { (char *)"CvMat___getitem__", _wrap_CvMat___getitem__, METH_VARARGS, (char *)"CvMat___getitem__(CvMat self, PyObject object) -> PyObject"}, - { (char *)"CvMat___invert__", _wrap_CvMat___invert__, METH_VARARGS, (char *)"CvMat___invert__(CvMat self) -> CvMat"}, - { (char *)"CvMat_imageData_set", _wrap_CvMat_imageData_set, METH_VARARGS, (char *)"CvMat_imageData_set(CvMat self, PyObject imageData)"}, - { (char *)"CvMat_imageData_get", _wrap_CvMat_imageData_get, METH_VARARGS, (char *)"CvMat_imageData_get(CvMat self) -> PyObject"}, - { (char *)"CvMat_swigregister", CvMat_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMat_data_ptr_set", _wrap_CvMat_data_ptr_set, METH_VARARGS, (char *)"CvMat_data_ptr_set(CvMat_data self, uchar ptr)"}, - { (char *)"CvMat_data_ptr_get", _wrap_CvMat_data_ptr_get, METH_VARARGS, (char *)"CvMat_data_ptr_get(CvMat_data self) -> uchar"}, - { (char *)"CvMat_data_s_set", _wrap_CvMat_data_s_set, METH_VARARGS, (char *)"CvMat_data_s_set(CvMat_data self, short s)"}, - { (char *)"CvMat_data_s_get", _wrap_CvMat_data_s_get, METH_VARARGS, (char *)"CvMat_data_s_get(CvMat_data self) -> short"}, - { (char *)"CvMat_data_i_set", _wrap_CvMat_data_i_set, METH_VARARGS, (char *)"CvMat_data_i_set(CvMat_data self, int i)"}, - { (char *)"CvMat_data_i_get", _wrap_CvMat_data_i_get, METH_VARARGS, (char *)"CvMat_data_i_get(CvMat_data self) -> int"}, - { (char *)"CvMat_data_fl_set", _wrap_CvMat_data_fl_set, METH_VARARGS, (char *)"CvMat_data_fl_set(CvMat_data self, float fl)"}, - { (char *)"CvMat_data_fl_get", _wrap_CvMat_data_fl_get, METH_VARARGS, (char *)"CvMat_data_fl_get(CvMat_data self) -> float"}, - { (char *)"CvMat_data_db_set", _wrap_CvMat_data_db_set, METH_VARARGS, (char *)"CvMat_data_db_set(CvMat_data self, double db)"}, - { (char *)"CvMat_data_db_get", _wrap_CvMat_data_db_get, METH_VARARGS, (char *)"CvMat_data_db_get(CvMat_data self) -> double"}, - { (char *)"new_CvMat_data", _wrap_new_CvMat_data, METH_VARARGS, (char *)"new_CvMat_data() -> CvMat_data"}, - { (char *)"delete_CvMat_data", _wrap_delete_CvMat_data, METH_VARARGS, (char *)"delete_CvMat_data(CvMat_data self)"}, - { (char *)"CvMat_data_swigregister", CvMat_data_swigregister, METH_VARARGS, NULL}, - { (char *)"cvMat", _wrap_cvMat, METH_VARARGS, (char *)"\n" - "cvMat(int rows, int cols, int type, void data = None) -> CvMat\n" - "cvMat(int rows, int cols, int type) -> CvMat\n" - ""}, - { (char *)"cvmGet", _wrap_cvmGet, METH_VARARGS, (char *)"cvmGet(CvMat mat, int row, int col) -> double"}, - { (char *)"cvmSet", _wrap_cvmSet, METH_VARARGS, (char *)"cvmSet(CvMat mat, int row, int col, double value)"}, - { (char *)"cvIplDepth", _wrap_cvIplDepth, METH_VARARGS, (char *)"cvIplDepth(int type) -> int"}, - { (char *)"CvMatND_type_set", _wrap_CvMatND_type_set, METH_VARARGS, (char *)"CvMatND_type_set(CvMatND self, int type)"}, - { (char *)"CvMatND_type_get", _wrap_CvMatND_type_get, METH_VARARGS, (char *)"CvMatND_type_get(CvMatND self) -> int"}, - { (char *)"CvMatND_dims_set", _wrap_CvMatND_dims_set, METH_VARARGS, (char *)"CvMatND_dims_set(CvMatND self, int dims)"}, - { (char *)"CvMatND_dims_get", _wrap_CvMatND_dims_get, METH_VARARGS, (char *)"CvMatND_dims_get(CvMatND self) -> int"}, - { (char *)"CvMatND_refcount_set", _wrap_CvMatND_refcount_set, METH_VARARGS, (char *)"CvMatND_refcount_set(CvMatND self, int refcount)"}, - { (char *)"CvMatND_refcount_get", _wrap_CvMatND_refcount_get, METH_VARARGS, (char *)"CvMatND_refcount_get(CvMatND self) -> int"}, - { (char *)"CvMatND_hdr_refcount_set", _wrap_CvMatND_hdr_refcount_set, METH_VARARGS, (char *)"CvMatND_hdr_refcount_set(CvMatND self, int hdr_refcount)"}, - { (char *)"CvMatND_hdr_refcount_get", _wrap_CvMatND_hdr_refcount_get, METH_VARARGS, (char *)"CvMatND_hdr_refcount_get(CvMatND self) -> int"}, - { (char *)"CvMatND_dim_get", _wrap_CvMatND_dim_get, METH_VARARGS, (char *)"CvMatND_dim_get(CvMatND self) -> CvMatND_dim"}, - { (char *)"CvMatND_data_get", _wrap_CvMatND_data_get, METH_VARARGS, (char *)"CvMatND_data_get(CvMatND self) -> CvMatND_data"}, - { (char *)"delete_CvMatND", _wrap_delete_CvMatND, METH_VARARGS, (char *)"delete_CvMatND(CvMatND self)"}, - { (char *)"CvMatND_swigregister", CvMatND_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMatND_dim_size_set", _wrap_CvMatND_dim_size_set, METH_VARARGS, (char *)"CvMatND_dim_size_set(CvMatND_dim self, int size)"}, - { (char *)"CvMatND_dim_size_get", _wrap_CvMatND_dim_size_get, METH_VARARGS, (char *)"CvMatND_dim_size_get(CvMatND_dim self) -> int"}, - { (char *)"CvMatND_dim_step_set", _wrap_CvMatND_dim_step_set, METH_VARARGS, (char *)"CvMatND_dim_step_set(CvMatND_dim self, int step)"}, - { (char *)"CvMatND_dim_step_get", _wrap_CvMatND_dim_step_get, METH_VARARGS, (char *)"CvMatND_dim_step_get(CvMatND_dim self) -> int"}, - { (char *)"new_CvMatND_dim", _wrap_new_CvMatND_dim, METH_VARARGS, (char *)"new_CvMatND_dim() -> CvMatND_dim"}, - { (char *)"delete_CvMatND_dim", _wrap_delete_CvMatND_dim, METH_VARARGS, (char *)"delete_CvMatND_dim(CvMatND_dim self)"}, - { (char *)"CvMatND_dim_swigregister", CvMatND_dim_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMatND_data_ptr_set", _wrap_CvMatND_data_ptr_set, METH_VARARGS, (char *)"CvMatND_data_ptr_set(CvMatND_data self, uchar ptr)"}, - { (char *)"CvMatND_data_ptr_get", _wrap_CvMatND_data_ptr_get, METH_VARARGS, (char *)"CvMatND_data_ptr_get(CvMatND_data self) -> uchar"}, - { (char *)"CvMatND_data_fl_set", _wrap_CvMatND_data_fl_set, METH_VARARGS, (char *)"CvMatND_data_fl_set(CvMatND_data self, float fl)"}, - { (char *)"CvMatND_data_fl_get", _wrap_CvMatND_data_fl_get, METH_VARARGS, (char *)"CvMatND_data_fl_get(CvMatND_data self) -> float"}, - { (char *)"CvMatND_data_db_set", _wrap_CvMatND_data_db_set, METH_VARARGS, (char *)"CvMatND_data_db_set(CvMatND_data self, double db)"}, - { (char *)"CvMatND_data_db_get", _wrap_CvMatND_data_db_get, METH_VARARGS, (char *)"CvMatND_data_db_get(CvMatND_data self) -> double"}, - { (char *)"CvMatND_data_i_set", _wrap_CvMatND_data_i_set, METH_VARARGS, (char *)"CvMatND_data_i_set(CvMatND_data self, int i)"}, - { (char *)"CvMatND_data_i_get", _wrap_CvMatND_data_i_get, METH_VARARGS, (char *)"CvMatND_data_i_get(CvMatND_data self) -> int"}, - { (char *)"CvMatND_data_s_set", _wrap_CvMatND_data_s_set, METH_VARARGS, (char *)"CvMatND_data_s_set(CvMatND_data self, short s)"}, - { (char *)"CvMatND_data_s_get", _wrap_CvMatND_data_s_get, METH_VARARGS, (char *)"CvMatND_data_s_get(CvMatND_data self) -> short"}, - { (char *)"new_CvMatND_data", _wrap_new_CvMatND_data, METH_VARARGS, (char *)"new_CvMatND_data() -> CvMatND_data"}, - { (char *)"delete_CvMatND_data", _wrap_delete_CvMatND_data, METH_VARARGS, (char *)"delete_CvMatND_data(CvMatND_data self)"}, - { (char *)"CvMatND_data_swigregister", CvMatND_data_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSparseMat_type_set", _wrap_CvSparseMat_type_set, METH_VARARGS, (char *)"CvSparseMat_type_set(CvSparseMat self, int type)"}, - { (char *)"CvSparseMat_type_get", _wrap_CvSparseMat_type_get, METH_VARARGS, (char *)"CvSparseMat_type_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_dims_set", _wrap_CvSparseMat_dims_set, METH_VARARGS, (char *)"CvSparseMat_dims_set(CvSparseMat self, int dims)"}, - { (char *)"CvSparseMat_dims_get", _wrap_CvSparseMat_dims_get, METH_VARARGS, (char *)"CvSparseMat_dims_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_refcount_set", _wrap_CvSparseMat_refcount_set, METH_VARARGS, (char *)"CvSparseMat_refcount_set(CvSparseMat self, int refcount)"}, - { (char *)"CvSparseMat_refcount_get", _wrap_CvSparseMat_refcount_get, METH_VARARGS, (char *)"CvSparseMat_refcount_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_hdr_refcount_set", _wrap_CvSparseMat_hdr_refcount_set, METH_VARARGS, (char *)"CvSparseMat_hdr_refcount_set(CvSparseMat self, int hdr_refcount)"}, - { (char *)"CvSparseMat_hdr_refcount_get", _wrap_CvSparseMat_hdr_refcount_get, METH_VARARGS, (char *)"CvSparseMat_hdr_refcount_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_heap_set", _wrap_CvSparseMat_heap_set, METH_VARARGS, (char *)"CvSparseMat_heap_set(CvSparseMat self, CvSet heap)"}, - { (char *)"CvSparseMat_heap_get", _wrap_CvSparseMat_heap_get, METH_VARARGS, (char *)"CvSparseMat_heap_get(CvSparseMat self) -> CvSet"}, - { (char *)"CvSparseMat_hashtable_set", _wrap_CvSparseMat_hashtable_set, METH_VARARGS, (char *)"CvSparseMat_hashtable_set(CvSparseMat self, void hashtable)"}, - { (char *)"CvSparseMat_hashtable_get", _wrap_CvSparseMat_hashtable_get, METH_VARARGS, (char *)"CvSparseMat_hashtable_get(CvSparseMat self) -> void"}, - { (char *)"CvSparseMat_hashsize_set", _wrap_CvSparseMat_hashsize_set, METH_VARARGS, (char *)"CvSparseMat_hashsize_set(CvSparseMat self, int hashsize)"}, - { (char *)"CvSparseMat_hashsize_get", _wrap_CvSparseMat_hashsize_get, METH_VARARGS, (char *)"CvSparseMat_hashsize_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_valoffset_set", _wrap_CvSparseMat_valoffset_set, METH_VARARGS, (char *)"CvSparseMat_valoffset_set(CvSparseMat self, int valoffset)"}, - { (char *)"CvSparseMat_valoffset_get", _wrap_CvSparseMat_valoffset_get, METH_VARARGS, (char *)"CvSparseMat_valoffset_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_idxoffset_set", _wrap_CvSparseMat_idxoffset_set, METH_VARARGS, (char *)"CvSparseMat_idxoffset_set(CvSparseMat self, int idxoffset)"}, - { (char *)"CvSparseMat_idxoffset_get", _wrap_CvSparseMat_idxoffset_get, METH_VARARGS, (char *)"CvSparseMat_idxoffset_get(CvSparseMat self) -> int"}, - { (char *)"CvSparseMat_size_set", _wrap_CvSparseMat_size_set, METH_VARARGS, (char *)"CvSparseMat_size_set(CvSparseMat self, int size)"}, - { (char *)"CvSparseMat_size_get", _wrap_CvSparseMat_size_get, METH_VARARGS, (char *)"CvSparseMat_size_get(CvSparseMat self) -> int"}, - { (char *)"delete_CvSparseMat", _wrap_delete_CvSparseMat, METH_VARARGS, (char *)"delete_CvSparseMat(CvSparseMat self)"}, - { (char *)"CvSparseMat_swigregister", CvSparseMat_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSparseNode_hashval_set", _wrap_CvSparseNode_hashval_set, METH_VARARGS, (char *)"CvSparseNode_hashval_set(CvSparseNode self, unsigned int hashval)"}, - { (char *)"CvSparseNode_hashval_get", _wrap_CvSparseNode_hashval_get, METH_VARARGS, (char *)"CvSparseNode_hashval_get(CvSparseNode self) -> unsigned int"}, - { (char *)"CvSparseNode_next_set", _wrap_CvSparseNode_next_set, METH_VARARGS, (char *)"CvSparseNode_next_set(CvSparseNode self, CvSparseNode next)"}, - { (char *)"CvSparseNode_next_get", _wrap_CvSparseNode_next_get, METH_VARARGS, (char *)"CvSparseNode_next_get(CvSparseNode self) -> CvSparseNode"}, - { (char *)"new_CvSparseNode", _wrap_new_CvSparseNode, METH_VARARGS, (char *)"new_CvSparseNode() -> CvSparseNode"}, - { (char *)"delete_CvSparseNode", _wrap_delete_CvSparseNode, METH_VARARGS, (char *)"delete_CvSparseNode(CvSparseNode self)"}, - { (char *)"CvSparseNode_swigregister", CvSparseNode_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSparseMatIterator_mat_set", _wrap_CvSparseMatIterator_mat_set, METH_VARARGS, (char *)"CvSparseMatIterator_mat_set(CvSparseMatIterator self, CvSparseMat mat)"}, - { (char *)"CvSparseMatIterator_mat_get", _wrap_CvSparseMatIterator_mat_get, METH_VARARGS, (char *)"CvSparseMatIterator_mat_get(CvSparseMatIterator self) -> CvSparseMat"}, - { (char *)"CvSparseMatIterator_node_set", _wrap_CvSparseMatIterator_node_set, METH_VARARGS, (char *)"CvSparseMatIterator_node_set(CvSparseMatIterator self, CvSparseNode node)"}, - { (char *)"CvSparseMatIterator_node_get", _wrap_CvSparseMatIterator_node_get, METH_VARARGS, (char *)"CvSparseMatIterator_node_get(CvSparseMatIterator self) -> CvSparseNode"}, - { (char *)"CvSparseMatIterator_curidx_set", _wrap_CvSparseMatIterator_curidx_set, METH_VARARGS, (char *)"CvSparseMatIterator_curidx_set(CvSparseMatIterator self, int curidx)"}, - { (char *)"CvSparseMatIterator_curidx_get", _wrap_CvSparseMatIterator_curidx_get, METH_VARARGS, (char *)"CvSparseMatIterator_curidx_get(CvSparseMatIterator self) -> int"}, - { (char *)"new_CvSparseMatIterator", _wrap_new_CvSparseMatIterator, METH_VARARGS, (char *)"new_CvSparseMatIterator() -> CvSparseMatIterator"}, - { (char *)"delete_CvSparseMatIterator", _wrap_delete_CvSparseMatIterator, METH_VARARGS, (char *)"delete_CvSparseMatIterator(CvSparseMatIterator self)"}, - { (char *)"CvSparseMatIterator_swigregister", CvSparseMatIterator_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHistogram_type_set", _wrap_CvHistogram_type_set, METH_VARARGS, (char *)"CvHistogram_type_set(CvHistogram self, int type)"}, - { (char *)"CvHistogram_type_get", _wrap_CvHistogram_type_get, METH_VARARGS, (char *)"CvHistogram_type_get(CvHistogram self) -> int"}, - { (char *)"CvHistogram_bins_set", _wrap_CvHistogram_bins_set, METH_VARARGS, (char *)"CvHistogram_bins_set(CvHistogram self, CvArr bins)"}, - { (char *)"CvHistogram_bins_get", _wrap_CvHistogram_bins_get, METH_VARARGS, (char *)"CvHistogram_bins_get(CvHistogram self) -> CvArr"}, - { (char *)"CvHistogram_thresh_set", _wrap_CvHistogram_thresh_set, METH_VARARGS, (char *)"CvHistogram_thresh_set(CvHistogram self, float thresh)"}, - { (char *)"CvHistogram_thresh_get", _wrap_CvHistogram_thresh_get, METH_VARARGS, (char *)"CvHistogram_thresh_get(CvHistogram self) -> float"}, - { (char *)"CvHistogram_thresh2_set", _wrap_CvHistogram_thresh2_set, METH_VARARGS, (char *)"CvHistogram_thresh2_set(CvHistogram self, float thresh2)"}, - { (char *)"CvHistogram_thresh2_get", _wrap_CvHistogram_thresh2_get, METH_VARARGS, (char *)"CvHistogram_thresh2_get(CvHistogram self) -> float"}, - { (char *)"CvHistogram_mat_set", _wrap_CvHistogram_mat_set, METH_VARARGS, (char *)"CvHistogram_mat_set(CvHistogram self, CvMatND mat)"}, - { (char *)"CvHistogram_mat_get", _wrap_CvHistogram_mat_get, METH_VARARGS, (char *)"CvHistogram_mat_get(CvHistogram self) -> CvMatND"}, - { (char *)"delete_CvHistogram", _wrap_delete_CvHistogram, METH_VARARGS, (char *)"delete_CvHistogram(CvHistogram self)"}, - { (char *)"CvHistogram_swigregister", CvHistogram_swigregister, METH_VARARGS, NULL}, - { (char *)"CvRect_x_set", _wrap_CvRect_x_set, METH_VARARGS, (char *)"CvRect_x_set(CvRect self, int x)"}, - { (char *)"CvRect_x_get", _wrap_CvRect_x_get, METH_VARARGS, (char *)"CvRect_x_get(CvRect self) -> int"}, - { (char *)"CvRect_y_set", _wrap_CvRect_y_set, METH_VARARGS, (char *)"CvRect_y_set(CvRect self, int y)"}, - { (char *)"CvRect_y_get", _wrap_CvRect_y_get, METH_VARARGS, (char *)"CvRect_y_get(CvRect self) -> int"}, - { (char *)"CvRect_width_set", _wrap_CvRect_width_set, METH_VARARGS, (char *)"CvRect_width_set(CvRect self, int width)"}, - { (char *)"CvRect_width_get", _wrap_CvRect_width_get, METH_VARARGS, (char *)"CvRect_width_get(CvRect self) -> int"}, - { (char *)"CvRect_height_set", _wrap_CvRect_height_set, METH_VARARGS, (char *)"CvRect_height_set(CvRect self, int height)"}, - { (char *)"CvRect_height_get", _wrap_CvRect_height_get, METH_VARARGS, (char *)"CvRect_height_get(CvRect self) -> int"}, - { (char *)"new_CvRect", _wrap_new_CvRect, METH_VARARGS, (char *)"new_CvRect() -> CvRect"}, - { (char *)"delete_CvRect", _wrap_delete_CvRect, METH_VARARGS, (char *)"delete_CvRect(CvRect self)"}, - { (char *)"CvRect_swigregister", CvRect_swigregister, METH_VARARGS, NULL}, - { (char *)"cvRect", _wrap_cvRect, METH_VARARGS, (char *)"cvRect(int x, int y, int width, int height) -> CvRect"}, - { (char *)"cvRectToROI", _wrap_cvRectToROI, METH_VARARGS, (char *)"cvRectToROI(CvRect rect, int coi)"}, - { (char *)"cvROIToRect", _wrap_cvROIToRect, METH_VARARGS, (char *)"cvROIToRect( roi) -> CvRect"}, - { (char *)"CvTermCriteria_type_set", _wrap_CvTermCriteria_type_set, METH_VARARGS, (char *)"CvTermCriteria_type_set(CvTermCriteria self, int type)"}, - { (char *)"CvTermCriteria_type_get", _wrap_CvTermCriteria_type_get, METH_VARARGS, (char *)"CvTermCriteria_type_get(CvTermCriteria self) -> int"}, - { (char *)"CvTermCriteria_max_iter_set", _wrap_CvTermCriteria_max_iter_set, METH_VARARGS, (char *)"CvTermCriteria_max_iter_set(CvTermCriteria self, int max_iter)"}, - { (char *)"CvTermCriteria_max_iter_get", _wrap_CvTermCriteria_max_iter_get, METH_VARARGS, (char *)"CvTermCriteria_max_iter_get(CvTermCriteria self) -> int"}, - { (char *)"CvTermCriteria_epsilon_set", _wrap_CvTermCriteria_epsilon_set, METH_VARARGS, (char *)"CvTermCriteria_epsilon_set(CvTermCriteria self, double epsilon)"}, - { (char *)"CvTermCriteria_epsilon_get", _wrap_CvTermCriteria_epsilon_get, METH_VARARGS, (char *)"CvTermCriteria_epsilon_get(CvTermCriteria self) -> double"}, - { (char *)"new_CvTermCriteria", _wrap_new_CvTermCriteria, METH_VARARGS, (char *)"new_CvTermCriteria() -> CvTermCriteria"}, - { (char *)"delete_CvTermCriteria", _wrap_delete_CvTermCriteria, METH_VARARGS, (char *)"delete_CvTermCriteria(CvTermCriteria self)"}, - { (char *)"CvTermCriteria_swigregister", CvTermCriteria_swigregister, METH_VARARGS, NULL}, - { (char *)"cvTermCriteria", _wrap_cvTermCriteria, METH_VARARGS, (char *)"cvTermCriteria(int type, int max_iter, double epsilon) -> CvTermCriteria"}, - { (char *)"CvPoint_x_set", _wrap_CvPoint_x_set, METH_VARARGS, (char *)"CvPoint_x_set(CvPoint self, int x)"}, - { (char *)"CvPoint_x_get", _wrap_CvPoint_x_get, METH_VARARGS, (char *)"CvPoint_x_get(CvPoint self) -> int"}, - { (char *)"CvPoint_y_set", _wrap_CvPoint_y_set, METH_VARARGS, (char *)"CvPoint_y_set(CvPoint self, int y)"}, - { (char *)"CvPoint_y_get", _wrap_CvPoint_y_get, METH_VARARGS, (char *)"CvPoint_y_get(CvPoint self) -> int"}, - { (char *)"CvPoint___str__", _wrap_CvPoint___str__, METH_VARARGS, (char *)"CvPoint___str__(CvPoint self) -> char"}, - { (char *)"CvPoint___repr__", _wrap_CvPoint___repr__, METH_VARARGS, (char *)"CvPoint___repr__(CvPoint self) -> char"}, - { (char *)"new_CvPoint", _wrap_new_CvPoint, METH_VARARGS, (char *)"new_CvPoint() -> CvPoint"}, - { (char *)"delete_CvPoint", _wrap_delete_CvPoint, METH_VARARGS, (char *)"delete_CvPoint(CvPoint self)"}, - { (char *)"CvPoint_swigregister", CvPoint_swigregister, METH_VARARGS, NULL}, - { (char *)"cvPoint", _wrap_cvPoint, METH_VARARGS, (char *)"cvPoint(int x, int y) -> CvPoint"}, - { (char *)"CvPoint2D32f_x_set", _wrap_CvPoint2D32f_x_set, METH_VARARGS, (char *)"CvPoint2D32f_x_set(CvPoint2D32f self, float x)"}, - { (char *)"CvPoint2D32f_x_get", _wrap_CvPoint2D32f_x_get, METH_VARARGS, (char *)"CvPoint2D32f_x_get(CvPoint2D32f self) -> float"}, - { (char *)"CvPoint2D32f_y_set", _wrap_CvPoint2D32f_y_set, METH_VARARGS, (char *)"CvPoint2D32f_y_set(CvPoint2D32f self, float y)"}, - { (char *)"CvPoint2D32f_y_get", _wrap_CvPoint2D32f_y_get, METH_VARARGS, (char *)"CvPoint2D32f_y_get(CvPoint2D32f self) -> float"}, - { (char *)"CvPoint2D32f___str__", _wrap_CvPoint2D32f___str__, METH_VARARGS, (char *)"CvPoint2D32f___str__(CvPoint2D32f self) -> char"}, - { (char *)"CvPoint2D32f___repr__", _wrap_CvPoint2D32f___repr__, METH_VARARGS, (char *)"CvPoint2D32f___repr__(CvPoint2D32f self) -> char"}, - { (char *)"new_CvPoint2D32f", _wrap_new_CvPoint2D32f, METH_VARARGS, (char *)"new_CvPoint2D32f() -> CvPoint2D32f"}, - { (char *)"delete_CvPoint2D32f", _wrap_delete_CvPoint2D32f, METH_VARARGS, (char *)"delete_CvPoint2D32f(CvPoint2D32f self)"}, - { (char *)"CvPoint2D32f_swigregister", CvPoint2D32f_swigregister, METH_VARARGS, NULL}, - { (char *)"cvPoint2D32f", _wrap_cvPoint2D32f, METH_VARARGS, (char *)"cvPoint2D32f(double x, double y) -> CvPoint2D32f"}, - { (char *)"cvPointTo32f", _wrap_cvPointTo32f, METH_VARARGS, (char *)"cvPointTo32f(CvPoint point) -> CvPoint2D32f"}, - { (char *)"cvPointFrom32f", _wrap_cvPointFrom32f, METH_VARARGS, (char *)"cvPointFrom32f(CvPoint2D32f point) -> CvPoint"}, - { (char *)"CvPoint3D32f_x_set", _wrap_CvPoint3D32f_x_set, METH_VARARGS, (char *)"CvPoint3D32f_x_set(CvPoint3D32f self, float x)"}, - { (char *)"CvPoint3D32f_x_get", _wrap_CvPoint3D32f_x_get, METH_VARARGS, (char *)"CvPoint3D32f_x_get(CvPoint3D32f self) -> float"}, - { (char *)"CvPoint3D32f_y_set", _wrap_CvPoint3D32f_y_set, METH_VARARGS, (char *)"CvPoint3D32f_y_set(CvPoint3D32f self, float y)"}, - { (char *)"CvPoint3D32f_y_get", _wrap_CvPoint3D32f_y_get, METH_VARARGS, (char *)"CvPoint3D32f_y_get(CvPoint3D32f self) -> float"}, - { (char *)"CvPoint3D32f_z_set", _wrap_CvPoint3D32f_z_set, METH_VARARGS, (char *)"CvPoint3D32f_z_set(CvPoint3D32f self, float z)"}, - { (char *)"CvPoint3D32f_z_get", _wrap_CvPoint3D32f_z_get, METH_VARARGS, (char *)"CvPoint3D32f_z_get(CvPoint3D32f self) -> float"}, - { (char *)"new_CvPoint3D32f", _wrap_new_CvPoint3D32f, METH_VARARGS, (char *)"new_CvPoint3D32f() -> CvPoint3D32f"}, - { (char *)"delete_CvPoint3D32f", _wrap_delete_CvPoint3D32f, METH_VARARGS, (char *)"delete_CvPoint3D32f(CvPoint3D32f self)"}, - { (char *)"CvPoint3D32f_swigregister", CvPoint3D32f_swigregister, METH_VARARGS, NULL}, - { (char *)"cvPoint3D32f", _wrap_cvPoint3D32f, METH_VARARGS, (char *)"cvPoint3D32f(double x, double y, double z) -> CvPoint3D32f"}, - { (char *)"CvPoint2D64f_x_set", _wrap_CvPoint2D64f_x_set, METH_VARARGS, (char *)"CvPoint2D64f_x_set(CvPoint2D64f self, double x)"}, - { (char *)"CvPoint2D64f_x_get", _wrap_CvPoint2D64f_x_get, METH_VARARGS, (char *)"CvPoint2D64f_x_get(CvPoint2D64f self) -> double"}, - { (char *)"CvPoint2D64f_y_set", _wrap_CvPoint2D64f_y_set, METH_VARARGS, (char *)"CvPoint2D64f_y_set(CvPoint2D64f self, double y)"}, - { (char *)"CvPoint2D64f_y_get", _wrap_CvPoint2D64f_y_get, METH_VARARGS, (char *)"CvPoint2D64f_y_get(CvPoint2D64f self) -> double"}, - { (char *)"new_CvPoint2D64f", _wrap_new_CvPoint2D64f, METH_VARARGS, (char *)"new_CvPoint2D64f() -> CvPoint2D64f"}, - { (char *)"delete_CvPoint2D64f", _wrap_delete_CvPoint2D64f, METH_VARARGS, (char *)"delete_CvPoint2D64f(CvPoint2D64f self)"}, - { (char *)"CvPoint2D64f_swigregister", CvPoint2D64f_swigregister, METH_VARARGS, NULL}, - { (char *)"cvPoint2D64f", _wrap_cvPoint2D64f, METH_VARARGS, (char *)"cvPoint2D64f(double x, double y) -> CvPoint2D64f"}, - { (char *)"CvPoint3D64f_x_set", _wrap_CvPoint3D64f_x_set, METH_VARARGS, (char *)"CvPoint3D64f_x_set(CvPoint3D64f self, double x)"}, - { (char *)"CvPoint3D64f_x_get", _wrap_CvPoint3D64f_x_get, METH_VARARGS, (char *)"CvPoint3D64f_x_get(CvPoint3D64f self) -> double"}, - { (char *)"CvPoint3D64f_y_set", _wrap_CvPoint3D64f_y_set, METH_VARARGS, (char *)"CvPoint3D64f_y_set(CvPoint3D64f self, double y)"}, - { (char *)"CvPoint3D64f_y_get", _wrap_CvPoint3D64f_y_get, METH_VARARGS, (char *)"CvPoint3D64f_y_get(CvPoint3D64f self) -> double"}, - { (char *)"CvPoint3D64f_z_set", _wrap_CvPoint3D64f_z_set, METH_VARARGS, (char *)"CvPoint3D64f_z_set(CvPoint3D64f self, double z)"}, - { (char *)"CvPoint3D64f_z_get", _wrap_CvPoint3D64f_z_get, METH_VARARGS, (char *)"CvPoint3D64f_z_get(CvPoint3D64f self) -> double"}, - { (char *)"new_CvPoint3D64f", _wrap_new_CvPoint3D64f, METH_VARARGS, (char *)"new_CvPoint3D64f() -> CvPoint3D64f"}, - { (char *)"delete_CvPoint3D64f", _wrap_delete_CvPoint3D64f, METH_VARARGS, (char *)"delete_CvPoint3D64f(CvPoint3D64f self)"}, - { (char *)"CvPoint3D64f_swigregister", CvPoint3D64f_swigregister, METH_VARARGS, NULL}, - { (char *)"cvPoint3D64f", _wrap_cvPoint3D64f, METH_VARARGS, (char *)"cvPoint3D64f(double x, double y, double z) -> CvPoint3D64f"}, - { (char *)"CvSize_width_set", _wrap_CvSize_width_set, METH_VARARGS, (char *)"CvSize_width_set(CvSize self, int width)"}, - { (char *)"CvSize_width_get", _wrap_CvSize_width_get, METH_VARARGS, (char *)"CvSize_width_get(CvSize self) -> int"}, - { (char *)"CvSize_height_set", _wrap_CvSize_height_set, METH_VARARGS, (char *)"CvSize_height_set(CvSize self, int height)"}, - { (char *)"CvSize_height_get", _wrap_CvSize_height_get, METH_VARARGS, (char *)"CvSize_height_get(CvSize self) -> int"}, - { (char *)"new_CvSize", _wrap_new_CvSize, METH_VARARGS, (char *)"new_CvSize() -> CvSize"}, - { (char *)"delete_CvSize", _wrap_delete_CvSize, METH_VARARGS, (char *)"delete_CvSize(CvSize self)"}, - { (char *)"CvSize_swigregister", CvSize_swigregister, METH_VARARGS, NULL}, - { (char *)"cvSize", _wrap_cvSize, METH_VARARGS, (char *)"cvSize(int width, int height) -> CvSize"}, - { (char *)"CvSize2D32f_width_set", _wrap_CvSize2D32f_width_set, METH_VARARGS, (char *)"CvSize2D32f_width_set(CvSize2D32f self, float width)"}, - { (char *)"CvSize2D32f_width_get", _wrap_CvSize2D32f_width_get, METH_VARARGS, (char *)"CvSize2D32f_width_get(CvSize2D32f self) -> float"}, - { (char *)"CvSize2D32f_height_set", _wrap_CvSize2D32f_height_set, METH_VARARGS, (char *)"CvSize2D32f_height_set(CvSize2D32f self, float height)"}, - { (char *)"CvSize2D32f_height_get", _wrap_CvSize2D32f_height_get, METH_VARARGS, (char *)"CvSize2D32f_height_get(CvSize2D32f self) -> float"}, - { (char *)"new_CvSize2D32f", _wrap_new_CvSize2D32f, METH_VARARGS, (char *)"new_CvSize2D32f() -> CvSize2D32f"}, - { (char *)"delete_CvSize2D32f", _wrap_delete_CvSize2D32f, METH_VARARGS, (char *)"delete_CvSize2D32f(CvSize2D32f self)"}, - { (char *)"CvSize2D32f_swigregister", CvSize2D32f_swigregister, METH_VARARGS, NULL}, - { (char *)"cvSize2D32f", _wrap_cvSize2D32f, METH_VARARGS, (char *)"cvSize2D32f(double width, double height) -> CvSize2D32f"}, - { (char *)"CvBox2D_center_set", _wrap_CvBox2D_center_set, METH_VARARGS, (char *)"CvBox2D_center_set(CvBox2D self, CvPoint2D32f center)"}, - { (char *)"CvBox2D_center_get", _wrap_CvBox2D_center_get, METH_VARARGS, (char *)"CvBox2D_center_get(CvBox2D self) -> CvPoint2D32f"}, - { (char *)"CvBox2D_size_set", _wrap_CvBox2D_size_set, METH_VARARGS, (char *)"CvBox2D_size_set(CvBox2D self, CvSize2D32f size)"}, - { (char *)"CvBox2D_size_get", _wrap_CvBox2D_size_get, METH_VARARGS, (char *)"CvBox2D_size_get(CvBox2D self) -> CvSize2D32f"}, - { (char *)"CvBox2D_angle_set", _wrap_CvBox2D_angle_set, METH_VARARGS, (char *)"CvBox2D_angle_set(CvBox2D self, float angle)"}, - { (char *)"CvBox2D_angle_get", _wrap_CvBox2D_angle_get, METH_VARARGS, (char *)"CvBox2D_angle_get(CvBox2D self) -> float"}, - { (char *)"new_CvBox2D", _wrap_new_CvBox2D, METH_VARARGS, (char *)"new_CvBox2D() -> CvBox2D"}, - { (char *)"delete_CvBox2D", _wrap_delete_CvBox2D, METH_VARARGS, (char *)"delete_CvBox2D(CvBox2D self)"}, - { (char *)"CvBox2D_swigregister", CvBox2D_swigregister, METH_VARARGS, NULL}, - { (char *)"CvLineIterator_ptr_set", _wrap_CvLineIterator_ptr_set, METH_VARARGS, (char *)"CvLineIterator_ptr_set(CvLineIterator self, uchar ptr)"}, - { (char *)"CvLineIterator_ptr_get", _wrap_CvLineIterator_ptr_get, METH_VARARGS, (char *)"CvLineIterator_ptr_get(CvLineIterator self) -> uchar"}, - { (char *)"CvLineIterator_err_set", _wrap_CvLineIterator_err_set, METH_VARARGS, (char *)"CvLineIterator_err_set(CvLineIterator self, int err)"}, - { (char *)"CvLineIterator_err_get", _wrap_CvLineIterator_err_get, METH_VARARGS, (char *)"CvLineIterator_err_get(CvLineIterator self) -> int"}, - { (char *)"CvLineIterator_plus_delta_set", _wrap_CvLineIterator_plus_delta_set, METH_VARARGS, (char *)"CvLineIterator_plus_delta_set(CvLineIterator self, int plus_delta)"}, - { (char *)"CvLineIterator_plus_delta_get", _wrap_CvLineIterator_plus_delta_get, METH_VARARGS, (char *)"CvLineIterator_plus_delta_get(CvLineIterator self) -> int"}, - { (char *)"CvLineIterator_minus_delta_set", _wrap_CvLineIterator_minus_delta_set, METH_VARARGS, (char *)"CvLineIterator_minus_delta_set(CvLineIterator self, int minus_delta)"}, - { (char *)"CvLineIterator_minus_delta_get", _wrap_CvLineIterator_minus_delta_get, METH_VARARGS, (char *)"CvLineIterator_minus_delta_get(CvLineIterator self) -> int"}, - { (char *)"CvLineIterator_plus_step_set", _wrap_CvLineIterator_plus_step_set, METH_VARARGS, (char *)"CvLineIterator_plus_step_set(CvLineIterator self, int plus_step)"}, - { (char *)"CvLineIterator_plus_step_get", _wrap_CvLineIterator_plus_step_get, METH_VARARGS, (char *)"CvLineIterator_plus_step_get(CvLineIterator self) -> int"}, - { (char *)"CvLineIterator_minus_step_set", _wrap_CvLineIterator_minus_step_set, METH_VARARGS, (char *)"CvLineIterator_minus_step_set(CvLineIterator self, int minus_step)"}, - { (char *)"CvLineIterator_minus_step_get", _wrap_CvLineIterator_minus_step_get, METH_VARARGS, (char *)"CvLineIterator_minus_step_get(CvLineIterator self) -> int"}, - { (char *)"new_CvLineIterator", _wrap_new_CvLineIterator, METH_VARARGS, (char *)"new_CvLineIterator() -> CvLineIterator"}, - { (char *)"delete_CvLineIterator", _wrap_delete_CvLineIterator, METH_VARARGS, (char *)"delete_CvLineIterator(CvLineIterator self)"}, - { (char *)"CvLineIterator_swigregister", CvLineIterator_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSlice_start_index_set", _wrap_CvSlice_start_index_set, METH_VARARGS, (char *)"CvSlice_start_index_set(CvSlice self, int start_index)"}, - { (char *)"CvSlice_start_index_get", _wrap_CvSlice_start_index_get, METH_VARARGS, (char *)"CvSlice_start_index_get(CvSlice self) -> int"}, - { (char *)"CvSlice_end_index_set", _wrap_CvSlice_end_index_set, METH_VARARGS, (char *)"CvSlice_end_index_set(CvSlice self, int end_index)"}, - { (char *)"CvSlice_end_index_get", _wrap_CvSlice_end_index_get, METH_VARARGS, (char *)"CvSlice_end_index_get(CvSlice self) -> int"}, - { (char *)"new_CvSlice", _wrap_new_CvSlice, METH_VARARGS, (char *)"new_CvSlice() -> CvSlice"}, - { (char *)"delete_CvSlice", _wrap_delete_CvSlice, METH_VARARGS, (char *)"delete_CvSlice(CvSlice self)"}, - { (char *)"CvSlice_swigregister", CvSlice_swigregister, METH_VARARGS, NULL}, - { (char *)"cvSlice", _wrap_cvSlice, METH_VARARGS, (char *)"cvSlice(int start, int end) -> CvSlice"}, - { (char *)"CvScalar_val_set", _wrap_CvScalar_val_set, METH_VARARGS, (char *)"CvScalar_val_set(CvScalar self, double val)"}, - { (char *)"CvScalar_val_get", _wrap_CvScalar_val_get, METH_VARARGS, (char *)"CvScalar_val_get(CvScalar self) -> double"}, - { (char *)"CvScalar___str__", _wrap_CvScalar___str__, METH_VARARGS, (char *)"CvScalar___str__(CvScalar self) -> char"}, - { (char *)"CvScalar___repr__", _wrap_CvScalar___repr__, METH_VARARGS, (char *)"CvScalar___repr__(CvScalar self) -> char"}, - { (char *)"CvScalar___getitem__", _wrap_CvScalar___getitem__, METH_VARARGS, (char *)"CvScalar___getitem__(CvScalar self, int index) -> double"}, - { (char *)"CvScalar___setitem__", _wrap_CvScalar___setitem__, METH_VARARGS, (char *)"CvScalar___setitem__(CvScalar self, int index, double value)"}, - { (char *)"new_CvScalar", _wrap_new_CvScalar, METH_VARARGS, (char *)"new_CvScalar() -> CvScalar"}, - { (char *)"delete_CvScalar", _wrap_delete_CvScalar, METH_VARARGS, (char *)"delete_CvScalar(CvScalar self)"}, - { (char *)"CvScalar_swigregister", CvScalar_swigregister, METH_VARARGS, NULL}, - { (char *)"cvScalar", _wrap_cvScalar, METH_VARARGS, (char *)"\n" - "cvScalar(double val0, double val1 = 0, double val2 = 0, double val3 = 0) -> CvScalar\n" - "cvScalar(double val0, double val1 = 0, double val2 = 0) -> CvScalar\n" - "cvScalar(double val0, double val1 = 0) -> CvScalar\n" - "cvScalar(double val0) -> CvScalar\n" - ""}, - { (char *)"cvRealScalar", _wrap_cvRealScalar, METH_VARARGS, (char *)"cvRealScalar(double val0) -> CvScalar"}, - { (char *)"cvScalarAll", _wrap_cvScalarAll, METH_VARARGS, (char *)"cvScalarAll(double val0123) -> CvScalar"}, - { (char *)"CvMemBlock_prev_set", _wrap_CvMemBlock_prev_set, METH_VARARGS, (char *)"CvMemBlock_prev_set(CvMemBlock self, CvMemBlock prev)"}, - { (char *)"CvMemBlock_prev_get", _wrap_CvMemBlock_prev_get, METH_VARARGS, (char *)"CvMemBlock_prev_get(CvMemBlock self) -> CvMemBlock"}, - { (char *)"CvMemBlock_next_set", _wrap_CvMemBlock_next_set, METH_VARARGS, (char *)"CvMemBlock_next_set(CvMemBlock self, CvMemBlock next)"}, - { (char *)"CvMemBlock_next_get", _wrap_CvMemBlock_next_get, METH_VARARGS, (char *)"CvMemBlock_next_get(CvMemBlock self) -> CvMemBlock"}, - { (char *)"new_CvMemBlock", _wrap_new_CvMemBlock, METH_VARARGS, (char *)"new_CvMemBlock() -> CvMemBlock"}, - { (char *)"delete_CvMemBlock", _wrap_delete_CvMemBlock, METH_VARARGS, (char *)"delete_CvMemBlock(CvMemBlock self)"}, - { (char *)"CvMemBlock_swigregister", CvMemBlock_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMemStorage_signature_set", _wrap_CvMemStorage_signature_set, METH_VARARGS, (char *)"CvMemStorage_signature_set(CvMemStorage self, int signature)"}, - { (char *)"CvMemStorage_signature_get", _wrap_CvMemStorage_signature_get, METH_VARARGS, (char *)"CvMemStorage_signature_get(CvMemStorage self) -> int"}, - { (char *)"CvMemStorage_bottom_set", _wrap_CvMemStorage_bottom_set, METH_VARARGS, (char *)"CvMemStorage_bottom_set(CvMemStorage self, CvMemBlock bottom)"}, - { (char *)"CvMemStorage_bottom_get", _wrap_CvMemStorage_bottom_get, METH_VARARGS, (char *)"CvMemStorage_bottom_get(CvMemStorage self) -> CvMemBlock"}, - { (char *)"CvMemStorage_top_set", _wrap_CvMemStorage_top_set, METH_VARARGS, (char *)"CvMemStorage_top_set(CvMemStorage self, CvMemBlock top)"}, - { (char *)"CvMemStorage_top_get", _wrap_CvMemStorage_top_get, METH_VARARGS, (char *)"CvMemStorage_top_get(CvMemStorage self) -> CvMemBlock"}, - { (char *)"CvMemStorage_parent_set", _wrap_CvMemStorage_parent_set, METH_VARARGS, (char *)"CvMemStorage_parent_set(CvMemStorage self, CvMemStorage parent)"}, - { (char *)"CvMemStorage_parent_get", _wrap_CvMemStorage_parent_get, METH_VARARGS, (char *)"CvMemStorage_parent_get(CvMemStorage self) -> CvMemStorage"}, - { (char *)"CvMemStorage_block_size_set", _wrap_CvMemStorage_block_size_set, METH_VARARGS, (char *)"CvMemStorage_block_size_set(CvMemStorage self, int block_size)"}, - { (char *)"CvMemStorage_block_size_get", _wrap_CvMemStorage_block_size_get, METH_VARARGS, (char *)"CvMemStorage_block_size_get(CvMemStorage self) -> int"}, - { (char *)"CvMemStorage_free_space_set", _wrap_CvMemStorage_free_space_set, METH_VARARGS, (char *)"CvMemStorage_free_space_set(CvMemStorage self, int free_space)"}, - { (char *)"CvMemStorage_free_space_get", _wrap_CvMemStorage_free_space_get, METH_VARARGS, (char *)"CvMemStorage_free_space_get(CvMemStorage self) -> int"}, - { (char *)"delete_CvMemStorage", _wrap_delete_CvMemStorage, METH_VARARGS, (char *)"delete_CvMemStorage(CvMemStorage self)"}, - { (char *)"CvMemStorage_swigregister", CvMemStorage_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMemStoragePos_top_set", _wrap_CvMemStoragePos_top_set, METH_VARARGS, (char *)"CvMemStoragePos_top_set(CvMemStoragePos self, CvMemBlock top)"}, - { (char *)"CvMemStoragePos_top_get", _wrap_CvMemStoragePos_top_get, METH_VARARGS, (char *)"CvMemStoragePos_top_get(CvMemStoragePos self) -> CvMemBlock"}, - { (char *)"CvMemStoragePos_free_space_set", _wrap_CvMemStoragePos_free_space_set, METH_VARARGS, (char *)"CvMemStoragePos_free_space_set(CvMemStoragePos self, int free_space)"}, - { (char *)"CvMemStoragePos_free_space_get", _wrap_CvMemStoragePos_free_space_get, METH_VARARGS, (char *)"CvMemStoragePos_free_space_get(CvMemStoragePos self) -> int"}, - { (char *)"new_CvMemStoragePos", _wrap_new_CvMemStoragePos, METH_VARARGS, (char *)"new_CvMemStoragePos() -> CvMemStoragePos"}, - { (char *)"delete_CvMemStoragePos", _wrap_delete_CvMemStoragePos, METH_VARARGS, (char *)"delete_CvMemStoragePos(CvMemStoragePos self)"}, - { (char *)"CvMemStoragePos_swigregister", CvMemStoragePos_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeqBlock_prev_set", _wrap_CvSeqBlock_prev_set, METH_VARARGS, (char *)"CvSeqBlock_prev_set(CvSeqBlock self, CvSeqBlock prev)"}, - { (char *)"CvSeqBlock_prev_get", _wrap_CvSeqBlock_prev_get, METH_VARARGS, (char *)"CvSeqBlock_prev_get(CvSeqBlock self) -> CvSeqBlock"}, - { (char *)"CvSeqBlock_next_set", _wrap_CvSeqBlock_next_set, METH_VARARGS, (char *)"CvSeqBlock_next_set(CvSeqBlock self, CvSeqBlock next)"}, - { (char *)"CvSeqBlock_next_get", _wrap_CvSeqBlock_next_get, METH_VARARGS, (char *)"CvSeqBlock_next_get(CvSeqBlock self) -> CvSeqBlock"}, - { (char *)"CvSeqBlock_start_index_set", _wrap_CvSeqBlock_start_index_set, METH_VARARGS, (char *)"CvSeqBlock_start_index_set(CvSeqBlock self, int start_index)"}, - { (char *)"CvSeqBlock_start_index_get", _wrap_CvSeqBlock_start_index_get, METH_VARARGS, (char *)"CvSeqBlock_start_index_get(CvSeqBlock self) -> int"}, - { (char *)"CvSeqBlock_count_set", _wrap_CvSeqBlock_count_set, METH_VARARGS, (char *)"CvSeqBlock_count_set(CvSeqBlock self, int count)"}, - { (char *)"CvSeqBlock_count_get", _wrap_CvSeqBlock_count_get, METH_VARARGS, (char *)"CvSeqBlock_count_get(CvSeqBlock self) -> int"}, - { (char *)"CvSeqBlock_data_set", _wrap_CvSeqBlock_data_set, METH_VARARGS, (char *)"CvSeqBlock_data_set(CvSeqBlock self, schar data)"}, - { (char *)"CvSeqBlock_data_get", _wrap_CvSeqBlock_data_get, METH_VARARGS, (char *)"CvSeqBlock_data_get(CvSeqBlock self) -> schar"}, - { (char *)"new_CvSeqBlock", _wrap_new_CvSeqBlock, METH_VARARGS, (char *)"new_CvSeqBlock() -> CvSeqBlock"}, - { (char *)"delete_CvSeqBlock", _wrap_delete_CvSeqBlock, METH_VARARGS, (char *)"delete_CvSeqBlock(CvSeqBlock self)"}, - { (char *)"CvSeqBlock_swigregister", CvSeqBlock_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_flags_set", _wrap_CvSeq_flags_set, METH_VARARGS, (char *)"CvSeq_flags_set(CvSeq self, int flags)"}, - { (char *)"CvSeq_flags_get", _wrap_CvSeq_flags_get, METH_VARARGS, (char *)"CvSeq_flags_get(CvSeq self) -> int"}, - { (char *)"CvSeq_header_size_set", _wrap_CvSeq_header_size_set, METH_VARARGS, (char *)"CvSeq_header_size_set(CvSeq self, int header_size)"}, - { (char *)"CvSeq_header_size_get", _wrap_CvSeq_header_size_get, METH_VARARGS, (char *)"CvSeq_header_size_get(CvSeq self) -> int"}, - { (char *)"CvSeq_h_prev_set", _wrap_CvSeq_h_prev_set, METH_VARARGS, (char *)"CvSeq_h_prev_set(CvSeq self, CvSeq h_prev)"}, - { (char *)"CvSeq_h_prev_get", _wrap_CvSeq_h_prev_get, METH_VARARGS, (char *)"CvSeq_h_prev_get(CvSeq self) -> CvSeq"}, - { (char *)"CvSeq_h_next_set", _wrap_CvSeq_h_next_set, METH_VARARGS, (char *)"CvSeq_h_next_set(CvSeq self, CvSeq h_next)"}, - { (char *)"CvSeq_h_next_get", _wrap_CvSeq_h_next_get, METH_VARARGS, (char *)"CvSeq_h_next_get(CvSeq self) -> CvSeq"}, - { (char *)"CvSeq_v_prev_set", _wrap_CvSeq_v_prev_set, METH_VARARGS, (char *)"CvSeq_v_prev_set(CvSeq self, CvSeq v_prev)"}, - { (char *)"CvSeq_v_prev_get", _wrap_CvSeq_v_prev_get, METH_VARARGS, (char *)"CvSeq_v_prev_get(CvSeq self) -> CvSeq"}, - { (char *)"CvSeq_v_next_set", _wrap_CvSeq_v_next_set, METH_VARARGS, (char *)"CvSeq_v_next_set(CvSeq self, CvSeq v_next)"}, - { (char *)"CvSeq_v_next_get", _wrap_CvSeq_v_next_get, METH_VARARGS, (char *)"CvSeq_v_next_get(CvSeq self) -> CvSeq"}, - { (char *)"CvSeq_total_set", _wrap_CvSeq_total_set, METH_VARARGS, (char *)"CvSeq_total_set(CvSeq self, int total)"}, - { (char *)"CvSeq_total_get", _wrap_CvSeq_total_get, METH_VARARGS, (char *)"CvSeq_total_get(CvSeq self) -> int"}, - { (char *)"CvSeq_elem_size_set", _wrap_CvSeq_elem_size_set, METH_VARARGS, (char *)"CvSeq_elem_size_set(CvSeq self, int elem_size)"}, - { (char *)"CvSeq_elem_size_get", _wrap_CvSeq_elem_size_get, METH_VARARGS, (char *)"CvSeq_elem_size_get(CvSeq self) -> int"}, - { (char *)"CvSeq_block_max_set", _wrap_CvSeq_block_max_set, METH_VARARGS, (char *)"CvSeq_block_max_set(CvSeq self, schar block_max)"}, - { (char *)"CvSeq_block_max_get", _wrap_CvSeq_block_max_get, METH_VARARGS, (char *)"CvSeq_block_max_get(CvSeq self) -> schar"}, - { (char *)"CvSeq_ptr_set", _wrap_CvSeq_ptr_set, METH_VARARGS, (char *)"CvSeq_ptr_set(CvSeq self, schar ptr)"}, - { (char *)"CvSeq_ptr_get", _wrap_CvSeq_ptr_get, METH_VARARGS, (char *)"CvSeq_ptr_get(CvSeq self) -> schar"}, - { (char *)"CvSeq_delta_elems_set", _wrap_CvSeq_delta_elems_set, METH_VARARGS, (char *)"CvSeq_delta_elems_set(CvSeq self, int delta_elems)"}, - { (char *)"CvSeq_delta_elems_get", _wrap_CvSeq_delta_elems_get, METH_VARARGS, (char *)"CvSeq_delta_elems_get(CvSeq self) -> int"}, - { (char *)"CvSeq_storage_set", _wrap_CvSeq_storage_set, METH_VARARGS, (char *)"CvSeq_storage_set(CvSeq self, CvMemStorage storage)"}, - { (char *)"CvSeq_storage_get", _wrap_CvSeq_storage_get, METH_VARARGS, (char *)"CvSeq_storage_get(CvSeq self) -> CvMemStorage"}, - { (char *)"CvSeq_free_blocks_set", _wrap_CvSeq_free_blocks_set, METH_VARARGS, (char *)"CvSeq_free_blocks_set(CvSeq self, CvSeqBlock free_blocks)"}, - { (char *)"CvSeq_free_blocks_get", _wrap_CvSeq_free_blocks_get, METH_VARARGS, (char *)"CvSeq_free_blocks_get(CvSeq self) -> CvSeqBlock"}, - { (char *)"CvSeq_first_set", _wrap_CvSeq_first_set, METH_VARARGS, (char *)"CvSeq_first_set(CvSeq self, CvSeqBlock first)"}, - { (char *)"CvSeq_first_get", _wrap_CvSeq_first_get, METH_VARARGS, (char *)"CvSeq_first_get(CvSeq self) -> CvSeqBlock"}, - { (char *)"new_CvSeq", _wrap_new_CvSeq, METH_VARARGS, (char *)"new_CvSeq() -> CvSeq"}, - { (char *)"delete_CvSeq", _wrap_delete_CvSeq, METH_VARARGS, (char *)"delete_CvSeq(CvSeq self)"}, - { (char *)"CvSeq_swigregister", CvSeq_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSetElem_flags_set", _wrap_CvSetElem_flags_set, METH_VARARGS, (char *)"CvSetElem_flags_set(CvSetElem self, int flags)"}, - { (char *)"CvSetElem_flags_get", _wrap_CvSetElem_flags_get, METH_VARARGS, (char *)"CvSetElem_flags_get(CvSetElem self) -> int"}, - { (char *)"CvSetElem_next_free_set", _wrap_CvSetElem_next_free_set, METH_VARARGS, (char *)"CvSetElem_next_free_set(CvSetElem self, CvSetElem next_free)"}, - { (char *)"CvSetElem_next_free_get", _wrap_CvSetElem_next_free_get, METH_VARARGS, (char *)"CvSetElem_next_free_get(CvSetElem self) -> CvSetElem"}, - { (char *)"new_CvSetElem", _wrap_new_CvSetElem, METH_VARARGS, (char *)"new_CvSetElem() -> CvSetElem"}, - { (char *)"delete_CvSetElem", _wrap_delete_CvSetElem, METH_VARARGS, (char *)"delete_CvSetElem(CvSetElem self)"}, - { (char *)"CvSetElem_swigregister", CvSetElem_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSet_flags_set", _wrap_CvSet_flags_set, METH_VARARGS, (char *)"CvSet_flags_set(CvSet self, int flags)"}, - { (char *)"CvSet_flags_get", _wrap_CvSet_flags_get, METH_VARARGS, (char *)"CvSet_flags_get(CvSet self) -> int"}, - { (char *)"CvSet_header_size_set", _wrap_CvSet_header_size_set, METH_VARARGS, (char *)"CvSet_header_size_set(CvSet self, int header_size)"}, - { (char *)"CvSet_header_size_get", _wrap_CvSet_header_size_get, METH_VARARGS, (char *)"CvSet_header_size_get(CvSet self) -> int"}, - { (char *)"CvSet_h_prev_set", _wrap_CvSet_h_prev_set, METH_VARARGS, (char *)"CvSet_h_prev_set(CvSet self, CvSeq h_prev)"}, - { (char *)"CvSet_h_prev_get", _wrap_CvSet_h_prev_get, METH_VARARGS, (char *)"CvSet_h_prev_get(CvSet self) -> CvSeq"}, - { (char *)"CvSet_h_next_set", _wrap_CvSet_h_next_set, METH_VARARGS, (char *)"CvSet_h_next_set(CvSet self, CvSeq h_next)"}, - { (char *)"CvSet_h_next_get", _wrap_CvSet_h_next_get, METH_VARARGS, (char *)"CvSet_h_next_get(CvSet self) -> CvSeq"}, - { (char *)"CvSet_v_prev_set", _wrap_CvSet_v_prev_set, METH_VARARGS, (char *)"CvSet_v_prev_set(CvSet self, CvSeq v_prev)"}, - { (char *)"CvSet_v_prev_get", _wrap_CvSet_v_prev_get, METH_VARARGS, (char *)"CvSet_v_prev_get(CvSet self) -> CvSeq"}, - { (char *)"CvSet_v_next_set", _wrap_CvSet_v_next_set, METH_VARARGS, (char *)"CvSet_v_next_set(CvSet self, CvSeq v_next)"}, - { (char *)"CvSet_v_next_get", _wrap_CvSet_v_next_get, METH_VARARGS, (char *)"CvSet_v_next_get(CvSet self) -> CvSeq"}, - { (char *)"CvSet_total_set", _wrap_CvSet_total_set, METH_VARARGS, (char *)"CvSet_total_set(CvSet self, int total)"}, - { (char *)"CvSet_total_get", _wrap_CvSet_total_get, METH_VARARGS, (char *)"CvSet_total_get(CvSet self) -> int"}, - { (char *)"CvSet_elem_size_set", _wrap_CvSet_elem_size_set, METH_VARARGS, (char *)"CvSet_elem_size_set(CvSet self, int elem_size)"}, - { (char *)"CvSet_elem_size_get", _wrap_CvSet_elem_size_get, METH_VARARGS, (char *)"CvSet_elem_size_get(CvSet self) -> int"}, - { (char *)"CvSet_block_max_set", _wrap_CvSet_block_max_set, METH_VARARGS, (char *)"CvSet_block_max_set(CvSet self, schar block_max)"}, - { (char *)"CvSet_block_max_get", _wrap_CvSet_block_max_get, METH_VARARGS, (char *)"CvSet_block_max_get(CvSet self) -> schar"}, - { (char *)"CvSet_ptr_set", _wrap_CvSet_ptr_set, METH_VARARGS, (char *)"CvSet_ptr_set(CvSet self, schar ptr)"}, - { (char *)"CvSet_ptr_get", _wrap_CvSet_ptr_get, METH_VARARGS, (char *)"CvSet_ptr_get(CvSet self) -> schar"}, - { (char *)"CvSet_delta_elems_set", _wrap_CvSet_delta_elems_set, METH_VARARGS, (char *)"CvSet_delta_elems_set(CvSet self, int delta_elems)"}, - { (char *)"CvSet_delta_elems_get", _wrap_CvSet_delta_elems_get, METH_VARARGS, (char *)"CvSet_delta_elems_get(CvSet self) -> int"}, - { (char *)"CvSet_storage_set", _wrap_CvSet_storage_set, METH_VARARGS, (char *)"CvSet_storage_set(CvSet self, CvMemStorage storage)"}, - { (char *)"CvSet_storage_get", _wrap_CvSet_storage_get, METH_VARARGS, (char *)"CvSet_storage_get(CvSet self) -> CvMemStorage"}, - { (char *)"CvSet_free_blocks_set", _wrap_CvSet_free_blocks_set, METH_VARARGS, (char *)"CvSet_free_blocks_set(CvSet self, CvSeqBlock free_blocks)"}, - { (char *)"CvSet_free_blocks_get", _wrap_CvSet_free_blocks_get, METH_VARARGS, (char *)"CvSet_free_blocks_get(CvSet self) -> CvSeqBlock"}, - { (char *)"CvSet_first_set", _wrap_CvSet_first_set, METH_VARARGS, (char *)"CvSet_first_set(CvSet self, CvSeqBlock first)"}, - { (char *)"CvSet_first_get", _wrap_CvSet_first_get, METH_VARARGS, (char *)"CvSet_first_get(CvSet self) -> CvSeqBlock"}, - { (char *)"CvSet_free_elems_set", _wrap_CvSet_free_elems_set, METH_VARARGS, (char *)"CvSet_free_elems_set(CvSet self, CvSetElem free_elems)"}, - { (char *)"CvSet_free_elems_get", _wrap_CvSet_free_elems_get, METH_VARARGS, (char *)"CvSet_free_elems_get(CvSet self) -> CvSetElem"}, - { (char *)"CvSet_active_count_set", _wrap_CvSet_active_count_set, METH_VARARGS, (char *)"CvSet_active_count_set(CvSet self, int active_count)"}, - { (char *)"CvSet_active_count_get", _wrap_CvSet_active_count_get, METH_VARARGS, (char *)"CvSet_active_count_get(CvSet self) -> int"}, - { (char *)"new_CvSet", _wrap_new_CvSet, METH_VARARGS, (char *)"new_CvSet() -> CvSet"}, - { (char *)"delete_CvSet", _wrap_delete_CvSet, METH_VARARGS, (char *)"delete_CvSet(CvSet self)"}, - { (char *)"CvSet_swigregister", CvSet_swigregister, METH_VARARGS, NULL}, - { (char *)"CvGraphEdge_flags_set", _wrap_CvGraphEdge_flags_set, METH_VARARGS, (char *)"CvGraphEdge_flags_set(CvGraphEdge self, int flags)"}, - { (char *)"CvGraphEdge_flags_get", _wrap_CvGraphEdge_flags_get, METH_VARARGS, (char *)"CvGraphEdge_flags_get(CvGraphEdge self) -> int"}, - { (char *)"CvGraphEdge_weight_set", _wrap_CvGraphEdge_weight_set, METH_VARARGS, (char *)"CvGraphEdge_weight_set(CvGraphEdge self, float weight)"}, - { (char *)"CvGraphEdge_weight_get", _wrap_CvGraphEdge_weight_get, METH_VARARGS, (char *)"CvGraphEdge_weight_get(CvGraphEdge self) -> float"}, - { (char *)"CvGraphEdge_next_set", _wrap_CvGraphEdge_next_set, METH_VARARGS, (char *)"CvGraphEdge_next_set(CvGraphEdge self, CvGraphEdge next)"}, - { (char *)"CvGraphEdge_next_get", _wrap_CvGraphEdge_next_get, METH_VARARGS, (char *)"CvGraphEdge_next_get(CvGraphEdge self) -> CvGraphEdge"}, - { (char *)"CvGraphEdge_vtx_set", _wrap_CvGraphEdge_vtx_set, METH_VARARGS, (char *)"CvGraphEdge_vtx_set(CvGraphEdge self, CvGraphVtx vtx)"}, - { (char *)"CvGraphEdge_vtx_get", _wrap_CvGraphEdge_vtx_get, METH_VARARGS, (char *)"CvGraphEdge_vtx_get(CvGraphEdge self) -> CvGraphVtx"}, - { (char *)"new_CvGraphEdge", _wrap_new_CvGraphEdge, METH_VARARGS, (char *)"new_CvGraphEdge() -> CvGraphEdge"}, - { (char *)"delete_CvGraphEdge", _wrap_delete_CvGraphEdge, METH_VARARGS, (char *)"delete_CvGraphEdge(CvGraphEdge self)"}, - { (char *)"CvGraphEdge_swigregister", CvGraphEdge_swigregister, METH_VARARGS, NULL}, - { (char *)"CvGraphVtx_flags_set", _wrap_CvGraphVtx_flags_set, METH_VARARGS, (char *)"CvGraphVtx_flags_set(CvGraphVtx self, int flags)"}, - { (char *)"CvGraphVtx_flags_get", _wrap_CvGraphVtx_flags_get, METH_VARARGS, (char *)"CvGraphVtx_flags_get(CvGraphVtx self) -> int"}, - { (char *)"CvGraphVtx_first_set", _wrap_CvGraphVtx_first_set, METH_VARARGS, (char *)"CvGraphVtx_first_set(CvGraphVtx self, CvGraphEdge first)"}, - { (char *)"CvGraphVtx_first_get", _wrap_CvGraphVtx_first_get, METH_VARARGS, (char *)"CvGraphVtx_first_get(CvGraphVtx self) -> CvGraphEdge"}, - { (char *)"new_CvGraphVtx", _wrap_new_CvGraphVtx, METH_VARARGS, (char *)"new_CvGraphVtx() -> CvGraphVtx"}, - { (char *)"delete_CvGraphVtx", _wrap_delete_CvGraphVtx, METH_VARARGS, (char *)"delete_CvGraphVtx(CvGraphVtx self)"}, - { (char *)"CvGraphVtx_swigregister", CvGraphVtx_swigregister, METH_VARARGS, NULL}, - { (char *)"CvGraphVtx2D_flags_set", _wrap_CvGraphVtx2D_flags_set, METH_VARARGS, (char *)"CvGraphVtx2D_flags_set(CvGraphVtx2D self, int flags)"}, - { (char *)"CvGraphVtx2D_flags_get", _wrap_CvGraphVtx2D_flags_get, METH_VARARGS, (char *)"CvGraphVtx2D_flags_get(CvGraphVtx2D self) -> int"}, - { (char *)"CvGraphVtx2D_first_set", _wrap_CvGraphVtx2D_first_set, METH_VARARGS, (char *)"CvGraphVtx2D_first_set(CvGraphVtx2D self, CvGraphEdge first)"}, - { (char *)"CvGraphVtx2D_first_get", _wrap_CvGraphVtx2D_first_get, METH_VARARGS, (char *)"CvGraphVtx2D_first_get(CvGraphVtx2D self) -> CvGraphEdge"}, - { (char *)"CvGraphVtx2D_ptr_set", _wrap_CvGraphVtx2D_ptr_set, METH_VARARGS, (char *)"CvGraphVtx2D_ptr_set(CvGraphVtx2D self, CvPoint2D32f ptr)"}, - { (char *)"CvGraphVtx2D_ptr_get", _wrap_CvGraphVtx2D_ptr_get, METH_VARARGS, (char *)"CvGraphVtx2D_ptr_get(CvGraphVtx2D self) -> CvPoint2D32f"}, - { (char *)"new_CvGraphVtx2D", _wrap_new_CvGraphVtx2D, METH_VARARGS, (char *)"new_CvGraphVtx2D() -> CvGraphVtx2D"}, - { (char *)"delete_CvGraphVtx2D", _wrap_delete_CvGraphVtx2D, METH_VARARGS, (char *)"delete_CvGraphVtx2D(CvGraphVtx2D self)"}, - { (char *)"CvGraphVtx2D_swigregister", CvGraphVtx2D_swigregister, METH_VARARGS, NULL}, - { (char *)"CvGraph_flags_set", _wrap_CvGraph_flags_set, METH_VARARGS, (char *)"CvGraph_flags_set(CvGraph self, int flags)"}, - { (char *)"CvGraph_flags_get", _wrap_CvGraph_flags_get, METH_VARARGS, (char *)"CvGraph_flags_get(CvGraph self) -> int"}, - { (char *)"CvGraph_header_size_set", _wrap_CvGraph_header_size_set, METH_VARARGS, (char *)"CvGraph_header_size_set(CvGraph self, int header_size)"}, - { (char *)"CvGraph_header_size_get", _wrap_CvGraph_header_size_get, METH_VARARGS, (char *)"CvGraph_header_size_get(CvGraph self) -> int"}, - { (char *)"CvGraph_h_prev_set", _wrap_CvGraph_h_prev_set, METH_VARARGS, (char *)"CvGraph_h_prev_set(CvGraph self, CvSeq h_prev)"}, - { (char *)"CvGraph_h_prev_get", _wrap_CvGraph_h_prev_get, METH_VARARGS, (char *)"CvGraph_h_prev_get(CvGraph self) -> CvSeq"}, - { (char *)"CvGraph_h_next_set", _wrap_CvGraph_h_next_set, METH_VARARGS, (char *)"CvGraph_h_next_set(CvGraph self, CvSeq h_next)"}, - { (char *)"CvGraph_h_next_get", _wrap_CvGraph_h_next_get, METH_VARARGS, (char *)"CvGraph_h_next_get(CvGraph self) -> CvSeq"}, - { (char *)"CvGraph_v_prev_set", _wrap_CvGraph_v_prev_set, METH_VARARGS, (char *)"CvGraph_v_prev_set(CvGraph self, CvSeq v_prev)"}, - { (char *)"CvGraph_v_prev_get", _wrap_CvGraph_v_prev_get, METH_VARARGS, (char *)"CvGraph_v_prev_get(CvGraph self) -> CvSeq"}, - { (char *)"CvGraph_v_next_set", _wrap_CvGraph_v_next_set, METH_VARARGS, (char *)"CvGraph_v_next_set(CvGraph self, CvSeq v_next)"}, - { (char *)"CvGraph_v_next_get", _wrap_CvGraph_v_next_get, METH_VARARGS, (char *)"CvGraph_v_next_get(CvGraph self) -> CvSeq"}, - { (char *)"CvGraph_total_set", _wrap_CvGraph_total_set, METH_VARARGS, (char *)"CvGraph_total_set(CvGraph self, int total)"}, - { (char *)"CvGraph_total_get", _wrap_CvGraph_total_get, METH_VARARGS, (char *)"CvGraph_total_get(CvGraph self) -> int"}, - { (char *)"CvGraph_elem_size_set", _wrap_CvGraph_elem_size_set, METH_VARARGS, (char *)"CvGraph_elem_size_set(CvGraph self, int elem_size)"}, - { (char *)"CvGraph_elem_size_get", _wrap_CvGraph_elem_size_get, METH_VARARGS, (char *)"CvGraph_elem_size_get(CvGraph self) -> int"}, - { (char *)"CvGraph_block_max_set", _wrap_CvGraph_block_max_set, METH_VARARGS, (char *)"CvGraph_block_max_set(CvGraph self, schar block_max)"}, - { (char *)"CvGraph_block_max_get", _wrap_CvGraph_block_max_get, METH_VARARGS, (char *)"CvGraph_block_max_get(CvGraph self) -> schar"}, - { (char *)"CvGraph_ptr_set", _wrap_CvGraph_ptr_set, METH_VARARGS, (char *)"CvGraph_ptr_set(CvGraph self, schar ptr)"}, - { (char *)"CvGraph_ptr_get", _wrap_CvGraph_ptr_get, METH_VARARGS, (char *)"CvGraph_ptr_get(CvGraph self) -> schar"}, - { (char *)"CvGraph_delta_elems_set", _wrap_CvGraph_delta_elems_set, METH_VARARGS, (char *)"CvGraph_delta_elems_set(CvGraph self, int delta_elems)"}, - { (char *)"CvGraph_delta_elems_get", _wrap_CvGraph_delta_elems_get, METH_VARARGS, (char *)"CvGraph_delta_elems_get(CvGraph self) -> int"}, - { (char *)"CvGraph_storage_set", _wrap_CvGraph_storage_set, METH_VARARGS, (char *)"CvGraph_storage_set(CvGraph self, CvMemStorage storage)"}, - { (char *)"CvGraph_storage_get", _wrap_CvGraph_storage_get, METH_VARARGS, (char *)"CvGraph_storage_get(CvGraph self) -> CvMemStorage"}, - { (char *)"CvGraph_free_blocks_set", _wrap_CvGraph_free_blocks_set, METH_VARARGS, (char *)"CvGraph_free_blocks_set(CvGraph self, CvSeqBlock free_blocks)"}, - { (char *)"CvGraph_free_blocks_get", _wrap_CvGraph_free_blocks_get, METH_VARARGS, (char *)"CvGraph_free_blocks_get(CvGraph self) -> CvSeqBlock"}, - { (char *)"CvGraph_first_set", _wrap_CvGraph_first_set, METH_VARARGS, (char *)"CvGraph_first_set(CvGraph self, CvSeqBlock first)"}, - { (char *)"CvGraph_first_get", _wrap_CvGraph_first_get, METH_VARARGS, (char *)"CvGraph_first_get(CvGraph self) -> CvSeqBlock"}, - { (char *)"CvGraph_free_elems_set", _wrap_CvGraph_free_elems_set, METH_VARARGS, (char *)"CvGraph_free_elems_set(CvGraph self, CvSetElem free_elems)"}, - { (char *)"CvGraph_free_elems_get", _wrap_CvGraph_free_elems_get, METH_VARARGS, (char *)"CvGraph_free_elems_get(CvGraph self) -> CvSetElem"}, - { (char *)"CvGraph_active_count_set", _wrap_CvGraph_active_count_set, METH_VARARGS, (char *)"CvGraph_active_count_set(CvGraph self, int active_count)"}, - { (char *)"CvGraph_active_count_get", _wrap_CvGraph_active_count_get, METH_VARARGS, (char *)"CvGraph_active_count_get(CvGraph self) -> int"}, - { (char *)"CvGraph_edges_set", _wrap_CvGraph_edges_set, METH_VARARGS, (char *)"CvGraph_edges_set(CvGraph self, CvSet edges)"}, - { (char *)"CvGraph_edges_get", _wrap_CvGraph_edges_get, METH_VARARGS, (char *)"CvGraph_edges_get(CvGraph self) -> CvSet"}, - { (char *)"new_CvGraph", _wrap_new_CvGraph, METH_VARARGS, (char *)"new_CvGraph() -> CvGraph"}, - { (char *)"delete_CvGraph", _wrap_delete_CvGraph, METH_VARARGS, (char *)"delete_CvGraph(CvGraph self)"}, - { (char *)"CvGraph_swigregister", CvGraph_swigregister, METH_VARARGS, NULL}, - { (char *)"CvChain_flags_set", _wrap_CvChain_flags_set, METH_VARARGS, (char *)"CvChain_flags_set(CvChain self, int flags)"}, - { (char *)"CvChain_flags_get", _wrap_CvChain_flags_get, METH_VARARGS, (char *)"CvChain_flags_get(CvChain self) -> int"}, - { (char *)"CvChain_header_size_set", _wrap_CvChain_header_size_set, METH_VARARGS, (char *)"CvChain_header_size_set(CvChain self, int header_size)"}, - { (char *)"CvChain_header_size_get", _wrap_CvChain_header_size_get, METH_VARARGS, (char *)"CvChain_header_size_get(CvChain self) -> int"}, - { (char *)"CvChain_h_prev_set", _wrap_CvChain_h_prev_set, METH_VARARGS, (char *)"CvChain_h_prev_set(CvChain self, CvSeq h_prev)"}, - { (char *)"CvChain_h_prev_get", _wrap_CvChain_h_prev_get, METH_VARARGS, (char *)"CvChain_h_prev_get(CvChain self) -> CvSeq"}, - { (char *)"CvChain_h_next_set", _wrap_CvChain_h_next_set, METH_VARARGS, (char *)"CvChain_h_next_set(CvChain self, CvSeq h_next)"}, - { (char *)"CvChain_h_next_get", _wrap_CvChain_h_next_get, METH_VARARGS, (char *)"CvChain_h_next_get(CvChain self) -> CvSeq"}, - { (char *)"CvChain_v_prev_set", _wrap_CvChain_v_prev_set, METH_VARARGS, (char *)"CvChain_v_prev_set(CvChain self, CvSeq v_prev)"}, - { (char *)"CvChain_v_prev_get", _wrap_CvChain_v_prev_get, METH_VARARGS, (char *)"CvChain_v_prev_get(CvChain self) -> CvSeq"}, - { (char *)"CvChain_v_next_set", _wrap_CvChain_v_next_set, METH_VARARGS, (char *)"CvChain_v_next_set(CvChain self, CvSeq v_next)"}, - { (char *)"CvChain_v_next_get", _wrap_CvChain_v_next_get, METH_VARARGS, (char *)"CvChain_v_next_get(CvChain self) -> CvSeq"}, - { (char *)"CvChain_total_set", _wrap_CvChain_total_set, METH_VARARGS, (char *)"CvChain_total_set(CvChain self, int total)"}, - { (char *)"CvChain_total_get", _wrap_CvChain_total_get, METH_VARARGS, (char *)"CvChain_total_get(CvChain self) -> int"}, - { (char *)"CvChain_elem_size_set", _wrap_CvChain_elem_size_set, METH_VARARGS, (char *)"CvChain_elem_size_set(CvChain self, int elem_size)"}, - { (char *)"CvChain_elem_size_get", _wrap_CvChain_elem_size_get, METH_VARARGS, (char *)"CvChain_elem_size_get(CvChain self) -> int"}, - { (char *)"CvChain_block_max_set", _wrap_CvChain_block_max_set, METH_VARARGS, (char *)"CvChain_block_max_set(CvChain self, schar block_max)"}, - { (char *)"CvChain_block_max_get", _wrap_CvChain_block_max_get, METH_VARARGS, (char *)"CvChain_block_max_get(CvChain self) -> schar"}, - { (char *)"CvChain_ptr_set", _wrap_CvChain_ptr_set, METH_VARARGS, (char *)"CvChain_ptr_set(CvChain self, schar ptr)"}, - { (char *)"CvChain_ptr_get", _wrap_CvChain_ptr_get, METH_VARARGS, (char *)"CvChain_ptr_get(CvChain self) -> schar"}, - { (char *)"CvChain_delta_elems_set", _wrap_CvChain_delta_elems_set, METH_VARARGS, (char *)"CvChain_delta_elems_set(CvChain self, int delta_elems)"}, - { (char *)"CvChain_delta_elems_get", _wrap_CvChain_delta_elems_get, METH_VARARGS, (char *)"CvChain_delta_elems_get(CvChain self) -> int"}, - { (char *)"CvChain_storage_set", _wrap_CvChain_storage_set, METH_VARARGS, (char *)"CvChain_storage_set(CvChain self, CvMemStorage storage)"}, - { (char *)"CvChain_storage_get", _wrap_CvChain_storage_get, METH_VARARGS, (char *)"CvChain_storage_get(CvChain self) -> CvMemStorage"}, - { (char *)"CvChain_free_blocks_set", _wrap_CvChain_free_blocks_set, METH_VARARGS, (char *)"CvChain_free_blocks_set(CvChain self, CvSeqBlock free_blocks)"}, - { (char *)"CvChain_free_blocks_get", _wrap_CvChain_free_blocks_get, METH_VARARGS, (char *)"CvChain_free_blocks_get(CvChain self) -> CvSeqBlock"}, - { (char *)"CvChain_first_set", _wrap_CvChain_first_set, METH_VARARGS, (char *)"CvChain_first_set(CvChain self, CvSeqBlock first)"}, - { (char *)"CvChain_first_get", _wrap_CvChain_first_get, METH_VARARGS, (char *)"CvChain_first_get(CvChain self) -> CvSeqBlock"}, - { (char *)"CvChain_origin_set", _wrap_CvChain_origin_set, METH_VARARGS, (char *)"CvChain_origin_set(CvChain self, CvPoint origin)"}, - { (char *)"CvChain_origin_get", _wrap_CvChain_origin_get, METH_VARARGS, (char *)"CvChain_origin_get(CvChain self) -> CvPoint"}, - { (char *)"new_CvChain", _wrap_new_CvChain, METH_VARARGS, (char *)"new_CvChain() -> CvChain"}, - { (char *)"delete_CvChain", _wrap_delete_CvChain, METH_VARARGS, (char *)"delete_CvChain(CvChain self)"}, - { (char *)"CvChain_swigregister", CvChain_swigregister, METH_VARARGS, NULL}, - { (char *)"CvContour_flags_set", _wrap_CvContour_flags_set, METH_VARARGS, (char *)"CvContour_flags_set(CvContour self, int flags)"}, - { (char *)"CvContour_flags_get", _wrap_CvContour_flags_get, METH_VARARGS, (char *)"CvContour_flags_get(CvContour self) -> int"}, - { (char *)"CvContour_header_size_set", _wrap_CvContour_header_size_set, METH_VARARGS, (char *)"CvContour_header_size_set(CvContour self, int header_size)"}, - { (char *)"CvContour_header_size_get", _wrap_CvContour_header_size_get, METH_VARARGS, (char *)"CvContour_header_size_get(CvContour self) -> int"}, - { (char *)"CvContour_h_prev_set", _wrap_CvContour_h_prev_set, METH_VARARGS, (char *)"CvContour_h_prev_set(CvContour self, CvSeq h_prev)"}, - { (char *)"CvContour_h_prev_get", _wrap_CvContour_h_prev_get, METH_VARARGS, (char *)"CvContour_h_prev_get(CvContour self) -> CvSeq"}, - { (char *)"CvContour_h_next_set", _wrap_CvContour_h_next_set, METH_VARARGS, (char *)"CvContour_h_next_set(CvContour self, CvSeq h_next)"}, - { (char *)"CvContour_h_next_get", _wrap_CvContour_h_next_get, METH_VARARGS, (char *)"CvContour_h_next_get(CvContour self) -> CvSeq"}, - { (char *)"CvContour_v_prev_set", _wrap_CvContour_v_prev_set, METH_VARARGS, (char *)"CvContour_v_prev_set(CvContour self, CvSeq v_prev)"}, - { (char *)"CvContour_v_prev_get", _wrap_CvContour_v_prev_get, METH_VARARGS, (char *)"CvContour_v_prev_get(CvContour self) -> CvSeq"}, - { (char *)"CvContour_v_next_set", _wrap_CvContour_v_next_set, METH_VARARGS, (char *)"CvContour_v_next_set(CvContour self, CvSeq v_next)"}, - { (char *)"CvContour_v_next_get", _wrap_CvContour_v_next_get, METH_VARARGS, (char *)"CvContour_v_next_get(CvContour self) -> CvSeq"}, - { (char *)"CvContour_total_set", _wrap_CvContour_total_set, METH_VARARGS, (char *)"CvContour_total_set(CvContour self, int total)"}, - { (char *)"CvContour_total_get", _wrap_CvContour_total_get, METH_VARARGS, (char *)"CvContour_total_get(CvContour self) -> int"}, - { (char *)"CvContour_elem_size_set", _wrap_CvContour_elem_size_set, METH_VARARGS, (char *)"CvContour_elem_size_set(CvContour self, int elem_size)"}, - { (char *)"CvContour_elem_size_get", _wrap_CvContour_elem_size_get, METH_VARARGS, (char *)"CvContour_elem_size_get(CvContour self) -> int"}, - { (char *)"CvContour_block_max_set", _wrap_CvContour_block_max_set, METH_VARARGS, (char *)"CvContour_block_max_set(CvContour self, schar block_max)"}, - { (char *)"CvContour_block_max_get", _wrap_CvContour_block_max_get, METH_VARARGS, (char *)"CvContour_block_max_get(CvContour self) -> schar"}, - { (char *)"CvContour_ptr_set", _wrap_CvContour_ptr_set, METH_VARARGS, (char *)"CvContour_ptr_set(CvContour self, schar ptr)"}, - { (char *)"CvContour_ptr_get", _wrap_CvContour_ptr_get, METH_VARARGS, (char *)"CvContour_ptr_get(CvContour self) -> schar"}, - { (char *)"CvContour_delta_elems_set", _wrap_CvContour_delta_elems_set, METH_VARARGS, (char *)"CvContour_delta_elems_set(CvContour self, int delta_elems)"}, - { (char *)"CvContour_delta_elems_get", _wrap_CvContour_delta_elems_get, METH_VARARGS, (char *)"CvContour_delta_elems_get(CvContour self) -> int"}, - { (char *)"CvContour_storage_set", _wrap_CvContour_storage_set, METH_VARARGS, (char *)"CvContour_storage_set(CvContour self, CvMemStorage storage)"}, - { (char *)"CvContour_storage_get", _wrap_CvContour_storage_get, METH_VARARGS, (char *)"CvContour_storage_get(CvContour self) -> CvMemStorage"}, - { (char *)"CvContour_free_blocks_set", _wrap_CvContour_free_blocks_set, METH_VARARGS, (char *)"CvContour_free_blocks_set(CvContour self, CvSeqBlock free_blocks)"}, - { (char *)"CvContour_free_blocks_get", _wrap_CvContour_free_blocks_get, METH_VARARGS, (char *)"CvContour_free_blocks_get(CvContour self) -> CvSeqBlock"}, - { (char *)"CvContour_first_set", _wrap_CvContour_first_set, METH_VARARGS, (char *)"CvContour_first_set(CvContour self, CvSeqBlock first)"}, - { (char *)"CvContour_first_get", _wrap_CvContour_first_get, METH_VARARGS, (char *)"CvContour_first_get(CvContour self) -> CvSeqBlock"}, - { (char *)"CvContour_rect_set", _wrap_CvContour_rect_set, METH_VARARGS, (char *)"CvContour_rect_set(CvContour self, CvRect rect)"}, - { (char *)"CvContour_rect_get", _wrap_CvContour_rect_get, METH_VARARGS, (char *)"CvContour_rect_get(CvContour self) -> CvRect"}, - { (char *)"CvContour_color_set", _wrap_CvContour_color_set, METH_VARARGS, (char *)"CvContour_color_set(CvContour self, int color)"}, - { (char *)"CvContour_color_get", _wrap_CvContour_color_get, METH_VARARGS, (char *)"CvContour_color_get(CvContour self) -> int"}, - { (char *)"CvContour_reserved_set", _wrap_CvContour_reserved_set, METH_VARARGS, (char *)"CvContour_reserved_set(CvContour self, int reserved)"}, - { (char *)"CvContour_reserved_get", _wrap_CvContour_reserved_get, METH_VARARGS, (char *)"CvContour_reserved_get(CvContour self) -> int"}, - { (char *)"new_CvContour", _wrap_new_CvContour, METH_VARARGS, (char *)"new_CvContour() -> CvContour"}, - { (char *)"delete_CvContour", _wrap_delete_CvContour, METH_VARARGS, (char *)"delete_CvContour(CvContour self)"}, - { (char *)"CvContour_swigregister", CvContour_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeqWriter_header_size_set", _wrap_CvSeqWriter_header_size_set, METH_VARARGS, (char *)"CvSeqWriter_header_size_set(CvSeqWriter self, int header_size)"}, - { (char *)"CvSeqWriter_header_size_get", _wrap_CvSeqWriter_header_size_get, METH_VARARGS, (char *)"CvSeqWriter_header_size_get(CvSeqWriter self) -> int"}, - { (char *)"CvSeqWriter_seq_set", _wrap_CvSeqWriter_seq_set, METH_VARARGS, (char *)"CvSeqWriter_seq_set(CvSeqWriter self, CvSeq seq)"}, - { (char *)"CvSeqWriter_seq_get", _wrap_CvSeqWriter_seq_get, METH_VARARGS, (char *)"CvSeqWriter_seq_get(CvSeqWriter self) -> CvSeq"}, - { (char *)"CvSeqWriter_block_set", _wrap_CvSeqWriter_block_set, METH_VARARGS, (char *)"CvSeqWriter_block_set(CvSeqWriter self, CvSeqBlock block)"}, - { (char *)"CvSeqWriter_block_get", _wrap_CvSeqWriter_block_get, METH_VARARGS, (char *)"CvSeqWriter_block_get(CvSeqWriter self) -> CvSeqBlock"}, - { (char *)"CvSeqWriter_ptr_set", _wrap_CvSeqWriter_ptr_set, METH_VARARGS, (char *)"CvSeqWriter_ptr_set(CvSeqWriter self, schar ptr)"}, - { (char *)"CvSeqWriter_ptr_get", _wrap_CvSeqWriter_ptr_get, METH_VARARGS, (char *)"CvSeqWriter_ptr_get(CvSeqWriter self) -> schar"}, - { (char *)"CvSeqWriter_block_min_set", _wrap_CvSeqWriter_block_min_set, METH_VARARGS, (char *)"CvSeqWriter_block_min_set(CvSeqWriter self, schar block_min)"}, - { (char *)"CvSeqWriter_block_min_get", _wrap_CvSeqWriter_block_min_get, METH_VARARGS, (char *)"CvSeqWriter_block_min_get(CvSeqWriter self) -> schar"}, - { (char *)"CvSeqWriter_block_max_set", _wrap_CvSeqWriter_block_max_set, METH_VARARGS, (char *)"CvSeqWriter_block_max_set(CvSeqWriter self, schar block_max)"}, - { (char *)"CvSeqWriter_block_max_get", _wrap_CvSeqWriter_block_max_get, METH_VARARGS, (char *)"CvSeqWriter_block_max_get(CvSeqWriter self) -> schar"}, - { (char *)"new_CvSeqWriter", _wrap_new_CvSeqWriter, METH_VARARGS, (char *)"new_CvSeqWriter() -> CvSeqWriter"}, - { (char *)"delete_CvSeqWriter", _wrap_delete_CvSeqWriter, METH_VARARGS, (char *)"delete_CvSeqWriter(CvSeqWriter self)"}, - { (char *)"CvSeqWriter_swigregister", CvSeqWriter_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeqReader_header_size_set", _wrap_CvSeqReader_header_size_set, METH_VARARGS, (char *)"CvSeqReader_header_size_set(CvSeqReader self, int header_size)"}, - { (char *)"CvSeqReader_header_size_get", _wrap_CvSeqReader_header_size_get, METH_VARARGS, (char *)"CvSeqReader_header_size_get(CvSeqReader self) -> int"}, - { (char *)"CvSeqReader_seq_set", _wrap_CvSeqReader_seq_set, METH_VARARGS, (char *)"CvSeqReader_seq_set(CvSeqReader self, CvSeq seq)"}, - { (char *)"CvSeqReader_seq_get", _wrap_CvSeqReader_seq_get, METH_VARARGS, (char *)"CvSeqReader_seq_get(CvSeqReader self) -> CvSeq"}, - { (char *)"CvSeqReader_block_set", _wrap_CvSeqReader_block_set, METH_VARARGS, (char *)"CvSeqReader_block_set(CvSeqReader self, CvSeqBlock block)"}, - { (char *)"CvSeqReader_block_get", _wrap_CvSeqReader_block_get, METH_VARARGS, (char *)"CvSeqReader_block_get(CvSeqReader self) -> CvSeqBlock"}, - { (char *)"CvSeqReader_ptr_set", _wrap_CvSeqReader_ptr_set, METH_VARARGS, (char *)"CvSeqReader_ptr_set(CvSeqReader self, schar ptr)"}, - { (char *)"CvSeqReader_ptr_get", _wrap_CvSeqReader_ptr_get, METH_VARARGS, (char *)"CvSeqReader_ptr_get(CvSeqReader self) -> schar"}, - { (char *)"CvSeqReader_block_min_set", _wrap_CvSeqReader_block_min_set, METH_VARARGS, (char *)"CvSeqReader_block_min_set(CvSeqReader self, schar block_min)"}, - { (char *)"CvSeqReader_block_min_get", _wrap_CvSeqReader_block_min_get, METH_VARARGS, (char *)"CvSeqReader_block_min_get(CvSeqReader self) -> schar"}, - { (char *)"CvSeqReader_block_max_set", _wrap_CvSeqReader_block_max_set, METH_VARARGS, (char *)"CvSeqReader_block_max_set(CvSeqReader self, schar block_max)"}, - { (char *)"CvSeqReader_block_max_get", _wrap_CvSeqReader_block_max_get, METH_VARARGS, (char *)"CvSeqReader_block_max_get(CvSeqReader self) -> schar"}, - { (char *)"CvSeqReader_delta_index_set", _wrap_CvSeqReader_delta_index_set, METH_VARARGS, (char *)"CvSeqReader_delta_index_set(CvSeqReader self, int delta_index)"}, - { (char *)"CvSeqReader_delta_index_get", _wrap_CvSeqReader_delta_index_get, METH_VARARGS, (char *)"CvSeqReader_delta_index_get(CvSeqReader self) -> int"}, - { (char *)"CvSeqReader_prev_elem_set", _wrap_CvSeqReader_prev_elem_set, METH_VARARGS, (char *)"CvSeqReader_prev_elem_set(CvSeqReader self, schar prev_elem)"}, - { (char *)"CvSeqReader_prev_elem_get", _wrap_CvSeqReader_prev_elem_get, METH_VARARGS, (char *)"CvSeqReader_prev_elem_get(CvSeqReader self) -> schar"}, - { (char *)"new_CvSeqReader", _wrap_new_CvSeqReader, METH_VARARGS, (char *)"new_CvSeqReader() -> CvSeqReader"}, - { (char *)"delete_CvSeqReader", _wrap_delete_CvSeqReader, METH_VARARGS, (char *)"delete_CvSeqReader(CvSeqReader self)"}, - { (char *)"CvSeqReader_swigregister", CvSeqReader_swigregister, METH_VARARGS, NULL}, - { (char *)"CvAttrList_attr_set", _wrap_CvAttrList_attr_set, METH_VARARGS, (char *)"CvAttrList_attr_set(CvAttrList self, char attr)"}, - { (char *)"CvAttrList_attr_get", _wrap_CvAttrList_attr_get, METH_VARARGS, (char *)"CvAttrList_attr_get(CvAttrList self) -> char"}, - { (char *)"CvAttrList_next_set", _wrap_CvAttrList_next_set, METH_VARARGS, (char *)"CvAttrList_next_set(CvAttrList self, CvAttrList next)"}, - { (char *)"CvAttrList_next_get", _wrap_CvAttrList_next_get, METH_VARARGS, (char *)"CvAttrList_next_get(CvAttrList self) -> CvAttrList"}, - { (char *)"new_CvAttrList", _wrap_new_CvAttrList, METH_VARARGS, (char *)"new_CvAttrList() -> CvAttrList"}, - { (char *)"delete_CvAttrList", _wrap_delete_CvAttrList, METH_VARARGS, (char *)"delete_CvAttrList(CvAttrList self)"}, - { (char *)"CvAttrList_swigregister", CvAttrList_swigregister, METH_VARARGS, NULL}, - { (char *)"cvAttrList", _wrap_cvAttrList, METH_VARARGS, (char *)"\n" - "cvAttrList(char attr = None, CvAttrList next = None) -> CvAttrList\n" - "cvAttrList(char attr = None) -> CvAttrList\n" - "cvAttrList() -> CvAttrList\n" - ""}, - { (char *)"CvString_len_set", _wrap_CvString_len_set, METH_VARARGS, (char *)"CvString_len_set(CvString self, int len)"}, - { (char *)"CvString_len_get", _wrap_CvString_len_get, METH_VARARGS, (char *)"CvString_len_get(CvString self) -> int"}, - { (char *)"CvString_ptr_set", _wrap_CvString_ptr_set, METH_VARARGS, (char *)"CvString_ptr_set(CvString self, char ptr)"}, - { (char *)"CvString_ptr_get", _wrap_CvString_ptr_get, METH_VARARGS, (char *)"CvString_ptr_get(CvString self) -> char"}, - { (char *)"new_CvString", _wrap_new_CvString, METH_VARARGS, (char *)"new_CvString() -> CvString"}, - { (char *)"delete_CvString", _wrap_delete_CvString, METH_VARARGS, (char *)"delete_CvString(CvString self)"}, - { (char *)"CvString_swigregister", CvString_swigregister, METH_VARARGS, NULL}, - { (char *)"CvStringHashNode_hashval_set", _wrap_CvStringHashNode_hashval_set, METH_VARARGS, (char *)"CvStringHashNode_hashval_set(CvStringHashNode self, unsigned int hashval)"}, - { (char *)"CvStringHashNode_hashval_get", _wrap_CvStringHashNode_hashval_get, METH_VARARGS, (char *)"CvStringHashNode_hashval_get(CvStringHashNode self) -> unsigned int"}, - { (char *)"CvStringHashNode_str_set", _wrap_CvStringHashNode_str_set, METH_VARARGS, (char *)"CvStringHashNode_str_set(CvStringHashNode self, CvString str)"}, - { (char *)"CvStringHashNode_str_get", _wrap_CvStringHashNode_str_get, METH_VARARGS, (char *)"CvStringHashNode_str_get(CvStringHashNode self) -> CvString"}, - { (char *)"CvStringHashNode_next_set", _wrap_CvStringHashNode_next_set, METH_VARARGS, (char *)"CvStringHashNode_next_set(CvStringHashNode self, CvStringHashNode next)"}, - { (char *)"CvStringHashNode_next_get", _wrap_CvStringHashNode_next_get, METH_VARARGS, (char *)"CvStringHashNode_next_get(CvStringHashNode self) -> CvStringHashNode"}, - { (char *)"new_CvStringHashNode", _wrap_new_CvStringHashNode, METH_VARARGS, (char *)"new_CvStringHashNode() -> CvStringHashNode"}, - { (char *)"delete_CvStringHashNode", _wrap_delete_CvStringHashNode, METH_VARARGS, (char *)"delete_CvStringHashNode(CvStringHashNode self)"}, - { (char *)"CvStringHashNode_swigregister", CvStringHashNode_swigregister, METH_VARARGS, NULL}, - { (char *)"CvFileNode_tag_set", _wrap_CvFileNode_tag_set, METH_VARARGS, (char *)"CvFileNode_tag_set(CvFileNode self, int tag)"}, - { (char *)"CvFileNode_tag_get", _wrap_CvFileNode_tag_get, METH_VARARGS, (char *)"CvFileNode_tag_get(CvFileNode self) -> int"}, - { (char *)"CvFileNode_info_set", _wrap_CvFileNode_info_set, METH_VARARGS, (char *)"CvFileNode_info_set(CvFileNode self, CvTypeInfo info)"}, - { (char *)"CvFileNode_info_get", _wrap_CvFileNode_info_get, METH_VARARGS, (char *)"CvFileNode_info_get(CvFileNode self) -> CvTypeInfo"}, - { (char *)"CvFileNode_data_get", _wrap_CvFileNode_data_get, METH_VARARGS, (char *)"CvFileNode_data_get(CvFileNode self) -> CvFileNode_data"}, - { (char *)"new_CvFileNode", _wrap_new_CvFileNode, METH_VARARGS, (char *)"new_CvFileNode() -> CvFileNode"}, - { (char *)"delete_CvFileNode", _wrap_delete_CvFileNode, METH_VARARGS, (char *)"delete_CvFileNode(CvFileNode self)"}, - { (char *)"CvFileNode_swigregister", CvFileNode_swigregister, METH_VARARGS, NULL}, - { (char *)"CvFileNode_data_f_set", _wrap_CvFileNode_data_f_set, METH_VARARGS, (char *)"CvFileNode_data_f_set(CvFileNode_data self, double f)"}, - { (char *)"CvFileNode_data_f_get", _wrap_CvFileNode_data_f_get, METH_VARARGS, (char *)"CvFileNode_data_f_get(CvFileNode_data self) -> double"}, - { (char *)"CvFileNode_data_i_set", _wrap_CvFileNode_data_i_set, METH_VARARGS, (char *)"CvFileNode_data_i_set(CvFileNode_data self, int i)"}, - { (char *)"CvFileNode_data_i_get", _wrap_CvFileNode_data_i_get, METH_VARARGS, (char *)"CvFileNode_data_i_get(CvFileNode_data self) -> int"}, - { (char *)"CvFileNode_data_str_set", _wrap_CvFileNode_data_str_set, METH_VARARGS, (char *)"CvFileNode_data_str_set(CvFileNode_data self, CvString str)"}, - { (char *)"CvFileNode_data_str_get", _wrap_CvFileNode_data_str_get, METH_VARARGS, (char *)"CvFileNode_data_str_get(CvFileNode_data self) -> CvString"}, - { (char *)"CvFileNode_data_seq_set", _wrap_CvFileNode_data_seq_set, METH_VARARGS, (char *)"CvFileNode_data_seq_set(CvFileNode_data self, CvSeq seq)"}, - { (char *)"CvFileNode_data_seq_get", _wrap_CvFileNode_data_seq_get, METH_VARARGS, (char *)"CvFileNode_data_seq_get(CvFileNode_data self) -> CvSeq"}, - { (char *)"CvFileNode_data_map_set", _wrap_CvFileNode_data_map_set, METH_VARARGS, (char *)"CvFileNode_data_map_set(CvFileNode_data self, CvFileNodeHash map)"}, - { (char *)"CvFileNode_data_map_get", _wrap_CvFileNode_data_map_get, METH_VARARGS, (char *)"CvFileNode_data_map_get(CvFileNode_data self) -> CvFileNodeHash"}, - { (char *)"new_CvFileNode_data", _wrap_new_CvFileNode_data, METH_VARARGS, (char *)"new_CvFileNode_data() -> CvFileNode_data"}, - { (char *)"delete_CvFileNode_data", _wrap_delete_CvFileNode_data, METH_VARARGS, (char *)"delete_CvFileNode_data(CvFileNode_data self)"}, - { (char *)"CvFileNode_data_swigregister", CvFileNode_data_swigregister, METH_VARARGS, NULL}, - { (char *)"CvTypeInfo_flags_set", _wrap_CvTypeInfo_flags_set, METH_VARARGS, (char *)"CvTypeInfo_flags_set(CvTypeInfo self, int flags)"}, - { (char *)"CvTypeInfo_flags_get", _wrap_CvTypeInfo_flags_get, METH_VARARGS, (char *)"CvTypeInfo_flags_get(CvTypeInfo self) -> int"}, - { (char *)"CvTypeInfo_header_size_set", _wrap_CvTypeInfo_header_size_set, METH_VARARGS, (char *)"CvTypeInfo_header_size_set(CvTypeInfo self, int header_size)"}, - { (char *)"CvTypeInfo_header_size_get", _wrap_CvTypeInfo_header_size_get, METH_VARARGS, (char *)"CvTypeInfo_header_size_get(CvTypeInfo self) -> int"}, - { (char *)"CvTypeInfo_prev_set", _wrap_CvTypeInfo_prev_set, METH_VARARGS, (char *)"CvTypeInfo_prev_set(CvTypeInfo self, CvTypeInfo prev)"}, - { (char *)"CvTypeInfo_prev_get", _wrap_CvTypeInfo_prev_get, METH_VARARGS, (char *)"CvTypeInfo_prev_get(CvTypeInfo self) -> CvTypeInfo"}, - { (char *)"CvTypeInfo_next_set", _wrap_CvTypeInfo_next_set, METH_VARARGS, (char *)"CvTypeInfo_next_set(CvTypeInfo self, CvTypeInfo next)"}, - { (char *)"CvTypeInfo_next_get", _wrap_CvTypeInfo_next_get, METH_VARARGS, (char *)"CvTypeInfo_next_get(CvTypeInfo self) -> CvTypeInfo"}, - { (char *)"CvTypeInfo_type_name_set", _wrap_CvTypeInfo_type_name_set, METH_VARARGS, (char *)"CvTypeInfo_type_name_set(CvTypeInfo self, char type_name)"}, - { (char *)"CvTypeInfo_type_name_get", _wrap_CvTypeInfo_type_name_get, METH_VARARGS, (char *)"CvTypeInfo_type_name_get(CvTypeInfo self) -> char"}, - { (char *)"CvTypeInfo_is_instance_set", _wrap_CvTypeInfo_is_instance_set, METH_VARARGS, (char *)"CvTypeInfo_is_instance_set(CvTypeInfo self, CvIsInstanceFunc is_instance)"}, - { (char *)"CvTypeInfo_is_instance_get", _wrap_CvTypeInfo_is_instance_get, METH_VARARGS, (char *)"CvTypeInfo_is_instance_get(CvTypeInfo self) -> CvIsInstanceFunc"}, - { (char *)"CvTypeInfo_release_set", _wrap_CvTypeInfo_release_set, METH_VARARGS, (char *)"CvTypeInfo_release_set(CvTypeInfo self, CvReleaseFunc release)"}, - { (char *)"CvTypeInfo_release_get", _wrap_CvTypeInfo_release_get, METH_VARARGS, (char *)"CvTypeInfo_release_get(CvTypeInfo self) -> CvReleaseFunc"}, - { (char *)"CvTypeInfo_read_set", _wrap_CvTypeInfo_read_set, METH_VARARGS, (char *)"CvTypeInfo_read_set(CvTypeInfo self, CvReadFunc read)"}, - { (char *)"CvTypeInfo_read_get", _wrap_CvTypeInfo_read_get, METH_VARARGS, (char *)"CvTypeInfo_read_get(CvTypeInfo self) -> CvReadFunc"}, - { (char *)"CvTypeInfo_write_set", _wrap_CvTypeInfo_write_set, METH_VARARGS, (char *)"CvTypeInfo_write_set(CvTypeInfo self, CvWriteFunc write)"}, - { (char *)"CvTypeInfo_write_get", _wrap_CvTypeInfo_write_get, METH_VARARGS, (char *)"CvTypeInfo_write_get(CvTypeInfo self) -> CvWriteFunc"}, - { (char *)"CvTypeInfo_clone_set", _wrap_CvTypeInfo_clone_set, METH_VARARGS, (char *)"CvTypeInfo_clone_set(CvTypeInfo self, CvCloneFunc clone)"}, - { (char *)"CvTypeInfo_clone_get", _wrap_CvTypeInfo_clone_get, METH_VARARGS, (char *)"CvTypeInfo_clone_get(CvTypeInfo self) -> CvCloneFunc"}, - { (char *)"new_CvTypeInfo", _wrap_new_CvTypeInfo, METH_VARARGS, (char *)"new_CvTypeInfo() -> CvTypeInfo"}, - { (char *)"delete_CvTypeInfo", _wrap_delete_CvTypeInfo, METH_VARARGS, (char *)"delete_CvTypeInfo(CvTypeInfo self)"}, - { (char *)"CvTypeInfo_swigregister", CvTypeInfo_swigregister, METH_VARARGS, NULL}, - { (char *)"CvPluginFuncInfo_func_addr_set", _wrap_CvPluginFuncInfo_func_addr_set, METH_VARARGS, (char *)"CvPluginFuncInfo_func_addr_set(CvPluginFuncInfo self, void func_addr)"}, - { (char *)"CvPluginFuncInfo_func_addr_get", _wrap_CvPluginFuncInfo_func_addr_get, METH_VARARGS, (char *)"CvPluginFuncInfo_func_addr_get(CvPluginFuncInfo self) -> void"}, - { (char *)"CvPluginFuncInfo_default_func_addr_set", _wrap_CvPluginFuncInfo_default_func_addr_set, METH_VARARGS, (char *)"CvPluginFuncInfo_default_func_addr_set(CvPluginFuncInfo self, void default_func_addr)"}, - { (char *)"CvPluginFuncInfo_default_func_addr_get", _wrap_CvPluginFuncInfo_default_func_addr_get, METH_VARARGS, (char *)"CvPluginFuncInfo_default_func_addr_get(CvPluginFuncInfo self) -> void"}, - { (char *)"CvPluginFuncInfo_func_names_set", _wrap_CvPluginFuncInfo_func_names_set, METH_VARARGS, (char *)"CvPluginFuncInfo_func_names_set(CvPluginFuncInfo self, char func_names)"}, - { (char *)"CvPluginFuncInfo_func_names_get", _wrap_CvPluginFuncInfo_func_names_get, METH_VARARGS, (char *)"CvPluginFuncInfo_func_names_get(CvPluginFuncInfo self) -> char"}, - { (char *)"CvPluginFuncInfo_search_modules_set", _wrap_CvPluginFuncInfo_search_modules_set, METH_VARARGS, (char *)"CvPluginFuncInfo_search_modules_set(CvPluginFuncInfo self, int search_modules)"}, - { (char *)"CvPluginFuncInfo_search_modules_get", _wrap_CvPluginFuncInfo_search_modules_get, METH_VARARGS, (char *)"CvPluginFuncInfo_search_modules_get(CvPluginFuncInfo self) -> int"}, - { (char *)"CvPluginFuncInfo_loaded_from_set", _wrap_CvPluginFuncInfo_loaded_from_set, METH_VARARGS, (char *)"CvPluginFuncInfo_loaded_from_set(CvPluginFuncInfo self, int loaded_from)"}, - { (char *)"CvPluginFuncInfo_loaded_from_get", _wrap_CvPluginFuncInfo_loaded_from_get, METH_VARARGS, (char *)"CvPluginFuncInfo_loaded_from_get(CvPluginFuncInfo self) -> int"}, - { (char *)"new_CvPluginFuncInfo", _wrap_new_CvPluginFuncInfo, METH_VARARGS, (char *)"new_CvPluginFuncInfo() -> CvPluginFuncInfo"}, - { (char *)"delete_CvPluginFuncInfo", _wrap_delete_CvPluginFuncInfo, METH_VARARGS, (char *)"delete_CvPluginFuncInfo(CvPluginFuncInfo self)"}, - { (char *)"CvPluginFuncInfo_swigregister", CvPluginFuncInfo_swigregister, METH_VARARGS, NULL}, - { (char *)"CvModuleInfo_next_set", _wrap_CvModuleInfo_next_set, METH_VARARGS, (char *)"CvModuleInfo_next_set(CvModuleInfo self, CvModuleInfo next)"}, - { (char *)"CvModuleInfo_next_get", _wrap_CvModuleInfo_next_get, METH_VARARGS, (char *)"CvModuleInfo_next_get(CvModuleInfo self) -> CvModuleInfo"}, - { (char *)"CvModuleInfo_name_set", _wrap_CvModuleInfo_name_set, METH_VARARGS, (char *)"CvModuleInfo_name_set(CvModuleInfo self, char name)"}, - { (char *)"CvModuleInfo_name_get", _wrap_CvModuleInfo_name_get, METH_VARARGS, (char *)"CvModuleInfo_name_get(CvModuleInfo self) -> char"}, - { (char *)"CvModuleInfo_version_set", _wrap_CvModuleInfo_version_set, METH_VARARGS, (char *)"CvModuleInfo_version_set(CvModuleInfo self, char version)"}, - { (char *)"CvModuleInfo_version_get", _wrap_CvModuleInfo_version_get, METH_VARARGS, (char *)"CvModuleInfo_version_get(CvModuleInfo self) -> char"}, - { (char *)"CvModuleInfo_func_tab_set", _wrap_CvModuleInfo_func_tab_set, METH_VARARGS, (char *)"CvModuleInfo_func_tab_set(CvModuleInfo self, CvPluginFuncInfo func_tab)"}, - { (char *)"CvModuleInfo_func_tab_get", _wrap_CvModuleInfo_func_tab_get, METH_VARARGS, (char *)"CvModuleInfo_func_tab_get(CvModuleInfo self) -> CvPluginFuncInfo"}, - { (char *)"new_CvModuleInfo", _wrap_new_CvModuleInfo, METH_VARARGS, (char *)"new_CvModuleInfo() -> CvModuleInfo"}, - { (char *)"delete_CvModuleInfo", _wrap_delete_CvModuleInfo, METH_VARARGS, (char *)"delete_CvModuleInfo(CvModuleInfo self)"}, - { (char *)"CvModuleInfo_swigregister", CvModuleInfo_swigregister, METH_VARARGS, NULL}, - { (char *)"cvAlloc", _wrap_cvAlloc, METH_VARARGS, (char *)"cvAlloc(size_t size) -> void"}, - { (char *)"cvFree_", _wrap_cvFree_, METH_VARARGS, (char *)"cvFree_(void ptr)"}, - { (char *)"cvResetImageROI", _wrap_cvResetImageROI, METH_VARARGS, (char *)"cvResetImageROI( image)"}, - { (char *)"cvCreateMatHeader", _wrap_cvCreateMatHeader, METH_VARARGS, (char *)"cvCreateMatHeader(int rows, int cols, int type) -> CvMat"}, - { (char *)"cvInitMatHeader", _wrap_cvInitMatHeader, METH_VARARGS, (char *)"\n" - "cvInitMatHeader(CvMat mat, int rows, int cols, int type, void data = None, \n" - " int step = 0x7fffffff) -> CvMat\n" - ""}, - { (char *)"cvCreateMat", _wrap_cvCreateMat, METH_VARARGS, (char *)"cvCreateMat(int rows, int cols, int type) -> CvMat"}, - { (char *)"cvDecRefData", _wrap_cvDecRefData, METH_VARARGS, (char *)"cvDecRefData(CvArr arr)"}, - { (char *)"cvIncRefData", _wrap_cvIncRefData, METH_VARARGS, (char *)"cvIncRefData(CvArr arr) -> int"}, - { (char *)"cvCloneMat", _wrap_cvCloneMat, METH_VARARGS, (char *)"cvCloneMat(CvMat mat) -> CvMat"}, - { (char *)"cvGetSubRect", _wrap_cvGetSubRect, METH_VARARGS, (char *)"cvGetSubRect(CvArr arr, CvRect rect) -> CvMat"}, - { (char *)"cvGetRows", _wrap_cvGetRows, METH_VARARGS, (char *)"cvGetRows(CvArr arr, int start_row, int end_row, int delta_row = 1) -> CvMat"}, - { (char *)"cvGetRow", _wrap_cvGetRow, METH_VARARGS, (char *)"cvGetRow(CvArr arr, int row) -> CvMat"}, - { (char *)"cvGetCols", _wrap_cvGetCols, METH_VARARGS, (char *)"cvGetCols(CvArr arr, int start_col, int end_col) -> CvMat"}, - { (char *)"cvGetCol", _wrap_cvGetCol, METH_VARARGS, (char *)"cvGetCol(CvArr arr, int col) -> CvMat"}, - { (char *)"cvGetDiag", _wrap_cvGetDiag, METH_VARARGS, (char *)"cvGetDiag(CvArr arr, int diag = 0) -> CvMat"}, - { (char *)"cvScalarToRawData", _wrap_cvScalarToRawData, METH_VARARGS, (char *)"cvScalarToRawData(CvScalar scalar, void data, int type, int extend_to_12 = 0)"}, - { (char *)"cvRawDataToScalar", _wrap_cvRawDataToScalar, METH_VARARGS, (char *)"cvRawDataToScalar(void data, int type, CvScalar scalar)"}, - { (char *)"cvCreateMatNDHeader", _wrap_cvCreateMatNDHeader, METH_VARARGS, (char *)"cvCreateMatNDHeader(int dims, int type) -> CvMatND"}, - { (char *)"cvCreateMatND", _wrap_cvCreateMatND, METH_VARARGS, (char *)"cvCreateMatND(int dims, int type) -> CvMatND"}, - { (char *)"cvInitMatNDHeader", _wrap_cvInitMatNDHeader, METH_VARARGS, (char *)"cvInitMatNDHeader(CvMatND mat, int dims, int type, void data = None) -> CvMatND"}, - { (char *)"cvCloneMatND", _wrap_cvCloneMatND, METH_VARARGS, (char *)"cvCloneMatND(CvMatND mat) -> CvMatND"}, - { (char *)"cvCreateSparseMat", _wrap_cvCreateSparseMat, METH_VARARGS, (char *)"cvCreateSparseMat(int dims, int type) -> CvSparseMat"}, - { (char *)"cvCloneSparseMat", _wrap_cvCloneSparseMat, METH_VARARGS, (char *)"cvCloneSparseMat(CvSparseMat mat) -> CvSparseMat"}, - { (char *)"cvInitSparseMatIterator", _wrap_cvInitSparseMatIterator, METH_VARARGS, (char *)"cvInitSparseMatIterator(CvSparseMat mat, CvSparseMatIterator mat_iterator) -> CvSparseNode"}, - { (char *)"cvGetNextSparseNode", _wrap_cvGetNextSparseNode, METH_VARARGS, (char *)"cvGetNextSparseNode(CvSparseMatIterator mat_iterator) -> CvSparseNode"}, - { (char *)"CvNArrayIterator_count_set", _wrap_CvNArrayIterator_count_set, METH_VARARGS, (char *)"CvNArrayIterator_count_set(CvNArrayIterator self, int count)"}, - { (char *)"CvNArrayIterator_count_get", _wrap_CvNArrayIterator_count_get, METH_VARARGS, (char *)"CvNArrayIterator_count_get(CvNArrayIterator self) -> int"}, - { (char *)"CvNArrayIterator_dims_set", _wrap_CvNArrayIterator_dims_set, METH_VARARGS, (char *)"CvNArrayIterator_dims_set(CvNArrayIterator self, int dims)"}, - { (char *)"CvNArrayIterator_dims_get", _wrap_CvNArrayIterator_dims_get, METH_VARARGS, (char *)"CvNArrayIterator_dims_get(CvNArrayIterator self) -> int"}, - { (char *)"CvNArrayIterator_size_set", _wrap_CvNArrayIterator_size_set, METH_VARARGS, (char *)"CvNArrayIterator_size_set(CvNArrayIterator self, CvSize size)"}, - { (char *)"CvNArrayIterator_size_get", _wrap_CvNArrayIterator_size_get, METH_VARARGS, (char *)"CvNArrayIterator_size_get(CvNArrayIterator self) -> CvSize"}, - { (char *)"CvNArrayIterator_ptr_set", _wrap_CvNArrayIterator_ptr_set, METH_VARARGS, (char *)"CvNArrayIterator_ptr_set(CvNArrayIterator self, uchar ptr)"}, - { (char *)"CvNArrayIterator_ptr_get", _wrap_CvNArrayIterator_ptr_get, METH_VARARGS, (char *)"CvNArrayIterator_ptr_get(CvNArrayIterator self) -> uchar"}, - { (char *)"CvNArrayIterator_stack_set", _wrap_CvNArrayIterator_stack_set, METH_VARARGS, (char *)"CvNArrayIterator_stack_set(CvNArrayIterator self, int stack)"}, - { (char *)"CvNArrayIterator_stack_get", _wrap_CvNArrayIterator_stack_get, METH_VARARGS, (char *)"CvNArrayIterator_stack_get(CvNArrayIterator self) -> int"}, - { (char *)"CvNArrayIterator_hdr_set", _wrap_CvNArrayIterator_hdr_set, METH_VARARGS, (char *)"CvNArrayIterator_hdr_set(CvNArrayIterator self, CvMatND hdr)"}, - { (char *)"CvNArrayIterator_hdr_get", _wrap_CvNArrayIterator_hdr_get, METH_VARARGS, (char *)"CvNArrayIterator_hdr_get(CvNArrayIterator self) -> CvMatND"}, - { (char *)"new_CvNArrayIterator", _wrap_new_CvNArrayIterator, METH_VARARGS, (char *)"new_CvNArrayIterator() -> CvNArrayIterator"}, - { (char *)"delete_CvNArrayIterator", _wrap_delete_CvNArrayIterator, METH_VARARGS, (char *)"delete_CvNArrayIterator(CvNArrayIterator self)"}, - { (char *)"CvNArrayIterator_swigregister", CvNArrayIterator_swigregister, METH_VARARGS, NULL}, - { (char *)"cvInitNArrayIterator", _wrap_cvInitNArrayIterator, METH_VARARGS, (char *)"\n" - "cvInitNArrayIterator(int count, CvArr arrs, CvArr mask, CvMatND stubs, CvNArrayIterator array_iterator, \n" - " int flags = 0) -> int\n" - ""}, - { (char *)"cvNextNArraySlice", _wrap_cvNextNArraySlice, METH_VARARGS, (char *)"cvNextNArraySlice(CvNArrayIterator array_iterator) -> int"}, - { (char *)"cvGetElemType", _wrap_cvGetElemType, METH_VARARGS, (char *)"cvGetElemType(CvArr arr) -> int"}, - { (char *)"cvGetDims", _wrap_cvGetDims, METH_VARARGS, (char *)"cvGetDims(CvArr arr) -> int"}, - { (char *)"cvGetDimSize", _wrap_cvGetDimSize, METH_VARARGS, (char *)"cvGetDimSize(CvArr arr, int index) -> int"}, - { (char *)"cvPtr1D", _wrap_cvPtr1D, METH_VARARGS, (char *)"cvPtr1D(CvArr arr, int idx0, int type = None) -> uchar"}, - { (char *)"cvPtr2D", _wrap_cvPtr2D, METH_VARARGS, (char *)"cvPtr2D(CvArr arr, int idx0, int idx1, int type = None) -> uchar"}, - { (char *)"cvPtr3D", _wrap_cvPtr3D, METH_VARARGS, (char *)"cvPtr3D(CvArr arr, int idx0, int idx1, int idx2, int type = None) -> uchar"}, - { (char *)"cvPtrND", _wrap_cvPtrND, METH_VARARGS, (char *)"\n" - "cvPtrND(CvArr arr, int idx, int type = None, int create_node = 1, \n" - " unsigned int precalc_hashval = None) -> uchar\n" - ""}, - { (char *)"cvGet1D", _wrap_cvGet1D, METH_VARARGS, (char *)"cvGet1D(CvArr arr, int idx0) -> CvScalar"}, - { (char *)"cvGet2D", _wrap_cvGet2D, METH_VARARGS, (char *)"cvGet2D(CvArr arr, int idx0, int idx1) -> CvScalar"}, - { (char *)"cvGet3D", _wrap_cvGet3D, METH_VARARGS, (char *)"cvGet3D(CvArr arr, int idx0, int idx1, int idx2) -> CvScalar"}, - { (char *)"cvGetND", _wrap_cvGetND, METH_VARARGS, (char *)"cvGetND(CvArr arr, int idx) -> CvScalar"}, - { (char *)"cvGetReal1D", _wrap_cvGetReal1D, METH_VARARGS, (char *)"cvGetReal1D(CvArr arr, int idx0) -> double"}, - { (char *)"cvGetReal2D", _wrap_cvGetReal2D, METH_VARARGS, (char *)"cvGetReal2D(CvArr arr, int idx0, int idx1) -> double"}, - { (char *)"cvGetReal3D", _wrap_cvGetReal3D, METH_VARARGS, (char *)"cvGetReal3D(CvArr arr, int idx0, int idx1, int idx2) -> double"}, - { (char *)"cvGetRealND", _wrap_cvGetRealND, METH_VARARGS, (char *)"cvGetRealND(CvArr arr, int idx) -> double"}, - { (char *)"cvSet1D", _wrap_cvSet1D, METH_VARARGS, (char *)"cvSet1D(CvArr arr, int idx0, CvScalar value)"}, - { (char *)"cvSet2D", _wrap_cvSet2D, METH_VARARGS, (char *)"cvSet2D(CvArr arr, int idx0, int idx1, CvScalar value)"}, - { (char *)"cvSet3D", _wrap_cvSet3D, METH_VARARGS, (char *)"cvSet3D(CvArr arr, int idx0, int idx1, int idx2, CvScalar value)"}, - { (char *)"cvSetND", _wrap_cvSetND, METH_VARARGS, (char *)"cvSetND(CvArr arr, int idx, CvScalar value)"}, - { (char *)"cvSetReal1D", _wrap_cvSetReal1D, METH_VARARGS, (char *)"cvSetReal1D(CvArr arr, int idx0, double value)"}, - { (char *)"cvSetReal2D", _wrap_cvSetReal2D, METH_VARARGS, (char *)"cvSetReal2D(CvArr arr, int idx0, int idx1, double value)"}, - { (char *)"cvSetReal3D", _wrap_cvSetReal3D, METH_VARARGS, (char *)"cvSetReal3D(CvArr arr, int idx0, int idx1, int idx2, double value)"}, - { (char *)"cvSetRealND", _wrap_cvSetRealND, METH_VARARGS, (char *)"cvSetRealND(CvArr arr, int idx, double value)"}, - { (char *)"cvClearND", _wrap_cvClearND, METH_VARARGS, (char *)"cvClearND(CvArr arr, int idx)"}, - { (char *)"cvGetMat", _wrap_cvGetMat, METH_VARARGS, (char *)"cvGetMat(CvArr arr, int coi = None, int allowND = 0) -> CvMat"}, - { (char *)"cvReshapeMatND", _wrap_cvReshapeMatND, METH_VARARGS, (char *)"\n" - "cvReshapeMatND(CvArr arr, int sizeof_header, CvArr header, int new_cn, \n" - " int new_dims, int new_sizes) -> CvArr\n" - ""}, - { (char *)"cvReshape", _wrap_cvReshape, METH_VARARGS, (char *)"cvReshape(CvArr arr, int new_cn, int new_rows = 0) -> CvMat"}, - { (char *)"cvRepeat", _wrap_cvRepeat, METH_VARARGS, (char *)"cvRepeat(CvArr src, CvArr dst)"}, - { (char *)"cvCreateData", _wrap_cvCreateData, METH_VARARGS, (char *)"cvCreateData(CvArr arr)"}, - { (char *)"cvReleaseData", _wrap_cvReleaseData, METH_VARARGS, (char *)"cvReleaseData(CvArr arr)"}, - { (char *)"cvSetData", _wrap_cvSetData, METH_VARARGS, (char *)"cvSetData(CvArr arr, void data, int step)"}, - { (char *)"cvGetRawData", _wrap_cvGetRawData, METH_VARARGS, (char *)"cvGetRawData(CvArr arr, uchar data, int step = None, CvSize roi_size = None)"}, - { (char *)"cvGetSize", _wrap_cvGetSize, METH_VARARGS, (char *)"cvGetSize(CvArr arr) -> CvSize"}, - { (char *)"cvCopy", _wrap_cvCopy, METH_VARARGS, (char *)"cvCopy(CvArr src, CvArr dst, CvArr mask = None)"}, - { (char *)"cvSet", _wrap_cvSet, METH_VARARGS, (char *)"cvSet(CvArr arr, CvScalar value, CvArr mask = None)"}, - { (char *)"cvSetZero", _wrap_cvSetZero, METH_VARARGS, (char *)"cvSetZero(CvArr arr)"}, - { (char *)"cvSplit", _wrap_cvSplit, METH_VARARGS, (char *)"cvSplit(CvArr src, CvArr dst0, CvArr dst1, CvArr dst2, CvArr dst3)"}, - { (char *)"cvMerge", _wrap_cvMerge, METH_VARARGS, (char *)"cvMerge(CvArr src0, CvArr src1, CvArr src2, CvArr src3, CvArr dst)"}, - { (char *)"cvMixChannels", _wrap_cvMixChannels, METH_VARARGS, (char *)"\n" - "cvMixChannels(CvArr src, int src_count, CvArr dst, int dst_count, \n" - " int from_to, int pair_count)\n" - ""}, - { (char *)"cvConvertScale", _wrap_cvConvertScale, METH_VARARGS, (char *)"cvConvertScale(CvArr src, CvArr dst, double scale = 1, double shift = 0)"}, - { (char *)"cvConvertScaleAbs", _wrap_cvConvertScaleAbs, METH_VARARGS, (char *)"cvConvertScaleAbs(CvArr src, CvArr dst, double scale = 1, double shift = 0)"}, - { (char *)"cvCheckTermCriteria", _wrap_cvCheckTermCriteria, METH_VARARGS, (char *)"cvCheckTermCriteria(CvTermCriteria criteria, double default_eps, int default_max_iters) -> CvTermCriteria"}, - { (char *)"cvAdd", _wrap_cvAdd, METH_VARARGS, (char *)"cvAdd(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)"}, - { (char *)"cvAddS", _wrap_cvAddS, METH_VARARGS, (char *)"cvAddS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)"}, - { (char *)"cvSub", _wrap_cvSub, METH_VARARGS, (char *)"cvSub(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)"}, - { (char *)"cvSubS", _wrap_cvSubS, METH_VARARGS, (char *)"cvSubS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)"}, - { (char *)"cvSubRS", _wrap_cvSubRS, METH_VARARGS, (char *)"cvSubRS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)"}, - { (char *)"cvMul", _wrap_cvMul, METH_VARARGS, (char *)"cvMul(CvArr src1, CvArr src2, CvArr dst, double scale = 1)"}, - { (char *)"cvDiv", _wrap_cvDiv, METH_VARARGS, (char *)"cvDiv(CvArr src1, CvArr src2, CvArr dst, double scale = 1)"}, - { (char *)"cvScaleAdd", _wrap_cvScaleAdd, METH_VARARGS, (char *)"cvScaleAdd(CvArr src1, CvScalar scale, CvArr src2, CvArr dst)"}, - { (char *)"cvAddWeighted", _wrap_cvAddWeighted, METH_VARARGS, (char *)"\n" - "cvAddWeighted(CvArr src1, double alpha, CvArr src2, double beta, \n" - " double gamma, CvArr dst)\n" - ""}, - { (char *)"cvDotProduct", _wrap_cvDotProduct, METH_VARARGS, (char *)"cvDotProduct(CvArr src1, CvArr src2) -> double"}, - { (char *)"cvAnd", _wrap_cvAnd, METH_VARARGS, (char *)"cvAnd(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)"}, - { (char *)"cvAndS", _wrap_cvAndS, METH_VARARGS, (char *)"cvAndS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)"}, - { (char *)"cvOr", _wrap_cvOr, METH_VARARGS, (char *)"cvOr(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)"}, - { (char *)"cvOrS", _wrap_cvOrS, METH_VARARGS, (char *)"cvOrS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)"}, - { (char *)"cvXor", _wrap_cvXor, METH_VARARGS, (char *)"cvXor(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)"}, - { (char *)"cvXorS", _wrap_cvXorS, METH_VARARGS, (char *)"cvXorS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)"}, - { (char *)"cvNot", _wrap_cvNot, METH_VARARGS, (char *)"cvNot(CvArr src, CvArr dst)"}, - { (char *)"cvInRange", _wrap_cvInRange, METH_VARARGS, (char *)"cvInRange(CvArr src, CvArr lower, CvArr upper, CvArr dst)"}, - { (char *)"cvInRangeS", _wrap_cvInRangeS, METH_VARARGS, (char *)"cvInRangeS(CvArr src, CvScalar lower, CvScalar upper, CvArr dst)"}, - { (char *)"cvCmp", _wrap_cvCmp, METH_VARARGS, (char *)"cvCmp(CvArr src1, CvArr src2, CvArr dst, int cmp_op)"}, - { (char *)"cvCmpS", _wrap_cvCmpS, METH_VARARGS, (char *)"cvCmpS(CvArr src, double value, CvArr dst, int cmp_op)"}, - { (char *)"cvMin", _wrap_cvMin, METH_VARARGS, (char *)"cvMin(CvArr src1, CvArr src2, CvArr dst)"}, - { (char *)"cvMax", _wrap_cvMax, METH_VARARGS, (char *)"cvMax(CvArr src1, CvArr src2, CvArr dst)"}, - { (char *)"cvMinS", _wrap_cvMinS, METH_VARARGS, (char *)"cvMinS(CvArr src, double value, CvArr dst)"}, - { (char *)"cvMaxS", _wrap_cvMaxS, METH_VARARGS, (char *)"cvMaxS(CvArr src, double value, CvArr dst)"}, - { (char *)"cvAbsDiff", _wrap_cvAbsDiff, METH_VARARGS, (char *)"cvAbsDiff(CvArr src1, CvArr src2, CvArr dst)"}, - { (char *)"cvAbsDiffS", _wrap_cvAbsDiffS, METH_VARARGS, (char *)"cvAbsDiffS(CvArr src, CvArr dst, CvScalar value)"}, - { (char *)"cvCartToPolar", _wrap_cvCartToPolar, METH_VARARGS, (char *)"\n" - "cvCartToPolar(CvArr x, CvArr y, CvArr magnitude, CvArr angle = None, \n" - " int angle_in_degrees = 0)\n" - ""}, - { (char *)"cvPolarToCart", _wrap_cvPolarToCart, METH_VARARGS, (char *)"cvPolarToCart(CvArr magnitude, CvArr angle, CvArr x, CvArr y, int angle_in_degrees = 0)"}, - { (char *)"cvPow", _wrap_cvPow, METH_VARARGS, (char *)"cvPow(CvArr src, CvArr dst, double power)"}, - { (char *)"cvExp", _wrap_cvExp, METH_VARARGS, (char *)"cvExp(CvArr src, CvArr dst)"}, - { (char *)"cvLog", _wrap_cvLog, METH_VARARGS, (char *)"cvLog(CvArr src, CvArr dst)"}, - { (char *)"cvFastArctan", _wrap_cvFastArctan, METH_VARARGS, (char *)"cvFastArctan(float y, float x) -> float"}, - { (char *)"cvCbrt", _wrap_cvCbrt, METH_VARARGS, (char *)"cvCbrt(float value) -> float"}, - { (char *)"cvCheckArr", _wrap_cvCheckArr, METH_VARARGS, (char *)"cvCheckArr(CvArr arr, int flags = 0, double min_val = 0, double max_val = 0) -> int"}, - { (char *)"cvRandArr", _wrap_cvRandArr, METH_VARARGS, (char *)"\n" - "cvRandArr(CvRNG rng, CvArr arr, int dist_type, CvScalar param1, \n" - " CvScalar param2)\n" - ""}, - { (char *)"cvRandShuffle", _wrap_cvRandShuffle, METH_VARARGS, (char *)"cvRandShuffle(CvArr mat, CvRNG rng, double iter_factor = 1.)"}, - { (char *)"cvSort", _wrap_cvSort, METH_VARARGS, (char *)"cvSort(CvArr src, CvArr dst = None, CvArr idxmat = None, int flags = 0)"}, - { (char *)"cvSolveCubic", _wrap_cvSolveCubic, METH_VARARGS, (char *)"cvSolveCubic(CvMat coeffs) -> int"}, - { (char *)"cvSolvePoly", _wrap_cvSolvePoly, METH_VARARGS, (char *)"cvSolvePoly(CvMat coeffs, int maxiter = 20, int fig = 100)"}, - { (char *)"cvCrossProduct", _wrap_cvCrossProduct, METH_VARARGS, (char *)"cvCrossProduct(CvArr src1, CvArr src2, CvArr dst)"}, - { (char *)"cvGEMM", _wrap_cvGEMM, METH_VARARGS, (char *)"\n" - "cvGEMM(CvArr src1, CvArr src2, double alpha, CvArr src3, double beta, \n" - " CvArr dst, int tABC = 0)\n" - ""}, - { (char *)"cvTransform", _wrap_cvTransform, METH_VARARGS, (char *)"cvTransform(CvArr src, CvArr dst, CvMat transmat, CvMat shiftvec = None)"}, - { (char *)"cvPerspectiveTransform", _wrap_cvPerspectiveTransform, METH_VARARGS, (char *)"cvPerspectiveTransform(CvArr src, CvArr dst, CvMat mat)"}, - { (char *)"cvMulTransposed", _wrap_cvMulTransposed, METH_VARARGS, (char *)"\n" - "cvMulTransposed(CvArr src, CvArr dst, int order, CvArr delta = None, \n" - " double scale = 1.)\n" - ""}, - { (char *)"cvTranspose", _wrap_cvTranspose, METH_VARARGS, (char *)"cvTranspose(CvArr src, CvArr dst)"}, - { (char *)"cvCompleteSymm", _wrap_cvCompleteSymm, METH_VARARGS, (char *)"cvCompleteSymm(CvMat matrix, int LtoR = 0)"}, - { (char *)"cvFlip", _wrap_cvFlip, METH_VARARGS, (char *)"cvFlip(CvArr src, CvArr dst = None, int flip_mode = 0)"}, - { (char *)"cvSVD", _wrap_cvSVD, METH_VARARGS, (char *)"cvSVD(CvArr A, CvArr W, CvArr U = None, CvArr V = None, int flags = 0)"}, - { (char *)"cvSVBkSb", _wrap_cvSVBkSb, METH_VARARGS, (char *)"cvSVBkSb(CvArr W, CvArr U, CvArr V, CvArr B, CvArr X, int flags)"}, - { (char *)"cvInvert", _wrap_cvInvert, METH_VARARGS, (char *)"cvInvert(CvArr src, CvArr dst, int method = 0) -> double"}, - { (char *)"cvSolve", _wrap_cvSolve, METH_VARARGS, (char *)"cvSolve(CvArr src1, CvArr src2, CvArr dst, int method = 0) -> int"}, - { (char *)"cvDet", _wrap_cvDet, METH_VARARGS, (char *)"cvDet(CvArr mat) -> double"}, - { (char *)"cvTrace", _wrap_cvTrace, METH_VARARGS, (char *)"cvTrace(CvArr mat) -> CvScalar"}, - { (char *)"cvEigenVV", _wrap_cvEigenVV, METH_VARARGS, (char *)"\n" - "cvEigenVV(CvArr mat, CvArr evects, CvArr evals, double eps = 0, \n" - " int lowindex = -1, int highindex = -1)\n" - ""}, - { (char *)"cvSetIdentity", _wrap_cvSetIdentity, METH_VARARGS, (char *)"cvSetIdentity(CvArr mat, CvScalar value = cvRealScalar(1))"}, - { (char *)"cvRange", _wrap_cvRange, METH_VARARGS, (char *)"cvRange(CvArr mat, double start, double end) -> CvArr"}, - { (char *)"cvCalcCovarMatrix", _wrap_cvCalcCovarMatrix, METH_VARARGS, (char *)"cvCalcCovarMatrix(CvArr vects, int count, CvArr cov_mat, CvArr avg, int flags)"}, - { (char *)"cvCalcPCA", _wrap_cvCalcPCA, METH_VARARGS, (char *)"\n" - "cvCalcPCA(CvArr data, CvArr mean, CvArr eigenvals, CvArr eigenvects, \n" - " int flags)\n" - ""}, - { (char *)"cvProjectPCA", _wrap_cvProjectPCA, METH_VARARGS, (char *)"cvProjectPCA(CvArr data, CvArr mean, CvArr eigenvects, CvArr result)"}, - { (char *)"cvBackProjectPCA", _wrap_cvBackProjectPCA, METH_VARARGS, (char *)"cvBackProjectPCA(CvArr proj, CvArr mean, CvArr eigenvects, CvArr result)"}, - { (char *)"cvMahalanobis", _wrap_cvMahalanobis, METH_VARARGS, (char *)"cvMahalanobis(CvArr vec1, CvArr vec2, CvArr mat) -> double"}, - { (char *)"cvSum", _wrap_cvSum, METH_VARARGS, (char *)"cvSum(CvArr arr) -> CvScalar"}, - { (char *)"cvCountNonZero", _wrap_cvCountNonZero, METH_VARARGS, (char *)"cvCountNonZero(CvArr arr) -> int"}, - { (char *)"cvAvg", _wrap_cvAvg, METH_VARARGS, (char *)"cvAvg(CvArr arr, CvArr mask = None) -> CvScalar"}, - { (char *)"cvAvgSdv", _wrap_cvAvgSdv, METH_VARARGS, (char *)"cvAvgSdv(CvArr arr, CvScalar mean, CvScalar std_dev, CvArr mask = None)"}, - { (char *)"cvMinMaxLoc", _wrap_cvMinMaxLoc, METH_VARARGS, (char *)"cvMinMaxLoc(CvArr arr, CvArr mask = None)"}, - { (char *)"cvNorm", _wrap_cvNorm, METH_VARARGS, (char *)"cvNorm(CvArr arr1, CvArr arr2 = None, int norm_type = 4, CvArr mask = None) -> double"}, - { (char *)"cvNormalize", _wrap_cvNormalize, METH_VARARGS, (char *)"\n" - "cvNormalize(CvArr src, CvArr dst, double a = 1., double b = 0., \n" - " int norm_type = 4, CvArr mask = None)\n" - ""}, - { (char *)"cvReduce", _wrap_cvReduce, METH_VARARGS, (char *)"cvReduce(CvArr src, CvArr dst, int dim = -1, int op = 0)"}, - { (char *)"cvDFT", _wrap_cvDFT, METH_VARARGS, (char *)"cvDFT(CvArr src, CvArr dst, int flags, int nonzero_rows = 0)"}, - { (char *)"cvMulSpectrums", _wrap_cvMulSpectrums, METH_VARARGS, (char *)"cvMulSpectrums(CvArr src1, CvArr src2, CvArr dst, int flags)"}, - { (char *)"cvGetOptimalDFTSize", _wrap_cvGetOptimalDFTSize, METH_VARARGS, (char *)"cvGetOptimalDFTSize(int size0) -> int"}, - { (char *)"cvDCT", _wrap_cvDCT, METH_VARARGS, (char *)"cvDCT(CvArr src, CvArr dst, int flags)"}, - { (char *)"cvSliceLength", _wrap_cvSliceLength, METH_VARARGS, (char *)"cvSliceLength(CvSlice slice, CvSeq seq) -> int"}, - { (char *)"cvCreateMemStorage", _wrap_cvCreateMemStorage, METH_VARARGS, (char *)"cvCreateMemStorage(int block_size = 0) -> CvMemStorage"}, - { (char *)"cvCreateChildMemStorage", _wrap_cvCreateChildMemStorage, METH_VARARGS, (char *)"cvCreateChildMemStorage(CvMemStorage parent) -> CvMemStorage"}, - { (char *)"cvClearMemStorage", _wrap_cvClearMemStorage, METH_VARARGS, (char *)"cvClearMemStorage(CvMemStorage storage)"}, - { (char *)"cvSaveMemStoragePos", _wrap_cvSaveMemStoragePos, METH_VARARGS, (char *)"cvSaveMemStoragePos(CvMemStorage storage, CvMemStoragePos pos)"}, - { (char *)"cvRestoreMemStoragePos", _wrap_cvRestoreMemStoragePos, METH_VARARGS, (char *)"cvRestoreMemStoragePos(CvMemStorage storage, CvMemStoragePos pos)"}, - { (char *)"cvMemStorageAlloc", _wrap_cvMemStorageAlloc, METH_VARARGS, (char *)"cvMemStorageAlloc(CvMemStorage storage, size_t size) -> void"}, - { (char *)"cvMemStorageAllocString", _wrap_cvMemStorageAllocString, METH_VARARGS, (char *)"cvMemStorageAllocString(CvMemStorage storage, char ptr, int len = -1) -> CvString"}, - { (char *)"cvCreateSeq", _wrap_cvCreateSeq, METH_VARARGS, (char *)"cvCreateSeq(int seq_flags, int header_size, int elem_size, CvMemStorage storage) -> CvSeq"}, - { (char *)"cvSetSeqBlockSize", _wrap_cvSetSeqBlockSize, METH_VARARGS, (char *)"cvSetSeqBlockSize(CvSeq seq, int delta_elems)"}, - { (char *)"cvSeqPush", _wrap_cvSeqPush, METH_VARARGS, (char *)"cvSeqPush(CvSeq seq, void element = None) -> schar"}, - { (char *)"cvSeqPushFront", _wrap_cvSeqPushFront, METH_VARARGS, (char *)"cvSeqPushFront(CvSeq seq, void element = None) -> schar"}, - { (char *)"cvSeqPop", _wrap_cvSeqPop, METH_VARARGS, (char *)"cvSeqPop(CvSeq seq, void element = None)"}, - { (char *)"cvSeqPopFront", _wrap_cvSeqPopFront, METH_VARARGS, (char *)"cvSeqPopFront(CvSeq seq, void element = None)"}, - { (char *)"cvSeqPushMulti", _wrap_cvSeqPushMulti, METH_VARARGS, (char *)"cvSeqPushMulti(CvSeq seq, void elements, int count, int in_front = 0)"}, - { (char *)"cvSeqPopMulti", _wrap_cvSeqPopMulti, METH_VARARGS, (char *)"cvSeqPopMulti(CvSeq seq, void elements, int count, int in_front = 0)"}, - { (char *)"cvSeqInsert", _wrap_cvSeqInsert, METH_VARARGS, (char *)"cvSeqInsert(CvSeq seq, int before_index, void element = None) -> schar"}, - { (char *)"cvSeqRemove", _wrap_cvSeqRemove, METH_VARARGS, (char *)"cvSeqRemove(CvSeq seq, int index)"}, - { (char *)"cvClearSeq", _wrap_cvClearSeq, METH_VARARGS, (char *)"cvClearSeq(CvSeq seq)"}, - { (char *)"cvGetSeqElem", _wrap_cvGetSeqElem, METH_VARARGS, (char *)"cvGetSeqElem(CvSeq seq, int index) -> schar"}, - { (char *)"cvSeqElemIdx", _wrap_cvSeqElemIdx, METH_VARARGS, (char *)"cvSeqElemIdx(CvSeq seq, void element, CvSeqBlock block = None) -> int"}, - { (char *)"cvStartAppendToSeq", _wrap_cvStartAppendToSeq, METH_VARARGS, (char *)"cvStartAppendToSeq(CvSeq seq, CvSeqWriter writer)"}, - { (char *)"cvStartWriteSeq", _wrap_cvStartWriteSeq, METH_VARARGS, (char *)"\n" - "cvStartWriteSeq(int seq_flags, int header_size, int elem_size, CvMemStorage storage, \n" - " CvSeqWriter writer)\n" - ""}, - { (char *)"cvEndWriteSeq", _wrap_cvEndWriteSeq, METH_VARARGS, (char *)"cvEndWriteSeq(CvSeqWriter writer) -> CvSeq"}, - { (char *)"cvFlushSeqWriter", _wrap_cvFlushSeqWriter, METH_VARARGS, (char *)"cvFlushSeqWriter(CvSeqWriter writer)"}, - { (char *)"cvStartReadSeq", _wrap_cvStartReadSeq, METH_VARARGS, (char *)"cvStartReadSeq(CvSeq seq, CvSeqReader reader, int reverse = 0)"}, - { (char *)"cvGetSeqReaderPos", _wrap_cvGetSeqReaderPos, METH_VARARGS, (char *)"cvGetSeqReaderPos(CvSeqReader reader) -> int"}, - { (char *)"cvSetSeqReaderPos", _wrap_cvSetSeqReaderPos, METH_VARARGS, (char *)"cvSetSeqReaderPos(CvSeqReader reader, int index, int is_relative = 0)"}, - { (char *)"cvMakeSeqHeaderForArray", _wrap_cvMakeSeqHeaderForArray, METH_VARARGS, (char *)"\n" - "cvMakeSeqHeaderForArray(int seq_type, int header_size, int elem_size, void elements, \n" - " int total, CvSeq seq, CvSeqBlock block) -> CvSeq\n" - ""}, - { (char *)"cvSeqSlice", _wrap_cvSeqSlice, METH_VARARGS, (char *)"\n" - "cvSeqSlice(CvSeq seq, CvSlice slice, CvMemStorage storage = None, \n" - " int copy_data = 0) -> CvSeq\n" - ""}, - { (char *)"cvCloneSeq", _wrap_cvCloneSeq, METH_VARARGS, (char *)"cvCloneSeq(CvSeq seq, CvMemStorage storage = None) -> CvSeq"}, - { (char *)"cvSeqRemoveSlice", _wrap_cvSeqRemoveSlice, METH_VARARGS, (char *)"cvSeqRemoveSlice(CvSeq seq, CvSlice slice)"}, - { (char *)"cvSeqInsertSlice", _wrap_cvSeqInsertSlice, METH_VARARGS, (char *)"cvSeqInsertSlice(CvSeq seq, int before_index, CvArr from_arr)"}, - { (char *)"cvSeqSort", _wrap_cvSeqSort, METH_VARARGS, (char *)"cvSeqSort(CvSeq seq, CvCmpFunc func, void userdata = None)"}, - { (char *)"cvSeqSearch", _wrap_cvSeqSearch, METH_VARARGS, (char *)"\n" - "cvSeqSearch(CvSeq seq, void elem, CvCmpFunc func, int is_sorted, \n" - " int elem_idx, void userdata = None) -> schar\n" - ""}, - { (char *)"cvSeqInvert", _wrap_cvSeqInvert, METH_VARARGS, (char *)"cvSeqInvert(CvSeq seq)"}, - { (char *)"cvSeqPartition", _wrap_cvSeqPartition, METH_VARARGS, (char *)"\n" - "cvSeqPartition(CvSeq seq, CvMemStorage storage, CvSeq labels, CvCmpFunc is_equal, \n" - " void userdata) -> int\n" - ""}, - { (char *)"cvChangeSeqBlock", _wrap_cvChangeSeqBlock, METH_VARARGS, (char *)"cvChangeSeqBlock(void reader, int direction)"}, - { (char *)"cvCreateSeqBlock", _wrap_cvCreateSeqBlock, METH_VARARGS, (char *)"cvCreateSeqBlock(CvSeqWriter writer)"}, - { (char *)"cvCreateSet", _wrap_cvCreateSet, METH_VARARGS, (char *)"cvCreateSet(int set_flags, int header_size, int elem_size, CvMemStorage storage) -> CvSet"}, - { (char *)"cvSetAdd", _wrap_cvSetAdd, METH_VARARGS, (char *)"cvSetAdd(CvSet set_header, CvSetElem elem = None, CvSetElem inserted_elem = None) -> int"}, - { (char *)"cvSetNew", _wrap_cvSetNew, METH_VARARGS, (char *)"cvSetNew(CvSet set_header) -> CvSetElem"}, - { (char *)"cvSetRemoveByPtr", _wrap_cvSetRemoveByPtr, METH_VARARGS, (char *)"cvSetRemoveByPtr(CvSet set_header, void elem)"}, - { (char *)"cvSetRemove", _wrap_cvSetRemove, METH_VARARGS, (char *)"cvSetRemove(CvSet set_header, int index)"}, - { (char *)"cvGetSetElem", _wrap_cvGetSetElem, METH_VARARGS, (char *)"cvGetSetElem(CvSet set_header, int index) -> CvSetElem"}, - { (char *)"cvClearSet", _wrap_cvClearSet, METH_VARARGS, (char *)"cvClearSet(CvSet set_header)"}, - { (char *)"cvCreateGraph", _wrap_cvCreateGraph, METH_VARARGS, (char *)"\n" - "cvCreateGraph(int graph_flags, int header_size, int vtx_size, int edge_size, \n" - " CvMemStorage storage) -> CvGraph\n" - ""}, - { (char *)"cvGraphAddVtx", _wrap_cvGraphAddVtx, METH_VARARGS, (char *)"cvGraphAddVtx(CvGraph graph, CvGraphVtx vtx = None, CvGraphVtx inserted_vtx = None) -> int"}, - { (char *)"cvGraphRemoveVtx", _wrap_cvGraphRemoveVtx, METH_VARARGS, (char *)"cvGraphRemoveVtx(CvGraph graph, int index) -> int"}, - { (char *)"cvGraphRemoveVtxByPtr", _wrap_cvGraphRemoveVtxByPtr, METH_VARARGS, (char *)"cvGraphRemoveVtxByPtr(CvGraph graph, CvGraphVtx vtx) -> int"}, - { (char *)"cvGraphAddEdge", _wrap_cvGraphAddEdge, METH_VARARGS, (char *)"\n" - "cvGraphAddEdge(CvGraph graph, int start_idx, int end_idx, CvGraphEdge edge = None, \n" - " CvGraphEdge inserted_edge = None) -> int\n" - ""}, - { (char *)"cvGraphAddEdgeByPtr", _wrap_cvGraphAddEdgeByPtr, METH_VARARGS, (char *)"\n" - "cvGraphAddEdgeByPtr(CvGraph graph, CvGraphVtx start_vtx, CvGraphVtx end_vtx, \n" - " CvGraphEdge edge = None, CvGraphEdge inserted_edge = None) -> int\n" - ""}, - { (char *)"cvGraphRemoveEdge", _wrap_cvGraphRemoveEdge, METH_VARARGS, (char *)"cvGraphRemoveEdge(CvGraph graph, int start_idx, int end_idx)"}, - { (char *)"cvGraphRemoveEdgeByPtr", _wrap_cvGraphRemoveEdgeByPtr, METH_VARARGS, (char *)"cvGraphRemoveEdgeByPtr(CvGraph graph, CvGraphVtx start_vtx, CvGraphVtx end_vtx)"}, - { (char *)"cvFindGraphEdge", _wrap_cvFindGraphEdge, METH_VARARGS, (char *)"cvFindGraphEdge(CvGraph graph, int start_idx, int end_idx) -> CvGraphEdge"}, - { (char *)"cvFindGraphEdgeByPtr", _wrap_cvFindGraphEdgeByPtr, METH_VARARGS, (char *)"cvFindGraphEdgeByPtr(CvGraph graph, CvGraphVtx start_vtx, CvGraphVtx end_vtx) -> CvGraphEdge"}, - { (char *)"cvClearGraph", _wrap_cvClearGraph, METH_VARARGS, (char *)"cvClearGraph(CvGraph graph)"}, - { (char *)"cvGraphVtxDegree", _wrap_cvGraphVtxDegree, METH_VARARGS, (char *)"cvGraphVtxDegree(CvGraph graph, int vtx_idx) -> int"}, - { (char *)"cvGraphVtxDegreeByPtr", _wrap_cvGraphVtxDegreeByPtr, METH_VARARGS, (char *)"cvGraphVtxDegreeByPtr(CvGraph graph, CvGraphVtx vtx) -> int"}, - { (char *)"CvGraphScanner_vtx_set", _wrap_CvGraphScanner_vtx_set, METH_VARARGS, (char *)"CvGraphScanner_vtx_set(CvGraphScanner self, CvGraphVtx vtx)"}, - { (char *)"CvGraphScanner_vtx_get", _wrap_CvGraphScanner_vtx_get, METH_VARARGS, (char *)"CvGraphScanner_vtx_get(CvGraphScanner self) -> CvGraphVtx"}, - { (char *)"CvGraphScanner_dst_set", _wrap_CvGraphScanner_dst_set, METH_VARARGS, (char *)"CvGraphScanner_dst_set(CvGraphScanner self, CvGraphVtx dst)"}, - { (char *)"CvGraphScanner_dst_get", _wrap_CvGraphScanner_dst_get, METH_VARARGS, (char *)"CvGraphScanner_dst_get(CvGraphScanner self) -> CvGraphVtx"}, - { (char *)"CvGraphScanner_edge_set", _wrap_CvGraphScanner_edge_set, METH_VARARGS, (char *)"CvGraphScanner_edge_set(CvGraphScanner self, CvGraphEdge edge)"}, - { (char *)"CvGraphScanner_edge_get", _wrap_CvGraphScanner_edge_get, METH_VARARGS, (char *)"CvGraphScanner_edge_get(CvGraphScanner self) -> CvGraphEdge"}, - { (char *)"CvGraphScanner_graph_set", _wrap_CvGraphScanner_graph_set, METH_VARARGS, (char *)"CvGraphScanner_graph_set(CvGraphScanner self, CvGraph graph)"}, - { (char *)"CvGraphScanner_graph_get", _wrap_CvGraphScanner_graph_get, METH_VARARGS, (char *)"CvGraphScanner_graph_get(CvGraphScanner self) -> CvGraph"}, - { (char *)"CvGraphScanner_stack_set", _wrap_CvGraphScanner_stack_set, METH_VARARGS, (char *)"CvGraphScanner_stack_set(CvGraphScanner self, CvSeq stack)"}, - { (char *)"CvGraphScanner_stack_get", _wrap_CvGraphScanner_stack_get, METH_VARARGS, (char *)"CvGraphScanner_stack_get(CvGraphScanner self) -> CvSeq"}, - { (char *)"CvGraphScanner_index_set", _wrap_CvGraphScanner_index_set, METH_VARARGS, (char *)"CvGraphScanner_index_set(CvGraphScanner self, int index)"}, - { (char *)"CvGraphScanner_index_get", _wrap_CvGraphScanner_index_get, METH_VARARGS, (char *)"CvGraphScanner_index_get(CvGraphScanner self) -> int"}, - { (char *)"CvGraphScanner_mask_set", _wrap_CvGraphScanner_mask_set, METH_VARARGS, (char *)"CvGraphScanner_mask_set(CvGraphScanner self, int mask)"}, - { (char *)"CvGraphScanner_mask_get", _wrap_CvGraphScanner_mask_get, METH_VARARGS, (char *)"CvGraphScanner_mask_get(CvGraphScanner self) -> int"}, - { (char *)"delete_CvGraphScanner", _wrap_delete_CvGraphScanner, METH_VARARGS, (char *)"delete_CvGraphScanner(CvGraphScanner self)"}, - { (char *)"CvGraphScanner_swigregister", CvGraphScanner_swigregister, METH_VARARGS, NULL}, - { (char *)"cvCreateGraphScanner", _wrap_cvCreateGraphScanner, METH_VARARGS, (char *)"cvCreateGraphScanner(CvGraph graph, CvGraphVtx vtx = None, int mask = -1) -> CvGraphScanner"}, - { (char *)"cvNextGraphItem", _wrap_cvNextGraphItem, METH_VARARGS, (char *)"cvNextGraphItem(CvGraphScanner scanner) -> int"}, - { (char *)"cvCloneGraph", _wrap_cvCloneGraph, METH_VARARGS, (char *)"cvCloneGraph(CvGraph graph, CvMemStorage storage) -> CvGraph"}, - { (char *)"cvLine", _wrap_cvLine, METH_VARARGS, (char *)"\n" - "cvLine(CvArr img, CvPoint pt1, CvPoint pt2, CvScalar color, \n" - " int thickness = 1, int line_type = 8, int shift = 0)\n" - ""}, - { (char *)"cvRectangle", _wrap_cvRectangle, METH_VARARGS, (char *)"\n" - "cvRectangle(CvArr img, CvPoint pt1, CvPoint pt2, CvScalar color, \n" - " int thickness = 1, int line_type = 8, int shift = 0)\n" - ""}, - { (char *)"cvCircle", _wrap_cvCircle, METH_VARARGS, (char *)"\n" - "cvCircle(CvArr img, CvPoint center, int radius, CvScalar color, \n" - " int thickness = 1, int line_type = 8, int shift = 0)\n" - ""}, - { (char *)"cvEllipse", _wrap_cvEllipse, METH_VARARGS, (char *)"\n" - "cvEllipse(CvArr img, CvPoint center, CvSize axes, double angle, \n" - " double start_angle, double end_angle, CvScalar color, \n" - " int thickness = 1, int line_type = 8, \n" - " int shift = 0)\n" - ""}, - { (char *)"cvEllipseBox", _wrap_cvEllipseBox, METH_VARARGS, (char *)"\n" - "cvEllipseBox(CvArr img, CvBox2D box, CvScalar color, int thickness = 1, \n" - " int line_type = 8, int shift = 0)\n" - ""}, - { (char *)"cvFillConvexPoly", _wrap_cvFillConvexPoly, METH_VARARGS, (char *)"\n" - "cvFillConvexPoly(CvArr img, CvPoint pts, int npts, CvScalar color, int line_type = 8, \n" - " int shift = 0)\n" - ""}, - { (char *)"cvFillPoly", _wrap_cvFillPoly, METH_VARARGS, (char *)"\n" - "cvFillPoly(CvArr img, CvPoint pts, int npts, int contours, CvScalar color, \n" - " int line_type = 8, int shift = 0)\n" - ""}, - { (char *)"cvPolyLine", _wrap_cvPolyLine, METH_VARARGS, (char *)"\n" - "cvPolyLine(CvArr img, CvPoint pts, int npts, int contours, int is_closed, \n" - " CvScalar color, int thickness = 1, \n" - " int line_type = 8, int shift = 0)\n" - ""}, - { (char *)"cvClipLine", _wrap_cvClipLine, METH_VARARGS, (char *)"cvClipLine(CvSize img_size, CvPoint pt1, CvPoint pt2) -> int"}, - { (char *)"cvInitLineIterator", _wrap_cvInitLineIterator, METH_VARARGS, (char *)"\n" - "cvInitLineIterator(CvArr image, CvPoint pt1, CvPoint pt2, CvLineIterator line_iterator, \n" - " int connectivity = 8, int left_to_right = 0) -> int\n" - ""}, - { (char *)"CvFont_font_face_set", _wrap_CvFont_font_face_set, METH_VARARGS, (char *)"CvFont_font_face_set(CvFont self, int font_face)"}, - { (char *)"CvFont_font_face_get", _wrap_CvFont_font_face_get, METH_VARARGS, (char *)"CvFont_font_face_get(CvFont self) -> int"}, - { (char *)"CvFont_ascii_set", _wrap_CvFont_ascii_set, METH_VARARGS, (char *)"CvFont_ascii_set(CvFont self, int ascii)"}, - { (char *)"CvFont_ascii_get", _wrap_CvFont_ascii_get, METH_VARARGS, (char *)"CvFont_ascii_get(CvFont self) -> int"}, - { (char *)"CvFont_greek_set", _wrap_CvFont_greek_set, METH_VARARGS, (char *)"CvFont_greek_set(CvFont self, int greek)"}, - { (char *)"CvFont_greek_get", _wrap_CvFont_greek_get, METH_VARARGS, (char *)"CvFont_greek_get(CvFont self) -> int"}, - { (char *)"CvFont_cyrillic_set", _wrap_CvFont_cyrillic_set, METH_VARARGS, (char *)"CvFont_cyrillic_set(CvFont self, int cyrillic)"}, - { (char *)"CvFont_cyrillic_get", _wrap_CvFont_cyrillic_get, METH_VARARGS, (char *)"CvFont_cyrillic_get(CvFont self) -> int"}, - { (char *)"CvFont_hscale_set", _wrap_CvFont_hscale_set, METH_VARARGS, (char *)"CvFont_hscale_set(CvFont self, float hscale)"}, - { (char *)"CvFont_hscale_get", _wrap_CvFont_hscale_get, METH_VARARGS, (char *)"CvFont_hscale_get(CvFont self) -> float"}, - { (char *)"CvFont_vscale_set", _wrap_CvFont_vscale_set, METH_VARARGS, (char *)"CvFont_vscale_set(CvFont self, float vscale)"}, - { (char *)"CvFont_vscale_get", _wrap_CvFont_vscale_get, METH_VARARGS, (char *)"CvFont_vscale_get(CvFont self) -> float"}, - { (char *)"CvFont_shear_set", _wrap_CvFont_shear_set, METH_VARARGS, (char *)"CvFont_shear_set(CvFont self, float shear)"}, - { (char *)"CvFont_shear_get", _wrap_CvFont_shear_get, METH_VARARGS, (char *)"CvFont_shear_get(CvFont self) -> float"}, - { (char *)"CvFont_thickness_set", _wrap_CvFont_thickness_set, METH_VARARGS, (char *)"CvFont_thickness_set(CvFont self, int thickness)"}, - { (char *)"CvFont_thickness_get", _wrap_CvFont_thickness_get, METH_VARARGS, (char *)"CvFont_thickness_get(CvFont self) -> int"}, - { (char *)"CvFont_dx_set", _wrap_CvFont_dx_set, METH_VARARGS, (char *)"CvFont_dx_set(CvFont self, float dx)"}, - { (char *)"CvFont_dx_get", _wrap_CvFont_dx_get, METH_VARARGS, (char *)"CvFont_dx_get(CvFont self) -> float"}, - { (char *)"CvFont_line_type_set", _wrap_CvFont_line_type_set, METH_VARARGS, (char *)"CvFont_line_type_set(CvFont self, int line_type)"}, - { (char *)"CvFont_line_type_get", _wrap_CvFont_line_type_get, METH_VARARGS, (char *)"CvFont_line_type_get(CvFont self) -> int"}, - { (char *)"new_CvFont", _wrap_new_CvFont, METH_VARARGS, (char *)"new_CvFont() -> CvFont"}, - { (char *)"delete_CvFont", _wrap_delete_CvFont, METH_VARARGS, (char *)"delete_CvFont(CvFont self)"}, - { (char *)"CvFont_swigregister", CvFont_swigregister, METH_VARARGS, NULL}, - { (char *)"cvInitFont", _wrap_cvInitFont, METH_VARARGS, (char *)"\n" - "cvInitFont(CvFont font, double hscale, double vscale, double shear = 0, \n" - " int thickness = 1, int line_type = 8)\n" - ""}, - { (char *)"cvFont", _wrap_cvFont, METH_VARARGS, (char *)"cvFont(double scale, int thickness = 1) -> CvFont"}, - { (char *)"cvPutText", _wrap_cvPutText, METH_VARARGS, (char *)"cvPutText(CvArr img, char text, CvPoint org, CvFont font, CvScalar color)"}, - { (char *)"cvGetTextSize", _wrap_cvGetTextSize, METH_VARARGS, (char *)"cvGetTextSize(char text_string, CvFont font)"}, - { (char *)"cvColorToScalar", _wrap_cvColorToScalar, METH_VARARGS, (char *)"cvColorToScalar(double packed_color, int arrtype) -> CvScalar"}, - { (char *)"cvEllipse2Poly", _wrap_cvEllipse2Poly, METH_VARARGS, (char *)"\n" - "cvEllipse2Poly(CvPoint center, CvSize axes, int angle, int arc_start, \n" - " int arc_end, CvPoint pts, int delta) -> int\n" - ""}, - { (char *)"cvDrawContours", _wrap_cvDrawContours, METH_VARARGS, (char *)"\n" - "cvDrawContours(CvArr img, CvSeq contour, CvScalar external_color, \n" - " CvScalar hole_color, int max_level, int thickness = 1, \n" - " int line_type = 8, CvPoint offset = cvPoint(0,0))\n" - ""}, - { (char *)"cvLUT", _wrap_cvLUT, METH_VARARGS, (char *)"cvLUT(CvArr src, CvArr dst, CvArr lut)"}, - { (char *)"CvTreeNodeIterator_node_set", _wrap_CvTreeNodeIterator_node_set, METH_VARARGS, (char *)"CvTreeNodeIterator_node_set(CvTreeNodeIterator self, void node)"}, - { (char *)"CvTreeNodeIterator_node_get", _wrap_CvTreeNodeIterator_node_get, METH_VARARGS, (char *)"CvTreeNodeIterator_node_get(CvTreeNodeIterator self) -> void"}, - { (char *)"CvTreeNodeIterator_level_set", _wrap_CvTreeNodeIterator_level_set, METH_VARARGS, (char *)"CvTreeNodeIterator_level_set(CvTreeNodeIterator self, int level)"}, - { (char *)"CvTreeNodeIterator_level_get", _wrap_CvTreeNodeIterator_level_get, METH_VARARGS, (char *)"CvTreeNodeIterator_level_get(CvTreeNodeIterator self) -> int"}, - { (char *)"CvTreeNodeIterator_max_level_set", _wrap_CvTreeNodeIterator_max_level_set, METH_VARARGS, (char *)"CvTreeNodeIterator_max_level_set(CvTreeNodeIterator self, int max_level)"}, - { (char *)"CvTreeNodeIterator_max_level_get", _wrap_CvTreeNodeIterator_max_level_get, METH_VARARGS, (char *)"CvTreeNodeIterator_max_level_get(CvTreeNodeIterator self) -> int"}, - { (char *)"new_CvTreeNodeIterator", _wrap_new_CvTreeNodeIterator, METH_VARARGS, (char *)"new_CvTreeNodeIterator() -> CvTreeNodeIterator"}, - { (char *)"delete_CvTreeNodeIterator", _wrap_delete_CvTreeNodeIterator, METH_VARARGS, (char *)"delete_CvTreeNodeIterator(CvTreeNodeIterator self)"}, - { (char *)"CvTreeNodeIterator_swigregister", CvTreeNodeIterator_swigregister, METH_VARARGS, NULL}, - { (char *)"cvInitTreeNodeIterator", _wrap_cvInitTreeNodeIterator, METH_VARARGS, (char *)"cvInitTreeNodeIterator(CvTreeNodeIterator tree_iterator, void first, int max_level)"}, - { (char *)"cvNextTreeNode", _wrap_cvNextTreeNode, METH_VARARGS, (char *)"cvNextTreeNode(CvTreeNodeIterator tree_iterator) -> void"}, - { (char *)"cvPrevTreeNode", _wrap_cvPrevTreeNode, METH_VARARGS, (char *)"cvPrevTreeNode(CvTreeNodeIterator tree_iterator) -> void"}, - { (char *)"cvInsertNodeIntoTree", _wrap_cvInsertNodeIntoTree, METH_VARARGS, (char *)"cvInsertNodeIntoTree(void node, void parent, void frame)"}, - { (char *)"cvRemoveNodeFromTree", _wrap_cvRemoveNodeFromTree, METH_VARARGS, (char *)"cvRemoveNodeFromTree(void node, void frame)"}, - { (char *)"cvTreeToNodeSeq", _wrap_cvTreeToNodeSeq, METH_VARARGS, (char *)"cvTreeToNodeSeq(void first, int header_size, CvMemStorage storage) -> CvSeq"}, - { (char *)"cvKMeans2", _wrap_cvKMeans2, METH_VARARGS, (char *)"\n" - "cvKMeans2(CvArr samples, int cluster_count, CvArr labels, CvTermCriteria termcrit, \n" - " int attempts = 1, CvRNG rng = None, \n" - " int flags = 0, CvArr _centers = None, \n" - " double compactness = None) -> int\n" - ""}, - { (char *)"cvRegisterModule", _wrap_cvRegisterModule, METH_VARARGS, (char *)"cvRegisterModule(CvModuleInfo module_info) -> int"}, - { (char *)"cvUseOptimized", _wrap_cvUseOptimized, METH_VARARGS, (char *)"cvUseOptimized(int on_off) -> int"}, - { (char *)"cvGetModuleInfo", _wrap_cvGetModuleInfo, METH_VARARGS, (char *)"cvGetModuleInfo(char module_name, char version, char loaded_addon_plugins)"}, - { (char *)"cvGetErrStatus", _wrap_cvGetErrStatus, METH_VARARGS, (char *)"cvGetErrStatus() -> int"}, - { (char *)"cvSetErrStatus", _wrap_cvSetErrStatus, METH_VARARGS, (char *)"cvSetErrStatus(int status)"}, - { (char *)"cvGetErrMode", _wrap_cvGetErrMode, METH_VARARGS, (char *)"cvGetErrMode() -> int"}, - { (char *)"cvSetErrMode", _wrap_cvSetErrMode, METH_VARARGS, (char *)"cvSetErrMode(int mode) -> int"}, - { (char *)"cvError", _wrap_cvError, METH_VARARGS, (char *)"\n" - "cvError(int status, char func_name, char err_msg, char file_name, \n" - " int line)\n" - ""}, - { (char *)"cvErrorStr", _wrap_cvErrorStr, METH_VARARGS, (char *)"cvErrorStr(int status) -> char"}, - { (char *)"cvGetErrInfo", _wrap_cvGetErrInfo, METH_VARARGS, (char *)"\n" - "cvGetErrInfo(char errcode_desc, char description, char filename, \n" - " int line) -> int\n" - ""}, - { (char *)"cvErrorFromIppStatus", _wrap_cvErrorFromIppStatus, METH_VARARGS, (char *)"cvErrorFromIppStatus(int ipp_status) -> int"}, - { (char *)"cvRedirectError", _wrap_cvRedirectError, METH_VARARGS, (char *)"\n" - "cvRedirectError(CvErrorCallback error_handler, void userdata = None, \n" - " void prev_userdata = None) -> CvErrorCallback\n" - ""}, - { (char *)"cvNulDevReport", _wrap_cvNulDevReport, METH_VARARGS, (char *)"\n" - "cvNulDevReport(int status, char func_name, char err_msg, char file_name, \n" - " int line, void userdata) -> int\n" - ""}, - { (char *)"cvStdErrReport", _wrap_cvStdErrReport, METH_VARARGS, (char *)"\n" - "cvStdErrReport(int status, char func_name, char err_msg, char file_name, \n" - " int line, void userdata) -> int\n" - ""}, - { (char *)"cvGuiBoxReport", _wrap_cvGuiBoxReport, METH_VARARGS, (char *)"\n" - "cvGuiBoxReport(int status, char func_name, char err_msg, char file_name, \n" - " int line, void userdata) -> int\n" - ""}, - { (char *)"cvSetMemoryManager", _wrap_cvSetMemoryManager, METH_VARARGS, (char *)"\n" - "cvSetMemoryManager(CvAllocFunc alloc_func = None, CvFreeFunc free_func = None, \n" - " void userdata = None)\n" - ""}, - { (char *)"cvSetIPLAllocators", _wrap_cvSetIPLAllocators, METH_VARARGS, (char *)"\n" - "cvSetIPLAllocators(Cv_iplCreateImageHeader create_header, Cv_iplAllocateImageData allocate_data, \n" - " Cv_iplDeallocate deallocate, \n" - " Cv_iplCreateROI create_roi, Cv_iplCloneImage clone_image)\n" - ""}, - { (char *)"cvOpenFileStorage", _wrap_cvOpenFileStorage, METH_VARARGS, (char *)"cvOpenFileStorage(char filename, CvMemStorage memstorage, int flags) -> CvFileStorage"}, - { (char *)"cvReleaseFileStorage", _wrap_cvReleaseFileStorage, METH_VARARGS, (char *)"cvReleaseFileStorage(CvFileStorage fs)"}, - { (char *)"cvAttrValue", _wrap_cvAttrValue, METH_VARARGS, (char *)"cvAttrValue(CvAttrList attr, char attr_name) -> char"}, - { (char *)"cvStartWriteStruct", _wrap_cvStartWriteStruct, METH_VARARGS, (char *)"\n" - "cvStartWriteStruct(CvFileStorage fs, char name, int struct_flags, char type_name = None, \n" - " CvAttrList attributes = cvAttrList())\n" - ""}, - { (char *)"cvEndWriteStruct", _wrap_cvEndWriteStruct, METH_VARARGS, (char *)"cvEndWriteStruct(CvFileStorage fs)"}, - { (char *)"cvWriteInt", _wrap_cvWriteInt, METH_VARARGS, (char *)"cvWriteInt(CvFileStorage fs, char name, int value)"}, - { (char *)"cvWriteReal", _wrap_cvWriteReal, METH_VARARGS, (char *)"cvWriteReal(CvFileStorage fs, char name, double value)"}, - { (char *)"cvWriteString", _wrap_cvWriteString, METH_VARARGS, (char *)"cvWriteString(CvFileStorage fs, char name, char str, int quote = 0)"}, - { (char *)"cvWriteComment", _wrap_cvWriteComment, METH_VARARGS, (char *)"cvWriteComment(CvFileStorage fs, char comment, int eol_comment)"}, - { (char *)"cvWrite", _wrap_cvWrite, METH_VARARGS, (char *)"cvWrite(CvFileStorage fs, char name, void ptr, CvAttrList attributes = cvAttrList())"}, - { (char *)"cvStartNextStream", _wrap_cvStartNextStream, METH_VARARGS, (char *)"cvStartNextStream(CvFileStorage fs)"}, - { (char *)"cvWriteRawData", _wrap_cvWriteRawData, METH_VARARGS, (char *)"cvWriteRawData(CvFileStorage fs, void src, int len, char dt)"}, - { (char *)"cvGetHashedKey", _wrap_cvGetHashedKey, METH_VARARGS, (char *)"cvGetHashedKey(CvFileStorage fs, char name, int len = -1, int create_missing = 0) -> CvStringHashNode"}, - { (char *)"cvGetRootFileNode", _wrap_cvGetRootFileNode, METH_VARARGS, (char *)"cvGetRootFileNode(CvFileStorage fs, int stream_index = 0) -> CvFileNode"}, - { (char *)"cvGetFileNode", _wrap_cvGetFileNode, METH_VARARGS, (char *)"\n" - "cvGetFileNode(CvFileStorage fs, CvFileNode map, CvStringHashNode key, \n" - " int create_missing = 0) -> CvFileNode\n" - ""}, - { (char *)"cvGetFileNodeByName", _wrap_cvGetFileNodeByName, METH_VARARGS, (char *)"cvGetFileNodeByName(CvFileStorage fs, CvFileNode map, char name) -> CvFileNode"}, - { (char *)"cvReadInt", _wrap_cvReadInt, METH_VARARGS, (char *)"cvReadInt(CvFileNode node, int default_value = 0) -> int"}, - { (char *)"cvReadIntByName", _wrap_cvReadIntByName, METH_VARARGS, (char *)"cvReadIntByName(CvFileStorage fs, CvFileNode map, char name, int default_value = 0) -> int"}, - { (char *)"cvReadReal", _wrap_cvReadReal, METH_VARARGS, (char *)"cvReadReal(CvFileNode node, double default_value = 0.) -> double"}, - { (char *)"cvReadRealByName", _wrap_cvReadRealByName, METH_VARARGS, (char *)"cvReadRealByName(CvFileStorage fs, CvFileNode map, char name, double default_value = 0.) -> double"}, - { (char *)"cvReadString", _wrap_cvReadString, METH_VARARGS, (char *)"cvReadString(CvFileNode node, char default_value = None) -> char"}, - { (char *)"cvReadStringByName", _wrap_cvReadStringByName, METH_VARARGS, (char *)"cvReadStringByName(CvFileStorage fs, CvFileNode map, char name, char default_value = None) -> char"}, - { (char *)"cvRead", _wrap_cvRead, METH_VARARGS, (char *)"cvRead(CvFileStorage fs, CvFileNode node, CvAttrList attributes = None) -> void"}, - { (char *)"cvReadByName", _wrap_cvReadByName, METH_VARARGS, (char *)"cvReadByName(CvFileStorage fs, CvFileNode map, char name, CvAttrList attributes = None) -> void"}, - { (char *)"cvStartReadRawData", _wrap_cvStartReadRawData, METH_VARARGS, (char *)"cvStartReadRawData(CvFileStorage fs, CvFileNode src, CvSeqReader reader)"}, - { (char *)"cvReadRawDataSlice", _wrap_cvReadRawDataSlice, METH_VARARGS, (char *)"\n" - "cvReadRawDataSlice(CvFileStorage fs, CvSeqReader reader, int count, void dst, \n" - " char dt)\n" - ""}, - { (char *)"cvReadRawData", _wrap_cvReadRawData, METH_VARARGS, (char *)"cvReadRawData(CvFileStorage fs, CvFileNode src, void dst, char dt)"}, - { (char *)"cvWriteFileNode", _wrap_cvWriteFileNode, METH_VARARGS, (char *)"\n" - "cvWriteFileNode(CvFileStorage fs, char new_node_name, CvFileNode node, \n" - " int embed)\n" - ""}, - { (char *)"cvGetFileNodeName", _wrap_cvGetFileNodeName, METH_VARARGS, (char *)"cvGetFileNodeName(CvFileNode node) -> char"}, - { (char *)"cvRegisterType", _wrap_cvRegisterType, METH_VARARGS, (char *)"cvRegisterType(CvTypeInfo info)"}, - { (char *)"cvUnregisterType", _wrap_cvUnregisterType, METH_VARARGS, (char *)"cvUnregisterType(char type_name)"}, - { (char *)"cvFirstType", _wrap_cvFirstType, METH_VARARGS, (char *)"cvFirstType() -> CvTypeInfo"}, - { (char *)"cvFindType", _wrap_cvFindType, METH_VARARGS, (char *)"cvFindType(char type_name) -> CvTypeInfo"}, - { (char *)"cvTypeOf", _wrap_cvTypeOf, METH_VARARGS, (char *)"cvTypeOf(void struct_ptr) -> CvTypeInfo"}, - { (char *)"cvClone", _wrap_cvClone, METH_VARARGS, (char *)"cvClone(void struct_ptr) -> void"}, - { (char *)"cvSave", _wrap_cvSave, METH_VARARGS, (char *)"\n" - "cvSave(char filename, void struct_ptr, char name = None, char comment = None, \n" - " CvAttrList attributes = cvAttrList())\n" - ""}, - { (char *)"cvLoad", _wrap_cvLoad, METH_VARARGS, (char *)"\n" - "cvLoad(char filename, CvMemStorage memstorage = None, char name = None, \n" - " char real_name = None) -> void\n" - ""}, - { (char *)"cvGetTickCount", _wrap_cvGetTickCount, METH_VARARGS, (char *)"cvGetTickCount() -> int64"}, - { (char *)"cvGetTickFrequency", _wrap_cvGetTickFrequency, METH_VARARGS, (char *)"cvGetTickFrequency() -> double"}, - { (char *)"cvGetNumThreads", _wrap_cvGetNumThreads, METH_VARARGS, (char *)"cvGetNumThreads() -> int"}, - { (char *)"cvSetNumThreads", _wrap_cvSetNumThreads, METH_VARARGS, (char *)"cvSetNumThreads(int threads = 0)"}, - { (char *)"cvGetThreadNum", _wrap_cvGetThreadNum, METH_VARARGS, (char *)"cvGetThreadNum() -> int"}, - { (char *)"cvSetImageIOFunctions", _wrap_cvSetImageIOFunctions, METH_VARARGS, (char *)"\n" - "cvSetImageIOFunctions(CvLoadImageFunc _load_image, CvLoadImageMFunc _load_image_m, \n" - " CvSaveImageFunc _save_image, CvShowImageFunc _show_image) -> int\n" - ""}, - { (char *)"new_CvImage", _wrap_new_CvImage, METH_VARARGS, (char *)"\n" - "CvImage()\n" - "CvImage(CvSize size, int depth, int channels)\n" - "CvImage( img)\n" - "CvImage(CvImage img)\n" - "CvImage(char filename, char imgname = None, int color = -1)\n" - "CvImage(char filename, char imgname = None)\n" - "CvImage(char filename)\n" - "CvImage(CvFileStorage fs, char mapname, char imgname)\n" - "new_CvImage(CvFileStorage fs, char seqname, int idx) -> CvImage\n" - ""}, - { (char *)"delete_CvImage", _wrap_delete_CvImage, METH_VARARGS, (char *)"delete_CvImage(CvImage self)"}, - { (char *)"CvImage_clone", _wrap_CvImage_clone, METH_VARARGS, (char *)"CvImage_clone(CvImage self) -> CvImage"}, - { (char *)"CvImage_create", _wrap_CvImage_create, METH_VARARGS, (char *)"CvImage_create(CvImage self, CvSize size, int depth, int channels)"}, - { (char *)"CvImage_release", _wrap_CvImage_release, METH_VARARGS, (char *)"CvImage_release(CvImage self)"}, - { (char *)"CvImage_clear", _wrap_CvImage_clear, METH_VARARGS, (char *)"CvImage_clear(CvImage self)"}, - { (char *)"CvImage_attach", _wrap_CvImage_attach, METH_VARARGS, (char *)"\n" - "attach( img, bool use_refcount = True)\n" - "CvImage_attach(CvImage self, img)\n" - ""}, - { (char *)"CvImage_detach", _wrap_CvImage_detach, METH_VARARGS, (char *)"CvImage_detach(CvImage self)"}, - { (char *)"CvImage_load", _wrap_CvImage_load, METH_VARARGS, (char *)"\n" - "load(char filename, char imgname = None, int color = -1) -> bool\n" - "load(char filename, char imgname = None) -> bool\n" - "CvImage_load(CvImage self, char filename) -> bool\n" - ""}, - { (char *)"CvImage_read", _wrap_CvImage_read, METH_VARARGS, (char *)"\n" - "read(CvFileStorage fs, char mapname, char imgname) -> bool\n" - "CvImage_read(CvImage self, CvFileStorage fs, char seqname, int idx) -> bool\n" - ""}, - { (char *)"CvImage_save", _wrap_CvImage_save, METH_VARARGS, (char *)"\n" - "save(char filename, char imgname, int params = None)\n" - "CvImage_save(CvImage self, char filename, char imgname)\n" - ""}, - { (char *)"CvImage_write", _wrap_CvImage_write, METH_VARARGS, (char *)"CvImage_write(CvImage self, CvFileStorage fs, char imgname)"}, - { (char *)"CvImage_show", _wrap_CvImage_show, METH_VARARGS, (char *)"CvImage_show(CvImage self, char window_name)"}, - { (char *)"CvImage_is_valid", _wrap_CvImage_is_valid, METH_VARARGS, (char *)"CvImage_is_valid(CvImage self) -> bool"}, - { (char *)"CvImage_width", _wrap_CvImage_width, METH_VARARGS, (char *)"CvImage_width(CvImage self) -> int"}, - { (char *)"CvImage_height", _wrap_CvImage_height, METH_VARARGS, (char *)"CvImage_height(CvImage self) -> int"}, - { (char *)"CvImage_size", _wrap_CvImage_size, METH_VARARGS, (char *)"CvImage_size(CvImage self) -> CvSize"}, - { (char *)"CvImage_roi_size", _wrap_CvImage_roi_size, METH_VARARGS, (char *)"CvImage_roi_size(CvImage self) -> CvSize"}, - { (char *)"CvImage_roi", _wrap_CvImage_roi, METH_VARARGS, (char *)"CvImage_roi(CvImage self) -> CvRect"}, - { (char *)"CvImage_coi", _wrap_CvImage_coi, METH_VARARGS, (char *)"CvImage_coi(CvImage self) -> int"}, - { (char *)"CvImage_set_roi", _wrap_CvImage_set_roi, METH_VARARGS, (char *)"CvImage_set_roi(CvImage self, CvRect roi)"}, - { (char *)"CvImage_reset_roi", _wrap_CvImage_reset_roi, METH_VARARGS, (char *)"CvImage_reset_roi(CvImage self)"}, - { (char *)"CvImage_set_coi", _wrap_CvImage_set_coi, METH_VARARGS, (char *)"CvImage_set_coi(CvImage self, int coi)"}, - { (char *)"CvImage_depth", _wrap_CvImage_depth, METH_VARARGS, (char *)"CvImage_depth(CvImage self) -> int"}, - { (char *)"CvImage_channels", _wrap_CvImage_channels, METH_VARARGS, (char *)"CvImage_channels(CvImage self) -> int"}, - { (char *)"CvImage_pix_size", _wrap_CvImage_pix_size, METH_VARARGS, (char *)"CvImage_pix_size(CvImage self) -> int"}, - { (char *)"CvImage_data", _wrap_CvImage_data, METH_VARARGS, (char *)"\n" - "data() -> uchar\n" - "CvImage_data(CvImage self) -> uchar\n" - ""}, - { (char *)"CvImage_step", _wrap_CvImage_step, METH_VARARGS, (char *)"CvImage_step(CvImage self) -> int"}, - { (char *)"CvImage_origin", _wrap_CvImage_origin, METH_VARARGS, (char *)"CvImage_origin(CvImage self) -> int"}, - { (char *)"CvImage_roi_row", _wrap_CvImage_roi_row, METH_VARARGS, (char *)"\n" - "roi_row(int y) -> uchar\n" - "CvImage_roi_row(CvImage self, int y) -> uchar\n" - ""}, - { (char *)"CvImage_asIplImage", _wrap_CvImage_asIplImage, METH_VARARGS, (char *)"CvImage_asIplImage(CvImage self)"}, - { (char *)"CvImage_swigregister", CvImage_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvMatrix", _wrap_new_CvMatrix, METH_VARARGS, (char *)"\n" - "CvMatrix()\n" - "CvMatrix(int rows, int cols, int type)\n" - "CvMatrix(int rows, int cols, int type, CvMat hdr, void data = None, \n" - " int step = 0x7fffffff)\n" - "CvMatrix(int rows, int cols, int type, CvMat hdr, void data = None)\n" - "CvMatrix(int rows, int cols, int type, CvMat hdr)\n" - "CvMatrix(int rows, int cols, int type, CvMemStorage storage, \n" - " bool alloc_data = True)\n" - "CvMatrix(int rows, int cols, int type, CvMemStorage storage)\n" - "CvMatrix(int rows, int cols, int type, void data, int step = 0x7fffffff)\n" - "CvMatrix(int rows, int cols, int type, void data)\n" - "CvMatrix(CvMat m)\n" - "CvMatrix(CvMatrix m)\n" - "CvMatrix(char filename, char matname = None, int color = -1)\n" - "CvMatrix(char filename, char matname = None)\n" - "CvMatrix(char filename)\n" - "CvMatrix(CvFileStorage fs, char mapname, char matname)\n" - "new_CvMatrix(CvFileStorage fs, char seqname, int idx) -> CvMatrix\n" - ""}, - { (char *)"delete_CvMatrix", _wrap_delete_CvMatrix, METH_VARARGS, (char *)"delete_CvMatrix(CvMatrix self)"}, - { (char *)"CvMatrix_clone", _wrap_CvMatrix_clone, METH_VARARGS, (char *)"CvMatrix_clone(CvMatrix self) -> CvMatrix"}, - { (char *)"CvMatrix_set", _wrap_CvMatrix_set, METH_VARARGS, (char *)"CvMatrix_set(CvMatrix self, CvMat m, bool add_ref)"}, - { (char *)"CvMatrix_create", _wrap_CvMatrix_create, METH_VARARGS, (char *)"CvMatrix_create(CvMatrix self, int rows, int cols, int type)"}, - { (char *)"CvMatrix_addref", _wrap_CvMatrix_addref, METH_VARARGS, (char *)"CvMatrix_addref(CvMatrix self)"}, - { (char *)"CvMatrix_release", _wrap_CvMatrix_release, METH_VARARGS, (char *)"CvMatrix_release(CvMatrix self)"}, - { (char *)"CvMatrix_clear", _wrap_CvMatrix_clear, METH_VARARGS, (char *)"CvMatrix_clear(CvMatrix self)"}, - { (char *)"CvMatrix_load", _wrap_CvMatrix_load, METH_VARARGS, (char *)"\n" - "load(char filename, char matname = None, int color = -1) -> bool\n" - "load(char filename, char matname = None) -> bool\n" - "CvMatrix_load(CvMatrix self, char filename) -> bool\n" - ""}, - { (char *)"CvMatrix_read", _wrap_CvMatrix_read, METH_VARARGS, (char *)"\n" - "read(CvFileStorage fs, char mapname, char matname) -> bool\n" - "CvMatrix_read(CvMatrix self, CvFileStorage fs, char seqname, int idx) -> bool\n" - ""}, - { (char *)"CvMatrix_save", _wrap_CvMatrix_save, METH_VARARGS, (char *)"\n" - "save(char filename, char matname, int params = None)\n" - "CvMatrix_save(CvMatrix self, char filename, char matname)\n" - ""}, - { (char *)"CvMatrix_write", _wrap_CvMatrix_write, METH_VARARGS, (char *)"CvMatrix_write(CvMatrix self, CvFileStorage fs, char matname)"}, - { (char *)"CvMatrix_show", _wrap_CvMatrix_show, METH_VARARGS, (char *)"CvMatrix_show(CvMatrix self, char window_name)"}, - { (char *)"CvMatrix_is_valid", _wrap_CvMatrix_is_valid, METH_VARARGS, (char *)"CvMatrix_is_valid(CvMatrix self) -> bool"}, - { (char *)"CvMatrix_rows", _wrap_CvMatrix_rows, METH_VARARGS, (char *)"CvMatrix_rows(CvMatrix self) -> int"}, - { (char *)"CvMatrix_cols", _wrap_CvMatrix_cols, METH_VARARGS, (char *)"CvMatrix_cols(CvMatrix self) -> int"}, - { (char *)"CvMatrix_size", _wrap_CvMatrix_size, METH_VARARGS, (char *)"CvMatrix_size(CvMatrix self) -> CvSize"}, - { (char *)"CvMatrix_type", _wrap_CvMatrix_type, METH_VARARGS, (char *)"CvMatrix_type(CvMatrix self) -> int"}, - { (char *)"CvMatrix_depth", _wrap_CvMatrix_depth, METH_VARARGS, (char *)"CvMatrix_depth(CvMatrix self) -> int"}, - { (char *)"CvMatrix_channels", _wrap_CvMatrix_channels, METH_VARARGS, (char *)"CvMatrix_channels(CvMatrix self) -> int"}, - { (char *)"CvMatrix_pix_size", _wrap_CvMatrix_pix_size, METH_VARARGS, (char *)"CvMatrix_pix_size(CvMatrix self) -> int"}, - { (char *)"CvMatrix_data", _wrap_CvMatrix_data, METH_VARARGS, (char *)"\n" - "data() -> uchar\n" - "CvMatrix_data(CvMatrix self) -> uchar\n" - ""}, - { (char *)"CvMatrix_step", _wrap_CvMatrix_step, METH_VARARGS, (char *)"CvMatrix_step(CvMatrix self) -> int"}, - { (char *)"CvMatrix_set_data", _wrap_CvMatrix_set_data, METH_VARARGS, (char *)"\n" - "set_data(void data, int step = 0x7fffffff)\n" - "CvMatrix_set_data(CvMatrix self, void data)\n" - ""}, - { (char *)"CvMatrix_row", _wrap_CvMatrix_row, METH_VARARGS, (char *)"\n" - "row(int i) -> uchar\n" - "CvMatrix_row(CvMatrix self, int i) -> uchar\n" - ""}, - { (char *)"CvMatrix_asCvMat", _wrap_CvMatrix_asCvMat, METH_VARARGS, (char *)"CvMatrix_asCvMat(CvMatrix self) -> CvMat"}, - { (char *)"CvMatrix_swigregister", CvMatrix_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvModule", _wrap_new_CvModule, METH_VARARGS, (char *)"new_CvModule(CvModuleInfo _info) -> CvModule"}, - { (char *)"delete_CvModule", _wrap_delete_CvModule, METH_VARARGS, (char *)"delete_CvModule(CvModule self)"}, - { (char *)"CvModule_info_set", _wrap_CvModule_info_set, METH_VARARGS, (char *)"CvModule_info_set(CvModule self, CvModuleInfo info)"}, - { (char *)"CvModule_info_get", _wrap_CvModule_info_get, METH_VARARGS, (char *)"CvModule_info_get(CvModule self) -> CvModuleInfo"}, - { (char *)"CvModule_first_get", _wrap_CvModule_first_get, METH_VARARGS, NULL}, - { (char *)"CvModule_first_set", _wrap_CvModule_first_set, METH_VARARGS, NULL}, - { (char *)"CvModule_last_get", _wrap_CvModule_last_get, METH_VARARGS, NULL}, - { (char *)"CvModule_last_set", _wrap_CvModule_last_set, METH_VARARGS, NULL}, - { (char *)"CvModule_swigregister", CvModule_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvType", _wrap_new_CvType, METH_VARARGS, (char *)"\n" - "CvType(char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0, \n" - " CvReadFunc read = 0, CvWriteFunc write = 0, \n" - " CvCloneFunc clone = 0)\n" - "CvType(char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0, \n" - " CvReadFunc read = 0, CvWriteFunc write = 0)\n" - "CvType(char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0, \n" - " CvReadFunc read = 0)\n" - "CvType(char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0)\n" - "new_CvType(char type_name, CvIsInstanceFunc is_instance) -> CvType\n" - ""}, - { (char *)"delete_CvType", _wrap_delete_CvType, METH_VARARGS, (char *)"delete_CvType(CvType self)"}, - { (char *)"CvType_info_set", _wrap_CvType_info_set, METH_VARARGS, (char *)"CvType_info_set(CvType self, CvTypeInfo info)"}, - { (char *)"CvType_info_get", _wrap_CvType_info_get, METH_VARARGS, (char *)"CvType_info_get(CvType self) -> CvTypeInfo"}, - { (char *)"CvType_first_get", _wrap_CvType_first_get, METH_VARARGS, NULL}, - { (char *)"CvType_first_set", _wrap_CvType_first_set, METH_VARARGS, NULL}, - { (char *)"CvType_last_get", _wrap_CvType_last_get, METH_VARARGS, NULL}, - { (char *)"CvType_last_set", _wrap_CvType_last_set, METH_VARARGS, NULL}, - { (char *)"CvType_swigregister", CvType_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMoments_m00_set", _wrap_CvMoments_m00_set, METH_VARARGS, (char *)"CvMoments_m00_set(CvMoments self, double m00)"}, - { (char *)"CvMoments_m00_get", _wrap_CvMoments_m00_get, METH_VARARGS, (char *)"CvMoments_m00_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m10_set", _wrap_CvMoments_m10_set, METH_VARARGS, (char *)"CvMoments_m10_set(CvMoments self, double m10)"}, - { (char *)"CvMoments_m10_get", _wrap_CvMoments_m10_get, METH_VARARGS, (char *)"CvMoments_m10_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m01_set", _wrap_CvMoments_m01_set, METH_VARARGS, (char *)"CvMoments_m01_set(CvMoments self, double m01)"}, - { (char *)"CvMoments_m01_get", _wrap_CvMoments_m01_get, METH_VARARGS, (char *)"CvMoments_m01_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m20_set", _wrap_CvMoments_m20_set, METH_VARARGS, (char *)"CvMoments_m20_set(CvMoments self, double m20)"}, - { (char *)"CvMoments_m20_get", _wrap_CvMoments_m20_get, METH_VARARGS, (char *)"CvMoments_m20_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m11_set", _wrap_CvMoments_m11_set, METH_VARARGS, (char *)"CvMoments_m11_set(CvMoments self, double m11)"}, - { (char *)"CvMoments_m11_get", _wrap_CvMoments_m11_get, METH_VARARGS, (char *)"CvMoments_m11_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m02_set", _wrap_CvMoments_m02_set, METH_VARARGS, (char *)"CvMoments_m02_set(CvMoments self, double m02)"}, - { (char *)"CvMoments_m02_get", _wrap_CvMoments_m02_get, METH_VARARGS, (char *)"CvMoments_m02_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m30_set", _wrap_CvMoments_m30_set, METH_VARARGS, (char *)"CvMoments_m30_set(CvMoments self, double m30)"}, - { (char *)"CvMoments_m30_get", _wrap_CvMoments_m30_get, METH_VARARGS, (char *)"CvMoments_m30_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m21_set", _wrap_CvMoments_m21_set, METH_VARARGS, (char *)"CvMoments_m21_set(CvMoments self, double m21)"}, - { (char *)"CvMoments_m21_get", _wrap_CvMoments_m21_get, METH_VARARGS, (char *)"CvMoments_m21_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m12_set", _wrap_CvMoments_m12_set, METH_VARARGS, (char *)"CvMoments_m12_set(CvMoments self, double m12)"}, - { (char *)"CvMoments_m12_get", _wrap_CvMoments_m12_get, METH_VARARGS, (char *)"CvMoments_m12_get(CvMoments self) -> double"}, - { (char *)"CvMoments_m03_set", _wrap_CvMoments_m03_set, METH_VARARGS, (char *)"CvMoments_m03_set(CvMoments self, double m03)"}, - { (char *)"CvMoments_m03_get", _wrap_CvMoments_m03_get, METH_VARARGS, (char *)"CvMoments_m03_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu20_set", _wrap_CvMoments_mu20_set, METH_VARARGS, (char *)"CvMoments_mu20_set(CvMoments self, double mu20)"}, - { (char *)"CvMoments_mu20_get", _wrap_CvMoments_mu20_get, METH_VARARGS, (char *)"CvMoments_mu20_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu11_set", _wrap_CvMoments_mu11_set, METH_VARARGS, (char *)"CvMoments_mu11_set(CvMoments self, double mu11)"}, - { (char *)"CvMoments_mu11_get", _wrap_CvMoments_mu11_get, METH_VARARGS, (char *)"CvMoments_mu11_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu02_set", _wrap_CvMoments_mu02_set, METH_VARARGS, (char *)"CvMoments_mu02_set(CvMoments self, double mu02)"}, - { (char *)"CvMoments_mu02_get", _wrap_CvMoments_mu02_get, METH_VARARGS, (char *)"CvMoments_mu02_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu30_set", _wrap_CvMoments_mu30_set, METH_VARARGS, (char *)"CvMoments_mu30_set(CvMoments self, double mu30)"}, - { (char *)"CvMoments_mu30_get", _wrap_CvMoments_mu30_get, METH_VARARGS, (char *)"CvMoments_mu30_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu21_set", _wrap_CvMoments_mu21_set, METH_VARARGS, (char *)"CvMoments_mu21_set(CvMoments self, double mu21)"}, - { (char *)"CvMoments_mu21_get", _wrap_CvMoments_mu21_get, METH_VARARGS, (char *)"CvMoments_mu21_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu12_set", _wrap_CvMoments_mu12_set, METH_VARARGS, (char *)"CvMoments_mu12_set(CvMoments self, double mu12)"}, - { (char *)"CvMoments_mu12_get", _wrap_CvMoments_mu12_get, METH_VARARGS, (char *)"CvMoments_mu12_get(CvMoments self) -> double"}, - { (char *)"CvMoments_mu03_set", _wrap_CvMoments_mu03_set, METH_VARARGS, (char *)"CvMoments_mu03_set(CvMoments self, double mu03)"}, - { (char *)"CvMoments_mu03_get", _wrap_CvMoments_mu03_get, METH_VARARGS, (char *)"CvMoments_mu03_get(CvMoments self) -> double"}, - { (char *)"CvMoments_inv_sqrt_m00_set", _wrap_CvMoments_inv_sqrt_m00_set, METH_VARARGS, (char *)"CvMoments_inv_sqrt_m00_set(CvMoments self, double inv_sqrt_m00)"}, - { (char *)"CvMoments_inv_sqrt_m00_get", _wrap_CvMoments_inv_sqrt_m00_get, METH_VARARGS, (char *)"CvMoments_inv_sqrt_m00_get(CvMoments self) -> double"}, - { (char *)"new_CvMoments", _wrap_new_CvMoments, METH_VARARGS, (char *)"new_CvMoments() -> CvMoments"}, - { (char *)"delete_CvMoments", _wrap_delete_CvMoments, METH_VARARGS, (char *)"delete_CvMoments(CvMoments self)"}, - { (char *)"CvMoments_swigregister", CvMoments_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHuMoments_hu1_set", _wrap_CvHuMoments_hu1_set, METH_VARARGS, (char *)"CvHuMoments_hu1_set(CvHuMoments self, double hu1)"}, - { (char *)"CvHuMoments_hu1_get", _wrap_CvHuMoments_hu1_get, METH_VARARGS, (char *)"CvHuMoments_hu1_get(CvHuMoments self) -> double"}, - { (char *)"CvHuMoments_hu2_set", _wrap_CvHuMoments_hu2_set, METH_VARARGS, (char *)"CvHuMoments_hu2_set(CvHuMoments self, double hu2)"}, - { (char *)"CvHuMoments_hu2_get", _wrap_CvHuMoments_hu2_get, METH_VARARGS, (char *)"CvHuMoments_hu2_get(CvHuMoments self) -> double"}, - { (char *)"CvHuMoments_hu3_set", _wrap_CvHuMoments_hu3_set, METH_VARARGS, (char *)"CvHuMoments_hu3_set(CvHuMoments self, double hu3)"}, - { (char *)"CvHuMoments_hu3_get", _wrap_CvHuMoments_hu3_get, METH_VARARGS, (char *)"CvHuMoments_hu3_get(CvHuMoments self) -> double"}, - { (char *)"CvHuMoments_hu4_set", _wrap_CvHuMoments_hu4_set, METH_VARARGS, (char *)"CvHuMoments_hu4_set(CvHuMoments self, double hu4)"}, - { (char *)"CvHuMoments_hu4_get", _wrap_CvHuMoments_hu4_get, METH_VARARGS, (char *)"CvHuMoments_hu4_get(CvHuMoments self) -> double"}, - { (char *)"CvHuMoments_hu5_set", _wrap_CvHuMoments_hu5_set, METH_VARARGS, (char *)"CvHuMoments_hu5_set(CvHuMoments self, double hu5)"}, - { (char *)"CvHuMoments_hu5_get", _wrap_CvHuMoments_hu5_get, METH_VARARGS, (char *)"CvHuMoments_hu5_get(CvHuMoments self) -> double"}, - { (char *)"CvHuMoments_hu6_set", _wrap_CvHuMoments_hu6_set, METH_VARARGS, (char *)"CvHuMoments_hu6_set(CvHuMoments self, double hu6)"}, - { (char *)"CvHuMoments_hu6_get", _wrap_CvHuMoments_hu6_get, METH_VARARGS, (char *)"CvHuMoments_hu6_get(CvHuMoments self) -> double"}, - { (char *)"CvHuMoments_hu7_set", _wrap_CvHuMoments_hu7_set, METH_VARARGS, (char *)"CvHuMoments_hu7_set(CvHuMoments self, double hu7)"}, - { (char *)"CvHuMoments_hu7_get", _wrap_CvHuMoments_hu7_get, METH_VARARGS, (char *)"CvHuMoments_hu7_get(CvHuMoments self) -> double"}, - { (char *)"new_CvHuMoments", _wrap_new_CvHuMoments, METH_VARARGS, (char *)"new_CvHuMoments() -> CvHuMoments"}, - { (char *)"delete_CvHuMoments", _wrap_delete_CvHuMoments, METH_VARARGS, (char *)"delete_CvHuMoments(CvHuMoments self)"}, - { (char *)"CvHuMoments_swigregister", CvHuMoments_swigregister, METH_VARARGS, NULL}, - { (char *)"CvConnectedComp_area_set", _wrap_CvConnectedComp_area_set, METH_VARARGS, (char *)"CvConnectedComp_area_set(CvConnectedComp self, double area)"}, - { (char *)"CvConnectedComp_area_get", _wrap_CvConnectedComp_area_get, METH_VARARGS, (char *)"CvConnectedComp_area_get(CvConnectedComp self) -> double"}, - { (char *)"CvConnectedComp_value_set", _wrap_CvConnectedComp_value_set, METH_VARARGS, (char *)"CvConnectedComp_value_set(CvConnectedComp self, CvScalar value)"}, - { (char *)"CvConnectedComp_value_get", _wrap_CvConnectedComp_value_get, METH_VARARGS, (char *)"CvConnectedComp_value_get(CvConnectedComp self) -> CvScalar"}, - { (char *)"CvConnectedComp_rect_set", _wrap_CvConnectedComp_rect_set, METH_VARARGS, (char *)"CvConnectedComp_rect_set(CvConnectedComp self, CvRect rect)"}, - { (char *)"CvConnectedComp_rect_get", _wrap_CvConnectedComp_rect_get, METH_VARARGS, (char *)"CvConnectedComp_rect_get(CvConnectedComp self) -> CvRect"}, - { (char *)"CvConnectedComp_contour_set", _wrap_CvConnectedComp_contour_set, METH_VARARGS, (char *)"CvConnectedComp_contour_set(CvConnectedComp self, CvSeq contour)"}, - { (char *)"CvConnectedComp_contour_get", _wrap_CvConnectedComp_contour_get, METH_VARARGS, (char *)"CvConnectedComp_contour_get(CvConnectedComp self) -> CvSeq"}, - { (char *)"new_CvConnectedComp", _wrap_new_CvConnectedComp, METH_VARARGS, (char *)"new_CvConnectedComp() -> CvConnectedComp"}, - { (char *)"delete_CvConnectedComp", _wrap_delete_CvConnectedComp, METH_VARARGS, (char *)"delete_CvConnectedComp(CvConnectedComp self)"}, - { (char *)"CvConnectedComp_swigregister", CvConnectedComp_swigregister, METH_VARARGS, NULL}, - { (char *)"CvChainPtReader_header_size_set", _wrap_CvChainPtReader_header_size_set, METH_VARARGS, (char *)"CvChainPtReader_header_size_set(CvChainPtReader self, int header_size)"}, - { (char *)"CvChainPtReader_header_size_get", _wrap_CvChainPtReader_header_size_get, METH_VARARGS, (char *)"CvChainPtReader_header_size_get(CvChainPtReader self) -> int"}, - { (char *)"CvChainPtReader_seq_set", _wrap_CvChainPtReader_seq_set, METH_VARARGS, (char *)"CvChainPtReader_seq_set(CvChainPtReader self, CvSeq seq)"}, - { (char *)"CvChainPtReader_seq_get", _wrap_CvChainPtReader_seq_get, METH_VARARGS, (char *)"CvChainPtReader_seq_get(CvChainPtReader self) -> CvSeq"}, - { (char *)"CvChainPtReader_block_set", _wrap_CvChainPtReader_block_set, METH_VARARGS, (char *)"CvChainPtReader_block_set(CvChainPtReader self, CvSeqBlock block)"}, - { (char *)"CvChainPtReader_block_get", _wrap_CvChainPtReader_block_get, METH_VARARGS, (char *)"CvChainPtReader_block_get(CvChainPtReader self) -> CvSeqBlock"}, - { (char *)"CvChainPtReader_ptr_set", _wrap_CvChainPtReader_ptr_set, METH_VARARGS, (char *)"CvChainPtReader_ptr_set(CvChainPtReader self, schar ptr)"}, - { (char *)"CvChainPtReader_ptr_get", _wrap_CvChainPtReader_ptr_get, METH_VARARGS, (char *)"CvChainPtReader_ptr_get(CvChainPtReader self) -> schar"}, - { (char *)"CvChainPtReader_block_min_set", _wrap_CvChainPtReader_block_min_set, METH_VARARGS, (char *)"CvChainPtReader_block_min_set(CvChainPtReader self, schar block_min)"}, - { (char *)"CvChainPtReader_block_min_get", _wrap_CvChainPtReader_block_min_get, METH_VARARGS, (char *)"CvChainPtReader_block_min_get(CvChainPtReader self) -> schar"}, - { (char *)"CvChainPtReader_block_max_set", _wrap_CvChainPtReader_block_max_set, METH_VARARGS, (char *)"CvChainPtReader_block_max_set(CvChainPtReader self, schar block_max)"}, - { (char *)"CvChainPtReader_block_max_get", _wrap_CvChainPtReader_block_max_get, METH_VARARGS, (char *)"CvChainPtReader_block_max_get(CvChainPtReader self) -> schar"}, - { (char *)"CvChainPtReader_delta_index_set", _wrap_CvChainPtReader_delta_index_set, METH_VARARGS, (char *)"CvChainPtReader_delta_index_set(CvChainPtReader self, int delta_index)"}, - { (char *)"CvChainPtReader_delta_index_get", _wrap_CvChainPtReader_delta_index_get, METH_VARARGS, (char *)"CvChainPtReader_delta_index_get(CvChainPtReader self) -> int"}, - { (char *)"CvChainPtReader_prev_elem_set", _wrap_CvChainPtReader_prev_elem_set, METH_VARARGS, (char *)"CvChainPtReader_prev_elem_set(CvChainPtReader self, schar prev_elem)"}, - { (char *)"CvChainPtReader_prev_elem_get", _wrap_CvChainPtReader_prev_elem_get, METH_VARARGS, (char *)"CvChainPtReader_prev_elem_get(CvChainPtReader self) -> schar"}, - { (char *)"CvChainPtReader_code_set", _wrap_CvChainPtReader_code_set, METH_VARARGS, (char *)"CvChainPtReader_code_set(CvChainPtReader self, char code)"}, - { (char *)"CvChainPtReader_code_get", _wrap_CvChainPtReader_code_get, METH_VARARGS, (char *)"CvChainPtReader_code_get(CvChainPtReader self) -> char"}, - { (char *)"CvChainPtReader_pt_set", _wrap_CvChainPtReader_pt_set, METH_VARARGS, (char *)"CvChainPtReader_pt_set(CvChainPtReader self, CvPoint pt)"}, - { (char *)"CvChainPtReader_pt_get", _wrap_CvChainPtReader_pt_get, METH_VARARGS, (char *)"CvChainPtReader_pt_get(CvChainPtReader self) -> CvPoint"}, - { (char *)"CvChainPtReader_deltas_set", _wrap_CvChainPtReader_deltas_set, METH_VARARGS, (char *)"CvChainPtReader_deltas_set(CvChainPtReader self, schar deltas)"}, - { (char *)"CvChainPtReader_deltas_get", _wrap_CvChainPtReader_deltas_get, METH_VARARGS, (char *)"CvChainPtReader_deltas_get(CvChainPtReader self) -> schar"}, - { (char *)"new_CvChainPtReader", _wrap_new_CvChainPtReader, METH_VARARGS, (char *)"new_CvChainPtReader() -> CvChainPtReader"}, - { (char *)"delete_CvChainPtReader", _wrap_delete_CvChainPtReader, METH_VARARGS, (char *)"delete_CvChainPtReader(CvChainPtReader self)"}, - { (char *)"CvChainPtReader_swigregister", CvChainPtReader_swigregister, METH_VARARGS, NULL}, - { (char *)"CvContourTree_flags_set", _wrap_CvContourTree_flags_set, METH_VARARGS, (char *)"CvContourTree_flags_set(CvContourTree self, int flags)"}, - { (char *)"CvContourTree_flags_get", _wrap_CvContourTree_flags_get, METH_VARARGS, (char *)"CvContourTree_flags_get(CvContourTree self) -> int"}, - { (char *)"CvContourTree_header_size_set", _wrap_CvContourTree_header_size_set, METH_VARARGS, (char *)"CvContourTree_header_size_set(CvContourTree self, int header_size)"}, - { (char *)"CvContourTree_header_size_get", _wrap_CvContourTree_header_size_get, METH_VARARGS, (char *)"CvContourTree_header_size_get(CvContourTree self) -> int"}, - { (char *)"CvContourTree_h_prev_set", _wrap_CvContourTree_h_prev_set, METH_VARARGS, (char *)"CvContourTree_h_prev_set(CvContourTree self, CvSeq h_prev)"}, - { (char *)"CvContourTree_h_prev_get", _wrap_CvContourTree_h_prev_get, METH_VARARGS, (char *)"CvContourTree_h_prev_get(CvContourTree self) -> CvSeq"}, - { (char *)"CvContourTree_h_next_set", _wrap_CvContourTree_h_next_set, METH_VARARGS, (char *)"CvContourTree_h_next_set(CvContourTree self, CvSeq h_next)"}, - { (char *)"CvContourTree_h_next_get", _wrap_CvContourTree_h_next_get, METH_VARARGS, (char *)"CvContourTree_h_next_get(CvContourTree self) -> CvSeq"}, - { (char *)"CvContourTree_v_prev_set", _wrap_CvContourTree_v_prev_set, METH_VARARGS, (char *)"CvContourTree_v_prev_set(CvContourTree self, CvSeq v_prev)"}, - { (char *)"CvContourTree_v_prev_get", _wrap_CvContourTree_v_prev_get, METH_VARARGS, (char *)"CvContourTree_v_prev_get(CvContourTree self) -> CvSeq"}, - { (char *)"CvContourTree_v_next_set", _wrap_CvContourTree_v_next_set, METH_VARARGS, (char *)"CvContourTree_v_next_set(CvContourTree self, CvSeq v_next)"}, - { (char *)"CvContourTree_v_next_get", _wrap_CvContourTree_v_next_get, METH_VARARGS, (char *)"CvContourTree_v_next_get(CvContourTree self) -> CvSeq"}, - { (char *)"CvContourTree_total_set", _wrap_CvContourTree_total_set, METH_VARARGS, (char *)"CvContourTree_total_set(CvContourTree self, int total)"}, - { (char *)"CvContourTree_total_get", _wrap_CvContourTree_total_get, METH_VARARGS, (char *)"CvContourTree_total_get(CvContourTree self) -> int"}, - { (char *)"CvContourTree_elem_size_set", _wrap_CvContourTree_elem_size_set, METH_VARARGS, (char *)"CvContourTree_elem_size_set(CvContourTree self, int elem_size)"}, - { (char *)"CvContourTree_elem_size_get", _wrap_CvContourTree_elem_size_get, METH_VARARGS, (char *)"CvContourTree_elem_size_get(CvContourTree self) -> int"}, - { (char *)"CvContourTree_block_max_set", _wrap_CvContourTree_block_max_set, METH_VARARGS, (char *)"CvContourTree_block_max_set(CvContourTree self, schar block_max)"}, - { (char *)"CvContourTree_block_max_get", _wrap_CvContourTree_block_max_get, METH_VARARGS, (char *)"CvContourTree_block_max_get(CvContourTree self) -> schar"}, - { (char *)"CvContourTree_ptr_set", _wrap_CvContourTree_ptr_set, METH_VARARGS, (char *)"CvContourTree_ptr_set(CvContourTree self, schar ptr)"}, - { (char *)"CvContourTree_ptr_get", _wrap_CvContourTree_ptr_get, METH_VARARGS, (char *)"CvContourTree_ptr_get(CvContourTree self) -> schar"}, - { (char *)"CvContourTree_delta_elems_set", _wrap_CvContourTree_delta_elems_set, METH_VARARGS, (char *)"CvContourTree_delta_elems_set(CvContourTree self, int delta_elems)"}, - { (char *)"CvContourTree_delta_elems_get", _wrap_CvContourTree_delta_elems_get, METH_VARARGS, (char *)"CvContourTree_delta_elems_get(CvContourTree self) -> int"}, - { (char *)"CvContourTree_storage_set", _wrap_CvContourTree_storage_set, METH_VARARGS, (char *)"CvContourTree_storage_set(CvContourTree self, CvMemStorage storage)"}, - { (char *)"CvContourTree_storage_get", _wrap_CvContourTree_storage_get, METH_VARARGS, (char *)"CvContourTree_storage_get(CvContourTree self) -> CvMemStorage"}, - { (char *)"CvContourTree_free_blocks_set", _wrap_CvContourTree_free_blocks_set, METH_VARARGS, (char *)"CvContourTree_free_blocks_set(CvContourTree self, CvSeqBlock free_blocks)"}, - { (char *)"CvContourTree_free_blocks_get", _wrap_CvContourTree_free_blocks_get, METH_VARARGS, (char *)"CvContourTree_free_blocks_get(CvContourTree self) -> CvSeqBlock"}, - { (char *)"CvContourTree_first_set", _wrap_CvContourTree_first_set, METH_VARARGS, (char *)"CvContourTree_first_set(CvContourTree self, CvSeqBlock first)"}, - { (char *)"CvContourTree_first_get", _wrap_CvContourTree_first_get, METH_VARARGS, (char *)"CvContourTree_first_get(CvContourTree self) -> CvSeqBlock"}, - { (char *)"CvContourTree_p1_set", _wrap_CvContourTree_p1_set, METH_VARARGS, (char *)"CvContourTree_p1_set(CvContourTree self, CvPoint p1)"}, - { (char *)"CvContourTree_p1_get", _wrap_CvContourTree_p1_get, METH_VARARGS, (char *)"CvContourTree_p1_get(CvContourTree self) -> CvPoint"}, - { (char *)"CvContourTree_p2_set", _wrap_CvContourTree_p2_set, METH_VARARGS, (char *)"CvContourTree_p2_set(CvContourTree self, CvPoint p2)"}, - { (char *)"CvContourTree_p2_get", _wrap_CvContourTree_p2_get, METH_VARARGS, (char *)"CvContourTree_p2_get(CvContourTree self) -> CvPoint"}, - { (char *)"new_CvContourTree", _wrap_new_CvContourTree, METH_VARARGS, (char *)"new_CvContourTree() -> CvContourTree"}, - { (char *)"delete_CvContourTree", _wrap_delete_CvContourTree, METH_VARARGS, (char *)"delete_CvContourTree(CvContourTree self)"}, - { (char *)"CvContourTree_swigregister", CvContourTree_swigregister, METH_VARARGS, NULL}, - { (char *)"CvConvexityDefect_start_set", _wrap_CvConvexityDefect_start_set, METH_VARARGS, (char *)"CvConvexityDefect_start_set(CvConvexityDefect self, CvPoint start)"}, - { (char *)"CvConvexityDefect_start_get", _wrap_CvConvexityDefect_start_get, METH_VARARGS, (char *)"CvConvexityDefect_start_get(CvConvexityDefect self) -> CvPoint"}, - { (char *)"CvConvexityDefect_end_set", _wrap_CvConvexityDefect_end_set, METH_VARARGS, (char *)"CvConvexityDefect_end_set(CvConvexityDefect self, CvPoint end)"}, - { (char *)"CvConvexityDefect_end_get", _wrap_CvConvexityDefect_end_get, METH_VARARGS, (char *)"CvConvexityDefect_end_get(CvConvexityDefect self) -> CvPoint"}, - { (char *)"CvConvexityDefect_depth_point_set", _wrap_CvConvexityDefect_depth_point_set, METH_VARARGS, (char *)"CvConvexityDefect_depth_point_set(CvConvexityDefect self, CvPoint depth_point)"}, - { (char *)"CvConvexityDefect_depth_point_get", _wrap_CvConvexityDefect_depth_point_get, METH_VARARGS, (char *)"CvConvexityDefect_depth_point_get(CvConvexityDefect self) -> CvPoint"}, - { (char *)"CvConvexityDefect_depth_set", _wrap_CvConvexityDefect_depth_set, METH_VARARGS, (char *)"CvConvexityDefect_depth_set(CvConvexityDefect self, float depth)"}, - { (char *)"CvConvexityDefect_depth_get", _wrap_CvConvexityDefect_depth_get, METH_VARARGS, (char *)"CvConvexityDefect_depth_get(CvConvexityDefect self) -> float"}, - { (char *)"new_CvConvexityDefect", _wrap_new_CvConvexityDefect, METH_VARARGS, (char *)"new_CvConvexityDefect() -> CvConvexityDefect"}, - { (char *)"delete_CvConvexityDefect", _wrap_delete_CvConvexityDefect, METH_VARARGS, (char *)"delete_CvConvexityDefect(CvConvexityDefect self)"}, - { (char *)"CvConvexityDefect_swigregister", CvConvexityDefect_swigregister, METH_VARARGS, NULL}, - { (char *)"CvQuadEdge2D_flags_set", _wrap_CvQuadEdge2D_flags_set, METH_VARARGS, (char *)"CvQuadEdge2D_flags_set(CvQuadEdge2D self, int flags)"}, - { (char *)"CvQuadEdge2D_flags_get", _wrap_CvQuadEdge2D_flags_get, METH_VARARGS, (char *)"CvQuadEdge2D_flags_get(CvQuadEdge2D self) -> int"}, - { (char *)"CvQuadEdge2D_pt_set", _wrap_CvQuadEdge2D_pt_set, METH_VARARGS, (char *)"CvQuadEdge2D_pt_set(CvQuadEdge2D self, CvSubdiv2DPoint pt)"}, - { (char *)"CvQuadEdge2D_pt_get", _wrap_CvQuadEdge2D_pt_get, METH_VARARGS, (char *)"CvQuadEdge2D_pt_get(CvQuadEdge2D self) -> CvSubdiv2DPoint"}, - { (char *)"CvQuadEdge2D_next_set", _wrap_CvQuadEdge2D_next_set, METH_VARARGS, (char *)"CvQuadEdge2D_next_set(CvQuadEdge2D self, CvSubdiv2DEdge next)"}, - { (char *)"CvQuadEdge2D_next_get", _wrap_CvQuadEdge2D_next_get, METH_VARARGS, (char *)"CvQuadEdge2D_next_get(CvQuadEdge2D self) -> CvSubdiv2DEdge"}, - { (char *)"new_CvQuadEdge2D", _wrap_new_CvQuadEdge2D, METH_VARARGS, (char *)"new_CvQuadEdge2D() -> CvQuadEdge2D"}, - { (char *)"delete_CvQuadEdge2D", _wrap_delete_CvQuadEdge2D, METH_VARARGS, (char *)"delete_CvQuadEdge2D(CvQuadEdge2D self)"}, - { (char *)"CvQuadEdge2D_swigregister", CvQuadEdge2D_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DPoint_flags_set", _wrap_CvSubdiv2DPoint_flags_set, METH_VARARGS, (char *)"CvSubdiv2DPoint_flags_set(CvSubdiv2DPoint self, int flags)"}, - { (char *)"CvSubdiv2DPoint_flags_get", _wrap_CvSubdiv2DPoint_flags_get, METH_VARARGS, (char *)"CvSubdiv2DPoint_flags_get(CvSubdiv2DPoint self) -> int"}, - { (char *)"CvSubdiv2DPoint_first_set", _wrap_CvSubdiv2DPoint_first_set, METH_VARARGS, (char *)"CvSubdiv2DPoint_first_set(CvSubdiv2DPoint self, CvSubdiv2DEdge first)"}, - { (char *)"CvSubdiv2DPoint_first_get", _wrap_CvSubdiv2DPoint_first_get, METH_VARARGS, (char *)"CvSubdiv2DPoint_first_get(CvSubdiv2DPoint self) -> CvSubdiv2DEdge"}, - { (char *)"CvSubdiv2DPoint_pt_set", _wrap_CvSubdiv2DPoint_pt_set, METH_VARARGS, (char *)"CvSubdiv2DPoint_pt_set(CvSubdiv2DPoint self, CvPoint2D32f pt)"}, - { (char *)"CvSubdiv2DPoint_pt_get", _wrap_CvSubdiv2DPoint_pt_get, METH_VARARGS, (char *)"CvSubdiv2DPoint_pt_get(CvSubdiv2DPoint self) -> CvPoint2D32f"}, - { (char *)"new_CvSubdiv2DPoint", _wrap_new_CvSubdiv2DPoint, METH_VARARGS, (char *)"new_CvSubdiv2DPoint() -> CvSubdiv2DPoint"}, - { (char *)"delete_CvSubdiv2DPoint", _wrap_delete_CvSubdiv2DPoint, METH_VARARGS, (char *)"delete_CvSubdiv2DPoint(CvSubdiv2DPoint self)"}, - { (char *)"CvSubdiv2DPoint_swigregister", CvSubdiv2DPoint_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2D_flags_set", _wrap_CvSubdiv2D_flags_set, METH_VARARGS, (char *)"CvSubdiv2D_flags_set(CvSubdiv2D self, int flags)"}, - { (char *)"CvSubdiv2D_flags_get", _wrap_CvSubdiv2D_flags_get, METH_VARARGS, (char *)"CvSubdiv2D_flags_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_header_size_set", _wrap_CvSubdiv2D_header_size_set, METH_VARARGS, (char *)"CvSubdiv2D_header_size_set(CvSubdiv2D self, int header_size)"}, - { (char *)"CvSubdiv2D_header_size_get", _wrap_CvSubdiv2D_header_size_get, METH_VARARGS, (char *)"CvSubdiv2D_header_size_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_h_prev_set", _wrap_CvSubdiv2D_h_prev_set, METH_VARARGS, (char *)"CvSubdiv2D_h_prev_set(CvSubdiv2D self, CvSeq h_prev)"}, - { (char *)"CvSubdiv2D_h_prev_get", _wrap_CvSubdiv2D_h_prev_get, METH_VARARGS, (char *)"CvSubdiv2D_h_prev_get(CvSubdiv2D self) -> CvSeq"}, - { (char *)"CvSubdiv2D_h_next_set", _wrap_CvSubdiv2D_h_next_set, METH_VARARGS, (char *)"CvSubdiv2D_h_next_set(CvSubdiv2D self, CvSeq h_next)"}, - { (char *)"CvSubdiv2D_h_next_get", _wrap_CvSubdiv2D_h_next_get, METH_VARARGS, (char *)"CvSubdiv2D_h_next_get(CvSubdiv2D self) -> CvSeq"}, - { (char *)"CvSubdiv2D_v_prev_set", _wrap_CvSubdiv2D_v_prev_set, METH_VARARGS, (char *)"CvSubdiv2D_v_prev_set(CvSubdiv2D self, CvSeq v_prev)"}, - { (char *)"CvSubdiv2D_v_prev_get", _wrap_CvSubdiv2D_v_prev_get, METH_VARARGS, (char *)"CvSubdiv2D_v_prev_get(CvSubdiv2D self) -> CvSeq"}, - { (char *)"CvSubdiv2D_v_next_set", _wrap_CvSubdiv2D_v_next_set, METH_VARARGS, (char *)"CvSubdiv2D_v_next_set(CvSubdiv2D self, CvSeq v_next)"}, - { (char *)"CvSubdiv2D_v_next_get", _wrap_CvSubdiv2D_v_next_get, METH_VARARGS, (char *)"CvSubdiv2D_v_next_get(CvSubdiv2D self) -> CvSeq"}, - { (char *)"CvSubdiv2D_total_set", _wrap_CvSubdiv2D_total_set, METH_VARARGS, (char *)"CvSubdiv2D_total_set(CvSubdiv2D self, int total)"}, - { (char *)"CvSubdiv2D_total_get", _wrap_CvSubdiv2D_total_get, METH_VARARGS, (char *)"CvSubdiv2D_total_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_elem_size_set", _wrap_CvSubdiv2D_elem_size_set, METH_VARARGS, (char *)"CvSubdiv2D_elem_size_set(CvSubdiv2D self, int elem_size)"}, - { (char *)"CvSubdiv2D_elem_size_get", _wrap_CvSubdiv2D_elem_size_get, METH_VARARGS, (char *)"CvSubdiv2D_elem_size_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_block_max_set", _wrap_CvSubdiv2D_block_max_set, METH_VARARGS, (char *)"CvSubdiv2D_block_max_set(CvSubdiv2D self, schar block_max)"}, - { (char *)"CvSubdiv2D_block_max_get", _wrap_CvSubdiv2D_block_max_get, METH_VARARGS, (char *)"CvSubdiv2D_block_max_get(CvSubdiv2D self) -> schar"}, - { (char *)"CvSubdiv2D_ptr_set", _wrap_CvSubdiv2D_ptr_set, METH_VARARGS, (char *)"CvSubdiv2D_ptr_set(CvSubdiv2D self, schar ptr)"}, - { (char *)"CvSubdiv2D_ptr_get", _wrap_CvSubdiv2D_ptr_get, METH_VARARGS, (char *)"CvSubdiv2D_ptr_get(CvSubdiv2D self) -> schar"}, - { (char *)"CvSubdiv2D_delta_elems_set", _wrap_CvSubdiv2D_delta_elems_set, METH_VARARGS, (char *)"CvSubdiv2D_delta_elems_set(CvSubdiv2D self, int delta_elems)"}, - { (char *)"CvSubdiv2D_delta_elems_get", _wrap_CvSubdiv2D_delta_elems_get, METH_VARARGS, (char *)"CvSubdiv2D_delta_elems_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_storage_set", _wrap_CvSubdiv2D_storage_set, METH_VARARGS, (char *)"CvSubdiv2D_storage_set(CvSubdiv2D self, CvMemStorage storage)"}, - { (char *)"CvSubdiv2D_storage_get", _wrap_CvSubdiv2D_storage_get, METH_VARARGS, (char *)"CvSubdiv2D_storage_get(CvSubdiv2D self) -> CvMemStorage"}, - { (char *)"CvSubdiv2D_free_blocks_set", _wrap_CvSubdiv2D_free_blocks_set, METH_VARARGS, (char *)"CvSubdiv2D_free_blocks_set(CvSubdiv2D self, CvSeqBlock free_blocks)"}, - { (char *)"CvSubdiv2D_free_blocks_get", _wrap_CvSubdiv2D_free_blocks_get, METH_VARARGS, (char *)"CvSubdiv2D_free_blocks_get(CvSubdiv2D self) -> CvSeqBlock"}, - { (char *)"CvSubdiv2D_first_set", _wrap_CvSubdiv2D_first_set, METH_VARARGS, (char *)"CvSubdiv2D_first_set(CvSubdiv2D self, CvSeqBlock first)"}, - { (char *)"CvSubdiv2D_first_get", _wrap_CvSubdiv2D_first_get, METH_VARARGS, (char *)"CvSubdiv2D_first_get(CvSubdiv2D self) -> CvSeqBlock"}, - { (char *)"CvSubdiv2D_free_elems_set", _wrap_CvSubdiv2D_free_elems_set, METH_VARARGS, (char *)"CvSubdiv2D_free_elems_set(CvSubdiv2D self, CvSetElem free_elems)"}, - { (char *)"CvSubdiv2D_free_elems_get", _wrap_CvSubdiv2D_free_elems_get, METH_VARARGS, (char *)"CvSubdiv2D_free_elems_get(CvSubdiv2D self) -> CvSetElem"}, - { (char *)"CvSubdiv2D_active_count_set", _wrap_CvSubdiv2D_active_count_set, METH_VARARGS, (char *)"CvSubdiv2D_active_count_set(CvSubdiv2D self, int active_count)"}, - { (char *)"CvSubdiv2D_active_count_get", _wrap_CvSubdiv2D_active_count_get, METH_VARARGS, (char *)"CvSubdiv2D_active_count_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_quad_edges_set", _wrap_CvSubdiv2D_quad_edges_set, METH_VARARGS, (char *)"CvSubdiv2D_quad_edges_set(CvSubdiv2D self, int quad_edges)"}, - { (char *)"CvSubdiv2D_quad_edges_get", _wrap_CvSubdiv2D_quad_edges_get, METH_VARARGS, (char *)"CvSubdiv2D_quad_edges_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_is_geometry_valid_set", _wrap_CvSubdiv2D_is_geometry_valid_set, METH_VARARGS, (char *)"CvSubdiv2D_is_geometry_valid_set(CvSubdiv2D self, int is_geometry_valid)"}, - { (char *)"CvSubdiv2D_is_geometry_valid_get", _wrap_CvSubdiv2D_is_geometry_valid_get, METH_VARARGS, (char *)"CvSubdiv2D_is_geometry_valid_get(CvSubdiv2D self) -> int"}, - { (char *)"CvSubdiv2D_recent_edge_set", _wrap_CvSubdiv2D_recent_edge_set, METH_VARARGS, (char *)"CvSubdiv2D_recent_edge_set(CvSubdiv2D self, CvSubdiv2DEdge recent_edge)"}, - { (char *)"CvSubdiv2D_recent_edge_get", _wrap_CvSubdiv2D_recent_edge_get, METH_VARARGS, (char *)"CvSubdiv2D_recent_edge_get(CvSubdiv2D self) -> CvSubdiv2DEdge"}, - { (char *)"CvSubdiv2D_topleft_set", _wrap_CvSubdiv2D_topleft_set, METH_VARARGS, (char *)"CvSubdiv2D_topleft_set(CvSubdiv2D self, CvPoint2D32f topleft)"}, - { (char *)"CvSubdiv2D_topleft_get", _wrap_CvSubdiv2D_topleft_get, METH_VARARGS, (char *)"CvSubdiv2D_topleft_get(CvSubdiv2D self) -> CvPoint2D32f"}, - { (char *)"CvSubdiv2D_bottomright_set", _wrap_CvSubdiv2D_bottomright_set, METH_VARARGS, (char *)"CvSubdiv2D_bottomright_set(CvSubdiv2D self, CvPoint2D32f bottomright)"}, - { (char *)"CvSubdiv2D_bottomright_get", _wrap_CvSubdiv2D_bottomright_get, METH_VARARGS, (char *)"CvSubdiv2D_bottomright_get(CvSubdiv2D self) -> CvPoint2D32f"}, - { (char *)"CvSubdiv2D_edges_set", _wrap_CvSubdiv2D_edges_set, METH_VARARGS, (char *)"CvSubdiv2D_edges_set(CvSubdiv2D self, CvSeq_CvQuadEdge2D typed_edges)"}, - { (char *)"CvSubdiv2D_edges_get", _wrap_CvSubdiv2D_edges_get, METH_VARARGS, (char *)"CvSubdiv2D_edges_get(CvSubdiv2D self) -> CvSeq_CvQuadEdge2D"}, - { (char *)"CvSubdiv2D_typed_edges_get", _wrap_CvSubdiv2D_typed_edges_get, METH_VARARGS, (char *)"CvSubdiv2D_typed_edges_get(CvSubdiv2D self) -> CvSeq_CvQuadEdge2D"}, - { (char *)"CvSubdiv2D_typed_edges_set", _wrap_CvSubdiv2D_typed_edges_set, METH_VARARGS, (char *)"CvSubdiv2D_typed_edges_set(CvSubdiv2D self, CvSeq_CvQuadEdge2D arg1)"}, - { (char *)"new_CvSubdiv2D", _wrap_new_CvSubdiv2D, METH_VARARGS, (char *)"new_CvSubdiv2D() -> CvSubdiv2D"}, - { (char *)"delete_CvSubdiv2D", _wrap_delete_CvSubdiv2D, METH_VARARGS, (char *)"delete_CvSubdiv2D(CvSubdiv2D self)"}, - { (char *)"CvSubdiv2D_swigregister", CvSubdiv2D_swigregister, METH_VARARGS, NULL}, - { (char *)"CvMatrix3_m_set", _wrap_CvMatrix3_m_set, METH_VARARGS, (char *)"CvMatrix3_m_set(CvMatrix3 self, float m)"}, - { (char *)"CvMatrix3_m_get", _wrap_CvMatrix3_m_get, METH_VARARGS, (char *)"CvMatrix3_m_get(CvMatrix3 self) -> float"}, - { (char *)"new_CvMatrix3", _wrap_new_CvMatrix3, METH_VARARGS, (char *)"new_CvMatrix3() -> CvMatrix3"}, - { (char *)"delete_CvMatrix3", _wrap_delete_CvMatrix3, METH_VARARGS, (char *)"delete_CvMatrix3(CvMatrix3 self)"}, - { (char *)"CvMatrix3_swigregister", CvMatrix3_swigregister, METH_VARARGS, NULL}, - { (char *)"CvConDensation_MP_set", _wrap_CvConDensation_MP_set, METH_VARARGS, (char *)"CvConDensation_MP_set(CvConDensation self, int MP)"}, - { (char *)"CvConDensation_MP_get", _wrap_CvConDensation_MP_get, METH_VARARGS, (char *)"CvConDensation_MP_get(CvConDensation self) -> int"}, - { (char *)"CvConDensation_DP_set", _wrap_CvConDensation_DP_set, METH_VARARGS, (char *)"CvConDensation_DP_set(CvConDensation self, int DP)"}, - { (char *)"CvConDensation_DP_get", _wrap_CvConDensation_DP_get, METH_VARARGS, (char *)"CvConDensation_DP_get(CvConDensation self) -> int"}, - { (char *)"CvConDensation_DynamMatr_set", _wrap_CvConDensation_DynamMatr_set, METH_VARARGS, (char *)"CvConDensation_DynamMatr_set(CvConDensation self, float DynamMatr)"}, - { (char *)"CvConDensation_DynamMatr_get", _wrap_CvConDensation_DynamMatr_get, METH_VARARGS, (char *)"CvConDensation_DynamMatr_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_State_set", _wrap_CvConDensation_State_set, METH_VARARGS, (char *)"CvConDensation_State_set(CvConDensation self, float State)"}, - { (char *)"CvConDensation_State_get", _wrap_CvConDensation_State_get, METH_VARARGS, (char *)"CvConDensation_State_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_SamplesNum_set", _wrap_CvConDensation_SamplesNum_set, METH_VARARGS, (char *)"CvConDensation_SamplesNum_set(CvConDensation self, int SamplesNum)"}, - { (char *)"CvConDensation_SamplesNum_get", _wrap_CvConDensation_SamplesNum_get, METH_VARARGS, (char *)"CvConDensation_SamplesNum_get(CvConDensation self) -> int"}, - { (char *)"CvConDensation_flSamples_set", _wrap_CvConDensation_flSamples_set, METH_VARARGS, (char *)"CvConDensation_flSamples_set(CvConDensation self, float flSamples)"}, - { (char *)"CvConDensation_flSamples_get", _wrap_CvConDensation_flSamples_get, METH_VARARGS, (char *)"CvConDensation_flSamples_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_flNewSamples_set", _wrap_CvConDensation_flNewSamples_set, METH_VARARGS, (char *)"CvConDensation_flNewSamples_set(CvConDensation self, float flNewSamples)"}, - { (char *)"CvConDensation_flNewSamples_get", _wrap_CvConDensation_flNewSamples_get, METH_VARARGS, (char *)"CvConDensation_flNewSamples_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_flConfidence_set", _wrap_CvConDensation_flConfidence_set, METH_VARARGS, (char *)"CvConDensation_flConfidence_set(CvConDensation self, float flConfidence)"}, - { (char *)"CvConDensation_flConfidence_get", _wrap_CvConDensation_flConfidence_get, METH_VARARGS, (char *)"CvConDensation_flConfidence_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_flCumulative_set", _wrap_CvConDensation_flCumulative_set, METH_VARARGS, (char *)"CvConDensation_flCumulative_set(CvConDensation self, float flCumulative)"}, - { (char *)"CvConDensation_flCumulative_get", _wrap_CvConDensation_flCumulative_get, METH_VARARGS, (char *)"CvConDensation_flCumulative_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_Temp_set", _wrap_CvConDensation_Temp_set, METH_VARARGS, (char *)"CvConDensation_Temp_set(CvConDensation self, float Temp)"}, - { (char *)"CvConDensation_Temp_get", _wrap_CvConDensation_Temp_get, METH_VARARGS, (char *)"CvConDensation_Temp_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_RandomSample_set", _wrap_CvConDensation_RandomSample_set, METH_VARARGS, (char *)"CvConDensation_RandomSample_set(CvConDensation self, float RandomSample)"}, - { (char *)"CvConDensation_RandomSample_get", _wrap_CvConDensation_RandomSample_get, METH_VARARGS, (char *)"CvConDensation_RandomSample_get(CvConDensation self) -> float"}, - { (char *)"CvConDensation_RandS_set", _wrap_CvConDensation_RandS_set, METH_VARARGS, (char *)"CvConDensation_RandS_set(CvConDensation self, CvRandState RandS)"}, - { (char *)"CvConDensation_RandS_get", _wrap_CvConDensation_RandS_get, METH_VARARGS, (char *)"CvConDensation_RandS_get(CvConDensation self) -> CvRandState"}, - { (char *)"delete_CvConDensation", _wrap_delete_CvConDensation, METH_VARARGS, (char *)"delete_CvConDensation(CvConDensation self)"}, - { (char *)"CvConDensation_swigregister", CvConDensation_swigregister, METH_VARARGS, NULL}, - { (char *)"CvKalman_MP_set", _wrap_CvKalman_MP_set, METH_VARARGS, (char *)"CvKalman_MP_set(CvKalman self, int MP)"}, - { (char *)"CvKalman_MP_get", _wrap_CvKalman_MP_get, METH_VARARGS, (char *)"CvKalman_MP_get(CvKalman self) -> int"}, - { (char *)"CvKalman_DP_set", _wrap_CvKalman_DP_set, METH_VARARGS, (char *)"CvKalman_DP_set(CvKalman self, int DP)"}, - { (char *)"CvKalman_DP_get", _wrap_CvKalman_DP_get, METH_VARARGS, (char *)"CvKalman_DP_get(CvKalman self) -> int"}, - { (char *)"CvKalman_CP_set", _wrap_CvKalman_CP_set, METH_VARARGS, (char *)"CvKalman_CP_set(CvKalman self, int CP)"}, - { (char *)"CvKalman_CP_get", _wrap_CvKalman_CP_get, METH_VARARGS, (char *)"CvKalman_CP_get(CvKalman self) -> int"}, - { (char *)"CvKalman_PosterState_set", _wrap_CvKalman_PosterState_set, METH_VARARGS, (char *)"CvKalman_PosterState_set(CvKalman self, float PosterState)"}, - { (char *)"CvKalman_PosterState_get", _wrap_CvKalman_PosterState_get, METH_VARARGS, (char *)"CvKalman_PosterState_get(CvKalman self) -> float"}, - { (char *)"CvKalman_PriorState_set", _wrap_CvKalman_PriorState_set, METH_VARARGS, (char *)"CvKalman_PriorState_set(CvKalman self, float PriorState)"}, - { (char *)"CvKalman_PriorState_get", _wrap_CvKalman_PriorState_get, METH_VARARGS, (char *)"CvKalman_PriorState_get(CvKalman self) -> float"}, - { (char *)"CvKalman_DynamMatr_set", _wrap_CvKalman_DynamMatr_set, METH_VARARGS, (char *)"CvKalman_DynamMatr_set(CvKalman self, float DynamMatr)"}, - { (char *)"CvKalman_DynamMatr_get", _wrap_CvKalman_DynamMatr_get, METH_VARARGS, (char *)"CvKalman_DynamMatr_get(CvKalman self) -> float"}, - { (char *)"CvKalman_MeasurementMatr_set", _wrap_CvKalman_MeasurementMatr_set, METH_VARARGS, (char *)"CvKalman_MeasurementMatr_set(CvKalman self, float MeasurementMatr)"}, - { (char *)"CvKalman_MeasurementMatr_get", _wrap_CvKalman_MeasurementMatr_get, METH_VARARGS, (char *)"CvKalman_MeasurementMatr_get(CvKalman self) -> float"}, - { (char *)"CvKalman_MNCovariance_set", _wrap_CvKalman_MNCovariance_set, METH_VARARGS, (char *)"CvKalman_MNCovariance_set(CvKalman self, float MNCovariance)"}, - { (char *)"CvKalman_MNCovariance_get", _wrap_CvKalman_MNCovariance_get, METH_VARARGS, (char *)"CvKalman_MNCovariance_get(CvKalman self) -> float"}, - { (char *)"CvKalman_PNCovariance_set", _wrap_CvKalman_PNCovariance_set, METH_VARARGS, (char *)"CvKalman_PNCovariance_set(CvKalman self, float PNCovariance)"}, - { (char *)"CvKalman_PNCovariance_get", _wrap_CvKalman_PNCovariance_get, METH_VARARGS, (char *)"CvKalman_PNCovariance_get(CvKalman self) -> float"}, - { (char *)"CvKalman_KalmGainMatr_set", _wrap_CvKalman_KalmGainMatr_set, METH_VARARGS, (char *)"CvKalman_KalmGainMatr_set(CvKalman self, float KalmGainMatr)"}, - { (char *)"CvKalman_KalmGainMatr_get", _wrap_CvKalman_KalmGainMatr_get, METH_VARARGS, (char *)"CvKalman_KalmGainMatr_get(CvKalman self) -> float"}, - { (char *)"CvKalman_PriorErrorCovariance_set", _wrap_CvKalman_PriorErrorCovariance_set, METH_VARARGS, (char *)"CvKalman_PriorErrorCovariance_set(CvKalman self, float PriorErrorCovariance)"}, - { (char *)"CvKalman_PriorErrorCovariance_get", _wrap_CvKalman_PriorErrorCovariance_get, METH_VARARGS, (char *)"CvKalman_PriorErrorCovariance_get(CvKalman self) -> float"}, - { (char *)"CvKalman_PosterErrorCovariance_set", _wrap_CvKalman_PosterErrorCovariance_set, METH_VARARGS, (char *)"CvKalman_PosterErrorCovariance_set(CvKalman self, float PosterErrorCovariance)"}, - { (char *)"CvKalman_PosterErrorCovariance_get", _wrap_CvKalman_PosterErrorCovariance_get, METH_VARARGS, (char *)"CvKalman_PosterErrorCovariance_get(CvKalman self) -> float"}, - { (char *)"CvKalman_Temp1_set", _wrap_CvKalman_Temp1_set, METH_VARARGS, (char *)"CvKalman_Temp1_set(CvKalman self, float Temp1)"}, - { (char *)"CvKalman_Temp1_get", _wrap_CvKalman_Temp1_get, METH_VARARGS, (char *)"CvKalman_Temp1_get(CvKalman self) -> float"}, - { (char *)"CvKalman_Temp2_set", _wrap_CvKalman_Temp2_set, METH_VARARGS, (char *)"CvKalman_Temp2_set(CvKalman self, float Temp2)"}, - { (char *)"CvKalman_Temp2_get", _wrap_CvKalman_Temp2_get, METH_VARARGS, (char *)"CvKalman_Temp2_get(CvKalman self) -> float"}, - { (char *)"CvKalman_state_pre_set", _wrap_CvKalman_state_pre_set, METH_VARARGS, (char *)"CvKalman_state_pre_set(CvKalman self, CvMat state_pre)"}, - { (char *)"CvKalman_state_pre_get", _wrap_CvKalman_state_pre_get, METH_VARARGS, (char *)"CvKalman_state_pre_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_state_post_set", _wrap_CvKalman_state_post_set, METH_VARARGS, (char *)"CvKalman_state_post_set(CvKalman self, CvMat state_post)"}, - { (char *)"CvKalman_state_post_get", _wrap_CvKalman_state_post_get, METH_VARARGS, (char *)"CvKalman_state_post_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_transition_matrix_set", _wrap_CvKalman_transition_matrix_set, METH_VARARGS, (char *)"CvKalman_transition_matrix_set(CvKalman self, CvMat transition_matrix)"}, - { (char *)"CvKalman_transition_matrix_get", _wrap_CvKalman_transition_matrix_get, METH_VARARGS, (char *)"CvKalman_transition_matrix_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_control_matrix_set", _wrap_CvKalman_control_matrix_set, METH_VARARGS, (char *)"CvKalman_control_matrix_set(CvKalman self, CvMat control_matrix)"}, - { (char *)"CvKalman_control_matrix_get", _wrap_CvKalman_control_matrix_get, METH_VARARGS, (char *)"CvKalman_control_matrix_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_measurement_matrix_set", _wrap_CvKalman_measurement_matrix_set, METH_VARARGS, (char *)"CvKalman_measurement_matrix_set(CvKalman self, CvMat measurement_matrix)"}, - { (char *)"CvKalman_measurement_matrix_get", _wrap_CvKalman_measurement_matrix_get, METH_VARARGS, (char *)"CvKalman_measurement_matrix_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_process_noise_cov_set", _wrap_CvKalman_process_noise_cov_set, METH_VARARGS, (char *)"CvKalman_process_noise_cov_set(CvKalman self, CvMat process_noise_cov)"}, - { (char *)"CvKalman_process_noise_cov_get", _wrap_CvKalman_process_noise_cov_get, METH_VARARGS, (char *)"CvKalman_process_noise_cov_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_measurement_noise_cov_set", _wrap_CvKalman_measurement_noise_cov_set, METH_VARARGS, (char *)"CvKalman_measurement_noise_cov_set(CvKalman self, CvMat measurement_noise_cov)"}, - { (char *)"CvKalman_measurement_noise_cov_get", _wrap_CvKalman_measurement_noise_cov_get, METH_VARARGS, (char *)"CvKalman_measurement_noise_cov_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_error_cov_pre_set", _wrap_CvKalman_error_cov_pre_set, METH_VARARGS, (char *)"CvKalman_error_cov_pre_set(CvKalman self, CvMat error_cov_pre)"}, - { (char *)"CvKalman_error_cov_pre_get", _wrap_CvKalman_error_cov_pre_get, METH_VARARGS, (char *)"CvKalman_error_cov_pre_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_gain_set", _wrap_CvKalman_gain_set, METH_VARARGS, (char *)"CvKalman_gain_set(CvKalman self, CvMat gain)"}, - { (char *)"CvKalman_gain_get", _wrap_CvKalman_gain_get, METH_VARARGS, (char *)"CvKalman_gain_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_error_cov_post_set", _wrap_CvKalman_error_cov_post_set, METH_VARARGS, (char *)"CvKalman_error_cov_post_set(CvKalman self, CvMat error_cov_post)"}, - { (char *)"CvKalman_error_cov_post_get", _wrap_CvKalman_error_cov_post_get, METH_VARARGS, (char *)"CvKalman_error_cov_post_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_temp1_set", _wrap_CvKalman_temp1_set, METH_VARARGS, (char *)"CvKalman_temp1_set(CvKalman self, CvMat temp1)"}, - { (char *)"CvKalman_temp1_get", _wrap_CvKalman_temp1_get, METH_VARARGS, (char *)"CvKalman_temp1_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_temp2_set", _wrap_CvKalman_temp2_set, METH_VARARGS, (char *)"CvKalman_temp2_set(CvKalman self, CvMat temp2)"}, - { (char *)"CvKalman_temp2_get", _wrap_CvKalman_temp2_get, METH_VARARGS, (char *)"CvKalman_temp2_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_temp3_set", _wrap_CvKalman_temp3_set, METH_VARARGS, (char *)"CvKalman_temp3_set(CvKalman self, CvMat temp3)"}, - { (char *)"CvKalman_temp3_get", _wrap_CvKalman_temp3_get, METH_VARARGS, (char *)"CvKalman_temp3_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_temp4_set", _wrap_CvKalman_temp4_set, METH_VARARGS, (char *)"CvKalman_temp4_set(CvKalman self, CvMat temp4)"}, - { (char *)"CvKalman_temp4_get", _wrap_CvKalman_temp4_get, METH_VARARGS, (char *)"CvKalman_temp4_get(CvKalman self) -> CvMat"}, - { (char *)"CvKalman_temp5_set", _wrap_CvKalman_temp5_set, METH_VARARGS, (char *)"CvKalman_temp5_set(CvKalman self, CvMat temp5)"}, - { (char *)"CvKalman_temp5_get", _wrap_CvKalman_temp5_get, METH_VARARGS, (char *)"CvKalman_temp5_get(CvKalman self) -> CvMat"}, - { (char *)"delete_CvKalman", _wrap_delete_CvKalman, METH_VARARGS, (char *)"delete_CvKalman(CvKalman self)"}, - { (char *)"CvKalman_swigregister", CvKalman_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHaarFeature_tilted_set", _wrap_CvHaarFeature_tilted_set, METH_VARARGS, (char *)"CvHaarFeature_tilted_set(CvHaarFeature self, int tilted)"}, - { (char *)"CvHaarFeature_tilted_get", _wrap_CvHaarFeature_tilted_get, METH_VARARGS, (char *)"CvHaarFeature_tilted_get(CvHaarFeature self) -> int"}, - { (char *)"CvHaarFeature_rect_get", _wrap_CvHaarFeature_rect_get, METH_VARARGS, (char *)"CvHaarFeature_rect_get(CvHaarFeature self) -> CvHaarFeature_rect"}, - { (char *)"new_CvHaarFeature", _wrap_new_CvHaarFeature, METH_VARARGS, (char *)"new_CvHaarFeature() -> CvHaarFeature"}, - { (char *)"delete_CvHaarFeature", _wrap_delete_CvHaarFeature, METH_VARARGS, (char *)"delete_CvHaarFeature(CvHaarFeature self)"}, - { (char *)"CvHaarFeature_swigregister", CvHaarFeature_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHaarFeature_rect_r_set", _wrap_CvHaarFeature_rect_r_set, METH_VARARGS, (char *)"CvHaarFeature_rect_r_set(CvHaarFeature_rect self, CvRect r)"}, - { (char *)"CvHaarFeature_rect_r_get", _wrap_CvHaarFeature_rect_r_get, METH_VARARGS, (char *)"CvHaarFeature_rect_r_get(CvHaarFeature_rect self) -> CvRect"}, - { (char *)"CvHaarFeature_rect_weight_set", _wrap_CvHaarFeature_rect_weight_set, METH_VARARGS, (char *)"CvHaarFeature_rect_weight_set(CvHaarFeature_rect self, float weight)"}, - { (char *)"CvHaarFeature_rect_weight_get", _wrap_CvHaarFeature_rect_weight_get, METH_VARARGS, (char *)"CvHaarFeature_rect_weight_get(CvHaarFeature_rect self) -> float"}, - { (char *)"new_CvHaarFeature_rect", _wrap_new_CvHaarFeature_rect, METH_VARARGS, (char *)"new_CvHaarFeature_rect() -> CvHaarFeature_rect"}, - { (char *)"delete_CvHaarFeature_rect", _wrap_delete_CvHaarFeature_rect, METH_VARARGS, (char *)"delete_CvHaarFeature_rect(CvHaarFeature_rect self)"}, - { (char *)"CvHaarFeature_rect_swigregister", CvHaarFeature_rect_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHaarClassifier_count_set", _wrap_CvHaarClassifier_count_set, METH_VARARGS, (char *)"CvHaarClassifier_count_set(CvHaarClassifier self, int count)"}, - { (char *)"CvHaarClassifier_count_get", _wrap_CvHaarClassifier_count_get, METH_VARARGS, (char *)"CvHaarClassifier_count_get(CvHaarClassifier self) -> int"}, - { (char *)"CvHaarClassifier_haar_feature_set", _wrap_CvHaarClassifier_haar_feature_set, METH_VARARGS, (char *)"CvHaarClassifier_haar_feature_set(CvHaarClassifier self, CvHaarFeature haar_feature)"}, - { (char *)"CvHaarClassifier_haar_feature_get", _wrap_CvHaarClassifier_haar_feature_get, METH_VARARGS, (char *)"CvHaarClassifier_haar_feature_get(CvHaarClassifier self) -> CvHaarFeature"}, - { (char *)"CvHaarClassifier_threshold_set", _wrap_CvHaarClassifier_threshold_set, METH_VARARGS, (char *)"CvHaarClassifier_threshold_set(CvHaarClassifier self, float threshold)"}, - { (char *)"CvHaarClassifier_threshold_get", _wrap_CvHaarClassifier_threshold_get, METH_VARARGS, (char *)"CvHaarClassifier_threshold_get(CvHaarClassifier self) -> float"}, - { (char *)"CvHaarClassifier_left_set", _wrap_CvHaarClassifier_left_set, METH_VARARGS, (char *)"CvHaarClassifier_left_set(CvHaarClassifier self, int left)"}, - { (char *)"CvHaarClassifier_left_get", _wrap_CvHaarClassifier_left_get, METH_VARARGS, (char *)"CvHaarClassifier_left_get(CvHaarClassifier self) -> int"}, - { (char *)"CvHaarClassifier_right_set", _wrap_CvHaarClassifier_right_set, METH_VARARGS, (char *)"CvHaarClassifier_right_set(CvHaarClassifier self, int right)"}, - { (char *)"CvHaarClassifier_right_get", _wrap_CvHaarClassifier_right_get, METH_VARARGS, (char *)"CvHaarClassifier_right_get(CvHaarClassifier self) -> int"}, - { (char *)"CvHaarClassifier_alpha_set", _wrap_CvHaarClassifier_alpha_set, METH_VARARGS, (char *)"CvHaarClassifier_alpha_set(CvHaarClassifier self, float alpha)"}, - { (char *)"CvHaarClassifier_alpha_get", _wrap_CvHaarClassifier_alpha_get, METH_VARARGS, (char *)"CvHaarClassifier_alpha_get(CvHaarClassifier self) -> float"}, - { (char *)"new_CvHaarClassifier", _wrap_new_CvHaarClassifier, METH_VARARGS, (char *)"new_CvHaarClassifier() -> CvHaarClassifier"}, - { (char *)"delete_CvHaarClassifier", _wrap_delete_CvHaarClassifier, METH_VARARGS, (char *)"delete_CvHaarClassifier(CvHaarClassifier self)"}, - { (char *)"CvHaarClassifier_swigregister", CvHaarClassifier_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHaarStageClassifier_count_set", _wrap_CvHaarStageClassifier_count_set, METH_VARARGS, (char *)"CvHaarStageClassifier_count_set(CvHaarStageClassifier self, int count)"}, - { (char *)"CvHaarStageClassifier_count_get", _wrap_CvHaarStageClassifier_count_get, METH_VARARGS, (char *)"CvHaarStageClassifier_count_get(CvHaarStageClassifier self) -> int"}, - { (char *)"CvHaarStageClassifier_threshold_set", _wrap_CvHaarStageClassifier_threshold_set, METH_VARARGS, (char *)"CvHaarStageClassifier_threshold_set(CvHaarStageClassifier self, float threshold)"}, - { (char *)"CvHaarStageClassifier_threshold_get", _wrap_CvHaarStageClassifier_threshold_get, METH_VARARGS, (char *)"CvHaarStageClassifier_threshold_get(CvHaarStageClassifier self) -> float"}, - { (char *)"CvHaarStageClassifier_classifier_set", _wrap_CvHaarStageClassifier_classifier_set, METH_VARARGS, (char *)"CvHaarStageClassifier_classifier_set(CvHaarStageClassifier self, CvHaarClassifier classifier)"}, - { (char *)"CvHaarStageClassifier_classifier_get", _wrap_CvHaarStageClassifier_classifier_get, METH_VARARGS, (char *)"CvHaarStageClassifier_classifier_get(CvHaarStageClassifier self) -> CvHaarClassifier"}, - { (char *)"CvHaarStageClassifier_next_set", _wrap_CvHaarStageClassifier_next_set, METH_VARARGS, (char *)"CvHaarStageClassifier_next_set(CvHaarStageClassifier self, int next)"}, - { (char *)"CvHaarStageClassifier_next_get", _wrap_CvHaarStageClassifier_next_get, METH_VARARGS, (char *)"CvHaarStageClassifier_next_get(CvHaarStageClassifier self) -> int"}, - { (char *)"CvHaarStageClassifier_child_set", _wrap_CvHaarStageClassifier_child_set, METH_VARARGS, (char *)"CvHaarStageClassifier_child_set(CvHaarStageClassifier self, int child)"}, - { (char *)"CvHaarStageClassifier_child_get", _wrap_CvHaarStageClassifier_child_get, METH_VARARGS, (char *)"CvHaarStageClassifier_child_get(CvHaarStageClassifier self) -> int"}, - { (char *)"CvHaarStageClassifier_parent_set", _wrap_CvHaarStageClassifier_parent_set, METH_VARARGS, (char *)"CvHaarStageClassifier_parent_set(CvHaarStageClassifier self, int parent)"}, - { (char *)"CvHaarStageClassifier_parent_get", _wrap_CvHaarStageClassifier_parent_get, METH_VARARGS, (char *)"CvHaarStageClassifier_parent_get(CvHaarStageClassifier self) -> int"}, - { (char *)"new_CvHaarStageClassifier", _wrap_new_CvHaarStageClassifier, METH_VARARGS, (char *)"new_CvHaarStageClassifier() -> CvHaarStageClassifier"}, - { (char *)"delete_CvHaarStageClassifier", _wrap_delete_CvHaarStageClassifier, METH_VARARGS, (char *)"delete_CvHaarStageClassifier(CvHaarStageClassifier self)"}, - { (char *)"CvHaarStageClassifier_swigregister", CvHaarStageClassifier_swigregister, METH_VARARGS, NULL}, - { (char *)"CvHaarClassifierCascade_flags_set", _wrap_CvHaarClassifierCascade_flags_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_flags_set(CvHaarClassifierCascade self, int flags)"}, - { (char *)"CvHaarClassifierCascade_flags_get", _wrap_CvHaarClassifierCascade_flags_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_flags_get(CvHaarClassifierCascade self) -> int"}, - { (char *)"CvHaarClassifierCascade_count_set", _wrap_CvHaarClassifierCascade_count_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_count_set(CvHaarClassifierCascade self, int count)"}, - { (char *)"CvHaarClassifierCascade_count_get", _wrap_CvHaarClassifierCascade_count_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_count_get(CvHaarClassifierCascade self) -> int"}, - { (char *)"CvHaarClassifierCascade_orig_window_size_set", _wrap_CvHaarClassifierCascade_orig_window_size_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_orig_window_size_set(CvHaarClassifierCascade self, CvSize orig_window_size)"}, - { (char *)"CvHaarClassifierCascade_orig_window_size_get", _wrap_CvHaarClassifierCascade_orig_window_size_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_orig_window_size_get(CvHaarClassifierCascade self) -> CvSize"}, - { (char *)"CvHaarClassifierCascade_real_window_size_set", _wrap_CvHaarClassifierCascade_real_window_size_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_real_window_size_set(CvHaarClassifierCascade self, CvSize real_window_size)"}, - { (char *)"CvHaarClassifierCascade_real_window_size_get", _wrap_CvHaarClassifierCascade_real_window_size_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_real_window_size_get(CvHaarClassifierCascade self) -> CvSize"}, - { (char *)"CvHaarClassifierCascade_scale_set", _wrap_CvHaarClassifierCascade_scale_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_scale_set(CvHaarClassifierCascade self, double scale)"}, - { (char *)"CvHaarClassifierCascade_scale_get", _wrap_CvHaarClassifierCascade_scale_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_scale_get(CvHaarClassifierCascade self) -> double"}, - { (char *)"CvHaarClassifierCascade_stage_classifier_set", _wrap_CvHaarClassifierCascade_stage_classifier_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_stage_classifier_set(CvHaarClassifierCascade self, CvHaarStageClassifier stage_classifier)"}, - { (char *)"CvHaarClassifierCascade_stage_classifier_get", _wrap_CvHaarClassifierCascade_stage_classifier_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_stage_classifier_get(CvHaarClassifierCascade self) -> CvHaarStageClassifier"}, - { (char *)"CvHaarClassifierCascade_hid_cascade_set", _wrap_CvHaarClassifierCascade_hid_cascade_set, METH_VARARGS, (char *)"CvHaarClassifierCascade_hid_cascade_set(CvHaarClassifierCascade self, CvHidHaarClassifierCascade hid_cascade)"}, - { (char *)"CvHaarClassifierCascade_hid_cascade_get", _wrap_CvHaarClassifierCascade_hid_cascade_get, METH_VARARGS, (char *)"CvHaarClassifierCascade_hid_cascade_get(CvHaarClassifierCascade self) -> CvHidHaarClassifierCascade"}, - { (char *)"delete_CvHaarClassifierCascade", _wrap_delete_CvHaarClassifierCascade, METH_VARARGS, (char *)"delete_CvHaarClassifierCascade(CvHaarClassifierCascade self)"}, - { (char *)"CvHaarClassifierCascade_swigregister", CvHaarClassifierCascade_swigregister, METH_VARARGS, NULL}, - { (char *)"CvAvgComp_rect_set", _wrap_CvAvgComp_rect_set, METH_VARARGS, (char *)"CvAvgComp_rect_set(CvAvgComp self, CvRect rect)"}, - { (char *)"CvAvgComp_rect_get", _wrap_CvAvgComp_rect_get, METH_VARARGS, (char *)"CvAvgComp_rect_get(CvAvgComp self) -> CvRect"}, - { (char *)"CvAvgComp_neighbors_set", _wrap_CvAvgComp_neighbors_set, METH_VARARGS, (char *)"CvAvgComp_neighbors_set(CvAvgComp self, int neighbors)"}, - { (char *)"CvAvgComp_neighbors_get", _wrap_CvAvgComp_neighbors_get, METH_VARARGS, (char *)"CvAvgComp_neighbors_get(CvAvgComp self) -> int"}, - { (char *)"new_CvAvgComp", _wrap_new_CvAvgComp, METH_VARARGS, (char *)"new_CvAvgComp() -> CvAvgComp"}, - { (char *)"delete_CvAvgComp", _wrap_delete_CvAvgComp, METH_VARARGS, (char *)"delete_CvAvgComp(CvAvgComp self)"}, - { (char *)"CvAvgComp_swigregister", CvAvgComp_swigregister, METH_VARARGS, NULL}, - { (char *)"cvCopyMakeBorder", _wrap_cvCopyMakeBorder, METH_VARARGS, (char *)"\n" - "cvCopyMakeBorder(CvArr src, CvArr dst, CvPoint offset, int bordertype, \n" - " CvScalar value = cvScalarAll(0))\n" - ""}, - { (char *)"cvSmooth", _wrap_cvSmooth, METH_VARARGS, (char *)"\n" - "cvSmooth(CvArr src, CvArr dst, int smoothtype = 2, int size1 = 3, \n" - " int size2 = 0, double sigma1 = 0, double sigma2 = 0)\n" - ""}, - { (char *)"cvFilter2D", _wrap_cvFilter2D, METH_VARARGS, (char *)"cvFilter2D(CvArr src, CvArr dst, CvMat kernel, CvPoint anchor = cvPoint(-1,-1))"}, - { (char *)"cvIntegral", _wrap_cvIntegral, METH_VARARGS, (char *)"cvIntegral(CvArr image, CvArr sum, CvArr sqsum = None, CvArr tilted_sum = None)"}, - { (char *)"cvPyrDown", _wrap_cvPyrDown, METH_VARARGS, (char *)"cvPyrDown(CvArr src, CvArr dst, int filter = CV_GAUSSIAN_5x5)"}, - { (char *)"cvPyrUp", _wrap_cvPyrUp, METH_VARARGS, (char *)"cvPyrUp(CvArr src, CvArr dst, int filter = CV_GAUSSIAN_5x5)"}, - { (char *)"cvCreatePyramid", _wrap_cvCreatePyramid, METH_VARARGS, (char *)"\n" - "cvCreatePyramid(CvArr img, int extra_layers, double rate, CvSize layer_sizes = None, \n" - " CvArr bufarr = None, int calc = 1, \n" - " int filter = CV_GAUSSIAN_5x5) -> CvMat\n" - ""}, - { (char *)"cvReleasePyramid", _wrap_cvReleasePyramid, METH_VARARGS, (char *)"cvReleasePyramid(CvMat pyramid, int extra_layers)"}, - { (char *)"cvPyrSegmentationUntyped", _wrap_cvPyrSegmentationUntyped, METH_VARARGS, (char *)"\n" - "cvPyrSegmentationUntyped( src, dst, CvMemStorage storage, int level, double threshold1, \n" - " double threshold2)\n" - ""}, - { (char *)"cvPyrMeanShiftFiltering", _wrap_cvPyrMeanShiftFiltering, METH_VARARGS, (char *)"\n" - "cvPyrMeanShiftFiltering(CvArr src, CvArr dst, double sp, double sr, int max_level = 1, \n" - " CvTermCriteria termcrit = cvTermCriteria(1 +2,5,1))\n" - ""}, - { (char *)"cvWatershed", _wrap_cvWatershed, METH_VARARGS, (char *)"cvWatershed(CvArr image, CvArr markers)"}, - { (char *)"cvInpaint", _wrap_cvInpaint, METH_VARARGS, (char *)"\n" - "cvInpaint(CvArr src, CvArr inpaint_mask, CvArr dst, double inpaintRange, \n" - " int flags)\n" - ""}, - { (char *)"cvSobel", _wrap_cvSobel, METH_VARARGS, (char *)"cvSobel(CvArr src, CvArr dst, int xorder, int yorder, int aperture_size = 3)"}, - { (char *)"cvLaplace", _wrap_cvLaplace, METH_VARARGS, (char *)"cvLaplace(CvArr src, CvArr dst, int aperture_size = 3)"}, - { (char *)"cvCvtColor", _wrap_cvCvtColor, METH_VARARGS, (char *)"cvCvtColor(CvArr src, CvArr dst, int code)"}, - { (char *)"cvResize", _wrap_cvResize, METH_VARARGS, (char *)"cvResize(CvArr src, CvArr dst, int interpolation = 1)"}, - { (char *)"cvWarpAffine", _wrap_cvWarpAffine, METH_VARARGS, (char *)"\n" - "cvWarpAffine(CvArr src, CvArr dst, CvMat map_matrix, int flags = 1+8, \n" - " CvScalar fillval = cvScalarAll(0))\n" - ""}, - { (char *)"cvGetAffineTransform", _wrap_cvGetAffineTransform, METH_VARARGS, (char *)"cvGetAffineTransform(CvPoint2D32f src, CvPoint2D32f dst, CvMat map_matrix) -> CvMat"}, - { (char *)"cv2DRotationMatrix", _wrap_cv2DRotationMatrix, METH_VARARGS, (char *)"cv2DRotationMatrix(CvPoint2D32f center, double angle, double scale, CvMat map_matrix) -> CvMat"}, - { (char *)"cvWarpPerspective", _wrap_cvWarpPerspective, METH_VARARGS, (char *)"\n" - "cvWarpPerspective(CvArr src, CvArr dst, CvMat map_matrix, int flags = 1+8, \n" - " CvScalar fillval = cvScalarAll(0))\n" - ""}, - { (char *)"cvGetPerspectiveTransform", _wrap_cvGetPerspectiveTransform, METH_VARARGS, (char *)"cvGetPerspectiveTransform(CvPoint2D32f src, CvPoint2D32f dst, CvMat map_matrix) -> CvMat"}, - { (char *)"cvRemap", _wrap_cvRemap, METH_VARARGS, (char *)"\n" - "cvRemap(CvArr src, CvArr dst, CvArr mapx, CvArr mapy, int flags = 1+8, \n" - " CvScalar fillval = cvScalarAll(0))\n" - ""}, - { (char *)"cvConvertMaps", _wrap_cvConvertMaps, METH_VARARGS, (char *)"cvConvertMaps(CvArr mapx, CvArr mapy, CvArr mapxy, CvArr mapalpha)"}, - { (char *)"cvLogPolar", _wrap_cvLogPolar, METH_VARARGS, (char *)"\n" - "cvLogPolar(CvArr src, CvArr dst, CvPoint2D32f center, double M, \n" - " int flags = 1+8)\n" - ""}, - { (char *)"cvLinearPolar", _wrap_cvLinearPolar, METH_VARARGS, (char *)"\n" - "cvLinearPolar(CvArr src, CvArr dst, CvPoint2D32f center, double maxRadius, \n" - " int flags = 1+8)\n" - ""}, - { (char *)"cvCreateStructuringElementEx", _wrap_cvCreateStructuringElementEx, METH_VARARGS, (char *)"\n" - "cvCreateStructuringElementEx(int cols, int rows, int anchor_x, int anchor_y, int shape, \n" - " int values = None)\n" - ""}, - { (char *)"cvErode", _wrap_cvErode, METH_VARARGS, (char *)"cvErode(CvArr src, CvArr dst, element = None, int iterations = 1)"}, - { (char *)"cvDilate", _wrap_cvDilate, METH_VARARGS, (char *)"cvDilate(CvArr src, CvArr dst, element = None, int iterations = 1)"}, - { (char *)"cvMorphologyEx", _wrap_cvMorphologyEx, METH_VARARGS, (char *)"\n" - "cvMorphologyEx(CvArr src, CvArr dst, CvArr temp, element, int operation, \n" - " int iterations = 1)\n" - ""}, - { (char *)"cvMoments", _wrap_cvMoments, METH_VARARGS, (char *)"cvMoments(CvArr arr, CvMoments moments, int binary = 0)"}, - { (char *)"cvGetSpatialMoment", _wrap_cvGetSpatialMoment, METH_VARARGS, (char *)"cvGetSpatialMoment(CvMoments moments, int x_order, int y_order) -> double"}, - { (char *)"cvGetCentralMoment", _wrap_cvGetCentralMoment, METH_VARARGS, (char *)"cvGetCentralMoment(CvMoments moments, int x_order, int y_order) -> double"}, - { (char *)"cvGetNormalizedCentralMoment", _wrap_cvGetNormalizedCentralMoment, METH_VARARGS, (char *)"cvGetNormalizedCentralMoment(CvMoments moments, int x_order, int y_order) -> double"}, - { (char *)"cvGetHuMoments", _wrap_cvGetHuMoments, METH_VARARGS, (char *)"cvGetHuMoments(CvMoments moments, CvHuMoments hu_moments)"}, - { (char *)"cvSampleLine", _wrap_cvSampleLine, METH_VARARGS, (char *)"\n" - "cvSampleLine(CvArr image, CvPoint pt1, CvPoint pt2, void buffer, \n" - " int connectivity = 8) -> int\n" - ""}, - { (char *)"cvGetRectSubPix", _wrap_cvGetRectSubPix, METH_VARARGS, (char *)"cvGetRectSubPix(CvArr src, CvArr dst, CvPoint2D32f center)"}, - { (char *)"cvGetQuadrangleSubPix", _wrap_cvGetQuadrangleSubPix, METH_VARARGS, (char *)"cvGetQuadrangleSubPix(CvArr src, CvArr dst, CvMat map_matrix)"}, - { (char *)"cvMatchTemplate", _wrap_cvMatchTemplate, METH_VARARGS, (char *)"cvMatchTemplate(CvArr image, CvArr templ, CvArr result, int method)"}, - { (char *)"cvCalcEMD2", _wrap_cvCalcEMD2, METH_VARARGS, (char *)"\n" - "cvCalcEMD2(CvArr signature1, CvArr signature2, int distance_type, \n" - " CvDistanceFunction distance_func = None, \n" - " CvArr cost_matrix = None, CvArr flow = None, \n" - " float lower_bound = None, void userdata = None) -> float\n" - ""}, - { (char *)"cvFindContoursUntyped", _wrap_cvFindContoursUntyped, METH_VARARGS, (char *)"\n" - "cvFindContoursUntyped(CvArr image, CvMemStorage storage, int header_size = sizeof(CvContour), \n" - " int mode = 1, int method = 2, \n" - " CvPoint offset = cvPoint(0,0)) -> int\n" - ""}, - { (char *)"cvStartFindContours", _wrap_cvStartFindContours, METH_VARARGS, (char *)"\n" - "cvStartFindContours(CvArr image, CvMemStorage storage, int header_size = sizeof(CvContour), \n" - " int mode = 1, int method = 2, \n" - " CvPoint offset = cvPoint(0,0)) -> CvContourScanner\n" - ""}, - { (char *)"cvFindNextContour", _wrap_cvFindNextContour, METH_VARARGS, (char *)"cvFindNextContour(CvContourScanner scanner) -> CvSeq"}, - { (char *)"cvSubstituteContour", _wrap_cvSubstituteContour, METH_VARARGS, (char *)"cvSubstituteContour(CvContourScanner scanner, CvSeq new_contour)"}, - { (char *)"cvEndFindContours", _wrap_cvEndFindContours, METH_VARARGS, (char *)"cvEndFindContours(CvContourScanner scanner) -> CvSeq"}, - { (char *)"cvApproxChainsUntyped", _wrap_cvApproxChainsUntyped, METH_VARARGS, (char *)"\n" - "cvApproxChainsUntyped(CvSeq src_seq, CvMemStorage storage, int method = 2, \n" - " double parameter = 0, int minimal_perimeter = 0, \n" - " int recursive = 0) -> CvSeq\n" - ""}, - { (char *)"cvStartReadChainPoints", _wrap_cvStartReadChainPoints, METH_VARARGS, (char *)"cvStartReadChainPoints(CvChain chain, CvChainPtReader reader)"}, - { (char *)"cvReadChainPoint", _wrap_cvReadChainPoint, METH_VARARGS, (char *)"cvReadChainPoint(CvChainPtReader reader) -> CvPoint"}, - { (char *)"cvCalcOpticalFlowLK", _wrap_cvCalcOpticalFlowLK, METH_VARARGS, (char *)"\n" - "cvCalcOpticalFlowLK(CvArr prev, CvArr curr, CvSize win_size, CvArr velx, \n" - " CvArr vely)\n" - ""}, - { (char *)"cvCalcOpticalFlowBM", _wrap_cvCalcOpticalFlowBM, METH_VARARGS, (char *)"\n" - "cvCalcOpticalFlowBM(CvArr prev, CvArr curr, CvSize block_size, CvSize shift_size, \n" - " CvSize max_range, int use_previous, \n" - " CvArr velx, CvArr vely)\n" - ""}, - { (char *)"cvCalcOpticalFlowHS", _wrap_cvCalcOpticalFlowHS, METH_VARARGS, (char *)"\n" - "cvCalcOpticalFlowHS(CvArr prev, CvArr curr, int use_previous, CvArr velx, \n" - " CvArr vely, double _lambda, CvTermCriteria criteria)\n" - ""}, - { (char *)"cvCalcOpticalFlowPyrLK", _wrap_cvCalcOpticalFlowPyrLK, METH_VARARGS, (char *)"\n" - "cvCalcOpticalFlowPyrLK(CvArr prev, CvArr curr, CvArr prev_pyr, CvArr curr_pyr, \n" - " CvPoint2D32f prev_features, CvPoint2D32f curr_features, \n" - " CvSize win_size, int level, char status, \n" - " float track_error, CvTermCriteria criteria, \n" - " int flags)\n" - ""}, - { (char *)"cvCalcAffineFlowPyrLK", _wrap_cvCalcAffineFlowPyrLK, METH_VARARGS, (char *)"\n" - "cvCalcAffineFlowPyrLK(CvArr prev, CvArr curr, CvArr prev_pyr, CvArr curr_pyr, \n" - " CvPoint2D32f prev_features, CvPoint2D32f curr_features, \n" - " float matrices, int count, CvSize win_size, \n" - " int level, char status, float track_error, \n" - " CvTermCriteria criteria, int flags)\n" - ""}, - { (char *)"cvEstimateRigidTransform", _wrap_cvEstimateRigidTransform, METH_VARARGS, (char *)"cvEstimateRigidTransform(CvArr A, CvArr B, CvMat M, int full_affine) -> int"}, - { (char *)"cvUpdateMotionHistory", _wrap_cvUpdateMotionHistory, METH_VARARGS, (char *)"cvUpdateMotionHistory(CvArr silhouette, CvArr mhi, double timestamp, double duration)"}, - { (char *)"cvCalcMotionGradient", _wrap_cvCalcMotionGradient, METH_VARARGS, (char *)"\n" - "cvCalcMotionGradient(CvArr mhi, CvArr mask, CvArr orientation, double delta1, \n" - " double delta2, int aperture_size = 3)\n" - ""}, - { (char *)"cvCalcGlobalOrientation", _wrap_cvCalcGlobalOrientation, METH_VARARGS, (char *)"\n" - "cvCalcGlobalOrientation(CvArr orientation, CvArr mask, CvArr mhi, double timestamp, \n" - " double duration) -> double\n" - ""}, - { (char *)"cvAcc", _wrap_cvAcc, METH_VARARGS, (char *)"cvAcc(CvArr image, CvArr sum, CvArr mask = None)"}, - { (char *)"cvSquareAcc", _wrap_cvSquareAcc, METH_VARARGS, (char *)"cvSquareAcc(CvArr image, CvArr sqsum, CvArr mask = None)"}, - { (char *)"cvMultiplyAcc", _wrap_cvMultiplyAcc, METH_VARARGS, (char *)"cvMultiplyAcc(CvArr image1, CvArr image2, CvArr acc, CvArr mask = None)"}, - { (char *)"cvRunningAvg", _wrap_cvRunningAvg, METH_VARARGS, (char *)"cvRunningAvg(CvArr image, CvArr acc, double alpha, CvArr mask = None)"}, - { (char *)"cvCamShift", _wrap_cvCamShift, METH_VARARGS, (char *)"\n" - "cvCamShift(CvArr prob_image, CvRect window, CvTermCriteria criteria, \n" - " CvConnectedComp comp, CvBox2D box = None) -> int\n" - ""}, - { (char *)"cvMeanShift", _wrap_cvMeanShift, METH_VARARGS, (char *)"\n" - "cvMeanShift(CvArr prob_image, CvRect window, CvTermCriteria criteria, \n" - " CvConnectedComp comp) -> int\n" - ""}, - { (char *)"cvCreateConDensation", _wrap_cvCreateConDensation, METH_VARARGS, (char *)"cvCreateConDensation(int dynam_params, int measure_params, int sample_count) -> CvConDensation"}, - { (char *)"cvConDensUpdateByTime", _wrap_cvConDensUpdateByTime, METH_VARARGS, (char *)"cvConDensUpdateByTime(CvConDensation condens)"}, - { (char *)"cvConDensInitSampleSet", _wrap_cvConDensInitSampleSet, METH_VARARGS, (char *)"cvConDensInitSampleSet(CvConDensation condens, CvMat lower_bound, CvMat upper_bound)"}, - { (char *)"cvCreateKalman", _wrap_cvCreateKalman, METH_VARARGS, (char *)"cvCreateKalman(int dynam_params, int measure_params, int control_params = 0) -> CvKalman"}, - { (char *)"cvKalmanPredict", _wrap_cvKalmanPredict, METH_VARARGS, (char *)"cvKalmanPredict(CvKalman kalman, CvMat control = None) -> CvMat"}, - { (char *)"cvKalmanCorrect", _wrap_cvKalmanCorrect, METH_VARARGS, (char *)"cvKalmanCorrect(CvKalman kalman, CvMat measurement) -> CvMat"}, - { (char *)"cvInitSubdivDelaunay2D", _wrap_cvInitSubdivDelaunay2D, METH_VARARGS, (char *)"cvInitSubdivDelaunay2D(CvSubdiv2D subdiv, CvRect rect)"}, - { (char *)"cvCreateSubdiv2D", _wrap_cvCreateSubdiv2D, METH_VARARGS, (char *)"\n" - "cvCreateSubdiv2D(int subdiv_type, int header_size, int vtx_size, int quadedge_size, \n" - " CvMemStorage storage) -> CvSubdiv2D\n" - ""}, - { (char *)"cvCreateSubdivDelaunay2D", _wrap_cvCreateSubdivDelaunay2D, METH_VARARGS, (char *)"cvCreateSubdivDelaunay2D(CvRect rect, CvMemStorage storage) -> CvSubdiv2D"}, - { (char *)"cvSubdivDelaunay2DInsert", _wrap_cvSubdivDelaunay2DInsert, METH_VARARGS, (char *)"cvSubdivDelaunay2DInsert(CvSubdiv2D subdiv, CvPoint2D32f pt) -> CvSubdiv2DPoint"}, - { (char *)"cvSubdiv2DLocate", _wrap_cvSubdiv2DLocate, METH_VARARGS, (char *)"cvSubdiv2DLocate(CvSubdiv2D subdiv, CvPoint2D32f pt) -> CvSubdiv2DPointLocation"}, - { (char *)"cvCalcSubdivVoronoi2D", _wrap_cvCalcSubdivVoronoi2D, METH_VARARGS, (char *)"cvCalcSubdivVoronoi2D(CvSubdiv2D subdiv)"}, - { (char *)"cvClearSubdivVoronoi2D", _wrap_cvClearSubdivVoronoi2D, METH_VARARGS, (char *)"cvClearSubdivVoronoi2D(CvSubdiv2D subdiv)"}, - { (char *)"cvFindNearestPoint2D", _wrap_cvFindNearestPoint2D, METH_VARARGS, (char *)"cvFindNearestPoint2D(CvSubdiv2D subdiv, CvPoint2D32f pt) -> CvSubdiv2DPoint"}, - { (char *)"cvSubdiv2DNextEdge", _wrap_cvSubdiv2DNextEdge, METH_VARARGS, (char *)"cvSubdiv2DNextEdge(CvSubdiv2DEdge edge) -> CvSubdiv2DEdge"}, - { (char *)"cvSubdiv2DRotateEdge", _wrap_cvSubdiv2DRotateEdge, METH_VARARGS, (char *)"cvSubdiv2DRotateEdge(CvSubdiv2DEdge edge, int rotate) -> CvSubdiv2DEdge"}, - { (char *)"cvSubdiv2DSymEdge", _wrap_cvSubdiv2DSymEdge, METH_VARARGS, (char *)"cvSubdiv2DSymEdge(CvSubdiv2DEdge edge) -> CvSubdiv2DEdge"}, - { (char *)"cvSubdiv2DGetEdge", _wrap_cvSubdiv2DGetEdge, METH_VARARGS, (char *)"cvSubdiv2DGetEdge(CvSubdiv2DEdge edge, CvNextEdgeType type) -> CvSubdiv2DEdge"}, - { (char *)"cvSubdiv2DEdgeOrg", _wrap_cvSubdiv2DEdgeOrg, METH_VARARGS, (char *)"cvSubdiv2DEdgeOrg(CvSubdiv2DEdge edge) -> CvSubdiv2DPoint"}, - { (char *)"cvSubdiv2DEdgeDst", _wrap_cvSubdiv2DEdgeDst, METH_VARARGS, (char *)"cvSubdiv2DEdgeDst(CvSubdiv2DEdge edge) -> CvSubdiv2DPoint"}, - { (char *)"cvTriangleArea", _wrap_cvTriangleArea, METH_VARARGS, (char *)"cvTriangleArea(CvPoint2D32f a, CvPoint2D32f b, CvPoint2D32f c) -> double"}, - { (char *)"cvFindDominantPoints", _wrap_cvFindDominantPoints, METH_VARARGS, (char *)"\n" - "cvFindDominantPoints(CvSeq contour, CvMemStorage storage, int method = 1, \n" - " double parameter1 = 0, double parameter2 = 0, \n" - " double parameter3 = 0, double parameter4 = 0) -> CvSeq\n" - ""}, - { (char *)"cvArcLength", _wrap_cvArcLength, METH_VARARGS, (char *)"\n" - "cvArcLength(void curve, CvSlice slice = cvSlice(0, 0x3fffffff), \n" - " int is_closed = -1) -> double\n" - ""}, - { (char *)"cvBoundingRect", _wrap_cvBoundingRect, METH_VARARGS, (char *)"cvBoundingRect(CvArr points, int update = 0) -> CvRect"}, - { (char *)"cvContourArea", _wrap_cvContourArea, METH_VARARGS, (char *)"cvContourArea(CvArr contour, CvSlice slice = cvSlice(0, 0x3fffffff)) -> double"}, - { (char *)"cvMinAreaRect2", _wrap_cvMinAreaRect2, METH_VARARGS, (char *)"cvMinAreaRect2(CvArr points, CvMemStorage storage = None) -> CvBox2D"}, - { (char *)"cvMinEnclosingCircle", _wrap_cvMinEnclosingCircle, METH_VARARGS, (char *)"cvMinEnclosingCircle(CvArr points) -> int"}, - { (char *)"cvMatchShapes", _wrap_cvMatchShapes, METH_VARARGS, (char *)"cvMatchShapes(void object1, void object2, int method, double parameter = 0) -> double"}, - { (char *)"cvCreateContourTree", _wrap_cvCreateContourTree, METH_VARARGS, (char *)"cvCreateContourTree(CvSeq contour, CvMemStorage storage, double threshold) -> CvContourTree"}, - { (char *)"cvContourFromContourTreeUntyped", _wrap_cvContourFromContourTreeUntyped, METH_VARARGS, (char *)"cvContourFromContourTreeUntyped(CvContourTree tree, CvMemStorage storage, CvTermCriteria criteria) -> CvSeq"}, - { (char *)"cvMatchContourTrees", _wrap_cvMatchContourTrees, METH_VARARGS, (char *)"\n" - "cvMatchContourTrees(CvContourTree tree1, CvContourTree tree2, int method, \n" - " double threshold) -> double\n" - ""}, - { (char *)"cvCalcPGH", _wrap_cvCalcPGH, METH_VARARGS, (char *)"cvCalcPGH(CvSeq contour, CvHistogram hist)"}, - { (char *)"cvCheckContourConvexity", _wrap_cvCheckContourConvexity, METH_VARARGS, (char *)"cvCheckContourConvexity(CvArr contour) -> int"}, - { (char *)"cvConvexityDefectsUntyped", _wrap_cvConvexityDefectsUntyped, METH_VARARGS, (char *)"cvConvexityDefectsUntyped(CvArr contour, CvArr convexhull, CvMemStorage storage = None) -> CvSeq"}, - { (char *)"cvFitEllipse2", _wrap_cvFitEllipse2, METH_VARARGS, (char *)"cvFitEllipse2(CvArr points) -> CvBox2D"}, - { (char *)"cvMaxRect", _wrap_cvMaxRect, METH_VARARGS, (char *)"cvMaxRect(CvRect rect1, CvRect rect2) -> CvRect"}, - { (char *)"cvBoxPoints", _wrap_cvBoxPoints, METH_VARARGS, (char *)"cvBoxPoints(CvBox2D box)"}, - { (char *)"cvPointSeqFromMat", _wrap_cvPointSeqFromMat, METH_VARARGS, (char *)"\n" - "cvPointSeqFromMat(int seq_kind, CvArr mat, CvContour contour_header, \n" - " CvSeqBlock block) -> CvSeq\n" - ""}, - { (char *)"cvPointPolygonTest", _wrap_cvPointPolygonTest, METH_VARARGS, (char *)"cvPointPolygonTest(CvArr contour, CvPoint2D32f pt, int measure_dist) -> double"}, - { (char *)"cvCreateHist", _wrap_cvCreateHist, METH_VARARGS, (char *)"cvCreateHist(int dims, int type, float ranges = None, int uniform = 1) -> CvHistogram"}, - { (char *)"cvSetHistBinRanges", _wrap_cvSetHistBinRanges, METH_VARARGS, (char *)"cvSetHistBinRanges(CvHistogram hist, float ranges, int uniform = 1)"}, - { (char *)"cvMakeHistHeaderForArray", _wrap_cvMakeHistHeaderForArray, METH_VARARGS, (char *)"\n" - "cvMakeHistHeaderForArray(int dims, CvHistogram hist, float data, float ranges = None, \n" - " int uniform = 1) -> CvHistogram\n" - ""}, - { (char *)"cvClearHist", _wrap_cvClearHist, METH_VARARGS, (char *)"cvClearHist(CvHistogram hist)"}, - { (char *)"cvGetMinMaxHistValue", _wrap_cvGetMinMaxHistValue, METH_VARARGS, (char *)"cvGetMinMaxHistValue(CvHistogram hist)"}, - { (char *)"cvNormalizeHist", _wrap_cvNormalizeHist, METH_VARARGS, (char *)"cvNormalizeHist(CvHistogram hist, double factor)"}, - { (char *)"cvThreshHist", _wrap_cvThreshHist, METH_VARARGS, (char *)"cvThreshHist(CvHistogram hist, double threshold)"}, - { (char *)"cvCompareHist", _wrap_cvCompareHist, METH_VARARGS, (char *)"cvCompareHist(CvHistogram hist1, CvHistogram hist2, int method) -> double"}, - { (char *)"cvCopyHist", _wrap_cvCopyHist, METH_VARARGS, (char *)"cvCopyHist(CvHistogram src, CvHistogram dst)"}, - { (char *)"cvCalcBayesianProb", _wrap_cvCalcBayesianProb, METH_VARARGS, (char *)"cvCalcBayesianProb(CvHistogram src, int number, CvHistogram dst)"}, - { (char *)"cvCalcArrHist", _wrap_cvCalcArrHist, METH_VARARGS, (char *)"cvCalcArrHist(CvArr arr, CvHistogram hist, int accumulate = 0, CvArr mask = None)"}, - { (char *)"cvCalcHist", _wrap_cvCalcHist, METH_VARARGS, (char *)"cvCalcHist( image, CvHistogram hist, int accumulate = 0, CvArr mask = None)"}, - { (char *)"cvCalcArrBackProject", _wrap_cvCalcArrBackProject, METH_VARARGS, (char *)"cvCalcArrBackProject(CvArr image, CvArr dst, CvHistogram hist)"}, - { (char *)"cvCalcArrBackProjectPatch", _wrap_cvCalcArrBackProjectPatch, METH_VARARGS, (char *)"\n" - "cvCalcArrBackProjectPatch(CvArr image, CvArr dst, CvSize range, CvHistogram hist, \n" - " int method, double factor)\n" - ""}, - { (char *)"cvCalcProbDensity", _wrap_cvCalcProbDensity, METH_VARARGS, (char *)"\n" - "cvCalcProbDensity(CvHistogram hist1, CvHistogram hist2, CvHistogram dst_hist, \n" - " double scale = 255)\n" - ""}, - { (char *)"cvEqualizeHist", _wrap_cvEqualizeHist, METH_VARARGS, (char *)"cvEqualizeHist(CvArr src, CvArr dst)"}, - { (char *)"cvCalcImageHomography", _wrap_cvCalcImageHomography, METH_VARARGS, (char *)"cvCalcImageHomography(float line, CvPoint3D32f center, float intrinsic, float homography)"}, - { (char *)"cvDistTransform", _wrap_cvDistTransform, METH_VARARGS, (char *)"\n" - "cvDistTransform(CvArr src, CvArr dst, int distance_type = 2, int mask_size = 3, \n" - " float mask = None, CvArr labels = None)\n" - ""}, - { (char *)"cvThreshold", _wrap_cvThreshold, METH_VARARGS, (char *)"\n" - "cvThreshold(CvArr src, CvArr dst, double threshold, double max_value, \n" - " int threshold_type) -> double\n" - ""}, - { (char *)"cvAdaptiveThreshold", _wrap_cvAdaptiveThreshold, METH_VARARGS, (char *)"\n" - "cvAdaptiveThreshold(CvArr src, CvArr dst, double max_value, int adaptive_method = 0, \n" - " int threshold_type = 0, int block_size = 3, \n" - " double param1 = 5)\n" - ""}, - { (char *)"cvFloodFill", _wrap_cvFloodFill, METH_VARARGS, (char *)"\n" - "cvFloodFill(CvArr image, CvPoint seed_point, CvScalar new_val, \n" - " CvScalar lo_diff = cvScalarAll(0), CvScalar up_diff = cvScalarAll(0), \n" - " CvConnectedComp comp = None, \n" - " int flags = 4, CvArr mask = None)\n" - ""}, - { (char *)"cvCanny", _wrap_cvCanny, METH_VARARGS, (char *)"\n" - "cvCanny(CvArr image, CvArr edges, double threshold1, double threshold2, \n" - " int aperture_size = 3)\n" - ""}, - { (char *)"cvPreCornerDetect", _wrap_cvPreCornerDetect, METH_VARARGS, (char *)"cvPreCornerDetect(CvArr image, CvArr corners, int aperture_size = 3)"}, - { (char *)"cvCornerEigenValsAndVecs", _wrap_cvCornerEigenValsAndVecs, METH_VARARGS, (char *)"cvCornerEigenValsAndVecs(CvArr image, CvArr eigenvv, int block_size, int aperture_size = 3)"}, - { (char *)"cvCornerMinEigenVal", _wrap_cvCornerMinEigenVal, METH_VARARGS, (char *)"cvCornerMinEigenVal(CvArr image, CvArr eigenval, int block_size, int aperture_size = 3)"}, - { (char *)"cvCornerHarris", _wrap_cvCornerHarris, METH_VARARGS, (char *)"\n" - "cvCornerHarris(CvArr image, CvArr harris_responce, int block_size, \n" - " int aperture_size = 3, double k = 0.04)\n" - ""}, - { (char *)"cvFindCornerSubPix", _wrap_cvFindCornerSubPix, METH_VARARGS, (char *)"\n" - "cvFindCornerSubPix(CvArr image, CvPoint2D32f corners, CvSize win, CvSize zero_zone, \n" - " CvTermCriteria criteria)\n" - ""}, - { (char *)"cvGoodFeaturesToTrack", _wrap_cvGoodFeaturesToTrack, METH_VARARGS, (char *)"\n" - "cvGoodFeaturesToTrack(CvArr image, CvArr eig_image, CvArr temp_image, CvPoint2D32f corners, \n" - " double quality_level, double min_distance, \n" - " CvArr mask = None, int block_size = 3, \n" - " int use_harris = 0, double k = 0.04)\n" - ""}, - { (char *)"cvHoughLinesUntyped", _wrap_cvHoughLinesUntyped, METH_VARARGS, (char *)"\n" - "cvHoughLinesUntyped(CvArr image, void line_storage, int method, double rho, \n" - " double theta, int threshold, double param1 = 0, \n" - " double param2 = 0) -> CvSeq\n" - ""}, - { (char *)"cvHoughCirclesUntyped", _wrap_cvHoughCirclesUntyped, METH_VARARGS, (char *)"\n" - "cvHoughCirclesUntyped(CvArr image, void circle_storage, int method, double dp, \n" - " double min_dist, double param1 = 100, double param2 = 100, \n" - " int min_radius = 0, int max_radius = 0) -> CvSeq\n" - ""}, - { (char *)"cvFitLine", _wrap_cvFitLine, METH_VARARGS, (char *)"\n" - "cvFitLine(CvArr points, int dist_type, double param, double reps, \n" - " double aeps, float line)\n" - ""}, - { (char *)"cvCreateKDTree", _wrap_cvCreateKDTree, METH_VARARGS, (char *)"cvCreateKDTree(CvMat desc) -> CvFeatureTree"}, - { (char *)"cvCreateSpillTree", _wrap_cvCreateSpillTree, METH_VARARGS, (char *)"cvCreateSpillTree(CvMat raw_data, int naive = 50, double rho = .7, double tau = .1) -> CvFeatureTree"}, - { (char *)"cvReleaseFeatureTree", _wrap_cvReleaseFeatureTree, METH_VARARGS, (char *)"cvReleaseFeatureTree(CvFeatureTree tr)"}, - { (char *)"cvFindFeatures", _wrap_cvFindFeatures, METH_VARARGS, (char *)"\n" - "cvFindFeatures(CvFeatureTree tr, CvMat query_points, CvMat indices, \n" - " int emax = 20)\n" - ""}, - { (char *)"cvFindFeaturesBoxed", _wrap_cvFindFeaturesBoxed, METH_VARARGS, (char *)"\n" - "cvFindFeaturesBoxed(CvFeatureTree tr, CvMat bounds_min, CvMat bounds_max, \n" - " CvMat out_indices) -> int\n" - ""}, - { (char *)"cvCreateLSH", _wrap_cvCreateLSH, METH_VARARGS, (char *)"\n" - "cvCreateLSH(CvLSHOperations ops, int d, int L = 10, int k = 10, \n" - " int type = (((6) &((1 << 3) -1)) +(((1) -1) << 3)), \n" - " double r = 4, int64 seed = -1) -> CvLSH\n" - ""}, - { (char *)"cvCreateMemoryLSH", _wrap_cvCreateMemoryLSH, METH_VARARGS, (char *)"\n" - "cvCreateMemoryLSH(int d, int n, int L = 10, int k = 10, int type = (((6) &((1 << 3) -1)) +(((1) -1) << 3)), \n" - " double r = 4, \n" - " int64 seed = -1) -> CvLSH\n" - ""}, - { (char *)"cvReleaseLSH", _wrap_cvReleaseLSH, METH_VARARGS, (char *)"cvReleaseLSH(CvLSH lsh)"}, - { (char *)"LSHSize", _wrap_LSHSize, METH_VARARGS, (char *)"LSHSize(CvLSH lsh) -> unsigned int"}, - { (char *)"cvLSHAdd", _wrap_cvLSHAdd, METH_VARARGS, (char *)"cvLSHAdd(CvLSH lsh, CvMat data)"}, - { (char *)"cvLSHRemove", _wrap_cvLSHRemove, METH_VARARGS, (char *)"cvLSHRemove(CvLSH lsh, CvMat indices)"}, - { (char *)"cvLSHQuery", _wrap_cvLSHQuery, METH_VARARGS, (char *)"cvLSHQuery(CvLSH lsh, CvMat query_points, CvMat indices, int emax)"}, - { (char *)"CvSURFPoint_pt_set", _wrap_CvSURFPoint_pt_set, METH_VARARGS, (char *)"CvSURFPoint_pt_set(CvSURFPoint self, CvPoint2D32f pt)"}, - { (char *)"CvSURFPoint_pt_get", _wrap_CvSURFPoint_pt_get, METH_VARARGS, (char *)"CvSURFPoint_pt_get(CvSURFPoint self) -> CvPoint2D32f"}, - { (char *)"CvSURFPoint_laplacian_set", _wrap_CvSURFPoint_laplacian_set, METH_VARARGS, (char *)"CvSURFPoint_laplacian_set(CvSURFPoint self, int laplacian)"}, - { (char *)"CvSURFPoint_laplacian_get", _wrap_CvSURFPoint_laplacian_get, METH_VARARGS, (char *)"CvSURFPoint_laplacian_get(CvSURFPoint self) -> int"}, - { (char *)"CvSURFPoint_size_set", _wrap_CvSURFPoint_size_set, METH_VARARGS, (char *)"CvSURFPoint_size_set(CvSURFPoint self, int size)"}, - { (char *)"CvSURFPoint_size_get", _wrap_CvSURFPoint_size_get, METH_VARARGS, (char *)"CvSURFPoint_size_get(CvSURFPoint self) -> int"}, - { (char *)"CvSURFPoint_dir_set", _wrap_CvSURFPoint_dir_set, METH_VARARGS, (char *)"CvSURFPoint_dir_set(CvSURFPoint self, float dir)"}, - { (char *)"CvSURFPoint_dir_get", _wrap_CvSURFPoint_dir_get, METH_VARARGS, (char *)"CvSURFPoint_dir_get(CvSURFPoint self) -> float"}, - { (char *)"CvSURFPoint_hessian_set", _wrap_CvSURFPoint_hessian_set, METH_VARARGS, (char *)"CvSURFPoint_hessian_set(CvSURFPoint self, float hessian)"}, - { (char *)"CvSURFPoint_hessian_get", _wrap_CvSURFPoint_hessian_get, METH_VARARGS, (char *)"CvSURFPoint_hessian_get(CvSURFPoint self) -> float"}, - { (char *)"new_CvSURFPoint", _wrap_new_CvSURFPoint, METH_VARARGS, (char *)"new_CvSURFPoint() -> CvSURFPoint"}, - { (char *)"delete_CvSURFPoint", _wrap_delete_CvSURFPoint, METH_VARARGS, (char *)"delete_CvSURFPoint(CvSURFPoint self)"}, - { (char *)"CvSURFPoint_swigregister", CvSURFPoint_swigregister, METH_VARARGS, NULL}, - { (char *)"cvSURFPoint", _wrap_cvSURFPoint, METH_VARARGS, (char *)"\n" - "cvSURFPoint(CvPoint2D32f pt, int laplacian, int size, float dir = 0, \n" - " float hessian = 0) -> CvSURFPoint\n" - ""}, - { (char *)"CvSURFParams_extended_set", _wrap_CvSURFParams_extended_set, METH_VARARGS, (char *)"CvSURFParams_extended_set(CvSURFParams self, int extended)"}, - { (char *)"CvSURFParams_extended_get", _wrap_CvSURFParams_extended_get, METH_VARARGS, (char *)"CvSURFParams_extended_get(CvSURFParams self) -> int"}, - { (char *)"CvSURFParams_hessianThreshold_set", _wrap_CvSURFParams_hessianThreshold_set, METH_VARARGS, (char *)"CvSURFParams_hessianThreshold_set(CvSURFParams self, double hessianThreshold)"}, - { (char *)"CvSURFParams_hessianThreshold_get", _wrap_CvSURFParams_hessianThreshold_get, METH_VARARGS, (char *)"CvSURFParams_hessianThreshold_get(CvSURFParams self) -> double"}, - { (char *)"CvSURFParams_nOctaves_set", _wrap_CvSURFParams_nOctaves_set, METH_VARARGS, (char *)"CvSURFParams_nOctaves_set(CvSURFParams self, int nOctaves)"}, - { (char *)"CvSURFParams_nOctaves_get", _wrap_CvSURFParams_nOctaves_get, METH_VARARGS, (char *)"CvSURFParams_nOctaves_get(CvSURFParams self) -> int"}, - { (char *)"CvSURFParams_nOctaveLayers_set", _wrap_CvSURFParams_nOctaveLayers_set, METH_VARARGS, (char *)"CvSURFParams_nOctaveLayers_set(CvSURFParams self, int nOctaveLayers)"}, - { (char *)"CvSURFParams_nOctaveLayers_get", _wrap_CvSURFParams_nOctaveLayers_get, METH_VARARGS, (char *)"CvSURFParams_nOctaveLayers_get(CvSURFParams self) -> int"}, - { (char *)"new_CvSURFParams", _wrap_new_CvSURFParams, METH_VARARGS, (char *)"new_CvSURFParams() -> CvSURFParams"}, - { (char *)"delete_CvSURFParams", _wrap_delete_CvSURFParams, METH_VARARGS, (char *)"delete_CvSURFParams(CvSURFParams self)"}, - { (char *)"CvSURFParams_swigregister", CvSURFParams_swigregister, METH_VARARGS, NULL}, - { (char *)"cvSURFParams", _wrap_cvSURFParams, METH_VARARGS, (char *)"cvSURFParams(double hessianThreshold, int extended = 0) -> CvSURFParams"}, - { (char *)"cvExtractSURF", _wrap_cvExtractSURF, METH_VARARGS, (char *)"cvExtractSURF(CvArr img, CvArr mask, CvSURFParams params, int useProvidedKeyPts = 0)"}, - { (char *)"CvMSERParams_delta_set", _wrap_CvMSERParams_delta_set, METH_VARARGS, (char *)"CvMSERParams_delta_set(CvMSERParams self, int delta)"}, - { (char *)"CvMSERParams_delta_get", _wrap_CvMSERParams_delta_get, METH_VARARGS, (char *)"CvMSERParams_delta_get(CvMSERParams self) -> int"}, - { (char *)"CvMSERParams_maxArea_set", _wrap_CvMSERParams_maxArea_set, METH_VARARGS, (char *)"CvMSERParams_maxArea_set(CvMSERParams self, int maxArea)"}, - { (char *)"CvMSERParams_maxArea_get", _wrap_CvMSERParams_maxArea_get, METH_VARARGS, (char *)"CvMSERParams_maxArea_get(CvMSERParams self) -> int"}, - { (char *)"CvMSERParams_minArea_set", _wrap_CvMSERParams_minArea_set, METH_VARARGS, (char *)"CvMSERParams_minArea_set(CvMSERParams self, int minArea)"}, - { (char *)"CvMSERParams_minArea_get", _wrap_CvMSERParams_minArea_get, METH_VARARGS, (char *)"CvMSERParams_minArea_get(CvMSERParams self) -> int"}, - { (char *)"CvMSERParams_maxVariation_set", _wrap_CvMSERParams_maxVariation_set, METH_VARARGS, (char *)"CvMSERParams_maxVariation_set(CvMSERParams self, float maxVariation)"}, - { (char *)"CvMSERParams_maxVariation_get", _wrap_CvMSERParams_maxVariation_get, METH_VARARGS, (char *)"CvMSERParams_maxVariation_get(CvMSERParams self) -> float"}, - { (char *)"CvMSERParams_minDiversity_set", _wrap_CvMSERParams_minDiversity_set, METH_VARARGS, (char *)"CvMSERParams_minDiversity_set(CvMSERParams self, float minDiversity)"}, - { (char *)"CvMSERParams_minDiversity_get", _wrap_CvMSERParams_minDiversity_get, METH_VARARGS, (char *)"CvMSERParams_minDiversity_get(CvMSERParams self) -> float"}, - { (char *)"CvMSERParams_maxEvolution_set", _wrap_CvMSERParams_maxEvolution_set, METH_VARARGS, (char *)"CvMSERParams_maxEvolution_set(CvMSERParams self, int maxEvolution)"}, - { (char *)"CvMSERParams_maxEvolution_get", _wrap_CvMSERParams_maxEvolution_get, METH_VARARGS, (char *)"CvMSERParams_maxEvolution_get(CvMSERParams self) -> int"}, - { (char *)"CvMSERParams_areaThreshold_set", _wrap_CvMSERParams_areaThreshold_set, METH_VARARGS, (char *)"CvMSERParams_areaThreshold_set(CvMSERParams self, double areaThreshold)"}, - { (char *)"CvMSERParams_areaThreshold_get", _wrap_CvMSERParams_areaThreshold_get, METH_VARARGS, (char *)"CvMSERParams_areaThreshold_get(CvMSERParams self) -> double"}, - { (char *)"CvMSERParams_minMargin_set", _wrap_CvMSERParams_minMargin_set, METH_VARARGS, (char *)"CvMSERParams_minMargin_set(CvMSERParams self, double minMargin)"}, - { (char *)"CvMSERParams_minMargin_get", _wrap_CvMSERParams_minMargin_get, METH_VARARGS, (char *)"CvMSERParams_minMargin_get(CvMSERParams self) -> double"}, - { (char *)"CvMSERParams_edgeBlurSize_set", _wrap_CvMSERParams_edgeBlurSize_set, METH_VARARGS, (char *)"CvMSERParams_edgeBlurSize_set(CvMSERParams self, int edgeBlurSize)"}, - { (char *)"CvMSERParams_edgeBlurSize_get", _wrap_CvMSERParams_edgeBlurSize_get, METH_VARARGS, (char *)"CvMSERParams_edgeBlurSize_get(CvMSERParams self) -> int"}, - { (char *)"new_CvMSERParams", _wrap_new_CvMSERParams, METH_VARARGS, (char *)"new_CvMSERParams() -> CvMSERParams"}, - { (char *)"delete_CvMSERParams", _wrap_delete_CvMSERParams, METH_VARARGS, (char *)"delete_CvMSERParams(CvMSERParams self)"}, - { (char *)"CvMSERParams_swigregister", CvMSERParams_swigregister, METH_VARARGS, NULL}, - { (char *)"cvMSERParams", _wrap_cvMSERParams, METH_VARARGS, (char *)"\n" - "cvMSERParams(int delta = 5, int min_area = 60, int max_area = 14400, \n" - " float max_variation = .25, float min_diversity = .2, \n" - " int max_evolution = 200, double area_threshold = 1.01, \n" - " double min_margin = .003, \n" - " int edge_blur_size = 5) -> CvMSERParams\n" - ""}, - { (char *)"cvExtractMSER", _wrap_cvExtractMSER, METH_VARARGS, (char *)"\n" - "cvExtractMSER(CvArr _img, CvArr _mask, CvSeq contours, CvMemStorage storage, \n" - " CvMSERParams params)\n" - ""}, - { (char *)"CvStarKeypoint_pt_set", _wrap_CvStarKeypoint_pt_set, METH_VARARGS, (char *)"CvStarKeypoint_pt_set(CvStarKeypoint self, CvPoint pt)"}, - { (char *)"CvStarKeypoint_pt_get", _wrap_CvStarKeypoint_pt_get, METH_VARARGS, (char *)"CvStarKeypoint_pt_get(CvStarKeypoint self) -> CvPoint"}, - { (char *)"CvStarKeypoint_size_set", _wrap_CvStarKeypoint_size_set, METH_VARARGS, (char *)"CvStarKeypoint_size_set(CvStarKeypoint self, int size)"}, - { (char *)"CvStarKeypoint_size_get", _wrap_CvStarKeypoint_size_get, METH_VARARGS, (char *)"CvStarKeypoint_size_get(CvStarKeypoint self) -> int"}, - { (char *)"CvStarKeypoint_response_set", _wrap_CvStarKeypoint_response_set, METH_VARARGS, (char *)"CvStarKeypoint_response_set(CvStarKeypoint self, float response)"}, - { (char *)"CvStarKeypoint_response_get", _wrap_CvStarKeypoint_response_get, METH_VARARGS, (char *)"CvStarKeypoint_response_get(CvStarKeypoint self) -> float"}, - { (char *)"new_CvStarKeypoint", _wrap_new_CvStarKeypoint, METH_VARARGS, (char *)"new_CvStarKeypoint() -> CvStarKeypoint"}, - { (char *)"delete_CvStarKeypoint", _wrap_delete_CvStarKeypoint, METH_VARARGS, (char *)"delete_CvStarKeypoint(CvStarKeypoint self)"}, - { (char *)"CvStarKeypoint_swigregister", CvStarKeypoint_swigregister, METH_VARARGS, NULL}, - { (char *)"cvStarKeypoint", _wrap_cvStarKeypoint, METH_VARARGS, (char *)"cvStarKeypoint(CvPoint pt, int size, float response) -> CvStarKeypoint"}, - { (char *)"CvStarDetectorParams_maxSize_set", _wrap_CvStarDetectorParams_maxSize_set, METH_VARARGS, (char *)"CvStarDetectorParams_maxSize_set(CvStarDetectorParams self, int maxSize)"}, - { (char *)"CvStarDetectorParams_maxSize_get", _wrap_CvStarDetectorParams_maxSize_get, METH_VARARGS, (char *)"CvStarDetectorParams_maxSize_get(CvStarDetectorParams self) -> int"}, - { (char *)"CvStarDetectorParams_responseThreshold_set", _wrap_CvStarDetectorParams_responseThreshold_set, METH_VARARGS, (char *)"CvStarDetectorParams_responseThreshold_set(CvStarDetectorParams self, int responseThreshold)"}, - { (char *)"CvStarDetectorParams_responseThreshold_get", _wrap_CvStarDetectorParams_responseThreshold_get, METH_VARARGS, (char *)"CvStarDetectorParams_responseThreshold_get(CvStarDetectorParams self) -> int"}, - { (char *)"CvStarDetectorParams_lineThresholdProjected_set", _wrap_CvStarDetectorParams_lineThresholdProjected_set, METH_VARARGS, (char *)"CvStarDetectorParams_lineThresholdProjected_set(CvStarDetectorParams self, int lineThresholdProjected)"}, - { (char *)"CvStarDetectorParams_lineThresholdProjected_get", _wrap_CvStarDetectorParams_lineThresholdProjected_get, METH_VARARGS, (char *)"CvStarDetectorParams_lineThresholdProjected_get(CvStarDetectorParams self) -> int"}, - { (char *)"CvStarDetectorParams_lineThresholdBinarized_set", _wrap_CvStarDetectorParams_lineThresholdBinarized_set, METH_VARARGS, (char *)"CvStarDetectorParams_lineThresholdBinarized_set(CvStarDetectorParams self, int lineThresholdBinarized)"}, - { (char *)"CvStarDetectorParams_lineThresholdBinarized_get", _wrap_CvStarDetectorParams_lineThresholdBinarized_get, METH_VARARGS, (char *)"CvStarDetectorParams_lineThresholdBinarized_get(CvStarDetectorParams self) -> int"}, - { (char *)"CvStarDetectorParams_suppressNonmaxSize_set", _wrap_CvStarDetectorParams_suppressNonmaxSize_set, METH_VARARGS, (char *)"CvStarDetectorParams_suppressNonmaxSize_set(CvStarDetectorParams self, int suppressNonmaxSize)"}, - { (char *)"CvStarDetectorParams_suppressNonmaxSize_get", _wrap_CvStarDetectorParams_suppressNonmaxSize_get, METH_VARARGS, (char *)"CvStarDetectorParams_suppressNonmaxSize_get(CvStarDetectorParams self) -> int"}, - { (char *)"new_CvStarDetectorParams", _wrap_new_CvStarDetectorParams, METH_VARARGS, (char *)"new_CvStarDetectorParams() -> CvStarDetectorParams"}, - { (char *)"delete_CvStarDetectorParams", _wrap_delete_CvStarDetectorParams, METH_VARARGS, (char *)"delete_CvStarDetectorParams(CvStarDetectorParams self)"}, - { (char *)"CvStarDetectorParams_swigregister", CvStarDetectorParams_swigregister, METH_VARARGS, NULL}, - { (char *)"cvStarDetectorParams", _wrap_cvStarDetectorParams, METH_VARARGS, (char *)"\n" - "cvStarDetectorParams(int maxSize = 45, int responseThreshold = 30, int lineThresholdProjected = 10, \n" - " int lineThresholdBinarized = 8, \n" - " int suppressNonmaxSize = 5) -> CvStarDetectorParams\n" - ""}, - { (char *)"cvGetStarKeypoints", _wrap_cvGetStarKeypoints, METH_VARARGS, (char *)"cvGetStarKeypoints(CvArr img, CvMemStorage storage, CvStarDetectorParams params = cvStarDetectorParams()) -> CvSeq"}, - { (char *)"cvLoadHaarClassifierCascade", _wrap_cvLoadHaarClassifierCascade, METH_VARARGS, (char *)"cvLoadHaarClassifierCascade(char directory, CvSize orig_window_size) -> CvHaarClassifierCascade"}, - { (char *)"cvSetImagesForHaarClassifierCascade", _wrap_cvSetImagesForHaarClassifierCascade, METH_VARARGS, (char *)"\n" - "cvSetImagesForHaarClassifierCascade(CvHaarClassifierCascade cascade, CvArr sum, CvArr sqsum, \n" - " CvArr tilted_sum, double scale)\n" - ""}, - { (char *)"cvRunHaarClassifierCascade", _wrap_cvRunHaarClassifierCascade, METH_VARARGS, (char *)"cvRunHaarClassifierCascade(CvHaarClassifierCascade cascade, CvPoint pt, int start_stage = 0) -> int"}, - { (char *)"cvUndistort2", _wrap_cvUndistort2, METH_VARARGS, (char *)"cvUndistort2(CvArr src, CvArr dst, CvMat camera_matrix, CvMat distortion_coeffs)"}, - { (char *)"cvInitUndistortMap", _wrap_cvInitUndistortMap, METH_VARARGS, (char *)"\n" - "cvInitUndistortMap(CvMat camera_matrix, CvMat distortion_coeffs, CvArr mapx, \n" - " CvArr mapy)\n" - ""}, - { (char *)"cvInitUndistortRectifyMap", _wrap_cvInitUndistortRectifyMap, METH_VARARGS, (char *)"\n" - "cvInitUndistortRectifyMap(CvMat camera_matrix, CvMat dist_coeffs, CvMat R, CvMat new_camera_matrix, \n" - " CvArr mapx, CvArr mapy)\n" - ""}, - { (char *)"cvUndistortPoints", _wrap_cvUndistortPoints, METH_VARARGS, (char *)"\n" - "cvUndistortPoints(CvMat src, CvMat dst, CvMat camera_matrix, CvMat dist_coeffs, \n" - " CvMat R = None, CvMat P = None)\n" - ""}, - { (char *)"cvRodrigues2", _wrap_cvRodrigues2, METH_VARARGS, (char *)"cvRodrigues2(CvMat src, CvMat dst, CvMat jacobian = None) -> int"}, - { (char *)"cvFindHomography", _wrap_cvFindHomography, METH_VARARGS, (char *)"\n" - "cvFindHomography(CvMat src_points, CvMat dst_points, int method = 0, \n" - " double ransacReprojThreshold = 0, CvMat mask = None) -> int\n" - ""}, - { (char *)"cvRQDecomp3x3", _wrap_cvRQDecomp3x3, METH_VARARGS, (char *)"\n" - "cvRQDecomp3x3(CvMat matrixM, CvMat matrixR, CvMat matrixQ, CvMat matrixQx = None, \n" - " CvMat matrixQy = None, CvMat matrixQz = None, \n" - " CvPoint3D64f eulerAngles = None)\n" - ""}, - { (char *)"cvDecomposeProjectionMatrix", _wrap_cvDecomposeProjectionMatrix, METH_VARARGS, (char *)"\n" - "cvDecomposeProjectionMatrix(CvMat projMatr, CvMat calibMatr, CvMat rotMatr, CvMat posVect, \n" - " CvMat rotMatrX = None, CvMat rotMatrY = None, \n" - " CvMat rotMatrZ = None, CvPoint3D64f eulerAngles = None)\n" - ""}, - { (char *)"cvCalcMatMulDeriv", _wrap_cvCalcMatMulDeriv, METH_VARARGS, (char *)"cvCalcMatMulDeriv(CvMat A, CvMat B, CvMat dABdA, CvMat dABdB)"}, - { (char *)"cvComposeRT", _wrap_cvComposeRT, METH_VARARGS, (char *)"\n" - "cvComposeRT(CvMat _rvec1, CvMat _tvec1, CvMat _rvec2, CvMat _tvec2, \n" - " CvMat _rvec3, CvMat _tvec3, CvMat dr3dr1 = None, \n" - " CvMat dr3dt1 = None, CvMat dr3dr2 = None, \n" - " CvMat dr3dt2 = None, CvMat dt3dr1 = None, \n" - " CvMat dt3dt1 = None, CvMat dt3dr2 = None, \n" - " CvMat dt3dt2 = None)\n" - ""}, - { (char *)"cvProjectPoints2", _wrap_cvProjectPoints2, METH_VARARGS, (char *)"\n" - "cvProjectPoints2(CvMat object_points, CvMat rotation_vector, CvMat translation_vector, \n" - " CvMat camera_matrix, CvMat distortion_coeffs, \n" - " CvMat image_points, CvMat dpdrot = None, \n" - " CvMat dpdt = None, CvMat dpdf = None, \n" - " CvMat dpdc = None, CvMat dpddist = None, \n" - " double aspect_ratio = 0)\n" - ""}, - { (char *)"cvFindExtrinsicCameraParams2", _wrap_cvFindExtrinsicCameraParams2, METH_VARARGS, (char *)"\n" - "cvFindExtrinsicCameraParams2(CvMat object_points, CvMat image_points, CvMat camera_matrix, \n" - " CvMat distortion_coeffs, CvMat rotation_vector, \n" - " CvMat translation_vector, int use_extrinsic_guess = 0)\n" - ""}, - { (char *)"cvInitIntrinsicParams2D", _wrap_cvInitIntrinsicParams2D, METH_VARARGS, (char *)"\n" - "cvInitIntrinsicParams2D(CvMat object_points, CvMat image_points, CvMat npoints, \n" - " CvSize image_size, CvMat camera_matrix, \n" - " double aspect_ratio = 1.)\n" - ""}, - { (char *)"cvFindChessboardCorners", _wrap_cvFindChessboardCorners, METH_VARARGS, (char *)"cvFindChessboardCorners(void image, CvSize pattern_size, int flags = 1+2) -> int"}, - { (char *)"cvDrawChessboardCorners", _wrap_cvDrawChessboardCorners, METH_VARARGS, (char *)"\n" - "cvDrawChessboardCorners(CvArr image, CvSize pattern_size, CvPoint2D32f corners, \n" - " int pattern_was_found)\n" - ""}, - { (char *)"cvCalibrateCamera2", _wrap_cvCalibrateCamera2, METH_VARARGS, (char *)"\n" - "cvCalibrateCamera2(CvMat object_points, CvMat image_points, CvMat point_counts, \n" - " CvSize image_size, CvMat camera_matrix, \n" - " CvMat distortion_coeffs, CvMat rotation_vectors = None, \n" - " CvMat translation_vectors = None, \n" - " int flags = 0)\n" - ""}, - { (char *)"cvCalibrationMatrixValues", _wrap_cvCalibrationMatrixValues, METH_VARARGS, (char *)"\n" - "cvCalibrationMatrixValues(CvMat camera_matrix, CvSize image_size, double aperture_width = 0, \n" - " double aperture_height = 0, double fovx = None, \n" - " double fovy = None, double focal_length = None, \n" - " CvPoint2D64f principal_point = None, \n" - " double pixel_aspect_ratio = None)\n" - ""}, - { (char *)"cvStereoCalibrate", _wrap_cvStereoCalibrate, METH_VARARGS, (char *)"\n" - "cvStereoCalibrate(CvMat object_points, CvMat image_points1, CvMat image_points2, \n" - " CvMat npoints, CvMat camera_matrix1, \n" - " CvMat dist_coeffs1, CvMat camera_matrix2, \n" - " CvMat dist_coeffs2, CvSize image_size, CvMat R, \n" - " CvMat T, CvMat E = None, CvMat F = None, \n" - " CvTermCriteria term_crit = cvTermCriteria( 1 +2,30,1e-6), \n" - " int flags = 256)\n" - ""}, - { (char *)"cvStereoRectify", _wrap_cvStereoRectify, METH_VARARGS, (char *)"\n" - "cvStereoRectify(CvMat camera_matrix1, CvMat camera_matrix2, CvMat dist_coeffs1, \n" - " CvMat dist_coeffs2, CvSize image_size, \n" - " CvMat R, CvMat T, CvMat R1, CvMat R2, \n" - " CvMat P1, CvMat P2, CvMat Q = None, int flags = 1024)\n" - ""}, - { (char *)"cvStereoRectifyUncalibrated", _wrap_cvStereoRectifyUncalibrated, METH_VARARGS, (char *)"\n" - "cvStereoRectifyUncalibrated(CvMat points1, CvMat points2, CvMat F, CvSize img_size, \n" - " CvMat H1, CvMat H2, double threshold = 5) -> int\n" - ""}, - { (char *)"cvCreatePOSITObject", _wrap_cvCreatePOSITObject, METH_VARARGS, (char *)"cvCreatePOSITObject(CvPoint3D32f points, int point_count) -> CvPOSITObject"}, - { (char *)"cvPOSIT", _wrap_cvPOSIT, METH_VARARGS, (char *)"\n" - "cvPOSIT(CvPOSITObject posit_object, CvPoint2D32f image_points, \n" - " double focal_length, CvTermCriteria criteria, \n" - " CvMatr32f rotation_matrix, CvVect32f translation_vector)\n" - ""}, - { (char *)"cvReleasePOSITObject", _wrap_cvReleasePOSITObject, METH_VARARGS, (char *)"cvReleasePOSITObject(CvPOSITObject posit_object)"}, - { (char *)"cvRANSACUpdateNumIters", _wrap_cvRANSACUpdateNumIters, METH_VARARGS, (char *)"cvRANSACUpdateNumIters(double p, double err_prob, int model_points, int max_iters) -> int"}, - { (char *)"cvConvertPointsHomogeneous", _wrap_cvConvertPointsHomogeneous, METH_VARARGS, (char *)"cvConvertPointsHomogeneous(CvMat src, CvMat dst)"}, - { (char *)"cvFindFundamentalMat", _wrap_cvFindFundamentalMat, METH_VARARGS, (char *)"\n" - "cvFindFundamentalMat(CvMat points1, CvMat points2, CvMat fundamental_matrix, \n" - " int method = 8, double param1 = 3., double param2 = 0.99, \n" - " CvMat status = None) -> int\n" - ""}, - { (char *)"cvComputeCorrespondEpilines", _wrap_cvComputeCorrespondEpilines, METH_VARARGS, (char *)"\n" - "cvComputeCorrespondEpilines(CvMat points, int which_image, CvMat fundamental_matrix, \n" - " CvMat correspondent_lines)\n" - ""}, - { (char *)"cvTriangulatePoints", _wrap_cvTriangulatePoints, METH_VARARGS, (char *)"\n" - "cvTriangulatePoints(CvMat projMatr1, CvMat projMatr2, CvMat projPoints1, \n" - " CvMat projPoints2, CvMat points4D)\n" - ""}, - { (char *)"cvCorrectMatches", _wrap_cvCorrectMatches, METH_VARARGS, (char *)"\n" - "cvCorrectMatches(CvMat F, CvMat points1, CvMat points2, CvMat new_points1, \n" - " CvMat new_points2)\n" - ""}, - { (char *)"CvStereoBMState_preFilterType_set", _wrap_CvStereoBMState_preFilterType_set, METH_VARARGS, (char *)"CvStereoBMState_preFilterType_set(CvStereoBMState self, int preFilterType)"}, - { (char *)"CvStereoBMState_preFilterType_get", _wrap_CvStereoBMState_preFilterType_get, METH_VARARGS, (char *)"CvStereoBMState_preFilterType_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_preFilterSize_set", _wrap_CvStereoBMState_preFilterSize_set, METH_VARARGS, (char *)"CvStereoBMState_preFilterSize_set(CvStereoBMState self, int preFilterSize)"}, - { (char *)"CvStereoBMState_preFilterSize_get", _wrap_CvStereoBMState_preFilterSize_get, METH_VARARGS, (char *)"CvStereoBMState_preFilterSize_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_preFilterCap_set", _wrap_CvStereoBMState_preFilterCap_set, METH_VARARGS, (char *)"CvStereoBMState_preFilterCap_set(CvStereoBMState self, int preFilterCap)"}, - { (char *)"CvStereoBMState_preFilterCap_get", _wrap_CvStereoBMState_preFilterCap_get, METH_VARARGS, (char *)"CvStereoBMState_preFilterCap_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_SADWindowSize_set", _wrap_CvStereoBMState_SADWindowSize_set, METH_VARARGS, (char *)"CvStereoBMState_SADWindowSize_set(CvStereoBMState self, int SADWindowSize)"}, - { (char *)"CvStereoBMState_SADWindowSize_get", _wrap_CvStereoBMState_SADWindowSize_get, METH_VARARGS, (char *)"CvStereoBMState_SADWindowSize_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_minDisparity_set", _wrap_CvStereoBMState_minDisparity_set, METH_VARARGS, (char *)"CvStereoBMState_minDisparity_set(CvStereoBMState self, int minDisparity)"}, - { (char *)"CvStereoBMState_minDisparity_get", _wrap_CvStereoBMState_minDisparity_get, METH_VARARGS, (char *)"CvStereoBMState_minDisparity_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_numberOfDisparities_set", _wrap_CvStereoBMState_numberOfDisparities_set, METH_VARARGS, (char *)"CvStereoBMState_numberOfDisparities_set(CvStereoBMState self, int numberOfDisparities)"}, - { (char *)"CvStereoBMState_numberOfDisparities_get", _wrap_CvStereoBMState_numberOfDisparities_get, METH_VARARGS, (char *)"CvStereoBMState_numberOfDisparities_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_textureThreshold_set", _wrap_CvStereoBMState_textureThreshold_set, METH_VARARGS, (char *)"CvStereoBMState_textureThreshold_set(CvStereoBMState self, int textureThreshold)"}, - { (char *)"CvStereoBMState_textureThreshold_get", _wrap_CvStereoBMState_textureThreshold_get, METH_VARARGS, (char *)"CvStereoBMState_textureThreshold_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_uniquenessRatio_set", _wrap_CvStereoBMState_uniquenessRatio_set, METH_VARARGS, (char *)"CvStereoBMState_uniquenessRatio_set(CvStereoBMState self, int uniquenessRatio)"}, - { (char *)"CvStereoBMState_uniquenessRatio_get", _wrap_CvStereoBMState_uniquenessRatio_get, METH_VARARGS, (char *)"CvStereoBMState_uniquenessRatio_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_speckleWindowSize_set", _wrap_CvStereoBMState_speckleWindowSize_set, METH_VARARGS, (char *)"CvStereoBMState_speckleWindowSize_set(CvStereoBMState self, int speckleWindowSize)"}, - { (char *)"CvStereoBMState_speckleWindowSize_get", _wrap_CvStereoBMState_speckleWindowSize_get, METH_VARARGS, (char *)"CvStereoBMState_speckleWindowSize_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_speckleRange_set", _wrap_CvStereoBMState_speckleRange_set, METH_VARARGS, (char *)"CvStereoBMState_speckleRange_set(CvStereoBMState self, int speckleRange)"}, - { (char *)"CvStereoBMState_speckleRange_get", _wrap_CvStereoBMState_speckleRange_get, METH_VARARGS, (char *)"CvStereoBMState_speckleRange_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_trySmallerWindows_set", _wrap_CvStereoBMState_trySmallerWindows_set, METH_VARARGS, (char *)"CvStereoBMState_trySmallerWindows_set(CvStereoBMState self, int trySmallerWindows)"}, - { (char *)"CvStereoBMState_trySmallerWindows_get", _wrap_CvStereoBMState_trySmallerWindows_get, METH_VARARGS, (char *)"CvStereoBMState_trySmallerWindows_get(CvStereoBMState self) -> int"}, - { (char *)"CvStereoBMState_preFilteredImg0_set", _wrap_CvStereoBMState_preFilteredImg0_set, METH_VARARGS, (char *)"CvStereoBMState_preFilteredImg0_set(CvStereoBMState self, CvMat preFilteredImg0)"}, - { (char *)"CvStereoBMState_preFilteredImg0_get", _wrap_CvStereoBMState_preFilteredImg0_get, METH_VARARGS, (char *)"CvStereoBMState_preFilteredImg0_get(CvStereoBMState self) -> CvMat"}, - { (char *)"CvStereoBMState_preFilteredImg1_set", _wrap_CvStereoBMState_preFilteredImg1_set, METH_VARARGS, (char *)"CvStereoBMState_preFilteredImg1_set(CvStereoBMState self, CvMat preFilteredImg1)"}, - { (char *)"CvStereoBMState_preFilteredImg1_get", _wrap_CvStereoBMState_preFilteredImg1_get, METH_VARARGS, (char *)"CvStereoBMState_preFilteredImg1_get(CvStereoBMState self) -> CvMat"}, - { (char *)"CvStereoBMState_slidingSumBuf_set", _wrap_CvStereoBMState_slidingSumBuf_set, METH_VARARGS, (char *)"CvStereoBMState_slidingSumBuf_set(CvStereoBMState self, CvMat slidingSumBuf)"}, - { (char *)"CvStereoBMState_slidingSumBuf_get", _wrap_CvStereoBMState_slidingSumBuf_get, METH_VARARGS, (char *)"CvStereoBMState_slidingSumBuf_get(CvStereoBMState self) -> CvMat"}, - { (char *)"CvStereoBMState_dbmin_set", _wrap_CvStereoBMState_dbmin_set, METH_VARARGS, (char *)"CvStereoBMState_dbmin_set(CvStereoBMState self, CvMat dbmin)"}, - { (char *)"CvStereoBMState_dbmin_get", _wrap_CvStereoBMState_dbmin_get, METH_VARARGS, (char *)"CvStereoBMState_dbmin_get(CvStereoBMState self) -> CvMat"}, - { (char *)"CvStereoBMState_dbmax_set", _wrap_CvStereoBMState_dbmax_set, METH_VARARGS, (char *)"CvStereoBMState_dbmax_set(CvStereoBMState self, CvMat dbmax)"}, - { (char *)"CvStereoBMState_dbmax_get", _wrap_CvStereoBMState_dbmax_get, METH_VARARGS, (char *)"CvStereoBMState_dbmax_get(CvStereoBMState self) -> CvMat"}, - { (char *)"new_CvStereoBMState", _wrap_new_CvStereoBMState, METH_VARARGS, (char *)"new_CvStereoBMState() -> CvStereoBMState"}, - { (char *)"delete_CvStereoBMState", _wrap_delete_CvStereoBMState, METH_VARARGS, (char *)"delete_CvStereoBMState(CvStereoBMState self)"}, - { (char *)"CvStereoBMState_swigregister", CvStereoBMState_swigregister, METH_VARARGS, NULL}, - { (char *)"cvCreateStereoBMState", _wrap_cvCreateStereoBMState, METH_VARARGS, (char *)"cvCreateStereoBMState(int preset = 0, int numberOfDisparities = 0) -> CvStereoBMState"}, - { (char *)"cvReleaseStereoBMState", _wrap_cvReleaseStereoBMState, METH_VARARGS, (char *)"cvReleaseStereoBMState(CvStereoBMState state)"}, - { (char *)"cvFindStereoCorrespondenceBM", _wrap_cvFindStereoCorrespondenceBM, METH_VARARGS, (char *)"cvFindStereoCorrespondenceBM(CvArr left, CvArr right, CvArr disparity, CvStereoBMState state)"}, - { (char *)"CvStereoGCState_Ithreshold_set", _wrap_CvStereoGCState_Ithreshold_set, METH_VARARGS, (char *)"CvStereoGCState_Ithreshold_set(CvStereoGCState self, int Ithreshold)"}, - { (char *)"CvStereoGCState_Ithreshold_get", _wrap_CvStereoGCState_Ithreshold_get, METH_VARARGS, (char *)"CvStereoGCState_Ithreshold_get(CvStereoGCState self) -> int"}, - { (char *)"CvStereoGCState_interactionRadius_set", _wrap_CvStereoGCState_interactionRadius_set, METH_VARARGS, (char *)"CvStereoGCState_interactionRadius_set(CvStereoGCState self, int interactionRadius)"}, - { (char *)"CvStereoGCState_interactionRadius_get", _wrap_CvStereoGCState_interactionRadius_get, METH_VARARGS, (char *)"CvStereoGCState_interactionRadius_get(CvStereoGCState self) -> int"}, - { (char *)"CvStereoGCState_K_set", _wrap_CvStereoGCState_K_set, METH_VARARGS, (char *)"CvStereoGCState_K_set(CvStereoGCState self, float K)"}, - { (char *)"CvStereoGCState_K_get", _wrap_CvStereoGCState_K_get, METH_VARARGS, (char *)"CvStereoGCState_K_get(CvStereoGCState self) -> float"}, - { (char *)"CvStereoGCState__lambda_set", _wrap_CvStereoGCState__lambda_set, METH_VARARGS, (char *)"CvStereoGCState__lambda_set(CvStereoGCState self, float _lambda)"}, - { (char *)"CvStereoGCState__lambda_get", _wrap_CvStereoGCState__lambda_get, METH_VARARGS, (char *)"CvStereoGCState__lambda_get(CvStereoGCState self) -> float"}, - { (char *)"CvStereoGCState_lambda1_set", _wrap_CvStereoGCState_lambda1_set, METH_VARARGS, (char *)"CvStereoGCState_lambda1_set(CvStereoGCState self, float lambda1)"}, - { (char *)"CvStereoGCState_lambda1_get", _wrap_CvStereoGCState_lambda1_get, METH_VARARGS, (char *)"CvStereoGCState_lambda1_get(CvStereoGCState self) -> float"}, - { (char *)"CvStereoGCState_lambda2_set", _wrap_CvStereoGCState_lambda2_set, METH_VARARGS, (char *)"CvStereoGCState_lambda2_set(CvStereoGCState self, float lambda2)"}, - { (char *)"CvStereoGCState_lambda2_get", _wrap_CvStereoGCState_lambda2_get, METH_VARARGS, (char *)"CvStereoGCState_lambda2_get(CvStereoGCState self) -> float"}, - { (char *)"CvStereoGCState_occlusionCost_set", _wrap_CvStereoGCState_occlusionCost_set, METH_VARARGS, (char *)"CvStereoGCState_occlusionCost_set(CvStereoGCState self, int occlusionCost)"}, - { (char *)"CvStereoGCState_occlusionCost_get", _wrap_CvStereoGCState_occlusionCost_get, METH_VARARGS, (char *)"CvStereoGCState_occlusionCost_get(CvStereoGCState self) -> int"}, - { (char *)"CvStereoGCState_minDisparity_set", _wrap_CvStereoGCState_minDisparity_set, METH_VARARGS, (char *)"CvStereoGCState_minDisparity_set(CvStereoGCState self, int minDisparity)"}, - { (char *)"CvStereoGCState_minDisparity_get", _wrap_CvStereoGCState_minDisparity_get, METH_VARARGS, (char *)"CvStereoGCState_minDisparity_get(CvStereoGCState self) -> int"}, - { (char *)"CvStereoGCState_numberOfDisparities_set", _wrap_CvStereoGCState_numberOfDisparities_set, METH_VARARGS, (char *)"CvStereoGCState_numberOfDisparities_set(CvStereoGCState self, int numberOfDisparities)"}, - { (char *)"CvStereoGCState_numberOfDisparities_get", _wrap_CvStereoGCState_numberOfDisparities_get, METH_VARARGS, (char *)"CvStereoGCState_numberOfDisparities_get(CvStereoGCState self) -> int"}, - { (char *)"CvStereoGCState_maxIters_set", _wrap_CvStereoGCState_maxIters_set, METH_VARARGS, (char *)"CvStereoGCState_maxIters_set(CvStereoGCState self, int maxIters)"}, - { (char *)"CvStereoGCState_maxIters_get", _wrap_CvStereoGCState_maxIters_get, METH_VARARGS, (char *)"CvStereoGCState_maxIters_get(CvStereoGCState self) -> int"}, - { (char *)"CvStereoGCState_left_set", _wrap_CvStereoGCState_left_set, METH_VARARGS, (char *)"CvStereoGCState_left_set(CvStereoGCState self, CvMat left)"}, - { (char *)"CvStereoGCState_left_get", _wrap_CvStereoGCState_left_get, METH_VARARGS, (char *)"CvStereoGCState_left_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_right_set", _wrap_CvStereoGCState_right_set, METH_VARARGS, (char *)"CvStereoGCState_right_set(CvStereoGCState self, CvMat right)"}, - { (char *)"CvStereoGCState_right_get", _wrap_CvStereoGCState_right_get, METH_VARARGS, (char *)"CvStereoGCState_right_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_dispLeft_set", _wrap_CvStereoGCState_dispLeft_set, METH_VARARGS, (char *)"CvStereoGCState_dispLeft_set(CvStereoGCState self, CvMat dispLeft)"}, - { (char *)"CvStereoGCState_dispLeft_get", _wrap_CvStereoGCState_dispLeft_get, METH_VARARGS, (char *)"CvStereoGCState_dispLeft_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_dispRight_set", _wrap_CvStereoGCState_dispRight_set, METH_VARARGS, (char *)"CvStereoGCState_dispRight_set(CvStereoGCState self, CvMat dispRight)"}, - { (char *)"CvStereoGCState_dispRight_get", _wrap_CvStereoGCState_dispRight_get, METH_VARARGS, (char *)"CvStereoGCState_dispRight_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_ptrLeft_set", _wrap_CvStereoGCState_ptrLeft_set, METH_VARARGS, (char *)"CvStereoGCState_ptrLeft_set(CvStereoGCState self, CvMat ptrLeft)"}, - { (char *)"CvStereoGCState_ptrLeft_get", _wrap_CvStereoGCState_ptrLeft_get, METH_VARARGS, (char *)"CvStereoGCState_ptrLeft_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_ptrRight_set", _wrap_CvStereoGCState_ptrRight_set, METH_VARARGS, (char *)"CvStereoGCState_ptrRight_set(CvStereoGCState self, CvMat ptrRight)"}, - { (char *)"CvStereoGCState_ptrRight_get", _wrap_CvStereoGCState_ptrRight_get, METH_VARARGS, (char *)"CvStereoGCState_ptrRight_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_vtxBuf_set", _wrap_CvStereoGCState_vtxBuf_set, METH_VARARGS, (char *)"CvStereoGCState_vtxBuf_set(CvStereoGCState self, CvMat vtxBuf)"}, - { (char *)"CvStereoGCState_vtxBuf_get", _wrap_CvStereoGCState_vtxBuf_get, METH_VARARGS, (char *)"CvStereoGCState_vtxBuf_get(CvStereoGCState self) -> CvMat"}, - { (char *)"CvStereoGCState_edgeBuf_set", _wrap_CvStereoGCState_edgeBuf_set, METH_VARARGS, (char *)"CvStereoGCState_edgeBuf_set(CvStereoGCState self, CvMat edgeBuf)"}, - { (char *)"CvStereoGCState_edgeBuf_get", _wrap_CvStereoGCState_edgeBuf_get, METH_VARARGS, (char *)"CvStereoGCState_edgeBuf_get(CvStereoGCState self) -> CvMat"}, - { (char *)"new_CvStereoGCState", _wrap_new_CvStereoGCState, METH_VARARGS, (char *)"new_CvStereoGCState() -> CvStereoGCState"}, - { (char *)"delete_CvStereoGCState", _wrap_delete_CvStereoGCState, METH_VARARGS, (char *)"delete_CvStereoGCState(CvStereoGCState self)"}, - { (char *)"CvStereoGCState_swigregister", CvStereoGCState_swigregister, METH_VARARGS, NULL}, - { (char *)"cvCreateStereoGCState", _wrap_cvCreateStereoGCState, METH_VARARGS, (char *)"cvCreateStereoGCState(int numberOfDisparities, int maxIters) -> CvStereoGCState"}, - { (char *)"cvReleaseStereoGCState", _wrap_cvReleaseStereoGCState, METH_VARARGS, (char *)"cvReleaseStereoGCState(CvStereoGCState state)"}, - { (char *)"cvFindStereoCorrespondenceGC", _wrap_cvFindStereoCorrespondenceGC, METH_VARARGS, (char *)"\n" - "cvFindStereoCorrespondenceGC(CvArr left, CvArr right, CvArr disparityLeft, CvArr disparityRight, \n" - " CvStereoGCState state, int useDisparityGuess = 0)\n" - ""}, - { (char *)"cvReprojectImageTo3D", _wrap_cvReprojectImageTo3D, METH_VARARGS, (char *)"cvReprojectImageTo3D(CvArr disparityImage, CvArr _3dImage, CvMat Q, int handleMissingValues = 0)"}, - { (char *)"delete_CvLSH", _wrap_delete_CvLSH, METH_VARARGS, (char *)"delete_CvLSH(CvLSH self)"}, - { (char *)"CvLSH_swigregister", CvLSH_swigregister, METH_VARARGS, NULL}, - { (char *)"CvTuple_CvPoint_2_val_set", _wrap_CvTuple_CvPoint_2_val_set, METH_VARARGS, (char *)"CvTuple_CvPoint_2_val_set(CvTuple_CvPoint_2 self, CvPoint val)"}, - { (char *)"CvTuple_CvPoint_2_val_get", _wrap_CvTuple_CvPoint_2_val_get, METH_VARARGS, (char *)"CvTuple_CvPoint_2_val_get(CvTuple_CvPoint_2 self) -> CvPoint"}, - { (char *)"CvTuple_CvPoint_2___setitem__", _wrap_CvTuple_CvPoint_2___setitem__, METH_VARARGS, (char *)"CvTuple_CvPoint_2___setitem__(CvTuple_CvPoint_2 self, int i, CvPoint obj)"}, - { (char *)"CvTuple_CvPoint_2___getitem__", _wrap_CvTuple_CvPoint_2___getitem__, METH_VARARGS, (char *)"CvTuple_CvPoint_2___getitem__(CvTuple_CvPoint_2 self, int i) -> CvPoint"}, - { (char *)"new_CvTuple_CvPoint_2", _wrap_new_CvTuple_CvPoint_2, METH_VARARGS, (char *)"new_CvTuple_CvPoint_2() -> CvTuple_CvPoint_2"}, - { (char *)"delete_CvTuple_CvPoint_2", _wrap_delete_CvTuple_CvPoint_2, METH_VARARGS, (char *)"delete_CvTuple_CvPoint_2(CvTuple_CvPoint_2 self)"}, - { (char *)"CvTuple_CvPoint_2_swigregister", CvTuple_CvPoint_2_swigregister, METH_VARARGS, NULL}, - { (char *)"CvTuple_float_2_val_set", _wrap_CvTuple_float_2_val_set, METH_VARARGS, (char *)"CvTuple_float_2_val_set(CvTuple_float_2 self, float val)"}, - { (char *)"CvTuple_float_2_val_get", _wrap_CvTuple_float_2_val_get, METH_VARARGS, (char *)"CvTuple_float_2_val_get(CvTuple_float_2 self) -> float"}, - { (char *)"CvTuple_float_2___setitem__", _wrap_CvTuple_float_2___setitem__, METH_VARARGS, (char *)"CvTuple_float_2___setitem__(CvTuple_float_2 self, int i, float obj)"}, - { (char *)"CvTuple_float_2___getitem__", _wrap_CvTuple_float_2___getitem__, METH_VARARGS, (char *)"CvTuple_float_2___getitem__(CvTuple_float_2 self, int i) -> float"}, - { (char *)"new_CvTuple_float_2", _wrap_new_CvTuple_float_2, METH_VARARGS, (char *)"new_CvTuple_float_2() -> CvTuple_float_2"}, - { (char *)"delete_CvTuple_float_2", _wrap_delete_CvTuple_float_2, METH_VARARGS, (char *)"delete_CvTuple_float_2(CvTuple_float_2 self)"}, - { (char *)"CvTuple_float_2_swigregister", CvTuple_float_2_swigregister, METH_VARARGS, NULL}, - { (char *)"CvTuple_float_3_val_set", _wrap_CvTuple_float_3_val_set, METH_VARARGS, (char *)"CvTuple_float_3_val_set(CvTuple_float_3 self, float val)"}, - { (char *)"CvTuple_float_3_val_get", _wrap_CvTuple_float_3_val_get, METH_VARARGS, (char *)"CvTuple_float_3_val_get(CvTuple_float_3 self) -> float"}, - { (char *)"CvTuple_float_3___setitem__", _wrap_CvTuple_float_3___setitem__, METH_VARARGS, (char *)"CvTuple_float_3___setitem__(CvTuple_float_3 self, int i, float obj)"}, - { (char *)"CvTuple_float_3___getitem__", _wrap_CvTuple_float_3___getitem__, METH_VARARGS, (char *)"CvTuple_float_3___getitem__(CvTuple_float_3 self, int i) -> float"}, - { (char *)"new_CvTuple_float_3", _wrap_new_CvTuple_float_3, METH_VARARGS, (char *)"new_CvTuple_float_3() -> CvTuple_float_3"}, - { (char *)"delete_CvTuple_float_3", _wrap_delete_CvTuple_float_3, METH_VARARGS, (char *)"delete_CvTuple_float_3(CvTuple_float_3 self)"}, - { (char *)"CvTuple_float_3_swigregister", CvTuple_float_3_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvPoint_cast", _wrap_CvSeq_CvPoint_cast, METH_VARARGS, (char *)"CvSeq_CvPoint_cast(CvSeq seq) -> CvSeq_CvPoint"}, - { (char *)"CvSeq_CvPoint___getitem__", _wrap_CvSeq_CvPoint___getitem__, METH_VARARGS, (char *)"CvSeq_CvPoint___getitem__(CvSeq_CvPoint self, int i) -> CvPoint"}, - { (char *)"CvSeq_CvPoint___setitem__", _wrap_CvSeq_CvPoint___setitem__, METH_VARARGS, (char *)"CvSeq_CvPoint___setitem__(CvSeq_CvPoint self, int i, CvPoint obj)"}, - { (char *)"CvSeq_CvPoint_append", _wrap_CvSeq_CvPoint_append, METH_VARARGS, (char *)"CvSeq_CvPoint_append(CvSeq_CvPoint self, CvPoint obj)"}, - { (char *)"CvSeq_CvPoint_pop", _wrap_CvSeq_CvPoint_pop, METH_VARARGS, (char *)"CvSeq_CvPoint_pop(CvSeq_CvPoint self) -> CvPoint"}, - { (char *)"new_CvSeq_CvPoint", _wrap_new_CvSeq_CvPoint, METH_VARARGS, (char *)"new_CvSeq_CvPoint() -> CvSeq_CvPoint"}, - { (char *)"delete_CvSeq_CvPoint", _wrap_delete_CvSeq_CvPoint, METH_VARARGS, (char *)"delete_CvSeq_CvPoint(CvSeq_CvPoint self)"}, - { (char *)"CvSeq_CvPoint_swigregister", CvSeq_CvPoint_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvPoint2D32f_cast", _wrap_CvSeq_CvPoint2D32f_cast, METH_VARARGS, (char *)"CvSeq_CvPoint2D32f_cast(CvSeq seq) -> CvSeq_CvPoint2D32f"}, - { (char *)"CvSeq_CvPoint2D32f___getitem__", _wrap_CvSeq_CvPoint2D32f___getitem__, METH_VARARGS, (char *)"CvSeq_CvPoint2D32f___getitem__(CvSeq_CvPoint2D32f self, int i) -> CvPoint2D32f"}, - { (char *)"CvSeq_CvPoint2D32f___setitem__", _wrap_CvSeq_CvPoint2D32f___setitem__, METH_VARARGS, (char *)"CvSeq_CvPoint2D32f___setitem__(CvSeq_CvPoint2D32f self, int i, CvPoint2D32f obj)"}, - { (char *)"CvSeq_CvPoint2D32f_append", _wrap_CvSeq_CvPoint2D32f_append, METH_VARARGS, (char *)"CvSeq_CvPoint2D32f_append(CvSeq_CvPoint2D32f self, CvPoint2D32f obj)"}, - { (char *)"CvSeq_CvPoint2D32f_pop", _wrap_CvSeq_CvPoint2D32f_pop, METH_VARARGS, (char *)"CvSeq_CvPoint2D32f_pop(CvSeq_CvPoint2D32f self) -> CvPoint2D32f"}, - { (char *)"new_CvSeq_CvPoint2D32f", _wrap_new_CvSeq_CvPoint2D32f, METH_VARARGS, (char *)"new_CvSeq_CvPoint2D32f() -> CvSeq_CvPoint2D32f"}, - { (char *)"delete_CvSeq_CvPoint2D32f", _wrap_delete_CvSeq_CvPoint2D32f, METH_VARARGS, (char *)"delete_CvSeq_CvPoint2D32f(CvSeq_CvPoint2D32f self)"}, - { (char *)"CvSeq_CvPoint2D32f_swigregister", CvSeq_CvPoint2D32f_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvRect_cast", _wrap_CvSeq_CvRect_cast, METH_VARARGS, (char *)"CvSeq_CvRect_cast(CvSeq seq) -> CvSeq_CvRect"}, - { (char *)"CvSeq_CvRect___getitem__", _wrap_CvSeq_CvRect___getitem__, METH_VARARGS, (char *)"CvSeq_CvRect___getitem__(CvSeq_CvRect self, int i) -> CvRect"}, - { (char *)"CvSeq_CvRect___setitem__", _wrap_CvSeq_CvRect___setitem__, METH_VARARGS, (char *)"CvSeq_CvRect___setitem__(CvSeq_CvRect self, int i, CvRect obj)"}, - { (char *)"CvSeq_CvRect_append", _wrap_CvSeq_CvRect_append, METH_VARARGS, (char *)"CvSeq_CvRect_append(CvSeq_CvRect self, CvRect obj)"}, - { (char *)"CvSeq_CvRect_pop", _wrap_CvSeq_CvRect_pop, METH_VARARGS, (char *)"CvSeq_CvRect_pop(CvSeq_CvRect self) -> CvRect"}, - { (char *)"new_CvSeq_CvRect", _wrap_new_CvSeq_CvRect, METH_VARARGS, (char *)"new_CvSeq_CvRect() -> CvSeq_CvRect"}, - { (char *)"delete_CvSeq_CvRect", _wrap_delete_CvSeq_CvRect, METH_VARARGS, (char *)"delete_CvSeq_CvRect(CvSeq_CvRect self)"}, - { (char *)"CvSeq_CvRect_swigregister", CvSeq_CvRect_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvSeq_cast", _wrap_CvSeq_CvSeq_cast, METH_VARARGS, (char *)"CvSeq_CvSeq_cast(CvSeq seq) -> CvSeq_CvSeq"}, - { (char *)"CvSeq_CvSeq___getitem__", _wrap_CvSeq_CvSeq___getitem__, METH_VARARGS, (char *)"CvSeq_CvSeq___getitem__(CvSeq_CvSeq self, int i) -> CvSeq"}, - { (char *)"CvSeq_CvSeq___setitem__", _wrap_CvSeq_CvSeq___setitem__, METH_VARARGS, (char *)"CvSeq_CvSeq___setitem__(CvSeq_CvSeq self, int i, CvSeq obj)"}, - { (char *)"CvSeq_CvSeq_append", _wrap_CvSeq_CvSeq_append, METH_VARARGS, (char *)"CvSeq_CvSeq_append(CvSeq_CvSeq self, CvSeq obj)"}, - { (char *)"CvSeq_CvSeq_pop", _wrap_CvSeq_CvSeq_pop, METH_VARARGS, (char *)"CvSeq_CvSeq_pop(CvSeq_CvSeq self) -> CvSeq"}, - { (char *)"new_CvSeq_CvSeq", _wrap_new_CvSeq_CvSeq, METH_VARARGS, (char *)"new_CvSeq_CvSeq() -> CvSeq_CvSeq"}, - { (char *)"delete_CvSeq_CvSeq", _wrap_delete_CvSeq_CvSeq, METH_VARARGS, (char *)"delete_CvSeq_CvSeq(CvSeq_CvSeq self)"}, - { (char *)"CvSeq_CvSeq_swigregister", CvSeq_CvSeq_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvQuadEdge2D_cast", _wrap_CvSeq_CvQuadEdge2D_cast, METH_VARARGS, (char *)"CvSeq_CvQuadEdge2D_cast(CvSeq seq) -> CvSeq_CvQuadEdge2D"}, - { (char *)"CvSeq_CvQuadEdge2D___getitem__", _wrap_CvSeq_CvQuadEdge2D___getitem__, METH_VARARGS, (char *)"CvSeq_CvQuadEdge2D___getitem__(CvSeq_CvQuadEdge2D self, int i) -> CvQuadEdge2D"}, - { (char *)"CvSeq_CvQuadEdge2D___setitem__", _wrap_CvSeq_CvQuadEdge2D___setitem__, METH_VARARGS, (char *)"CvSeq_CvQuadEdge2D___setitem__(CvSeq_CvQuadEdge2D self, int i, CvQuadEdge2D obj)"}, - { (char *)"CvSeq_CvQuadEdge2D_append", _wrap_CvSeq_CvQuadEdge2D_append, METH_VARARGS, (char *)"CvSeq_CvQuadEdge2D_append(CvSeq_CvQuadEdge2D self, CvQuadEdge2D obj)"}, - { (char *)"CvSeq_CvQuadEdge2D_pop", _wrap_CvSeq_CvQuadEdge2D_pop, METH_VARARGS, (char *)"CvSeq_CvQuadEdge2D_pop(CvSeq_CvQuadEdge2D self) -> CvQuadEdge2D"}, - { (char *)"new_CvSeq_CvQuadEdge2D", _wrap_new_CvSeq_CvQuadEdge2D, METH_VARARGS, (char *)"new_CvSeq_CvQuadEdge2D() -> CvSeq_CvQuadEdge2D"}, - { (char *)"delete_CvSeq_CvQuadEdge2D", _wrap_delete_CvSeq_CvQuadEdge2D, METH_VARARGS, (char *)"delete_CvSeq_CvQuadEdge2D(CvSeq_CvQuadEdge2D self)"}, - { (char *)"CvSeq_CvQuadEdge2D_swigregister", CvSeq_CvQuadEdge2D_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvConnectedComp_cast", _wrap_CvSeq_CvConnectedComp_cast, METH_VARARGS, (char *)"CvSeq_CvConnectedComp_cast(CvSeq seq) -> CvSeq_CvConnectedComp"}, - { (char *)"CvSeq_CvConnectedComp___getitem__", _wrap_CvSeq_CvConnectedComp___getitem__, METH_VARARGS, (char *)"CvSeq_CvConnectedComp___getitem__(CvSeq_CvConnectedComp self, int i) -> CvConnectedComp"}, - { (char *)"CvSeq_CvConnectedComp___setitem__", _wrap_CvSeq_CvConnectedComp___setitem__, METH_VARARGS, (char *)"CvSeq_CvConnectedComp___setitem__(CvSeq_CvConnectedComp self, int i, CvConnectedComp obj)"}, - { (char *)"CvSeq_CvConnectedComp_append", _wrap_CvSeq_CvConnectedComp_append, METH_VARARGS, (char *)"CvSeq_CvConnectedComp_append(CvSeq_CvConnectedComp self, CvConnectedComp obj)"}, - { (char *)"CvSeq_CvConnectedComp_pop", _wrap_CvSeq_CvConnectedComp_pop, METH_VARARGS, (char *)"CvSeq_CvConnectedComp_pop(CvSeq_CvConnectedComp self) -> CvConnectedComp"}, - { (char *)"new_CvSeq_CvConnectedComp", _wrap_new_CvSeq_CvConnectedComp, METH_VARARGS, (char *)"new_CvSeq_CvConnectedComp() -> CvSeq_CvConnectedComp"}, - { (char *)"delete_CvSeq_CvConnectedComp", _wrap_delete_CvSeq_CvConnectedComp, METH_VARARGS, (char *)"delete_CvSeq_CvConnectedComp(CvSeq_CvConnectedComp self)"}, - { (char *)"CvSeq_CvConnectedComp_swigregister", CvSeq_CvConnectedComp_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_CvPoint_2_cast", _wrap_CvSeq_CvPoint_2_cast, METH_VARARGS, (char *)"CvSeq_CvPoint_2_cast(CvSeq seq) -> CvSeq_CvPoint_2"}, - { (char *)"CvSeq_CvPoint_2___getitem__", _wrap_CvSeq_CvPoint_2___getitem__, METH_VARARGS, (char *)"CvSeq_CvPoint_2___getitem__(CvSeq_CvPoint_2 self, int i) -> CvTuple_CvPoint_2"}, - { (char *)"CvSeq_CvPoint_2___setitem__", _wrap_CvSeq_CvPoint_2___setitem__, METH_VARARGS, (char *)"CvSeq_CvPoint_2___setitem__(CvSeq_CvPoint_2 self, int i, CvTuple_CvPoint_2 obj)"}, - { (char *)"CvSeq_CvPoint_2_append", _wrap_CvSeq_CvPoint_2_append, METH_VARARGS, (char *)"CvSeq_CvPoint_2_append(CvSeq_CvPoint_2 self, CvTuple_CvPoint_2 obj)"}, - { (char *)"CvSeq_CvPoint_2_pop", _wrap_CvSeq_CvPoint_2_pop, METH_VARARGS, (char *)"CvSeq_CvPoint_2_pop(CvSeq_CvPoint_2 self) -> CvTuple_CvPoint_2"}, - { (char *)"new_CvSeq_CvPoint_2", _wrap_new_CvSeq_CvPoint_2, METH_VARARGS, (char *)"new_CvSeq_CvPoint_2() -> CvSeq_CvPoint_2"}, - { (char *)"delete_CvSeq_CvPoint_2", _wrap_delete_CvSeq_CvPoint_2, METH_VARARGS, (char *)"delete_CvSeq_CvPoint_2(CvSeq_CvPoint_2 self)"}, - { (char *)"CvSeq_CvPoint_2_swigregister", CvSeq_CvPoint_2_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_float_2_cast", _wrap_CvSeq_float_2_cast, METH_VARARGS, (char *)"CvSeq_float_2_cast(CvSeq seq) -> CvSeq_float_2"}, - { (char *)"CvSeq_float_2___getitem__", _wrap_CvSeq_float_2___getitem__, METH_VARARGS, (char *)"CvSeq_float_2___getitem__(CvSeq_float_2 self, int i) -> CvTuple_float_2"}, - { (char *)"CvSeq_float_2___setitem__", _wrap_CvSeq_float_2___setitem__, METH_VARARGS, (char *)"CvSeq_float_2___setitem__(CvSeq_float_2 self, int i, CvTuple_float_2 obj)"}, - { (char *)"CvSeq_float_2_append", _wrap_CvSeq_float_2_append, METH_VARARGS, (char *)"CvSeq_float_2_append(CvSeq_float_2 self, CvTuple_float_2 obj)"}, - { (char *)"CvSeq_float_2_pop", _wrap_CvSeq_float_2_pop, METH_VARARGS, (char *)"CvSeq_float_2_pop(CvSeq_float_2 self) -> CvTuple_float_2"}, - { (char *)"new_CvSeq_float_2", _wrap_new_CvSeq_float_2, METH_VARARGS, (char *)"new_CvSeq_float_2() -> CvSeq_float_2"}, - { (char *)"delete_CvSeq_float_2", _wrap_delete_CvSeq_float_2, METH_VARARGS, (char *)"delete_CvSeq_float_2(CvSeq_float_2 self)"}, - { (char *)"CvSeq_float_2_swigregister", CvSeq_float_2_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSeq_float_3_cast", _wrap_CvSeq_float_3_cast, METH_VARARGS, (char *)"CvSeq_float_3_cast(CvSeq seq) -> CvSeq_float_3"}, - { (char *)"CvSeq_float_3___getitem__", _wrap_CvSeq_float_3___getitem__, METH_VARARGS, (char *)"CvSeq_float_3___getitem__(CvSeq_float_3 self, int i) -> CvTuple_float_3"}, - { (char *)"CvSeq_float_3___setitem__", _wrap_CvSeq_float_3___setitem__, METH_VARARGS, (char *)"CvSeq_float_3___setitem__(CvSeq_float_3 self, int i, CvTuple_float_3 obj)"}, - { (char *)"CvSeq_float_3_append", _wrap_CvSeq_float_3_append, METH_VARARGS, (char *)"CvSeq_float_3_append(CvSeq_float_3 self, CvTuple_float_3 obj)"}, - { (char *)"CvSeq_float_3_pop", _wrap_CvSeq_float_3_pop, METH_VARARGS, (char *)"CvSeq_float_3_pop(CvSeq_float_3 self) -> CvTuple_float_3"}, - { (char *)"new_CvSeq_float_3", _wrap_new_CvSeq_float_3, METH_VARARGS, (char *)"new_CvSeq_float_3() -> CvSeq_float_3"}, - { (char *)"delete_CvSeq_float_3", _wrap_delete_CvSeq_float_3, METH_VARARGS, (char *)"delete_CvSeq_float_3(CvSeq_float_3 self)"}, - { (char *)"CvSeq_float_3_swigregister", CvSeq_float_3_swigregister, METH_VARARGS, NULL}, - { (char *)"SendErrorToPython", _wrap_SendErrorToPython, METH_VARARGS, (char *)"\n" - "SendErrorToPython(int status, char func_name, char err_msg, char file_name, \n" - " int line, void arg5) -> int\n" - ""}, - { (char *)"function_ptr_generator", _wrap_function_ptr_generator, METH_VARARGS, (char *)"function_ptr_generator() -> CvErrorCallback"}, - { (char *)"void_ptr_generator", _wrap_void_ptr_generator, METH_VARARGS, (char *)"void_ptr_generator() -> void"}, - { (char *)"void_ptrptr_generator", _wrap_void_ptrptr_generator, METH_VARARGS, (char *)"void_ptrptr_generator() -> void"}, - { NULL, NULL, 0, NULL } -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - -static void *_p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvTuple< CvPoint,2 > > **) x)); -} -static void *_p_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvTuple< float,2 > > **) x)); -} -static void *_p_p_CvTypedSeqT_CvConnectedComp_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvConnectedComp > **) x)); -} -static void *_p_p_CvTypedSeqT_CvRect_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvRect > **) x)); -} -static void *_p_p_CvTypedSeqT_CvPoint_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvPoint > **) x)); -} -static void *_p_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvTuple< float,3 > > **) x)); -} -static void *_p_p_CvTypedSeqT_CvSeq_p_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvSeq * > **) x)); -} -static void *_p_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvQuadEdge2D > **) x)); -} -static void *_p_p_CvTypedSeqT_CvPoint2D32f_tTo_p_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq **) ((CvTypedSeq< CvPoint2D32f > **) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< CvPoint,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvConnectedComp > *) x)); -} -static void *_p_CvTypedSeqT_CvRect_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvRect > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,3 > > *) x)); -} -static void *_p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvSeq * > *) x)); -} -static void *_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvQuadEdge2D > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint2D32f > *) x)); -} -static swig_type_info _swigt__p_Cv32suf = {"_p_Cv32suf", "Cv32suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv64suf = {"_p_Cv64suf", "Cv64suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAttrList = {"_p_CvAttrList", "CvAttrList *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAvgComp = {"_p_CvAvgComp", "CvAvgComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBox2D = {"_p_CvBox2D", "CvBox2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChain = {"_p_CvChain", "CvChain *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChainPtReader = {"_p_CvChainPtReader", "CvChainPtReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConDensation = {"_p_CvConDensation", "CvConDensation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConnectedComp = {"_p_CvConnectedComp", "CvConnectedComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContour = {"_p_CvContour", "CvPoint2DSeq *|CvContour *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContourTree = {"_p_CvContourTree", "CvContourTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConvexityDefect = {"_p_CvConvexityDefect", "CvConvexityDefect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFeatureTree = {"_p_CvFeatureTree", "CvFeatureTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileNode = {"_p_CvFileNode", "CvFileNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileNode_data = {"_p_CvFileNode_data", "CvFileNode_data *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileStorage = {"_p_CvFileStorage", "CvFileStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFilter = {"_p_CvFilter", "enum CvFilter *|CvFilter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFont = {"_p_CvFont", "CvFont *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGenericHash = {"_p_CvGenericHash", "CvGenericHash *|CvFileNodeHash *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraph = {"_p_CvGraph", "CvGraph *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphEdge = {"_p_CvGraphEdge", "CvGraphEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphScanner = {"_p_CvGraphScanner", "CvGraphScanner *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx = {"_p_CvGraphVtx", "CvGraphVtx *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx2D = {"_p_CvGraphVtx2D", "CvGraphVtx2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifier = {"_p_CvHaarClassifier", "CvHaarClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifierCascade = {"_p_CvHaarClassifierCascade", "CvHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarFeature = {"_p_CvHaarFeature", "CvHaarFeature *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarFeature_rect = {"_p_CvHaarFeature_rect", "CvHaarFeature_rect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarStageClassifier = {"_p_CvHaarStageClassifier", "CvHaarStageClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHidHaarClassifierCascade = {"_p_CvHidHaarClassifierCascade", "CvHidHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHistogram = {"_p_CvHistogram", "CvHistogram *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHuMoments = {"_p_CvHuMoments", "CvHuMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvImage = {"_p_CvImage", "CvImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvKalman = {"_p_CvKalman", "CvKalman *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLSH = {"_p_CvLSH", "CvLSH *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLSHOperations = {"_p_CvLSHOperations", "CvLSHOperations *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLineIterator = {"_p_CvLineIterator", "CvLineIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMSERParams = {"_p_CvMSERParams", "CvMSERParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMat = {"_p_CvMat", "CvMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND = {"_p_CvMatND", "CvMatND *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND_data = {"_p_CvMatND_data", "CvMatND_data *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND_dim = {"_p_CvMatND_dim", "CvMatND_dim *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMat_data = {"_p_CvMat_data", "CvMat_data *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatrix = {"_p_CvMatrix", "CvMatrix *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatrix3 = {"_p_CvMatrix3", "CvMatrix3 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemBlock = {"_p_CvMemBlock", "CvMemBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStorage = {"_p_CvMemStorage", "CvMemStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStoragePos = {"_p_CvMemStoragePos", "CvMemStoragePos *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvModule = {"_p_CvModule", "CvModule *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvModuleInfo = {"_p_CvModuleInfo", "CvModuleInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMoments = {"_p_CvMoments", "CvMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNArrayIterator = {"_p_CvNArrayIterator", "CvNArrayIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNextEdgeType = {"_p_CvNextEdgeType", "enum CvNextEdgeType *|CvNextEdgeType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPOSITObject = {"_p_CvPOSITObject", "CvPOSITObject *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPluginFuncInfo = {"_p_CvPluginFuncInfo", "CvPluginFuncInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint = {"_p_CvPoint", "CvPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D32f = {"_p_CvPoint2D32f", "CvPoint2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D64f = {"_p_CvPoint2D64f", "CvPoint2D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D32f = {"_p_CvPoint3D32f", "CvPoint3D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D64f = {"_p_CvPoint3D64f", "CvPoint3D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvQuadEdge2D = {"_p_CvQuadEdge2D", "CvQuadEdge2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRNG_Wrapper = {"_p_CvRNG_Wrapper", "CvRNG_Wrapper *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRandState = {"_p_CvRandState", "CvRandState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRect = {"_p_CvRect", "CvRect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFParams = {"_p_CvSURFParams", "CvSURFParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFPoint = {"_p_CvSURFPoint", "CvSURFPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvScalar = {"_p_CvScalar", "CvScalar *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeq = {"_p_CvSeq", "CvSeq *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqBlock = {"_p_CvSeqBlock", "CvSeqBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqReader = {"_p_CvSeqReader", "CvSeqReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqWriter = {"_p_CvSeqWriter", "CvSeqWriter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSet = {"_p_CvSet", "CvSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSetElem = {"_p_CvSetElem", "CvSetElem *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize = {"_p_CvSize", "CvSize *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize2D32f = {"_p_CvSize2D32f", "CvSize2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSlice = {"_p_CvSlice", "CvSlice *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMat = {"_p_CvSparseMat", "CvSparseMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMatIterator = {"_p_CvSparseMatIterator", "CvSparseMatIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseNode = {"_p_CvSparseNode", "CvSparseNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarDetectorParams = {"_p_CvStarDetectorParams", "CvStarDetectorParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarKeypoint = {"_p_CvStarKeypoint", "CvStarKeypoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoBMState = {"_p_CvStereoBMState", "CvStereoBMState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoGCState = {"_p_CvStereoGCState", "CvStereoGCState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvString = {"_p_CvString", "CvString *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStringHashNode = {"_p_CvStringHashNode", "CvStringHashNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2D = {"_p_CvSubdiv2D", "CvSubdiv2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DEdge_Wrapper = {"_p_CvSubdiv2DEdge_Wrapper", "CvSubdiv2DEdge_Wrapper *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPoint = {"_p_CvSubdiv2DPoint", "CvSubdiv2DPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPointLocation = {"_p_CvSubdiv2DPointLocation", "enum CvSubdiv2DPointLocation *|CvSubdiv2DPointLocation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTermCriteria = {"_p_CvTermCriteria", "CvTermCriteria *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTreeNodeIterator = {"_p_CvTreeNodeIterator", "CvTreeNodeIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTupleT_CvPoint_2_t = {"_p_CvTupleT_CvPoint_2_t", "CvTuple< CvPoint,2 > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTupleT_float_2_t = {"_p_CvTupleT_float_2_t", "CvTuple< float,2 > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTupleT_float_3_t = {"_p_CvTupleT_float_3_t", "CvTuple< float,3 > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvType = {"_p_CvType", "CvType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypeInfo = {"_p_CvTypeInfo", "CvTypeInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvConnectedComp_t = {"_p_CvTypedSeqT_CvConnectedComp_t", "CvTypedSeq< CvConnectedComp > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint2D32f_t = {"_p_CvTypedSeqT_CvPoint2D32f_t", "CvTypedSeq< CvPoint2D32f > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint_t = {"_p_CvTypedSeqT_CvPoint_t", "CvTypedSeq< CvPoint > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvQuadEdge2D_t = {"_p_CvTypedSeqT_CvQuadEdge2D_t", "CvTypedSeq< CvQuadEdge2D > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvRect_t = {"_p_CvTypedSeqT_CvRect_t", "CvTypedSeq< CvRect > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvSeq_p_t = {"_p_CvTypedSeqT_CvSeq_p_t", "CvTypedSeq< CvSeq * > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t = {"_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t", "CvTypedSeq< CvTuple< CvPoint,2 > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t = {"_p_CvTypedSeqT_CvTupleT_float_2_t_t", "CvTypedSeq< CvTuple< float,2 > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t = {"_p_CvTypedSeqT_CvTupleT_float_3_t_t", "CvTypedSeq< CvTuple< float,3 > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__CvContourScanner = {"_p__CvContourScanner", "_CvContourScanner *|CvContourScanner", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernel = {"_p__IplConvKernel", "_IplConvKernel *|IplConvKernel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernelFP = {"_p__IplConvKernelFP", "_IplConvKernelFP *|IplConvKernelFP *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplImage = {"_p__IplImage", "_IplImage *|IplImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplROI = {"_p__IplROI", "_IplROI *|IplROI *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplTileInfo = {"_p__IplTileInfo", "_IplTileInfo *|IplTileInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_a_2__float = {"_p_a_2__float", "float (*)[2]", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_a_2__signed_char = {"_p_a_2__signed_char", "signed char (*)[2]|schar (*)[2]", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_a_3__float = {"_p_a_3__float", "float (*)[3]", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_allocator_type = {"_p_allocator_type", "allocator_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_difference_type = {"_p_difference_type", "difference_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_double = {"_p_double", "double *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_int_int_int_int__p__IplROI = {"_p_f_int_int_int_int_int__p__IplROI", "Cv_iplCreateROI|_IplROI *(*)(int,int,int,int,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage = {"_p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage", "_IplImage *(*)(int,int,int,char *,char *,int,int,int,int,int,IplROI *,IplImage *,void *,IplTileInfo *)|Cv_iplCreateImageHeader", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int = {"_p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int", "int (*)(int,char const *,char const *,char const *,int,void *)|CvErrorCallback", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_CvFileStorage_p_CvFileNode__p_void = {"_p_f_p_CvFileStorage_p_CvFileNode__p_void", "void *(*)(CvFileStorage *,CvFileNode *)|CvReadFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void = {"_p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void", "void (*)(CvFileStorage *,char const *,void const *,CvAttrList)|CvWriteFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p__IplImage_int__void = {"_p_f_p__IplImage_int__void", "Cv_iplDeallocate|void (*)(_IplImage *,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p__IplImage_int_int__void = {"_p_f_p__IplImage_int_int__void", "Cv_iplAllocateImageData|void (*)(_IplImage *,int,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_p_void__void = {"_p_f_p_p_void__void", "void (*)(void **)|CvReleaseFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__IplImage__p__IplImage = {"_p_f_p_q_const__IplImage__p__IplImage", "_IplImage *(*)(IplImage const *)|Cv_iplCloneImage", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_int__p_CvMat = {"_p_f_p_q_const__char_int__p_CvMat", "CvMat *(*)(char const *,int)|CvLoadImageMFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_int__p__IplImage = {"_p_f_p_q_const__char_int__p__IplImage", "CvLoadImageFunc|_IplImage *(*)(char const *,int)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_p_q_const__void__void = {"_p_f_p_q_const__char_p_q_const__void__void", "CvShowImageFunc|void (*)(char const *,void const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int = {"_p_f_p_q_const__char_p_q_const__void_p_q_const__int__int", "CvSaveImageFunc|int (*)(char const *,void const *,int const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__float_p_q_const__float_p_void__float = {"_p_f_p_q_const__float_p_q_const__float_p_void__float", "CvDistanceFunction|float (*)(float const *,float const *,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__void__int = {"_p_f_p_q_const__void__int", "CvIsInstanceFunc|int (*)(void const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__void__p_void = {"_p_f_p_q_const__void__p_void", "CvCloneFunc|void *(*)(void const *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_q_const__void_p_q_const__void_p_void__int = {"_p_f_p_q_const__void_p_q_const__void_p_void__int", "CvCmpFunc|int (*)(void const *,void const *,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_p_void_p_void__int = {"_p_f_p_void_p_void__int", "int (*)(void *,void *)|CvFreeFunc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_size_t_p_void__p_void = {"_p_f_size_t_p_void__p_void", "CvAllocFunc|void *(*)(size_t,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_float = {"_p_float", "float *|CvVect32f|CvMatr32f", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int = {"_p_int", "CvHistType *|int *|CVStatus *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|int64 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvFileStorage = {"_p_p_CvFileStorage", "CvFileStorage **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvGraphEdge = {"_p_p_CvGraphEdge", "CvGraphEdge **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvGraphVtx = {"_p_p_CvGraphVtx", "CvGraphVtx **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvHistogram = {"_p_p_CvHistogram", "CvHistogram **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvLSH = {"_p_p_CvLSH", "CvLSH **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMat = {"_p_p_CvMat", "CvMat **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMatND = {"_p_p_CvMatND", "CvMatND **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvPOSITObject = {"_p_p_CvPOSITObject", "CvPOSITObject **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvPoint = {"_p_p_CvPoint", "CvPoint **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSeq = {"_p_p_CvSeq", "CvSeq **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t = {"_p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t = {"_p_p_CvTypedSeqT_CvTupleT_float_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvRect_t = {"_p_p_CvTypedSeqT_CvRect_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvPoint_t = {"_p_p_CvTypedSeqT_CvPoint_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t = {"_p_p_CvTypedSeqT_CvQuadEdge2D_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvSeq_p_t = {"_p_p_CvTypedSeqT_CvSeq_p_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvPoint2D32f_t = {"_p_p_CvTypedSeqT_CvPoint2D32f_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t = {"_p_p_CvTypedSeqT_CvTupleT_float_3_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvTypedSeqT_CvConnectedComp_t = {"_p_p_CvTypedSeqT_CvConnectedComp_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_p_CvSeqBlock = {"_p_p_CvSeqBlock", "CvSeqBlock **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSetElem = {"_p_p_CvSetElem", "CvSetElem **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvStereoBMState = {"_p_p_CvStereoBMState", "CvStereoBMState **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvStereoGCState = {"_p_p_CvStereoGCState", "CvStereoGCState **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvSubdiv2DPoint = {"_p_p_CvSubdiv2DPoint", "CvSubdiv2DPoint **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_PyObject = {"_p_p_PyObject", "PyObject **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p__CvContourScanner = {"_p_p__CvContourScanner", "CvContourScanner *|_CvContourScanner **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p__IplImage = {"_p_p__IplImage", "_IplImage **|IplImage **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_float = {"_p_p_float", "float **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_p_CvMat = {"_p_p_p_CvMat", "CvMat ***", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_unsigned_char = {"_p_p_unsigned_char", "unsigned char **|uchar **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **|CvArr **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_short = {"_p_short", "short *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "schar *|signed char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *|CvSubdiv2DEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_type = {"_p_size_type", "size_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__invalid_argument = {"_p_std__invalid_argument", "std::invalid_argument *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t = {"_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t", "std::vector< CvPoint,std::allocator< CvPoint > > *|std::vector< CvPoint > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type = {"_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type", "std::vector< CvPoint >::allocator_type *|std::allocator< CvPoint > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type = {"_p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type", "std::vector< CvPoint >::value_type *|CvPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_float_std__allocatorT_float_t_t = {"_p_std__vectorT_float_std__allocatorT_float_t_t", "std::vector< float > *|std::vector< float,std::allocator< float > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type = {"_p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type", "std::vector< float >::allocator_type *|std::allocator< float > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_swig__SwigPyIterator = {"_p_swig__SwigPyIterator", "swig::SwigPyIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uint64 *|CvRNG *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "uchar *|unsigned char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_int = {"_p_unsigned_int", "unsigned int *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|ushort *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_value_type = {"_p_value_type", "value_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_void = {"_p_void", "CvArr *|void *", 0, 0, (void*)0, 0}; - -static swig_type_info *swig_type_initial[] = { - &_swigt__p_Cv32suf, - &_swigt__p_Cv64suf, - &_swigt__p_CvAttrList, - &_swigt__p_CvAvgComp, - &_swigt__p_CvBox2D, - &_swigt__p_CvChain, - &_swigt__p_CvChainPtReader, - &_swigt__p_CvConDensation, - &_swigt__p_CvConnectedComp, - &_swigt__p_CvContour, - &_swigt__p_CvContourTree, - &_swigt__p_CvConvexityDefect, - &_swigt__p_CvFeatureTree, - &_swigt__p_CvFileNode, - &_swigt__p_CvFileNode_data, - &_swigt__p_CvFileStorage, - &_swigt__p_CvFilter, - &_swigt__p_CvFont, - &_swigt__p_CvGenericHash, - &_swigt__p_CvGraph, - &_swigt__p_CvGraphEdge, - &_swigt__p_CvGraphScanner, - &_swigt__p_CvGraphVtx, - &_swigt__p_CvGraphVtx2D, - &_swigt__p_CvHaarClassifier, - &_swigt__p_CvHaarClassifierCascade, - &_swigt__p_CvHaarFeature, - &_swigt__p_CvHaarFeature_rect, - &_swigt__p_CvHaarStageClassifier, - &_swigt__p_CvHidHaarClassifierCascade, - &_swigt__p_CvHistogram, - &_swigt__p_CvHuMoments, - &_swigt__p_CvImage, - &_swigt__p_CvKalman, - &_swigt__p_CvLSH, - &_swigt__p_CvLSHOperations, - &_swigt__p_CvLineIterator, - &_swigt__p_CvMSERParams, - &_swigt__p_CvMat, - &_swigt__p_CvMatND, - &_swigt__p_CvMatND_data, - &_swigt__p_CvMatND_dim, - &_swigt__p_CvMat_data, - &_swigt__p_CvMatrix, - &_swigt__p_CvMatrix3, - &_swigt__p_CvMemBlock, - &_swigt__p_CvMemStorage, - &_swigt__p_CvMemStoragePos, - &_swigt__p_CvModule, - &_swigt__p_CvModuleInfo, - &_swigt__p_CvMoments, - &_swigt__p_CvNArrayIterator, - &_swigt__p_CvNextEdgeType, - &_swigt__p_CvPOSITObject, - &_swigt__p_CvPluginFuncInfo, - &_swigt__p_CvPoint, - &_swigt__p_CvPoint2D32f, - &_swigt__p_CvPoint2D64f, - &_swigt__p_CvPoint3D32f, - &_swigt__p_CvPoint3D64f, - &_swigt__p_CvQuadEdge2D, - &_swigt__p_CvRNG_Wrapper, - &_swigt__p_CvRandState, - &_swigt__p_CvRect, - &_swigt__p_CvSURFParams, - &_swigt__p_CvSURFPoint, - &_swigt__p_CvScalar, - &_swigt__p_CvSeq, - &_swigt__p_CvSeqBlock, - &_swigt__p_CvSeqReader, - &_swigt__p_CvSeqWriter, - &_swigt__p_CvSet, - &_swigt__p_CvSetElem, - &_swigt__p_CvSize, - &_swigt__p_CvSize2D32f, - &_swigt__p_CvSlice, - &_swigt__p_CvSparseMat, - &_swigt__p_CvSparseMatIterator, - &_swigt__p_CvSparseNode, - &_swigt__p_CvStarDetectorParams, - &_swigt__p_CvStarKeypoint, - &_swigt__p_CvStereoBMState, - &_swigt__p_CvStereoGCState, - &_swigt__p_CvString, - &_swigt__p_CvStringHashNode, - &_swigt__p_CvSubdiv2D, - &_swigt__p_CvSubdiv2DEdge_Wrapper, - &_swigt__p_CvSubdiv2DPoint, - &_swigt__p_CvSubdiv2DPointLocation, - &_swigt__p_CvTermCriteria, - &_swigt__p_CvTreeNodeIterator, - &_swigt__p_CvTupleT_CvPoint_2_t, - &_swigt__p_CvTupleT_float_2_t, - &_swigt__p_CvTupleT_float_3_t, - &_swigt__p_CvType, - &_swigt__p_CvTypeInfo, - &_swigt__p_CvTypedSeqT_CvConnectedComp_t, - &_swigt__p_CvTypedSeqT_CvPoint2D32f_t, - &_swigt__p_CvTypedSeqT_CvPoint_t, - &_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, - &_swigt__p_CvTypedSeqT_CvRect_t, - &_swigt__p_CvTypedSeqT_CvSeq_p_t, - &_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, - &_swigt__p__CvContourScanner, - &_swigt__p__IplConvKernel, - &_swigt__p__IplConvKernelFP, - &_swigt__p__IplImage, - &_swigt__p__IplROI, - &_swigt__p__IplTileInfo, - &_swigt__p_a_2__float, - &_swigt__p_a_2__signed_char, - &_swigt__p_a_3__float, - &_swigt__p_allocator_type, - &_swigt__p_char, - &_swigt__p_difference_type, - &_swigt__p_double, - &_swigt__p_f_int_int_int_int_int__p__IplROI, - &_swigt__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage, - &_swigt__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int, - &_swigt__p_f_p_CvFileStorage_p_CvFileNode__p_void, - &_swigt__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void, - &_swigt__p_f_p__IplImage_int__void, - &_swigt__p_f_p__IplImage_int_int__void, - &_swigt__p_f_p_p_void__void, - &_swigt__p_f_p_q_const__IplImage__p__IplImage, - &_swigt__p_f_p_q_const__char_int__p_CvMat, - &_swigt__p_f_p_q_const__char_int__p__IplImage, - &_swigt__p_f_p_q_const__char_p_q_const__void__void, - &_swigt__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int, - &_swigt__p_f_p_q_const__float_p_q_const__float_p_void__float, - &_swigt__p_f_p_q_const__void__int, - &_swigt__p_f_p_q_const__void__p_void, - &_swigt__p_f_p_q_const__void_p_q_const__void_p_void__int, - &_swigt__p_f_p_void_p_void__int, - &_swigt__p_f_size_t_p_void__p_void, - &_swigt__p_float, - &_swigt__p_int, - &_swigt__p_int64_t, - &_swigt__p_p_CvFileStorage, - &_swigt__p_p_CvGraphEdge, - &_swigt__p_p_CvGraphVtx, - &_swigt__p_p_CvHistogram, - &_swigt__p_p_CvLSH, - &_swigt__p_p_CvMat, - &_swigt__p_p_CvMatND, - &_swigt__p_p_CvPOSITObject, - &_swigt__p_p_CvPoint, - &_swigt__p_p_CvSeq, - &_swigt__p_p_CvSeqBlock, - &_swigt__p_p_CvSetElem, - &_swigt__p_p_CvStereoBMState, - &_swigt__p_p_CvStereoGCState, - &_swigt__p_p_CvSubdiv2DPoint, - &_swigt__p_p_CvTypedSeqT_CvConnectedComp_t, - &_swigt__p_p_CvTypedSeqT_CvPoint2D32f_t, - &_swigt__p_p_CvTypedSeqT_CvPoint_t, - &_swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t, - &_swigt__p_p_CvTypedSeqT_CvRect_t, - &_swigt__p_p_CvTypedSeqT_CvSeq_p_t, - &_swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - &_swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, - &_swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, - &_swigt__p_p_PyObject, - &_swigt__p_p__CvContourScanner, - &_swigt__p_p__IplImage, - &_swigt__p_p_char, - &_swigt__p_p_float, - &_swigt__p_p_p_CvMat, - &_swigt__p_p_unsigned_char, - &_swigt__p_p_void, - &_swigt__p_short, - &_swigt__p_signed_char, - &_swigt__p_size_t, - &_swigt__p_size_type, - &_swigt__p_std__invalid_argument, - &_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, - &_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, - &_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, - &_swigt__p_std__vectorT_float_std__allocatorT_float_t_t, - &_swigt__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, - &_swigt__p_swig__SwigPyIterator, - &_swigt__p_uint64_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_int, - &_swigt__p_unsigned_short, - &_swigt__p_value_type, - &_swigt__p_void, -}; - -static swig_cast_info _swigc__p_Cv32suf[] = { {&_swigt__p_Cv32suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv64suf[] = { {&_swigt__p_Cv64suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAttrList[] = { {&_swigt__p_CvAttrList, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAvgComp[] = { {&_swigt__p_CvAvgComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBox2D[] = { {&_swigt__p_CvBox2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChain[] = { {&_swigt__p_CvChain, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChainPtReader[] = { {&_swigt__p_CvChainPtReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConDensation[] = { {&_swigt__p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConnectedComp[] = { {&_swigt__p_CvConnectedComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContour[] = { {&_swigt__p_CvContour, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContourTree[] = { {&_swigt__p_CvContourTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConvexityDefect[] = { {&_swigt__p_CvConvexityDefect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFeatureTree[] = { {&_swigt__p_CvFeatureTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode[] = { {&_swigt__p_CvFileNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode_data[] = { {&_swigt__p_CvFileNode_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileStorage[] = { {&_swigt__p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFilter[] = { {&_swigt__p_CvFilter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFont[] = { {&_swigt__p_CvFont, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGenericHash[] = { {&_swigt__p_CvGenericHash, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraph[] = { {&_swigt__p_CvGraph, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphEdge[] = { {&_swigt__p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphScanner[] = { {&_swigt__p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx[] = { {&_swigt__p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx2D[] = { {&_swigt__p_CvGraphVtx2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifier[] = { {&_swigt__p_CvHaarClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifierCascade[] = { {&_swigt__p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature[] = { {&_swigt__p_CvHaarFeature, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature_rect[] = { {&_swigt__p_CvHaarFeature_rect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarStageClassifier[] = { {&_swigt__p_CvHaarStageClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHidHaarClassifierCascade[] = { {&_swigt__p_CvHidHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHistogram[] = { {&_swigt__p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHuMoments[] = { {&_swigt__p_CvHuMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvImage[] = { {&_swigt__p_CvImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKalman[] = { {&_swigt__p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLSH[] = { {&_swigt__p_CvLSH, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLSHOperations[] = { {&_swigt__p_CvLSHOperations, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLineIterator[] = { {&_swigt__p_CvLineIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMSERParams[] = { {&_swigt__p_CvMSERParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat[] = { {&_swigt__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND[] = { {&_swigt__p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND_data[] = { {&_swigt__p_CvMatND_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND_dim[] = { {&_swigt__p_CvMatND_dim, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat_data[] = { {&_swigt__p_CvMat_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix[] = { {&_swigt__p_CvMatrix, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix3[] = { {&_swigt__p_CvMatrix3, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemBlock[] = { {&_swigt__p_CvMemBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStorage[] = { {&_swigt__p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStoragePos[] = { {&_swigt__p_CvMemStoragePos, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModule[] = { {&_swigt__p_CvModule, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModuleInfo[] = { {&_swigt__p_CvModuleInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMoments[] = { {&_swigt__p_CvMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNArrayIterator[] = { {&_swigt__p_CvNArrayIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNextEdgeType[] = { {&_swigt__p_CvNextEdgeType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPOSITObject[] = { {&_swigt__p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPluginFuncInfo[] = { {&_swigt__p_CvPluginFuncInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0, 0, 0}, {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D32f[] = { {&_swigt__p_CvPoint2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D64f[] = { {&_swigt__p_CvPoint2D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D32f[] = { {&_swigt__p_CvPoint3D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D64f[] = { {&_swigt__p_CvPoint3D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvQuadEdge2D[] = { {&_swigt__p_CvQuadEdge2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRNG_Wrapper[] = { {&_swigt__p_CvRNG_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRandState[] = { {&_swigt__p_CvRandState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRect[] = { {&_swigt__p_CvRect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFParams[] = { {&_swigt__p_CvSURFParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFPoint[] = { {&_swigt__p_CvSURFPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvScalar[] = { {&_swigt__p_CvScalar, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeq[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, _p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, _p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvRect_t, _p_CvTypedSeqT_CvRect_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint_t, _p_CvTypedSeqT_CvPoint_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, _p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvSeq_p_t, _p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, _p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvSeq, 0, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, _p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvConnectedComp_t, _p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqBlock[] = { {&_swigt__p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqReader[] = { {&_swigt__p_CvSeqReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqWriter[] = { {&_swigt__p_CvSeqWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSet[] = { {&_swigt__p_CvSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSetElem[] = { {&_swigt__p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize[] = { {&_swigt__p_CvSize, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize2D32f[] = { {&_swigt__p_CvSize2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSlice[] = { {&_swigt__p_CvSlice, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMat[] = { {&_swigt__p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMatIterator[] = { {&_swigt__p_CvSparseMatIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseNode[] = { {&_swigt__p_CvSparseNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarDetectorParams[] = { {&_swigt__p_CvStarDetectorParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarKeypoint[] = { {&_swigt__p_CvStarKeypoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoBMState[] = { {&_swigt__p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoGCState[] = { {&_swigt__p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvString[] = { {&_swigt__p_CvString, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStringHashNode[] = { {&_swigt__p_CvStringHashNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2D[] = { {&_swigt__p_CvSubdiv2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DEdge_Wrapper[] = { {&_swigt__p_CvSubdiv2DEdge_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPoint[] = { {&_swigt__p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPointLocation[] = { {&_swigt__p_CvSubdiv2DPointLocation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTermCriteria[] = { {&_swigt__p_CvTermCriteria, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTreeNodeIterator[] = { {&_swigt__p_CvTreeNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTupleT_CvPoint_2_t[] = { {&_swigt__p_CvTupleT_CvPoint_2_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTupleT_float_2_t[] = { {&_swigt__p_CvTupleT_float_2_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTupleT_float_3_t[] = { {&_swigt__p_CvTupleT_float_3_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvType[] = { {&_swigt__p_CvType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypeInfo[] = { {&_swigt__p_CvTypeInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvConnectedComp_t[] = { {&_swigt__p_CvTypedSeqT_CvConnectedComp_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint2D32f_t[] = { {&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint_t[] = { {&_swigt__p_CvTypedSeqT_CvPoint_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvQuadEdge2D_t[] = { {&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvRect_t[] = { {&_swigt__p_CvTypedSeqT_CvRect_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvSeq_p_t[] = { {&_swigt__p_CvTypedSeqT_CvSeq_p_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__CvContourScanner[] = { {&_swigt__p__CvContourScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernel[] = { {&_swigt__p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernelFP[] = { {&_swigt__p__IplConvKernelFP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplImage[] = { {&_swigt__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplROI[] = { {&_swigt__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplTileInfo[] = { {&_swigt__p__IplTileInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_a_2__float[] = { {&_swigt__p_a_2__float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_a_2__signed_char[] = { {&_swigt__p_a_2__signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_a_3__float[] = { {&_swigt__p_a_3__float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_allocator_type[] = { {&_swigt__p_allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_difference_type[] = { {&_swigt__p_difference_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_int_int_int_int__p__IplROI[] = { {&_swigt__p_f_int_int_int_int_int__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage[] = { {&_swigt__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int[] = { {&_swigt__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_CvFileStorage_p_CvFileNode__p_void[] = { {&_swigt__p_f_p_CvFileStorage_p_CvFileNode__p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void[] = { {&_swigt__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p__IplImage_int__void[] = { {&_swigt__p_f_p__IplImage_int__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p__IplImage_int_int__void[] = { {&_swigt__p_f_p__IplImage_int_int__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_p_void__void[] = { {&_swigt__p_f_p_p_void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__IplImage__p__IplImage[] = { {&_swigt__p_f_p_q_const__IplImage__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_int__p_CvMat[] = { {&_swigt__p_f_p_q_const__char_int__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_int__p__IplImage[] = { {&_swigt__p_f_p_q_const__char_int__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_p_q_const__void__void[] = { {&_swigt__p_f_p_q_const__char_p_q_const__void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int[] = { {&_swigt__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__float_p_q_const__float_p_void__float[] = { {&_swigt__p_f_p_q_const__float_p_q_const__float_p_void__float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__void__int[] = { {&_swigt__p_f_p_q_const__void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__void__p_void[] = { {&_swigt__p_f_p_q_const__void__p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_q_const__void_p_q_const__void_p_void__int[] = { {&_swigt__p_f_p_q_const__void_p_q_const__void_p_void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_p_void_p_void__int[] = { {&_swigt__p_f_p_void_p_void__int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_size_t_p_void__p_void[] = { {&_swigt__p_f_size_t_p_void__p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvFileStorage[] = { {&_swigt__p_p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvGraphEdge[] = { {&_swigt__p_p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvGraphVtx[] = { {&_swigt__p_p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvHistogram[] = { {&_swigt__p_p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvLSH[] = { {&_swigt__p_p_CvLSH, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMat[] = { {&_swigt__p_p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMatND[] = { {&_swigt__p_p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvPOSITObject[] = { {&_swigt__p_p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvPoint[] = { {&_swigt__p_p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t[] = {{&_swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvTupleT_float_2_t_t[] = {{&_swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvRect_t[] = {{&_swigt__p_p_CvTypedSeqT_CvRect_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvPoint_t[] = {{&_swigt__p_p_CvTypedSeqT_CvPoint_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvQuadEdge2D_t[] = {{&_swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvSeq_p_t[] = {{&_swigt__p_p_CvTypedSeqT_CvSeq_p_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvPoint2D32f_t[] = {{&_swigt__p_p_CvTypedSeqT_CvPoint2D32f_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvTupleT_float_3_t_t[] = {{&_swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvTypedSeqT_CvConnectedComp_t[] = {{&_swigt__p_p_CvTypedSeqT_CvConnectedComp_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSeq[] = { {&_swigt__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, _p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, _p_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvRect_t, _p_p_CvTypedSeqT_CvRect_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvPoint_t, _p_p_CvTypedSeqT_CvPoint_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvQuadEdge2D_t, _p_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvSeq_p_t, _p_p_CvTypedSeqT_CvSeq_p_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvPoint2D32f_t, _p_p_CvTypedSeqT_CvPoint2D32f_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvSeq, 0, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, _p_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_p_CvSeq, 0, 0}, {&_swigt__p_p_CvTypedSeqT_CvConnectedComp_t, _p_p_CvTypedSeqT_CvConnectedComp_tTo_p_p_CvSeq, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSeqBlock[] = { {&_swigt__p_p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSetElem[] = { {&_swigt__p_p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvStereoBMState[] = { {&_swigt__p_p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvStereoGCState[] = { {&_swigt__p_p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvSubdiv2DPoint[] = { {&_swigt__p_p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_PyObject[] = { {&_swigt__p_p_PyObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p__CvContourScanner[] = { {&_swigt__p_p__CvContourScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p__IplImage[] = { {&_swigt__p_p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_float[] = { {&_swigt__p_p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_p_CvMat[] = { {&_swigt__p_p_p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_unsigned_char[] = { {&_swigt__p_p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_void[] = { {&_swigt__p_p_void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_short[] = { {&_swigt__p_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_type[] = { {&_swigt__p_size_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__invalid_argument[] = { {&_swigt__p_std__invalid_argument, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type[] = { {&_swigt__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, 0, 0, 0}, {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_float_std__allocatorT_float_t_t[] = { {&_swigt__p_std__vectorT_float_std__allocatorT_float_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type[] = { {&_swigt__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_swig__SwigPyIterator[] = { {&_swigt__p_swig__SwigPyIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_int[] = { {&_swigt__p_unsigned_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_value_type[] = { {&_swigt__p_value_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; - -static swig_cast_info *swig_cast_initial[] = { - _swigc__p_Cv32suf, - _swigc__p_Cv64suf, - _swigc__p_CvAttrList, - _swigc__p_CvAvgComp, - _swigc__p_CvBox2D, - _swigc__p_CvChain, - _swigc__p_CvChainPtReader, - _swigc__p_CvConDensation, - _swigc__p_CvConnectedComp, - _swigc__p_CvContour, - _swigc__p_CvContourTree, - _swigc__p_CvConvexityDefect, - _swigc__p_CvFeatureTree, - _swigc__p_CvFileNode, - _swigc__p_CvFileNode_data, - _swigc__p_CvFileStorage, - _swigc__p_CvFilter, - _swigc__p_CvFont, - _swigc__p_CvGenericHash, - _swigc__p_CvGraph, - _swigc__p_CvGraphEdge, - _swigc__p_CvGraphScanner, - _swigc__p_CvGraphVtx, - _swigc__p_CvGraphVtx2D, - _swigc__p_CvHaarClassifier, - _swigc__p_CvHaarClassifierCascade, - _swigc__p_CvHaarFeature, - _swigc__p_CvHaarFeature_rect, - _swigc__p_CvHaarStageClassifier, - _swigc__p_CvHidHaarClassifierCascade, - _swigc__p_CvHistogram, - _swigc__p_CvHuMoments, - _swigc__p_CvImage, - _swigc__p_CvKalman, - _swigc__p_CvLSH, - _swigc__p_CvLSHOperations, - _swigc__p_CvLineIterator, - _swigc__p_CvMSERParams, - _swigc__p_CvMat, - _swigc__p_CvMatND, - _swigc__p_CvMatND_data, - _swigc__p_CvMatND_dim, - _swigc__p_CvMat_data, - _swigc__p_CvMatrix, - _swigc__p_CvMatrix3, - _swigc__p_CvMemBlock, - _swigc__p_CvMemStorage, - _swigc__p_CvMemStoragePos, - _swigc__p_CvModule, - _swigc__p_CvModuleInfo, - _swigc__p_CvMoments, - _swigc__p_CvNArrayIterator, - _swigc__p_CvNextEdgeType, - _swigc__p_CvPOSITObject, - _swigc__p_CvPluginFuncInfo, - _swigc__p_CvPoint, - _swigc__p_CvPoint2D32f, - _swigc__p_CvPoint2D64f, - _swigc__p_CvPoint3D32f, - _swigc__p_CvPoint3D64f, - _swigc__p_CvQuadEdge2D, - _swigc__p_CvRNG_Wrapper, - _swigc__p_CvRandState, - _swigc__p_CvRect, - _swigc__p_CvSURFParams, - _swigc__p_CvSURFPoint, - _swigc__p_CvScalar, - _swigc__p_CvSeq, - _swigc__p_CvSeqBlock, - _swigc__p_CvSeqReader, - _swigc__p_CvSeqWriter, - _swigc__p_CvSet, - _swigc__p_CvSetElem, - _swigc__p_CvSize, - _swigc__p_CvSize2D32f, - _swigc__p_CvSlice, - _swigc__p_CvSparseMat, - _swigc__p_CvSparseMatIterator, - _swigc__p_CvSparseNode, - _swigc__p_CvStarDetectorParams, - _swigc__p_CvStarKeypoint, - _swigc__p_CvStereoBMState, - _swigc__p_CvStereoGCState, - _swigc__p_CvString, - _swigc__p_CvStringHashNode, - _swigc__p_CvSubdiv2D, - _swigc__p_CvSubdiv2DEdge_Wrapper, - _swigc__p_CvSubdiv2DPoint, - _swigc__p_CvSubdiv2DPointLocation, - _swigc__p_CvTermCriteria, - _swigc__p_CvTreeNodeIterator, - _swigc__p_CvTupleT_CvPoint_2_t, - _swigc__p_CvTupleT_float_2_t, - _swigc__p_CvTupleT_float_3_t, - _swigc__p_CvType, - _swigc__p_CvTypeInfo, - _swigc__p_CvTypedSeqT_CvConnectedComp_t, - _swigc__p_CvTypedSeqT_CvPoint2D32f_t, - _swigc__p_CvTypedSeqT_CvPoint_t, - _swigc__p_CvTypedSeqT_CvQuadEdge2D_t, - _swigc__p_CvTypedSeqT_CvRect_t, - _swigc__p_CvTypedSeqT_CvSeq_p_t, - _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t, - _swigc__p__CvContourScanner, - _swigc__p__IplConvKernel, - _swigc__p__IplConvKernelFP, - _swigc__p__IplImage, - _swigc__p__IplROI, - _swigc__p__IplTileInfo, - _swigc__p_a_2__float, - _swigc__p_a_2__signed_char, - _swigc__p_a_3__float, - _swigc__p_allocator_type, - _swigc__p_char, - _swigc__p_difference_type, - _swigc__p_double, - _swigc__p_f_int_int_int_int_int__p__IplROI, - _swigc__p_f_int_int_int_p_char_p_char_int_int_int_int_int_p_IplROI_p_IplImage_p_void_p_IplTileInfo__p__IplImage, - _swigc__p_f_int_p_q_const__char_p_q_const__char_p_q_const__char_int_p_void__int, - _swigc__p_f_p_CvFileStorage_p_CvFileNode__p_void, - _swigc__p_f_p_CvFileStorage_p_q_const__char_p_q_const__void_CvAttrList__void, - _swigc__p_f_p__IplImage_int__void, - _swigc__p_f_p__IplImage_int_int__void, - _swigc__p_f_p_p_void__void, - _swigc__p_f_p_q_const__IplImage__p__IplImage, - _swigc__p_f_p_q_const__char_int__p_CvMat, - _swigc__p_f_p_q_const__char_int__p__IplImage, - _swigc__p_f_p_q_const__char_p_q_const__void__void, - _swigc__p_f_p_q_const__char_p_q_const__void_p_q_const__int__int, - _swigc__p_f_p_q_const__float_p_q_const__float_p_void__float, - _swigc__p_f_p_q_const__void__int, - _swigc__p_f_p_q_const__void__p_void, - _swigc__p_f_p_q_const__void_p_q_const__void_p_void__int, - _swigc__p_f_p_void_p_void__int, - _swigc__p_f_size_t_p_void__p_void, - _swigc__p_float, - _swigc__p_int, - _swigc__p_int64_t, - _swigc__p_p_CvFileStorage, - _swigc__p_p_CvGraphEdge, - _swigc__p_p_CvGraphVtx, - _swigc__p_p_CvHistogram, - _swigc__p_p_CvLSH, - _swigc__p_p_CvMat, - _swigc__p_p_CvMatND, - _swigc__p_p_CvPOSITObject, - _swigc__p_p_CvPoint, - _swigc__p_p_CvSeq, - _swigc__p_p_CvSeqBlock, - _swigc__p_p_CvSetElem, - _swigc__p_p_CvStereoBMState, - _swigc__p_p_CvStereoGCState, - _swigc__p_p_CvSubdiv2DPoint, - _swigc__p_p_CvTypedSeqT_CvConnectedComp_t, - _swigc__p_p_CvTypedSeqT_CvPoint2D32f_t, - _swigc__p_p_CvTypedSeqT_CvPoint_t, - _swigc__p_p_CvTypedSeqT_CvQuadEdge2D_t, - _swigc__p_p_CvTypedSeqT_CvRect_t, - _swigc__p_p_CvTypedSeqT_CvSeq_p_t, - _swigc__p_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - _swigc__p_p_CvTypedSeqT_CvTupleT_float_2_t_t, - _swigc__p_p_CvTypedSeqT_CvTupleT_float_3_t_t, - _swigc__p_p_PyObject, - _swigc__p_p__CvContourScanner, - _swigc__p_p__IplImage, - _swigc__p_p_char, - _swigc__p_p_float, - _swigc__p_p_p_CvMat, - _swigc__p_p_unsigned_char, - _swigc__p_p_void, - _swigc__p_short, - _swigc__p_signed_char, - _swigc__p_size_t, - _swigc__p_size_type, - _swigc__p_std__invalid_argument, - _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t, - _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__allocator_type, - _swigc__p_std__vectorT_CvPoint_std__allocatorT_CvPoint_t_t__value_type, - _swigc__p_std__vectorT_float_std__allocatorT_float_t_t, - _swigc__p_std__vectorT_float_std__allocatorT_float_t_t__allocator_type, - _swigc__p_swig__SwigPyIterator, - _swigc__p_uint64_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_int, - _swigc__p_unsigned_short, - _swigc__p_value_type, - _swigc__p_void, -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -static swig_const_info swig_const_table[] = { -{0, 0, 0, 0.0, 0, 0}}; - -#ifdef __cplusplus -} -#endif -/* ----------------------------------------------------------------------------- - * Type initialization: - * This problem is tough by the requirement that no dynamic - * memory is used. Also, since swig_type_info structures store pointers to - * swig_cast_info structures and swig_cast_info structures store pointers back - * to swig_type_info structures, we need some lookup code at initialization. - * The idea is that swig generates all the structures that are needed. - * The runtime then collects these partially filled structures. - * The SWIG_InitializeModule function takes these initial arrays out of - * swig_module, and does all the lookup, filling in the swig_module.types - * array with the correct data and linking the correct swig_cast_info - * structures together. - * - * The generated swig_type_info structures are assigned staticly to an initial - * array. We just loop through that array, and handle each type individually. - * First we lookup if this type has been already loaded, and if so, use the - * loaded structure instead of the generated one. Then we have to fill in the - * cast linked list. The cast data is initially stored in something like a - * two-dimensional array. Each row corresponds to a type (there are the same - * number of rows as there are in the swig_type_initial array). Each entry in - * a column is one of the swig_cast_info structures for that type. - * The cast_initial array is actually an array of arrays, because each row has - * a variable number of columns. So to actually build the cast linked list, - * we find the array of casts associated with the type, and loop through it - * adding the casts to the list. The one last trick we need to do is making - * sure the type pointer in the swig_cast_info struct is correct. - * - * First off, we lookup the cast->type name to see if it is already loaded. - * There are three cases to handle: - * 1) If the cast->type has already been loaded AND the type we are adding - * casting info to has not been loaded (it is in this module), THEN we - * replace the cast->type pointer with the type pointer that has already - * been loaded. - * 2) If BOTH types (the one we are adding casting info to, and the - * cast->type) are loaded, THEN the cast info has already been loaded by - * the previous module so we just ignore it. - * 3) Finally, if cast->type has not already been loaded, then we add that - * swig_cast_info to the linked list (because the cast->type) pointer will - * be correct. - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* c-mode */ -#endif -#endif - -#if 0 -#define SWIGRUNTIME_DEBUG -#endif - - -SWIGRUNTIME void -SWIG_InitializeModule(void *clientdata) { - size_t i; - swig_module_info *module_head, *iter; - int found, init; - - clientdata = clientdata; - - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next==0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (!module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - module_head = &swig_module; - } else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - found=0; - iter=module_head; - do { - if (iter==&swig_module) { - found=1; - break; - } - iter=iter->next; - } while (iter!= module_head); - - /* if the is found in the list, then all is done and we may leave */ - if (found) return; - /* otherwise we must add out module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpeters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) return; - - /* Now work on filling in swig_module.types */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %d\n", swig_module.size); -#endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info *type = 0; - swig_type_info *ret; - swig_cast_info *cast; - -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); -#endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } else { - /* Check for casting already in the list */ - swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (!ocast) ret = 0; - } - } - - if (!ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; - } - swig_module.types[i] = 0; - -#ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info *cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n",j); - } - printf("**** SWIG_InitializeModule: Cast List ******\n"); -#endif -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientData(void) { - size_t i; - swig_cast_info *equiv; - static int init_run = 0; - - if (init_run) return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (!equiv->converter) { - if (equiv->type && !equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } - } - } -} - -#ifdef __cplusplus -#if 0 -{ - /* c-mode */ -#endif -} -#endif - - - -#ifdef __cplusplus -extern "C" { -#endif - - /* Python-specific SWIG API */ -#define SWIG_newvarlink() SWIG_Python_newvarlink() -#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) -#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) - - /* ----------------------------------------------------------------------------- - * global variable support code. - * ----------------------------------------------------------------------------- */ - - typedef struct swig_globalvar { - char *name; /* Name of global variable */ - PyObject *(*get_attr)(void); /* Return the current value */ - int (*set_attr)(PyObject *); /* Set the value */ - struct swig_globalvar *next; - } swig_globalvar; - - typedef struct swig_varlinkobject { - PyObject_HEAD - swig_globalvar *vars; - } swig_varlinkobject; - - SWIGINTERN PyObject * - swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_InternFromString(""); -#else - return PyString_FromString(""); -#endif - } - - SWIGINTERN PyObject * - swig_varlink_str(swig_varlinkobject *v) { -#if PY_VERSION_HEX >= 0x03000000 - PyObject *str = PyUnicode_InternFromString("("); - PyObject *tail; - PyObject *joined; - swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - tail = PyUnicode_FromString(var->name); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - if (var->next) { - tail = PyUnicode_InternFromString(", "); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - } - } - tail = PyUnicode_InternFromString(")"); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; -#else - PyObject *str = PyString_FromString("("); - swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - PyString_ConcatAndDel(&str,PyString_FromString(var->name)); - if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); - } - PyString_ConcatAndDel(&str,PyString_FromString(")")); -#endif - return str; - } - - SWIGINTERN int - swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { - char *tmp; - PyObject *str = swig_varlink_str(v); - fprintf(fp,"Swig global variables "); - fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str)); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(str); - return 0; - } - - SWIGINTERN void - swig_varlink_dealloc(swig_varlinkobject *v) { - swig_globalvar *var = v->vars; - while (var) { - swig_globalvar *n = var->next; - free(var->name); - free(var); - var = n; - } - } - - SWIGINTERN PyObject * - swig_varlink_getattr(swig_varlinkobject *v, char *n) { - PyObject *res = NULL; - swig_globalvar *var = v->vars; - while (var) { - if (strcmp(var->name,n) == 0) { - res = (*var->get_attr)(); - break; - } - var = var->next; - } - if (res == NULL && !PyErr_Occurred()) { - PyErr_SetString(PyExc_NameError,"Unknown C global variable"); - } - return res; - } - - SWIGINTERN int - swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { - int res = 1; - swig_globalvar *var = v->vars; - while (var) { - if (strcmp(var->name,n) == 0) { - res = (*var->set_attr)(p); - break; - } - var = var->next; - } - if (res == 1 && !PyErr_Occurred()) { - PyErr_SetString(PyExc_NameError,"Unknown C global variable"); - } - return res; - } - - SWIGINTERN PyTypeObject* - swig_varlink_type(void) { - static char varlink__doc__[] = "Swig var link object"; - static PyTypeObject varlink_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* Number of items in variable part (ob_size) */ -#endif - (char *)"swigvarlink", /* Type name (tp_name) */ - sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ - 0, /* Itemsize (tp_itemsize) */ - (destructor) swig_varlink_dealloc, /* Deallocator (tp_dealloc) */ - (printfunc) swig_varlink_print, /* Print (tp_print) */ - (getattrfunc) swig_varlink_getattr, /* get attr (tp_getattr) */ - (setattrfunc) swig_varlink_setattr, /* Set attr (tp_setattr) */ - 0, /* tp_compare */ - (reprfunc) swig_varlink_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - 0, /* tp_hash */ - 0, /* tp_call */ - (reprfunc) swig_varlink_str, /* tp_str */ - 0, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - 0, /* tp_flags */ - varlink__doc__, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - varlink_type = tmp; - /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - varlink_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &varlink_type; - } - - /* Create a variable linking object for use later */ - SWIGINTERN PyObject * - SWIG_Python_newvarlink(void) { - swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); - if (result) { - result->vars = 0; - } - return ((PyObject*) result); - } - - SWIGINTERN void - SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { - swig_varlinkobject *v = (swig_varlinkobject *) p; - swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); - if (gv) { - size_t size = strlen(name)+1; - gv->name = (char *)malloc(size); - if (gv->name) { - strncpy(gv->name,name,size); - gv->get_attr = get_attr; - gv->set_attr = set_attr; - gv->next = v->vars; - } - } - v->vars = gv; - } - - SWIGINTERN PyObject * - SWIG_globals(void) { - static PyObject *_SWIG_globals = 0; - if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); - return _SWIG_globals; - } - - /* ----------------------------------------------------------------------------- - * constants/methods manipulation - * ----------------------------------------------------------------------------- */ - - /* Install Constants */ - SWIGINTERN void - SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { - PyObject *obj = 0; - size_t i; - for (i = 0; constants[i].type; ++i) { - switch(constants[i].type) { - case SWIG_PY_POINTER: - obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); - break; - case SWIG_PY_BINARY: - obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); - break; - default: - obj = 0; - break; - } - if (obj) { - PyDict_SetItemString(d, constants[i].name, obj); - Py_DECREF(obj); - } - } - } - - /* -----------------------------------------------------------------------------*/ - /* Fix SwigMethods to carry the callback ptrs when needed */ - /* -----------------------------------------------------------------------------*/ - - SWIGINTERN void - SWIG_Python_FixMethods(PyMethodDef *methods, - swig_const_info *const_table, - swig_type_info **types, - swig_type_info **types_initial) { - size_t i; - for (i = 0; methods[i].ml_name; ++i) { - const char *c = methods[i].ml_doc; - if (c && (c = strstr(c, "swig_ptr: "))) { - int j; - swig_const_info *ci = 0; - const char *name = c + 10; - for (j = 0; const_table[j].type; ++j) { - if (strncmp(const_table[j].name, name, - strlen(const_table[j].name)) == 0) { - ci = &(const_table[j]); - break; - } - } - if (ci) { - size_t shift = (ci->ptype) - types; - swig_type_info *ty = types_initial[shift]; - size_t ldoc = (c - methods[i].ml_doc); - size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; - char *ndoc = (char*)malloc(ldoc + lptr + 10); - if (ndoc) { - char *buff = ndoc; - void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; - if (ptr) { - strncpy(buff, methods[i].ml_doc, ldoc); - buff += ldoc; - strncpy(buff, "swig_ptr: ", 10); - buff += 10; - SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); - methods[i].ml_doc = ndoc; - } - } - } - } - } - } - -#ifdef __cplusplus -} -#endif - -/* -----------------------------------------------------------------------------* - * Partial Init method - * -----------------------------------------------------------------------------*/ - -#ifdef __cplusplus -extern "C" -#endif - -SWIGEXPORT -#if PY_VERSION_HEX >= 0x03000000 -PyObject* -#else -void -#endif -SWIG_init(void) { - PyObject *m, *d; -#if PY_VERSION_HEX >= 0x03000000 - static struct PyModuleDef SWIG_module = { - PyModuleDef_HEAD_INIT, - (char *) SWIG_name, - NULL, - -1, - SwigMethods, - NULL, - NULL, - NULL, - NULL - }; -#endif - - /* Fix SwigMethods to carry the callback ptrs when needed */ - SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); - -#if PY_VERSION_HEX >= 0x03000000 - m = PyModule_Create(&SWIG_module); -#else - m = Py_InitModule((char *) SWIG_name, SwigMethods); -#endif - d = PyModule_GetDict(m); - - SWIG_InitializeModule(0); - SWIG_InstallConstants(d,swig_const_table); - - - SWIG_Python_SetConstant(d, "sizeof_CvContour",SWIG_From_size_t(static_cast< size_t >(sizeof(CvContour)))); - SWIG_Python_SetConstant(d, "sizeof_CvPoint",SWIG_From_size_t(static_cast< size_t >(sizeof(CvPoint)))); - SWIG_Python_SetConstant(d, "sizeof_CvSeq",SWIG_From_size_t(static_cast< size_t >(sizeof(CvSeq)))); - SWIG_Python_SetConstant(d, "CV_AUTOSTEP",SWIG_From_int(static_cast< int >(0x7fffffff))); - SWIG_Python_SetConstant(d, "CV_MAX_ARR",SWIG_From_int(static_cast< int >(10))); - SWIG_Python_SetConstant(d, "CV_NO_DEPTH_CHECK",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_NO_CN_CHECK",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_NO_SIZE_CHECK",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_CMP_EQ",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_CMP_GT",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CMP_GE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CMP_LT",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_CMP_LE",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_CMP_NE",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_CHECK_RANGE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CHECK_QUIET",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_RAND_UNI",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_RAND_NORMAL",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_SORT_EVERY_ROW",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SORT_EVERY_COLUMN",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_SORT_ASCENDING",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SORT_DESCENDING",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_GEMM_A_T",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_GEMM_B_T",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_GEMM_C_T",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_SVD_MODIFY_A",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_SVD_U_T",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_SVD_V_T",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_LU",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SVD",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_SVD_SYM",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CHOLESKY",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_QR",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_NORMAL",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_COVAR_SCRAMBLED",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_COVAR_NORMAL",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_COVAR_USE_AVG",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_COVAR_SCALE",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_COVAR_ROWS",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_COVAR_COLS",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_PCA_DATA_AS_ROW",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_PCA_DATA_AS_COL",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_PCA_USE_AVG",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_C",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_L1",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_L2",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_NORM_MASK",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_RELATIVE",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_DIFF",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_MINMAX",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_DIFF_C",SWIG_From_int(static_cast< int >((16|1)))); - SWIG_Python_SetConstant(d, "CV_DIFF_L1",SWIG_From_int(static_cast< int >((16|2)))); - SWIG_Python_SetConstant(d, "CV_DIFF_L2",SWIG_From_int(static_cast< int >((16|4)))); - SWIG_Python_SetConstant(d, "CV_RELATIVE_C",SWIG_From_int(static_cast< int >((8|1)))); - SWIG_Python_SetConstant(d, "CV_RELATIVE_L1",SWIG_From_int(static_cast< int >((8|2)))); - SWIG_Python_SetConstant(d, "CV_RELATIVE_L2",SWIG_From_int(static_cast< int >((8|4)))); - SWIG_Python_SetConstant(d, "CV_REDUCE_SUM",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_REDUCE_AVG",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_REDUCE_MAX",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_REDUCE_MIN",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_DXT_FORWARD",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_DXT_INVERSE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_DXT_SCALE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_DXT_INV_SCALE",SWIG_From_int(static_cast< int >((1+2)))); - SWIG_Python_SetConstant(d, "CV_DXT_INVERSE_SCALE",SWIG_From_int(static_cast< int >((1+2)))); - SWIG_Python_SetConstant(d, "CV_DXT_ROWS",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_DXT_MUL_CONJ",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_FRONT",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_BACK",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_GRAPH_VERTEX",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_GRAPH_TREE_EDGE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_GRAPH_BACK_EDGE",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_GRAPH_FORWARD_EDGE",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_GRAPH_CROSS_EDGE",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_GRAPH_ANY_EDGE",SWIG_From_int(static_cast< int >(30))); - SWIG_Python_SetConstant(d, "CV_GRAPH_NEW_TREE",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_GRAPH_BACKTRACKING",SWIG_From_int(static_cast< int >(64))); - SWIG_Python_SetConstant(d, "CV_GRAPH_OVER",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_GRAPH_ALL_ITEMS",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_GRAPH_ITEM_VISITED_FLAG",SWIG_From_int(static_cast< int >((1 << 30)))); - SWIG_Python_SetConstant(d, "CV_GRAPH_SEARCH_TREE_NODE_FLAG",SWIG_From_int(static_cast< int >((1 << 29)))); - SWIG_Python_SetConstant(d, "CV_GRAPH_FORWARD_EDGE_FLAG",SWIG_From_int(static_cast< int >((1 << 28)))); - SWIG_Python_SetConstant(d, "CV_FILLED",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_AA",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_SIMPLEX",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_PLAIN",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_DUPLEX",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_COMPLEX",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_TRIPLEX",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_COMPLEX_SMALL",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_SCRIPT_SIMPLEX",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_FONT_HERSHEY_SCRIPT_COMPLEX",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_FONT_ITALIC",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_FONT_VECTOR0",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_KMEANS_USE_INITIAL_LABELS",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_ErrModeLeaf",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_ErrModeParent",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_ErrModeSilent",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_MAJOR_VERSION",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_MINOR_VERSION",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SUBMINOR_VERSION",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_PI",SWIG_From_double(static_cast< double >(3.1415926535897932384626433832795))); - SWIG_Python_SetConstant(d, "CV_LOG2",SWIG_From_double(static_cast< double >(0.69314718055994530941723212145818))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_SIGN",SWIG_From_int(static_cast< int >(0x80000000))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_1U",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_8U",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_16U",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_32F",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_8S",SWIG_From_int(static_cast< int >((0x80000000|8)))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_16S",SWIG_From_int(static_cast< int >((0x80000000|16)))); - SWIG_Python_SetConstant(d, "IPL_DEPTH_32S",SWIG_From_int(static_cast< int >((0x80000000|32)))); - SWIG_Python_SetConstant(d, "IPL_DATA_ORDER_PIXEL",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "IPL_DATA_ORDER_PLANE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "IPL_ORIGIN_TL",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "IPL_ORIGIN_BL",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "IPL_ALIGN_4BYTES",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "IPL_ALIGN_8BYTES",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "IPL_ALIGN_16BYTES",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "IPL_ALIGN_32BYTES",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "IPL_ALIGN_DWORD",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "IPL_ALIGN_QWORD",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "IPL_BORDER_CONSTANT",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "IPL_BORDER_REPLICATE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "IPL_BORDER_REFLECT",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "IPL_BORDER_WRAP",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "IPL_IMAGE_HEADER",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "IPL_IMAGE_DATA",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "IPL_IMAGE_ROI",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "IPL_BORDER_REFLECT_101",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_IMAGE",SWIG_FromCharPtr("opencv-image")); - SWIG_Python_SetConstant(d, "IPL_DEPTH_64F",SWIG_From_int(static_cast< int >(64))); - SWIG_Python_SetConstant(d, "CV_CN_MAX",SWIG_From_int(static_cast< int >(64))); - SWIG_Python_SetConstant(d, "CV_CN_SHIFT",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_DEPTH_MAX",SWIG_From_int(static_cast< int >((1 << 3)))); - SWIG_Python_SetConstant(d, "CV_8U",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_8S",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_16U",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_16S",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_32S",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_32F",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_64F",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_USRTYPE1",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_MAT_DEPTH_MASK",SWIG_From_int(static_cast< int >(((1 << 3) -1)))); - SWIG_Python_SetConstant(d, "CV_8UC1",SWIG_From_int(static_cast< int >((((0) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8UC2",SWIG_From_int(static_cast< int >((((0) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8UC3",SWIG_From_int(static_cast< int >((((0) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8UC4",SWIG_From_int(static_cast< int >((((0) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8SC1",SWIG_From_int(static_cast< int >((((1) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8SC2",SWIG_From_int(static_cast< int >((((1) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8SC3",SWIG_From_int(static_cast< int >((((1) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_8SC4",SWIG_From_int(static_cast< int >((((1) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16UC1",SWIG_From_int(static_cast< int >((((2) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16UC2",SWIG_From_int(static_cast< int >((((2) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16UC3",SWIG_From_int(static_cast< int >((((2) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16UC4",SWIG_From_int(static_cast< int >((((2) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16SC1",SWIG_From_int(static_cast< int >((((3) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16SC2",SWIG_From_int(static_cast< int >((((3) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16SC3",SWIG_From_int(static_cast< int >((((3) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_16SC4",SWIG_From_int(static_cast< int >((((3) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32SC1",SWIG_From_int(static_cast< int >((((4) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32SC2",SWIG_From_int(static_cast< int >((((4) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32SC3",SWIG_From_int(static_cast< int >((((4) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32SC4",SWIG_From_int(static_cast< int >((((4) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32FC1",SWIG_From_int(static_cast< int >((((5) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32FC2",SWIG_From_int(static_cast< int >((((5) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32FC3",SWIG_From_int(static_cast< int >((((5) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_32FC4",SWIG_From_int(static_cast< int >((((5) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_64FC1",SWIG_From_int(static_cast< int >((((6) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_64FC2",SWIG_From_int(static_cast< int >((((6) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_64FC3",SWIG_From_int(static_cast< int >((((6) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_64FC4",SWIG_From_int(static_cast< int >((((6) &((1 << 3) -1)) +(((4) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_AUTO_STEP",SWIG_From_int(static_cast< int >(0x7fffffff))); - SWIG_Python_SetConstant(d, "CV_MAT_CN_MASK",SWIG_From_int(static_cast< int >(((64-1) << 3)))); - SWIG_Python_SetConstant(d, "CV_MAT_TYPE_MASK",SWIG_From_int(static_cast< int >(((1 << 3) *64-1)))); - SWIG_Python_SetConstant(d, "CV_MAT_CONT_FLAG_SHIFT",SWIG_From_int(static_cast< int >(14))); - SWIG_Python_SetConstant(d, "CV_MAT_CONT_FLAG",SWIG_From_int(static_cast< int >((1 << 14)))); - SWIG_Python_SetConstant(d, "CV_MAT_TEMP_FLAG_SHIFT",SWIG_From_int(static_cast< int >(15))); - SWIG_Python_SetConstant(d, "CV_MAT_TEMP_FLAG",SWIG_From_int(static_cast< int >((1 << 15)))); - SWIG_Python_SetConstant(d, "CV_MAGIC_MASK",SWIG_From_int(static_cast< int >(0xFFFF0000))); - SWIG_Python_SetConstant(d, "CV_MAT_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42420000))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_MAT",SWIG_FromCharPtr("opencv-matrix")); - SWIG_Python_SetConstant(d, "CV_MATND_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42430000))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_MATND",SWIG_FromCharPtr("opencv-nd-matrix")); - SWIG_Python_SetConstant(d, "CV_MAX_DIM",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_MAX_DIM_HEAP",SWIG_From_int(static_cast< int >((1 << 16)))); - SWIG_Python_SetConstant(d, "CV_SPARSE_MAT_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42440000))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_SPARSE_MAT",SWIG_FromCharPtr("opencv-sparse-matrix")); - SWIG_Python_SetConstant(d, "CV_HIST_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42450000))); - SWIG_Python_SetConstant(d, "CV_HIST_UNIFORM_FLAG",SWIG_From_int(static_cast< int >((1 << 10)))); - SWIG_Python_SetConstant(d, "CV_HIST_RANGES_FLAG",SWIG_From_int(static_cast< int >((1 << 11)))); - SWIG_Python_SetConstant(d, "CV_HIST_ARRAY",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_HIST_SPARSE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_HIST_TREE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_HIST_UNIFORM",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_TERMCRIT_ITER",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_TERMCRIT_NUMBER",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_TERMCRIT_EPS",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_WHOLE_SEQ_END_INDEX",SWIG_From_int(static_cast< int >(0x3fffffff))); - SWIG_Python_SetConstant(d, "CV_STORAGE_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42890000))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_SEQ",SWIG_FromCharPtr("opencv-sequence")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_SEQ_TREE",SWIG_FromCharPtr("opencv-sequence-tree")); - SWIG_Python_SetConstant(d, "CV_SET_ELEM_IDX_MASK",SWIG_From_int(static_cast< int >(((1 << 26) -1)))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_GRAPH",SWIG_FromCharPtr("opencv-graph")); - SWIG_Python_SetConstant(d, "CV_SEQ_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42990000))); - SWIG_Python_SetConstant(d, "CV_SET_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42980000))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_BITS",SWIG_From_int(static_cast< int >(9))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_MASK",SWIG_From_int(static_cast< int >(((1 << 9) -1)))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_POINT",SWIG_From_int(static_cast< int >((((4) &((1 << 3) -1)) +(((2) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_CODE",SWIG_From_int(static_cast< int >((((0) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_GENERIC",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_PTR",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_PPOINT",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_INDEX",SWIG_From_int(static_cast< int >((((4) &((1 << 3) -1)) +(((1) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_GRAPH_EDGE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_GRAPH_VERTEX",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_TRIAN_ATR",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_CONNECTED_COMP",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SEQ_ELTYPE_POINT3D",SWIG_From_int(static_cast< int >((((5) &((1 << 3) -1)) +(((3) -1) << 3))))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_BITS",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_MASK",SWIG_From_int(static_cast< int >((((1 << 3) -1) << 9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_GENERIC",SWIG_From_int(static_cast< int >((0 << 9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_CURVE",SWIG_From_int(static_cast< int >((1 << 9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_BIN_TREE",SWIG_From_int(static_cast< int >((2 << 9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_GRAPH",SWIG_From_int(static_cast< int >((3 << 9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_KIND_SUBDIV2D",SWIG_From_int(static_cast< int >((4 << 9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_FLAG_SHIFT",SWIG_From_int(static_cast< int >((3+9)))); - SWIG_Python_SetConstant(d, "CV_SEQ_FLAG_CLOSED",SWIG_From_int(static_cast< int >((1 << (3+9))))); - SWIG_Python_SetConstant(d, "CV_SEQ_FLAG_SIMPLE",SWIG_From_int(static_cast< int >((2 << (3+9))))); - SWIG_Python_SetConstant(d, "CV_SEQ_FLAG_CONVEX",SWIG_From_int(static_cast< int >((4 << (3+9))))); - SWIG_Python_SetConstant(d, "CV_SEQ_FLAG_HOLE",SWIG_From_int(static_cast< int >((8 << (3+9))))); - SWIG_Python_SetConstant(d, "CV_GRAPH_FLAG_ORIENTED",SWIG_From_int(static_cast< int >((1 << (3+9))))); - SWIG_Python_SetConstant(d, "CV_GRAPH",SWIG_From_int(static_cast< int >((3 << 9)))); - SWIG_Python_SetConstant(d, "CV_ORIENTED_GRAPH",SWIG_From_int(static_cast< int >(((3 << 9)|(1 << (3+9)))))); - SWIG_Python_SetConstant(d, "CV_SEQ_POINT_SET",SWIG_From_int(static_cast< int >(((0 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3)))))); - SWIG_Python_SetConstant(d, "CV_SEQ_POINT3D_SET",SWIG_From_int(static_cast< int >(((0 << 9)|(((5) &((1 << 3) -1)) +(((3) -1) << 3)))))); - SWIG_Python_SetConstant(d, "CV_SEQ_POLYLINE",SWIG_From_int(static_cast< int >(((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3)))))); - SWIG_Python_SetConstant(d, "CV_SEQ_POLYGON",SWIG_From_int(static_cast< int >(((1 << (3+9))|((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3))))))); - SWIG_Python_SetConstant(d, "CV_SEQ_CONTOUR",SWIG_From_int(static_cast< int >(((1 << (3+9))|((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3))))))); - SWIG_Python_SetConstant(d, "CV_SEQ_SIMPLE_POLYGON",SWIG_From_int(static_cast< int >(((2 << (3+9))|((1 << (3+9))|((1 << 9)|(((4) &((1 << 3) -1)) +(((2) -1) << 3)))))))); - SWIG_Python_SetConstant(d, "CV_SEQ_CHAIN",SWIG_From_int(static_cast< int >(((1 << 9)|(((0) &((1 << 3) -1)) +(((1) -1) << 3)))))); - SWIG_Python_SetConstant(d, "CV_SEQ_CHAIN_CONTOUR",SWIG_From_int(static_cast< int >(((1 << (3+9))|((1 << 9)|(((0) &((1 << 3) -1)) +(((1) -1) << 3))))))); - SWIG_Python_SetConstant(d, "CV_SEQ_POLYGON_TREE",SWIG_From_int(static_cast< int >(((2 << 9)|0)))); - SWIG_Python_SetConstant(d, "CV_SEQ_CONNECTED_COMP",SWIG_From_int(static_cast< int >(((0 << 9)|0)))); - SWIG_Python_SetConstant(d, "CV_SEQ_INDEX",SWIG_From_int(static_cast< int >(((0 << 9)|(((4) &((1 << 3) -1)) +(((1) -1) << 3)))))); - SWIG_Python_SetConstant(d, "CV_STORAGE_READ",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_STORAGE_WRITE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_STORAGE_WRITE_TEXT",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_STORAGE_WRITE_BINARY",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_STORAGE_APPEND",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_NODE_NONE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_NODE_INT",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_NODE_INTEGER",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_NODE_REAL",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_NODE_FLOAT",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_NODE_STR",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_NODE_STRING",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_NODE_REF",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_NODE_SEQ",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_NODE_MAP",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_NODE_TYPE_MASK",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_NODE_FLOW",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_NODE_USER",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_NODE_EMPTY",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_NODE_NAMED",SWIG_From_int(static_cast< int >(64))); - SWIG_Python_SetConstant(d, "CV_NODE_SEQ_SIMPLE",SWIG_From_int(static_cast< int >(256))); - SWIG_Python_SetConstant(d, "CV_StsOk",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_StsBackTrace",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_StsError",SWIG_From_int(static_cast< int >(-2))); - SWIG_Python_SetConstant(d, "CV_StsInternal",SWIG_From_int(static_cast< int >(-3))); - SWIG_Python_SetConstant(d, "CV_StsNoMem",SWIG_From_int(static_cast< int >(-4))); - SWIG_Python_SetConstant(d, "CV_StsBadArg",SWIG_From_int(static_cast< int >(-5))); - SWIG_Python_SetConstant(d, "CV_StsBadFunc",SWIG_From_int(static_cast< int >(-6))); - SWIG_Python_SetConstant(d, "CV_StsNoConv",SWIG_From_int(static_cast< int >(-7))); - SWIG_Python_SetConstant(d, "CV_StsAutoTrace",SWIG_From_int(static_cast< int >(-8))); - SWIG_Python_SetConstant(d, "CV_HeaderIsNull",SWIG_From_int(static_cast< int >(-9))); - SWIG_Python_SetConstant(d, "CV_BadImageSize",SWIG_From_int(static_cast< int >(-10))); - SWIG_Python_SetConstant(d, "CV_BadOffset",SWIG_From_int(static_cast< int >(-11))); - SWIG_Python_SetConstant(d, "CV_BadDataPtr",SWIG_From_int(static_cast< int >(-12))); - SWIG_Python_SetConstant(d, "CV_BadStep",SWIG_From_int(static_cast< int >(-13))); - SWIG_Python_SetConstant(d, "CV_BadModelOrChSeq",SWIG_From_int(static_cast< int >(-14))); - SWIG_Python_SetConstant(d, "CV_BadNumChannels",SWIG_From_int(static_cast< int >(-15))); - SWIG_Python_SetConstant(d, "CV_BadNumChannel1U",SWIG_From_int(static_cast< int >(-16))); - SWIG_Python_SetConstant(d, "CV_BadDepth",SWIG_From_int(static_cast< int >(-17))); - SWIG_Python_SetConstant(d, "CV_BadAlphaChannel",SWIG_From_int(static_cast< int >(-18))); - SWIG_Python_SetConstant(d, "CV_BadOrder",SWIG_From_int(static_cast< int >(-19))); - SWIG_Python_SetConstant(d, "CV_BadOrigin",SWIG_From_int(static_cast< int >(-20))); - SWIG_Python_SetConstant(d, "CV_BadAlign",SWIG_From_int(static_cast< int >(-21))); - SWIG_Python_SetConstant(d, "CV_BadCallBack",SWIG_From_int(static_cast< int >(-22))); - SWIG_Python_SetConstant(d, "CV_BadTileSize",SWIG_From_int(static_cast< int >(-23))); - SWIG_Python_SetConstant(d, "CV_BadCOI",SWIG_From_int(static_cast< int >(-24))); - SWIG_Python_SetConstant(d, "CV_BadROISize",SWIG_From_int(static_cast< int >(-25))); - SWIG_Python_SetConstant(d, "CV_MaskIsTiled",SWIG_From_int(static_cast< int >(-26))); - SWIG_Python_SetConstant(d, "CV_StsNullPtr",SWIG_From_int(static_cast< int >(-27))); - SWIG_Python_SetConstant(d, "CV_StsVecLengthErr",SWIG_From_int(static_cast< int >(-28))); - SWIG_Python_SetConstant(d, "CV_StsFilterStructContentErr",SWIG_From_int(static_cast< int >(-29))); - SWIG_Python_SetConstant(d, "CV_StsKernelStructContentErr",SWIG_From_int(static_cast< int >(-30))); - SWIG_Python_SetConstant(d, "CV_StsFilterOffsetErr",SWIG_From_int(static_cast< int >(-31))); - SWIG_Python_SetConstant(d, "CV_StsBadSize",SWIG_From_int(static_cast< int >(-201))); - SWIG_Python_SetConstant(d, "CV_StsDivByZero",SWIG_From_int(static_cast< int >(-202))); - SWIG_Python_SetConstant(d, "CV_StsInplaceNotSupported",SWIG_From_int(static_cast< int >(-203))); - SWIG_Python_SetConstant(d, "CV_StsObjectNotFound",SWIG_From_int(static_cast< int >(-204))); - SWIG_Python_SetConstant(d, "CV_StsUnmatchedFormats",SWIG_From_int(static_cast< int >(-205))); - SWIG_Python_SetConstant(d, "CV_StsBadFlag",SWIG_From_int(static_cast< int >(-206))); - SWIG_Python_SetConstant(d, "CV_StsBadPoint",SWIG_From_int(static_cast< int >(-207))); - SWIG_Python_SetConstant(d, "CV_StsBadMask",SWIG_From_int(static_cast< int >(-208))); - SWIG_Python_SetConstant(d, "CV_StsUnmatchedSizes",SWIG_From_int(static_cast< int >(-209))); - SWIG_Python_SetConstant(d, "CV_StsUnsupportedFormat",SWIG_From_int(static_cast< int >(-210))); - SWIG_Python_SetConstant(d, "CV_StsOutOfRange",SWIG_From_int(static_cast< int >(-211))); - SWIG_Python_SetConstant(d, "CV_StsParseError",SWIG_From_int(static_cast< int >(-212))); - SWIG_Python_SetConstant(d, "CV_StsNotImplemented",SWIG_From_int(static_cast< int >(-213))); - SWIG_Python_SetConstant(d, "CV_StsBadMemBlock",SWIG_From_int(static_cast< int >(-214))); - SWIG_Python_SetConstant(d, "CV_StsAssert",SWIG_From_int(static_cast< int >(-215))); - SWIG_Python_SetConstant(d, "CV_BLUR_NO_SCALE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_BLUR",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_GAUSSIAN",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_MEDIAN",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_BILATERAL",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_INPAINT_NS",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_INPAINT_TELEA",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_SCHARR",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_MAX_SOBEL_KSIZE",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_BGR2BGRA",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_RGB2RGBA",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_BGRA2BGR",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_RGBA2RGB",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_BGR2RGBA",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_RGB2BGRA",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_RGBA2BGR",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_BGRA2RGB",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_BGR2RGB",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_RGB2BGR",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_BGRA2RGBA",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_RGBA2BGRA",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_BGR2GRAY",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_RGB2GRAY",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_GRAY2BGR",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_GRAY2RGB",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_GRAY2BGRA",SWIG_From_int(static_cast< int >(9))); - SWIG_Python_SetConstant(d, "CV_GRAY2RGBA",SWIG_From_int(static_cast< int >(9))); - SWIG_Python_SetConstant(d, "CV_BGRA2GRAY",SWIG_From_int(static_cast< int >(10))); - SWIG_Python_SetConstant(d, "CV_RGBA2GRAY",SWIG_From_int(static_cast< int >(11))); - SWIG_Python_SetConstant(d, "CV_BGR2BGR565",SWIG_From_int(static_cast< int >(12))); - SWIG_Python_SetConstant(d, "CV_RGB2BGR565",SWIG_From_int(static_cast< int >(13))); - SWIG_Python_SetConstant(d, "CV_BGR5652BGR",SWIG_From_int(static_cast< int >(14))); - SWIG_Python_SetConstant(d, "CV_BGR5652RGB",SWIG_From_int(static_cast< int >(15))); - SWIG_Python_SetConstant(d, "CV_BGRA2BGR565",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_RGBA2BGR565",SWIG_From_int(static_cast< int >(17))); - SWIG_Python_SetConstant(d, "CV_BGR5652BGRA",SWIG_From_int(static_cast< int >(18))); - SWIG_Python_SetConstant(d, "CV_BGR5652RGBA",SWIG_From_int(static_cast< int >(19))); - SWIG_Python_SetConstant(d, "CV_GRAY2BGR565",SWIG_From_int(static_cast< int >(20))); - SWIG_Python_SetConstant(d, "CV_BGR5652GRAY",SWIG_From_int(static_cast< int >(21))); - SWIG_Python_SetConstant(d, "CV_BGR2BGR555",SWIG_From_int(static_cast< int >(22))); - SWIG_Python_SetConstant(d, "CV_RGB2BGR555",SWIG_From_int(static_cast< int >(23))); - SWIG_Python_SetConstant(d, "CV_BGR5552BGR",SWIG_From_int(static_cast< int >(24))); - SWIG_Python_SetConstant(d, "CV_BGR5552RGB",SWIG_From_int(static_cast< int >(25))); - SWIG_Python_SetConstant(d, "CV_BGRA2BGR555",SWIG_From_int(static_cast< int >(26))); - SWIG_Python_SetConstant(d, "CV_RGBA2BGR555",SWIG_From_int(static_cast< int >(27))); - SWIG_Python_SetConstant(d, "CV_BGR5552BGRA",SWIG_From_int(static_cast< int >(28))); - SWIG_Python_SetConstant(d, "CV_BGR5552RGBA",SWIG_From_int(static_cast< int >(29))); - SWIG_Python_SetConstant(d, "CV_GRAY2BGR555",SWIG_From_int(static_cast< int >(30))); - SWIG_Python_SetConstant(d, "CV_BGR5552GRAY",SWIG_From_int(static_cast< int >(31))); - SWIG_Python_SetConstant(d, "CV_BGR2XYZ",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_RGB2XYZ",SWIG_From_int(static_cast< int >(33))); - SWIG_Python_SetConstant(d, "CV_XYZ2BGR",SWIG_From_int(static_cast< int >(34))); - SWIG_Python_SetConstant(d, "CV_XYZ2RGB",SWIG_From_int(static_cast< int >(35))); - SWIG_Python_SetConstant(d, "CV_BGR2YCrCb",SWIG_From_int(static_cast< int >(36))); - SWIG_Python_SetConstant(d, "CV_RGB2YCrCb",SWIG_From_int(static_cast< int >(37))); - SWIG_Python_SetConstant(d, "CV_YCrCb2BGR",SWIG_From_int(static_cast< int >(38))); - SWIG_Python_SetConstant(d, "CV_YCrCb2RGB",SWIG_From_int(static_cast< int >(39))); - SWIG_Python_SetConstant(d, "CV_BGR2HSV",SWIG_From_int(static_cast< int >(40))); - SWIG_Python_SetConstant(d, "CV_RGB2HSV",SWIG_From_int(static_cast< int >(41))); - SWIG_Python_SetConstant(d, "CV_BGR2Lab",SWIG_From_int(static_cast< int >(44))); - SWIG_Python_SetConstant(d, "CV_RGB2Lab",SWIG_From_int(static_cast< int >(45))); - SWIG_Python_SetConstant(d, "CV_BayerBG2BGR",SWIG_From_int(static_cast< int >(46))); - SWIG_Python_SetConstant(d, "CV_BayerGB2BGR",SWIG_From_int(static_cast< int >(47))); - SWIG_Python_SetConstant(d, "CV_BayerRG2BGR",SWIG_From_int(static_cast< int >(48))); - SWIG_Python_SetConstant(d, "CV_BayerGR2BGR",SWIG_From_int(static_cast< int >(49))); - SWIG_Python_SetConstant(d, "CV_BayerBG2RGB",SWIG_From_int(static_cast< int >(48))); - SWIG_Python_SetConstant(d, "CV_BayerGB2RGB",SWIG_From_int(static_cast< int >(49))); - SWIG_Python_SetConstant(d, "CV_BayerRG2RGB",SWIG_From_int(static_cast< int >(46))); - SWIG_Python_SetConstant(d, "CV_BayerGR2RGB",SWIG_From_int(static_cast< int >(47))); - SWIG_Python_SetConstant(d, "CV_BGR2Luv",SWIG_From_int(static_cast< int >(50))); - SWIG_Python_SetConstant(d, "CV_RGB2Luv",SWIG_From_int(static_cast< int >(51))); - SWIG_Python_SetConstant(d, "CV_BGR2HLS",SWIG_From_int(static_cast< int >(52))); - SWIG_Python_SetConstant(d, "CV_RGB2HLS",SWIG_From_int(static_cast< int >(53))); - SWIG_Python_SetConstant(d, "CV_HSV2BGR",SWIG_From_int(static_cast< int >(54))); - SWIG_Python_SetConstant(d, "CV_HSV2RGB",SWIG_From_int(static_cast< int >(55))); - SWIG_Python_SetConstant(d, "CV_Lab2BGR",SWIG_From_int(static_cast< int >(56))); - SWIG_Python_SetConstant(d, "CV_Lab2RGB",SWIG_From_int(static_cast< int >(57))); - SWIG_Python_SetConstant(d, "CV_Luv2BGR",SWIG_From_int(static_cast< int >(58))); - SWIG_Python_SetConstant(d, "CV_Luv2RGB",SWIG_From_int(static_cast< int >(59))); - SWIG_Python_SetConstant(d, "CV_HLS2BGR",SWIG_From_int(static_cast< int >(60))); - SWIG_Python_SetConstant(d, "CV_HLS2RGB",SWIG_From_int(static_cast< int >(61))); - SWIG_Python_SetConstant(d, "CV_COLORCVT_MAX",SWIG_From_int(static_cast< int >(100))); - SWIG_Python_SetConstant(d, "CV_INTER_NN",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_INTER_LINEAR",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_INTER_CUBIC",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_INTER_AREA",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_WARP_FILL_OUTLIERS",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_WARP_INVERSE_MAP",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_SHAPE_RECT",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_SHAPE_CROSS",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_SHAPE_ELLIPSE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_SHAPE_CUSTOM",SWIG_From_int(static_cast< int >(100))); - SWIG_Python_SetConstant(d, "CV_MOP_OPEN",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_MOP_CLOSE",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_MOP_GRADIENT",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_MOP_TOPHAT",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_MOP_BLACKHAT",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_TM_SQDIFF",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_TM_SQDIFF_NORMED",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_TM_CCORR",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_TM_CCORR_NORMED",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_TM_CCOEFF",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_TM_CCOEFF_NORMED",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_LKFLOW_PYR_A_READY",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_LKFLOW_PYR_B_READY",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_LKFLOW_INITIAL_GUESSES",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_LKFLOW_GET_MIN_EIGENVALS",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_POLY_APPROX_DP",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_DOMINANT_IPAN",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CONTOURS_MATCH_I1",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CONTOURS_MATCH_I2",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CONTOURS_MATCH_I3",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_CONTOUR_TREES_MATCH_I1",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CLOCKWISE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_COUNTER_CLOCKWISE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_COMP_CORREL",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_COMP_CHISQR",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_COMP_INTERSECT",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_COMP_BHATTACHARYYA",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_VALUE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_ARRAY",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_DIST_MASK_3",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_DIST_MASK_5",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_DIST_MASK_PRECISE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_THRESH_BINARY",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_THRESH_BINARY_INV",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_THRESH_TRUNC",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_THRESH_TOZERO",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_THRESH_TOZERO_INV",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_THRESH_MASK",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_THRESH_OTSU",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_ADAPTIVE_THRESH_MEAN_C",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_ADAPTIVE_THRESH_GAUSSIAN_C",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_FLOODFILL_FIXED_RANGE",SWIG_From_int(static_cast< int >((1 << 16)))); - SWIG_Python_SetConstant(d, "CV_FLOODFILL_MASK_ONLY",SWIG_From_int(static_cast< int >((1 << 17)))); - SWIG_Python_SetConstant(d, "CV_CANNY_L2_GRADIENT",SWIG_From_int(static_cast< int >((1 << 31)))); - SWIG_Python_SetConstant(d, "CV_HOUGH_STANDARD",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_HOUGH_PROBABILISTIC",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_HOUGH_MULTI_SCALE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_HOUGH_GRADIENT",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_HAAR_DO_CANNY_PRUNING",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_HAAR_SCALE_IMAGE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_HAAR_FIND_BIGGEST_OBJECT",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_HAAR_DO_ROUGH_SEARCH",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_LMEDS",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_RANSAC",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_CALIB_CB_ADAPTIVE_THRESH",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CALIB_CB_NORMALIZE_IMAGE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CALIB_CB_FILTER_QUADS",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_CALIB_USE_INTRINSIC_GUESS",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_ASPECT_RATIO",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_PRINCIPAL_POINT",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_CALIB_ZERO_TANGENT_DIST",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_FOCAL_LENGTH",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_K1",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_K2",SWIG_From_int(static_cast< int >(64))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_K3",SWIG_From_int(static_cast< int >(128))); - SWIG_Python_SetConstant(d, "CV_CALIB_FIX_INTRINSIC",SWIG_From_int(static_cast< int >(256))); - SWIG_Python_SetConstant(d, "CV_CALIB_SAME_FOCAL_LENGTH",SWIG_From_int(static_cast< int >(512))); - SWIG_Python_SetConstant(d, "CV_CALIB_ZERO_DISPARITY",SWIG_From_int(static_cast< int >(1024))); - SWIG_Python_SetConstant(d, "CV_FM_7POINT",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_FM_8POINT",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_FM_LMEDS_ONLY",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_FM_RANSAC_ONLY",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_FM_LMEDS",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_FM_RANSAC",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_STEREO_BM_NORMALIZED_RESPONSE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_STEREO_BM_BASIC",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_STEREO_BM_FISH_EYE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_STEREO_BM_NARROW",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_RETR_EXTERNAL",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_RETR_LIST",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_RETR_CCOMP",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_RETR_TREE",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_CHAIN_CODE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_CHAIN_APPROX_NONE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CHAIN_APPROX_SIMPLE",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CHAIN_APPROX_TC89_L1",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_CHAIN_APPROX_TC89_KCOS",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_LINK_RUNS",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_SUBDIV2D_VIRTUAL_POINT_FLAG",SWIG_From_int(static_cast< int >((1 << 30)))); - SWIG_Python_SetConstant(d, "CV_DIST_USER",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_DIST_L1",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_DIST_L2",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_DIST_C",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_DIST_L12",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_DIST_FAIR",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_DIST_WELSCH",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_DIST_HUBER",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_HAAR_MAGIC_VAL",SWIG_From_int(static_cast< int >(0x42500000))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_HAAR",SWIG_FromCharPtr("opencv-haar-classifier")); - SWIG_Python_SetConstant(d, "CV_HAAR_FEATURE_MAX",SWIG_From_int(static_cast< int >(3))); - PyDict_SetItemString(d,(char*)"cvar", SWIG_globals()); - SWIG_addvarlink(SWIG_globals(),(char*)"CvModule_first",Swig_var_CvModule_first_get, Swig_var_CvModule_first_set); - SWIG_addvarlink(SWIG_globals(),(char*)"CvModule_last",Swig_var_CvModule_last_get, Swig_var_CvModule_last_set); - SWIG_addvarlink(SWIG_globals(),(char*)"CvType_first",Swig_var_CvType_first_get, Swig_var_CvType_first_set); - SWIG_addvarlink(SWIG_globals(),(char*)"CvType_last",Swig_var_CvType_last_get, Swig_var_CvType_last_set); - SWIG_Python_SetConstant(d, "CV_PTLOC_ERROR",SWIG_From_int(static_cast< int >(CV_PTLOC_ERROR))); - SWIG_Python_SetConstant(d, "CV_PTLOC_OUTSIDE_RECT",SWIG_From_int(static_cast< int >(CV_PTLOC_OUTSIDE_RECT))); - SWIG_Python_SetConstant(d, "CV_PTLOC_INSIDE",SWIG_From_int(static_cast< int >(CV_PTLOC_INSIDE))); - SWIG_Python_SetConstant(d, "CV_PTLOC_VERTEX",SWIG_From_int(static_cast< int >(CV_PTLOC_VERTEX))); - SWIG_Python_SetConstant(d, "CV_PTLOC_ON_EDGE",SWIG_From_int(static_cast< int >(CV_PTLOC_ON_EDGE))); - SWIG_Python_SetConstant(d, "CV_NEXT_AROUND_ORG",SWIG_From_int(static_cast< int >(CV_NEXT_AROUND_ORG))); - SWIG_Python_SetConstant(d, "CV_NEXT_AROUND_DST",SWIG_From_int(static_cast< int >(CV_NEXT_AROUND_DST))); - SWIG_Python_SetConstant(d, "CV_PREV_AROUND_ORG",SWIG_From_int(static_cast< int >(CV_PREV_AROUND_ORG))); - SWIG_Python_SetConstant(d, "CV_PREV_AROUND_DST",SWIG_From_int(static_cast< int >(CV_PREV_AROUND_DST))); - SWIG_Python_SetConstant(d, "CV_NEXT_AROUND_LEFT",SWIG_From_int(static_cast< int >(CV_NEXT_AROUND_LEFT))); - SWIG_Python_SetConstant(d, "CV_NEXT_AROUND_RIGHT",SWIG_From_int(static_cast< int >(CV_NEXT_AROUND_RIGHT))); - SWIG_Python_SetConstant(d, "CV_PREV_AROUND_LEFT",SWIG_From_int(static_cast< int >(CV_PREV_AROUND_LEFT))); - SWIG_Python_SetConstant(d, "CV_PREV_AROUND_RIGHT",SWIG_From_int(static_cast< int >(CV_PREV_AROUND_RIGHT))); - SWIG_Python_SetConstant(d, "CV_GAUSSIAN_5x5",SWIG_From_int(static_cast< int >(CV_GAUSSIAN_5x5))); -#if PY_VERSION_HEX >= 0x03000000 - return m; -#else - return; -#endif -} - diff --git a/interfaces/swig/python/_highgui.cpp b/interfaces/swig/python/_highgui.cpp deleted file mode 100644 index c0ddcdc98..000000000 --- a/interfaces/swig/python/_highgui.cpp +++ /dev/null @@ -1,9429 +0,0 @@ -/* ---------------------------------------------------------------------------- - * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.40 - * - * This file is not intended to be easily readable and contains a number of - * coding conventions designed to improve portability and efficiency. Do not make - * changes to this file unless you know what you are doing--modify the SWIG - * interface file instead. - * ----------------------------------------------------------------------------- */ - -#define SWIGPYTHON -#define SWIG_PYTHON_DIRECTOR_NO_VTABLE - - -#ifdef __cplusplus -/* SwigValueWrapper is described in swig.swg */ -template class SwigValueWrapper { - struct SwigMovePointer { - T *ptr; - SwigMovePointer(T *p) : ptr(p) { } - ~SwigMovePointer() { delete ptr; } - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); -public: - SwigValueWrapper() : pointer(0) { } - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } - operator T&() const { return *pointer.ptr; } - T *operator&() { return pointer.ptr; } -}; - -template T SwigValueInit() { - return T(); -} -#endif - -/* ----------------------------------------------------------------------------- - * This section contains generic SWIG labels for method/variable - * declarations/attributes, and other compiler dependent labels. - * ----------------------------------------------------------------------------- */ - -/* template workaround for compilers that cannot correctly implement the C++ standard */ -#ifndef SWIGTEMPLATEDISAMBIGUATOR -# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -# define SWIGTEMPLATEDISAMBIGUATOR template -# elif defined(__HP_aCC) -/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ -/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -# define SWIGTEMPLATEDISAMBIGUATOR template -# else -# define SWIGTEMPLATEDISAMBIGUATOR -# endif -#endif - -/* inline attribute */ -#ifndef SWIGINLINE -# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -# else -# define SWIGINLINE -# endif -#endif - -/* attribute recognised by some compilers to avoid 'unused' warnings */ -#ifndef SWIGUNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -# elif defined(__ICC) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -#endif - -#ifndef SWIG_MSC_UNSUPPRESS_4505 -# if defined(_MSC_VER) -# pragma warning(disable : 4505) /* unreferenced local function has been removed */ -# endif -#endif - -#ifndef SWIGUNUSEDPARM -# ifdef __cplusplus -# define SWIGUNUSEDPARM(p) -# else -# define SWIGUNUSEDPARM(p) p SWIGUNUSED -# endif -#endif - -/* internal SWIG method */ -#ifndef SWIGINTERN -# define SWIGINTERN static SWIGUNUSED -#endif - -/* internal inline SWIG method */ -#ifndef SWIGINTERNINLINE -# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE -#endif - -/* exporting methods */ -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -# ifndef GCC_HASCLASSVISIBILITY -# define GCC_HASCLASSVISIBILITY -# endif -#endif - -#ifndef SWIGEXPORT -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if defined(STATIC_LINKED) -# define SWIGEXPORT -# else -# define SWIGEXPORT __declspec(dllexport) -# endif -# else -# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -# define SWIGEXPORT __attribute__ ((visibility("default"))) -# else -# define SWIGEXPORT -# endif -# endif -#endif - -/* calling conventions for Windows */ -#ifndef SWIGSTDCALL -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# define SWIGSTDCALL __stdcall -# else -# define SWIGSTDCALL -# endif -#endif - -/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) -# define _CRT_SECURE_NO_DEPRECATE -#endif - -/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) -# define _SCL_SECURE_NO_DEPRECATE -#endif - - - -/* Python.h has to appear first */ -#include - -/* ----------------------------------------------------------------------------- - * swigrun.swg - * - * This file contains generic C API SWIG runtime support for pointer - * type checking. - * ----------------------------------------------------------------------------- */ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "4" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -# define SWIG_QUOTE_STRING(x) #x -# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -# define SWIG_TYPE_TABLE_NAME -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the SWIG runtime code. - In 99.9% of the cases, SWIG just needs to declare them as 'static'. - - But only do this if strictly necessary, ie, if you have problems - with your compiler or suchlike. -*/ - -#ifndef SWIGRUNTIME -# define SWIGRUNTIME SWIGINTERN -#endif - -#ifndef SWIGRUNTIMEINLINE -# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -/* Generic buffer size */ -#ifndef SWIG_BUFFER_SIZE -# define SWIG_BUFFER_SIZE 1024 -#endif - -/* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 - -/* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 - - -/* - Flags/methods for returning states. - - The SWIG conversion methods, as ConvertPtr, return and integer - that tells if the conversion was successful or not. And if not, - an error code can be returned (see swigerrors.swg for the codes). - - Use the following macros/flags to set or process the returning - states. - - In old versions of SWIG, code such as the following was usually written: - - if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { - // success code - } else { - //fail code - } - - Now you can be more explicit: - - int res = SWIG_ConvertPtr(obj,vptr,ty.flags); - if (SWIG_IsOK(res)) { - // success code - } else { - // fail code - } - - which is the same really, but now you can also do - - Type *ptr; - int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); - if (SWIG_IsOK(res)) { - // success code - if (SWIG_IsNewObj(res) { - ... - delete *ptr; - } else { - ... - } - } else { - // fail code - } - - I.e., now SWIG_ConvertPtr can return new objects and you can - identify the case and take care of the deallocation. Of course that - also requires SWIG_ConvertPtr to return new result values, such as - - int SWIG_ConvertPtr(obj, ptr,...) { - if () { - if () { - *ptr = ; - return SWIG_NEWOBJ; - } else { - *ptr = ; - return SWIG_OLDOBJ; - } - } else { - return SWIG_BADOBJ; - } - } - - Of course, returning the plain '0(success)/-1(fail)' still works, but you can be - more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the - SWIG errors code. - - Finally, if the SWIG_CASTRANK_MODE is enabled, the result code - allows to return the 'cast rank', for example, if you have this - - int food(double) - int fooi(int); - - and you call - - food(1) // cast rank '1' (1 -> 1.0) - fooi(1) // cast rank '0' - - just use the SWIG_AddCast()/SWIG_CheckState() -*/ - -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) - -/* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) -/* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) -/* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) -/* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) -/* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) - -/* Cast-Rank Mode */ -#if defined(SWIG_CASTRANK_MODE) -# ifndef SWIG_TypeRank -# define SWIG_TypeRank unsigned long -# endif -# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -# define SWIG_MAXCASTRANK (2) -# endif -# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) -# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) { - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; -} -SWIGINTERNINLINE int SWIG_CheckState(int r) { - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; -} -#else /* no cast-rank mode */ -# define SWIG_AddCast -# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) -#endif - - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *, int *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -/* Structure to store information on one type */ -typedef struct swig_type_info { - const char *name; /* mangled name of this type */ - const char *str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info *cast; /* linked list of types that can cast into this type */ - void *clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ -} swig_type_info; - -/* Structure to store a type and conversion function used for casting */ -typedef struct swig_cast_info { - swig_type_info *type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info *next; /* pointer to next cast in linked list */ - struct swig_cast_info *prev; /* pointer to the previous cast */ -} swig_cast_info; - -/* Structure used to store module information - * Each module generates one structure like this, and the runtime collects - * all of these structures and stores them in a circularly linked list.*/ -typedef struct swig_module_info { - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info *next; /* Pointer to next element in circularly linked list */ - swig_type_info **type_initial; /* Array of initially generated type structures */ - swig_cast_info **cast_initial; /* Array of initially generated casting structures */ - void *clientdata; /* Language specific module data */ -} swig_module_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); -} - -/* - Check type equivalence in a name list like ||... - Return 0 if not equal, 1 if equal -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Check type equivalence in a name list like ||... - Return 0 if equal, -1 if nb < tb, 1 if nb > tb -*/ -SWIGRUNTIME int -SWIG_TypeCompare(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - - -/* - Check the typename -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (!type) return NULL; - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - swig_cast_info *cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - - while (cast) { - if (!cast->converter) { - swig_type_info *tc = cast->type; - if (!tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; - } -} -SWIGRUNTIME void -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; -} - -/* - Search for a swig_type_info structure only by mangled name - Search is a O(log #types) - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_MangledTypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - swig_module_info *iter = start; - do { - if (iter->size) { - register size_t l = 0; - register size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - register size_t i = (l + r) >> 1; - const char *iname = iter->types[i]->name; - if (iname) { - register int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } else if (compare < 0) { - if (i) { - r = i - 1; - } else { - break; - } - } else if (compare > 0) { - l = i + 1; - } - } else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; -} - -/* - Search for a swig_type_info structure for either a mangled name or a human readable name. - It first searches the mangled names of the types, which is a O(log #types) - If a type is not found it then searches the human readable names, which is O(#types). - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - /* STEP 1: Search the name field using binary search */ - swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info *iter = start; - do { - register size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } - - /* neither found a match */ - return 0; -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static const char hex[17] = "0123456789abcdef"; - register const unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register char d = *(c++); - register unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 - - - -/* Compatibility macros for Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - -#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type) -#define PyInt_Check(x) PyLong_Check(x) -#define PyInt_AsLong(x) PyLong_AsLong(x) -#define PyInt_FromLong(x) PyLong_FromLong(x) -#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) - -#endif - -#ifndef Py_TYPE -# define Py_TYPE(op) ((op)->ob_type) -#endif - -/* SWIG APIs for compatibility of both Python 2 & 3 */ - -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_Python_str_FromFormat PyUnicode_FromFormat -#else -# define SWIG_Python_str_FromFormat PyString_FromFormat -#endif - - -/* Warning: This function will allocate a new string in Python 3, - * so please call SWIG_Python_str_DelForPy3(x) to free the space. - */ -SWIGINTERN char* -SWIG_Python_str_AsChar(PyObject *str) -{ -#if PY_VERSION_HEX >= 0x03000000 - char *cstr; - char *newstr; - Py_ssize_t len; - str = PyUnicode_AsUTF8String(str); - PyBytes_AsStringAndSize(str, &cstr, &len); - newstr = (char *) malloc(len+1); - memcpy(newstr, cstr, len+1); - Py_XDECREF(str); - return newstr; -#else - return PyString_AsString(str); -#endif -} - -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) ) -#else -# define SWIG_Python_str_DelForPy3(x) -#endif - - -SWIGINTERN PyObject* -SWIG_Python_str_FromChar(const char *c) -{ -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromString(c); -#else - return PyString_FromString(c); -#endif -} - -/* Add PyOS_snprintf for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 -# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) -# define PyOS_snprintf _snprintf -# else -# define PyOS_snprintf snprintf -# endif -#endif - -/* A crude PyString_FromFormat implementation for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 - -#ifndef SWIG_PYBUFFER_SIZE -# define SWIG_PYBUFFER_SIZE 1024 -#endif - -static PyObject * -PyString_FromFormat(const char *fmt, ...) { - va_list ap; - char buf[SWIG_PYBUFFER_SIZE * 2]; - int res; - va_start(ap, fmt); - res = vsnprintf(buf, sizeof(buf), fmt, ap); - va_end(ap); - return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); -} -#endif - -/* Add PyObject_Del for old Pythons */ -#if PY_VERSION_HEX < 0x01060000 -# define PyObject_Del(op) PyMem_DEL((op)) -#endif -#ifndef PyObject_DEL -# define PyObject_DEL PyObject_Del -#endif - -/* A crude PyExc_StopIteration exception for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 -# ifndef PyExc_StopIteration -# define PyExc_StopIteration PyExc_RuntimeError -# endif -# ifndef PyObject_GenericGetAttr -# define PyObject_GenericGetAttr 0 -# endif -#endif - -/* Py_NotImplemented is defined in 2.1 and up. */ -#if PY_VERSION_HEX < 0x02010000 -# ifndef Py_NotImplemented -# define Py_NotImplemented PyExc_RuntimeError -# endif -#endif - -/* A crude PyString_AsStringAndSize implementation for old Pythons */ -#if PY_VERSION_HEX < 0x02010000 -# ifndef PyString_AsStringAndSize -# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} -# endif -#endif - -/* PySequence_Size for old Pythons */ -#if PY_VERSION_HEX < 0x02000000 -# ifndef PySequence_Size -# define PySequence_Size PySequence_Length -# endif -#endif - -/* PyBool_FromLong for old Pythons */ -#if PY_VERSION_HEX < 0x02030000 -static -PyObject *PyBool_FromLong(long ok) -{ - PyObject *result = ok ? Py_True : Py_False; - Py_INCREF(result); - return result; -} -#endif - -/* Py_ssize_t for old Pythons */ -/* This code is as recommended by: */ -/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ -#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) -typedef int Py_ssize_t; -# define PY_SSIZE_T_MAX INT_MAX -# define PY_SSIZE_T_MIN INT_MIN -#endif - -/* ----------------------------------------------------------------------------- - * error manipulation - * ----------------------------------------------------------------------------- */ - -SWIGRUNTIME PyObject* -SWIG_Python_ErrorType(int code) { - PyObject* type = 0; - switch(code) { - case SWIG_MemoryError: - type = PyExc_MemoryError; - break; - case SWIG_IOError: - type = PyExc_IOError; - break; - case SWIG_RuntimeError: - type = PyExc_RuntimeError; - break; - case SWIG_IndexError: - type = PyExc_IndexError; - break; - case SWIG_TypeError: - type = PyExc_TypeError; - break; - case SWIG_DivisionByZero: - type = PyExc_ZeroDivisionError; - break; - case SWIG_OverflowError: - type = PyExc_OverflowError; - break; - case SWIG_SyntaxError: - type = PyExc_SyntaxError; - break; - case SWIG_ValueError: - type = PyExc_ValueError; - break; - case SWIG_SystemError: - type = PyExc_SystemError; - break; - case SWIG_AttributeError: - type = PyExc_AttributeError; - break; - default: - type = PyExc_RuntimeError; - } - return type; -} - - -SWIGRUNTIME void -SWIG_Python_AddErrorMsg(const char* mesg) -{ - PyObject *type = 0; - PyObject *value = 0; - PyObject *traceback = 0; - - if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); - if (value) { - char *tmp; - PyObject *old_str = PyObject_Str(value); - PyErr_Clear(); - Py_XINCREF(type); - - PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - Py_DECREF(value); - } else { - PyErr_SetString(PyExc_RuntimeError, mesg); - } -} - -#if defined(SWIG_PYTHON_NO_THREADS) -# if defined(SWIG_PYTHON_THREADS) -# undef SWIG_PYTHON_THREADS -# endif -#endif -#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ -# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) -# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ -# define SWIG_PYTHON_USE_GIL -# endif -# endif -# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ -# ifndef SWIG_PYTHON_INITIALIZE_THREADS -# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() -# endif -# ifdef __cplusplus /* C++ code */ - class SWIG_Python_Thread_Block { - bool status; - PyGILState_STATE state; - public: - void end() { if (status) { PyGILState_Release(state); status = false;} } - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} - ~SWIG_Python_Thread_Block() { end(); } - }; - class SWIG_Python_Thread_Allow { - bool status; - PyThreadState *save; - public: - void end() { if (status) { PyEval_RestoreThread(save); status = false; }} - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} - ~SWIG_Python_Thread_Allow() { end(); } - }; -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block -# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow -# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() -# else /* C code */ -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() -# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() -# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) -# endif -# else /* Old thread way, not implemented, user must provide it */ -# if !defined(SWIG_PYTHON_INITIALIZE_THREADS) -# define SWIG_PYTHON_INITIALIZE_THREADS -# endif -# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK -# endif -# if !defined(SWIG_PYTHON_THREAD_END_BLOCK) -# define SWIG_PYTHON_THREAD_END_BLOCK -# endif -# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW -# endif -# if !defined(SWIG_PYTHON_THREAD_END_ALLOW) -# define SWIG_PYTHON_THREAD_END_ALLOW -# endif -# endif -#else /* No thread support */ -# define SWIG_PYTHON_INITIALIZE_THREADS -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK -# define SWIG_PYTHON_THREAD_END_BLOCK -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW -# define SWIG_PYTHON_THREAD_END_ALLOW -#endif - -/* ----------------------------------------------------------------------------- - * Python API portion that goes into the runtime - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* cc-mode */ -#endif -#endif - -/* ----------------------------------------------------------------------------- - * Constant declarations - * ----------------------------------------------------------------------------- */ - -/* Constant Types */ -#define SWIG_PY_POINTER 4 -#define SWIG_PY_BINARY 5 - -/* Constant information structure */ -typedef struct swig_const_info { - int type; - char *name; - long lvalue; - double dvalue; - void *pvalue; - swig_type_info **ptype; -} swig_const_info; - - -/* ----------------------------------------------------------------------------- - * Wrapper of PyInstanceMethod_New() used in Python 3 - * It is exported to the generated module, used for -fastproxy - * ----------------------------------------------------------------------------- */ -SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *self, PyObject *func) -{ -#if PY_VERSION_HEX >= 0x03000000 - return PyInstanceMethod_New(func); -#else - return NULL; -#endif -} - -#ifdef __cplusplus -#if 0 -{ /* cc-mode */ -#endif -} -#endif - - -/* ----------------------------------------------------------------------------- - * See the LICENSE file for information on copyright, usage and redistribution - * of SWIG, and the README file for authors - http://www.swig.org/release.html. - * - * pyrun.swg - * - * This file contains the runtime support for Python modules - * and includes code for managing global variables and pointer - * type checking. - * - * ----------------------------------------------------------------------------- */ - -/* Common SWIG API */ - -/* for raw pointers */ -#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags) -#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) -#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) -#define swig_owntype int - -/* for raw packed data */ -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) - -/* for class or struct pointers */ -#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) - -/* for C or C++ function pointers */ -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0) - -/* for C++ member pointers, ie, member methods */ -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) - - -/* Runtime API */ - -#define SWIG_GetModule(clientdata) SWIG_Python_GetModule() -#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) -#define SWIG_NewClientData(obj) SwigPyClientData_New(obj) - -#define SWIG_SetErrorObj SWIG_Python_SetErrorObj -#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg -#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) -#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) -#define SWIG_fail goto fail - - -/* Runtime API implementation */ - -/* Error manipulation */ - -SWIGINTERN void -SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetObject(errtype, obj); - Py_DECREF(obj); - SWIG_PYTHON_THREAD_END_BLOCK; -} - -SWIGINTERN void -SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetString(errtype, (char *) msg); - SWIG_PYTHON_THREAD_END_BLOCK; -} - -#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) - -/* Set a constant value */ - -SWIGINTERN void -SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { - PyDict_SetItemString(d, (char*) name, obj); - Py_DECREF(obj); -} - -/* Append a value to the result obj */ - -SWIGINTERN PyObject* -SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { -#if !defined(SWIG_PYTHON_OUTPUT_TUPLE) - if (!result) { - result = obj; - } else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } else { - if (!PyList_Check(result)) { - PyObject *o2 = result; - result = PyList_New(1); - PyList_SetItem(result, 0, o2); - } - PyList_Append(result,obj); - Py_DECREF(obj); - } - return result; -#else - PyObject* o2; - PyObject* o3; - if (!result) { - result = obj; - } else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } else { - if (!PyTuple_Check(result)) { - o2 = result; - result = PyTuple_New(1); - PyTuple_SET_ITEM(result, 0, o2); - } - o3 = PyTuple_New(1); - PyTuple_SET_ITEM(o3, 0, obj); - o2 = result; - result = PySequence_Concat(o2, o3); - Py_DECREF(o2); - Py_DECREF(o3); - } - return result; -#endif -} - -/* Unpack the argument tuple */ - -SWIGINTERN int -SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) -{ - if (!args) { - if (!min && !max) { - return 1; - } else { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", - name, (min == max ? "" : "at least "), (int)min); - return 0; - } - } - if (!PyTuple_Check(args)) { - PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); - return 0; - } else { - register Py_ssize_t l = PyTuple_GET_SIZE(args); - if (l < min) { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", - name, (min == max ? "" : "at least "), (int)min, (int)l); - return 0; - } else if (l > max) { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", - name, (min == max ? "" : "at most "), (int)max, (int)l); - return 0; - } else { - register int i; - for (i = 0; i < l; ++i) { - objs[i] = PyTuple_GET_ITEM(args, i); - } - for (; l < max; ++l) { - objs[l] = 0; - } - return i + 1; - } - } -} - -/* A functor is a function object with one single object argument */ -#if PY_VERSION_HEX >= 0x02020000 -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); -#else -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); -#endif - -/* - Helper for static pointer initialization for both C and C++ code, for example - static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); -*/ -#ifdef __cplusplus -#define SWIG_STATIC_POINTER(var) var -#else -#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var -#endif - -/* ----------------------------------------------------------------------------- - * Pointer declarations - * ----------------------------------------------------------------------------- */ - -/* Flags for new pointer objects */ -#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) -#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) - -#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* cc-mode */ -#endif -#endif - -/* How to access Py_None */ -#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# ifndef SWIG_PYTHON_NO_BUILD_NONE -# ifndef SWIG_PYTHON_BUILD_NONE -# define SWIG_PYTHON_BUILD_NONE -# endif -# endif -#endif - -#ifdef SWIG_PYTHON_BUILD_NONE -# ifdef Py_None -# undef Py_None -# define Py_None SWIG_Py_None() -# endif -SWIGRUNTIMEINLINE PyObject * -_SWIG_Py_None(void) -{ - PyObject *none = Py_BuildValue((char*)""); - Py_DECREF(none); - return none; -} -SWIGRUNTIME PyObject * -SWIG_Py_None(void) -{ - static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); - return none; -} -#endif - -/* The python void return value */ - -SWIGRUNTIMEINLINE PyObject * -SWIG_Py_Void(void) -{ - PyObject *none = Py_None; - Py_INCREF(none); - return none; -} - -/* SwigPyClientData */ - -typedef struct { - PyObject *klass; - PyObject *newraw; - PyObject *newargs; - PyObject *destroy; - int delargs; - int implicitconv; -} SwigPyClientData; - -SWIGRUNTIMEINLINE int -SWIG_Python_CheckImplicit(swig_type_info *ty) -{ - SwigPyClientData *data = (SwigPyClientData *)ty->clientdata; - return data ? data->implicitconv : 0; -} - -SWIGRUNTIMEINLINE PyObject * -SWIG_Python_ExceptionType(swig_type_info *desc) { - SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0; - PyObject *klass = data ? data->klass : 0; - return (klass ? klass : PyExc_RuntimeError); -} - - -SWIGRUNTIME SwigPyClientData * -SwigPyClientData_New(PyObject* obj) -{ - if (!obj) { - return 0; - } else { - SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData)); - /* the klass element */ - data->klass = obj; - Py_INCREF(data->klass); - /* the newraw method and newargs arguments used to create a new raw instance */ - if (PyClass_Check(obj)) { - data->newraw = 0; - data->newargs = obj; - Py_INCREF(obj); - } else { -#if (PY_VERSION_HEX < 0x02020000) - data->newraw = 0; -#else - data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); -#endif - if (data->newraw) { - Py_INCREF(data->newraw); - data->newargs = PyTuple_New(1); - PyTuple_SetItem(data->newargs, 0, obj); - } else { - data->newargs = obj; - } - Py_INCREF(data->newargs); - } - /* the destroy method, aka as the C++ delete method */ - data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); - if (PyErr_Occurred()) { - PyErr_Clear(); - data->destroy = 0; - } - if (data->destroy) { - int flags; - Py_INCREF(data->destroy); - flags = PyCFunction_GET_FLAGS(data->destroy); -#ifdef METH_O - data->delargs = !(flags & (METH_O)); -#else - data->delargs = 0; -#endif - } else { - data->delargs = 0; - } - data->implicitconv = 0; - return data; - } -} - -SWIGRUNTIME void -SwigPyClientData_Del(SwigPyClientData* data) -{ - Py_XDECREF(data->newraw); - Py_XDECREF(data->newargs); - Py_XDECREF(data->destroy); -} - -/* =============== SwigPyObject =====================*/ - -typedef struct { - PyObject_HEAD - void *ptr; - swig_type_info *ty; - int own; - PyObject *next; -} SwigPyObject; - -SWIGRUNTIME PyObject * -SwigPyObject_long(SwigPyObject *v) -{ - return PyLong_FromVoidPtr(v->ptr); -} - -SWIGRUNTIME PyObject * -SwigPyObject_format(const char* fmt, SwigPyObject *v) -{ - PyObject *res = NULL; - PyObject *args = PyTuple_New(1); - if (args) { - if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { - PyObject *ofmt = SWIG_Python_str_FromChar(fmt); - if (ofmt) { -#if PY_VERSION_HEX >= 0x03000000 - res = PyUnicode_Format(ofmt,args); -#else - res = PyString_Format(ofmt,args); -#endif - Py_DECREF(ofmt); - } - Py_DECREF(args); - } - } - return res; -} - -SWIGRUNTIME PyObject * -SwigPyObject_oct(SwigPyObject *v) -{ - return SwigPyObject_format("%o",v); -} - -SWIGRUNTIME PyObject * -SwigPyObject_hex(SwigPyObject *v) -{ - return SwigPyObject_format("%x",v); -} - -SWIGRUNTIME PyObject * -#ifdef METH_NOARGS -SwigPyObject_repr(SwigPyObject *v) -#else -SwigPyObject_repr(SwigPyObject *v, PyObject *args) -#endif -{ - const char *name = SWIG_TypePrettyName(v->ty); - PyObject *repr = SWIG_Python_str_FromFormat("", name, v); - if (v->next) { -#ifdef METH_NOARGS - PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next); -#else - PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args); -#endif -#if PY_VERSION_HEX >= 0x03000000 - PyObject *joined = PyUnicode_Concat(repr, nrep); - Py_DecRef(repr); - Py_DecRef(nrep); - repr = joined; -#else - PyString_ConcatAndDel(&repr,nrep); -#endif - } - return repr; -} - -SWIGRUNTIME int -SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) -{ - char *str; -#ifdef METH_NOARGS - PyObject *repr = SwigPyObject_repr(v); -#else - PyObject *repr = SwigPyObject_repr(v, NULL); -#endif - if (repr) { - str = SWIG_Python_str_AsChar(repr); - fputs(str, fp); - SWIG_Python_str_DelForPy3(str); - Py_DECREF(repr); - return 0; - } else { - return 1; - } -} - -SWIGRUNTIME PyObject * -SwigPyObject_str(SwigPyObject *v) -{ - char result[SWIG_BUFFER_SIZE]; - return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ? - SWIG_Python_str_FromChar(result) : 0; -} - -SWIGRUNTIME int -SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) -{ - void *i = v->ptr; - void *j = w->ptr; - return (i < j) ? -1 : ((i > j) ? 1 : 0); -} - -/* Added for Python 3.x, would it also be useful for Python 2.x? */ -SWIGRUNTIME PyObject* -SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op) -{ - PyObject* res; - if( op != Py_EQ && op != Py_NE ) { - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; - } - if( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ) - res = Py_True; - else - res = Py_False; - Py_INCREF(res); - return res; -} - - -SWIGRUNTIME PyTypeObject* _PySwigObject_type(void); - -SWIGRUNTIME PyTypeObject* -SwigPyObject_type(void) { - static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type(); - return type; -} - -SWIGRUNTIMEINLINE int -SwigPyObject_Check(PyObject *op) { - return (Py_TYPE(op) == SwigPyObject_type()) - || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); -} - -SWIGRUNTIME PyObject * -SwigPyObject_New(void *ptr, swig_type_info *ty, int own); - -SWIGRUNTIME void -SwigPyObject_dealloc(PyObject *v) -{ - SwigPyObject *sobj = (SwigPyObject *) v; - PyObject *next = sobj->next; - if (sobj->own == SWIG_POINTER_OWN) { - swig_type_info *ty = sobj->ty; - SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; - PyObject *destroy = data ? data->destroy : 0; - if (destroy) { - /* destroy is always a VARARGS method */ - PyObject *res; - if (data->delargs) { - /* we need to create a temporary object to carry the destroy operation */ - PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0); - res = SWIG_Python_CallFunctor(destroy, tmp); - Py_DECREF(tmp); - } else { - PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); - PyObject *mself = PyCFunction_GET_SELF(destroy); - res = ((*meth)(mself, v)); - } - Py_XDECREF(res); - } -#if !defined(SWIG_PYTHON_SILENT_MEMLEAK) - else { - const char *name = SWIG_TypePrettyName(ty); - printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown")); - } -#endif - } - Py_XDECREF(next); - PyObject_DEL(v); -} - -SWIGRUNTIME PyObject* -SwigPyObject_append(PyObject* v, PyObject* next) -{ - SwigPyObject *sobj = (SwigPyObject *) v; -#ifndef METH_O - PyObject *tmp = 0; - if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; - next = tmp; -#endif - if (!SwigPyObject_Check(next)) { - return NULL; - } - sobj->next = next; - Py_INCREF(next); - return SWIG_Py_Void(); -} - -SWIGRUNTIME PyObject* -#ifdef METH_NOARGS -SwigPyObject_next(PyObject* v) -#else -SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *) v; - if (sobj->next) { - Py_INCREF(sobj->next); - return sobj->next; - } else { - return SWIG_Py_Void(); - } -} - -SWIGINTERN PyObject* -#ifdef METH_NOARGS -SwigPyObject_disown(PyObject *v) -#else -SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *)v; - sobj->own = 0; - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* -#ifdef METH_NOARGS -SwigPyObject_acquire(PyObject *v) -#else -SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *)v; - sobj->own = SWIG_POINTER_OWN; - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* -SwigPyObject_own(PyObject *v, PyObject *args) -{ - PyObject *val = 0; -#if (PY_VERSION_HEX < 0x02020000) - if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) -#else - if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) -#endif - { - return NULL; - } - else - { - SwigPyObject *sobj = (SwigPyObject *)v; - PyObject *obj = PyBool_FromLong(sobj->own); - if (val) { -#ifdef METH_NOARGS - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v); - } else { - SwigPyObject_disown(v); - } -#else - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v,args); - } else { - SwigPyObject_disown(v,args); - } -#endif - } - return obj; - } -} - -#ifdef METH_O -static PyMethodDef -swigobject_methods[] = { - {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, - {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"}, - {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, - {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"}, - {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, - {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"}, - {0, 0, 0, 0} -}; -#else -static PyMethodDef -swigobject_methods[] = { - {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, - {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"}, - {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, - {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, - {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, - {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"}, - {0, 0, 0, 0} -}; -#endif - -#if PY_VERSION_HEX < 0x02020000 -SWIGINTERN PyObject * -SwigPyObject_getattr(SwigPyObject *sobj,char *name) -{ - return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); -} -#endif - -SWIGRUNTIME PyTypeObject* -_PySwigObject_type(void) { - static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; - - static PyNumberMethods SwigPyObject_as_number = { - (binaryfunc)0, /*nb_add*/ - (binaryfunc)0, /*nb_subtract*/ - (binaryfunc)0, /*nb_multiply*/ - /* nb_divide removed in Python 3 */ -#if PY_VERSION_HEX < 0x03000000 - (binaryfunc)0, /*nb_divide*/ -#endif - (binaryfunc)0, /*nb_remainder*/ - (binaryfunc)0, /*nb_divmod*/ - (ternaryfunc)0,/*nb_power*/ - (unaryfunc)0, /*nb_negative*/ - (unaryfunc)0, /*nb_positive*/ - (unaryfunc)0, /*nb_absolute*/ - (inquiry)0, /*nb_nonzero*/ - 0, /*nb_invert*/ - 0, /*nb_lshift*/ - 0, /*nb_rshift*/ - 0, /*nb_and*/ - 0, /*nb_xor*/ - 0, /*nb_or*/ -#if PY_VERSION_HEX < 0x03000000 - 0, /*nb_coerce*/ -#endif - (unaryfunc)SwigPyObject_long, /*nb_int*/ -#if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_long, /*nb_long*/ -#else - 0, /*nb_reserved*/ -#endif - (unaryfunc)0, /*nb_float*/ -#if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_oct, /*nb_oct*/ - (unaryfunc)SwigPyObject_hex, /*nb_hex*/ -#endif -#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ -#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ -#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ -#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */ - 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ -#endif - }; - - static PyTypeObject swigpyobject_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ -#endif - (char *)"SwigPyObject", /* tp_name */ - sizeof(SwigPyObject), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyObject_dealloc, /* tp_dealloc */ - (printfunc)SwigPyObject_print, /* tp_print */ -#if PY_VERSION_HEX < 0x02020000 - (getattrfunc)SwigPyObject_getattr, /* tp_getattr */ -#else - (getattrfunc)0, /* tp_getattr */ -#endif - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX >= 0x03000000 - 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ -#else - (cmpfunc)SwigPyObject_compare, /* tp_compare */ -#endif - (reprfunc)SwigPyObject_repr, /* tp_repr */ - &SwigPyObject_as_number, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyObject_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigobject_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - (richcmpfunc)SwigPyObject_richcompare, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0, /* tp_iter */ - 0, /* tp_iternext */ - swigobject_methods, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - swigpyobject_type = tmp; - /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - swigpyobject_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &swigpyobject_type; -} - -SWIGRUNTIME PyObject * -SwigPyObject_New(void *ptr, swig_type_info *ty, int own) -{ - SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); - if (sobj) { - sobj->ptr = ptr; - sobj->ty = ty; - sobj->own = own; - sobj->next = 0; - } - return (PyObject *)sobj; -} - -/* ----------------------------------------------------------------------------- - * Implements a simple Swig Packed type, and use it instead of string - * ----------------------------------------------------------------------------- */ - -typedef struct { - PyObject_HEAD - void *pack; - swig_type_info *ty; - size_t size; -} SwigPyPacked; - -SWIGRUNTIME int -SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) -{ - char result[SWIG_BUFFER_SIZE]; - fputs("pack, v->size, 0, sizeof(result))) { - fputs("at ", fp); - fputs(result, fp); - } - fputs(v->ty->name,fp); - fputs(">", fp); - return 0; -} - -SWIGRUNTIME PyObject * -SwigPyPacked_repr(SwigPyPacked *v) -{ - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { - return SWIG_Python_str_FromFormat("", result, v->ty->name); - } else { - return SWIG_Python_str_FromFormat("", v->ty->name); - } -} - -SWIGRUNTIME PyObject * -SwigPyPacked_str(SwigPyPacked *v) -{ - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ - return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); - } else { - return SWIG_Python_str_FromChar(v->ty->name); - } -} - -SWIGRUNTIME int -SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) -{ - size_t i = v->size; - size_t j = w->size; - int s = (i < j) ? -1 : ((i > j) ? 1 : 0); - return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); -} - -SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void); - -SWIGRUNTIME PyTypeObject* -SwigPyPacked_type(void) { - static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type(); - return type; -} - -SWIGRUNTIMEINLINE int -SwigPyPacked_Check(PyObject *op) { - return ((op)->ob_type == _PySwigPacked_type()) - || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0); -} - -SWIGRUNTIME void -SwigPyPacked_dealloc(PyObject *v) -{ - if (SwigPyPacked_Check(v)) { - SwigPyPacked *sobj = (SwigPyPacked *) v; - free(sobj->pack); - } - PyObject_DEL(v); -} - -SWIGRUNTIME PyTypeObject* -_PySwigPacked_type(void) { - static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; - static PyTypeObject swigpypacked_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX>=0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ -#endif - (char *)"SwigPyPacked", /* tp_name */ - sizeof(SwigPyPacked), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ - (printfunc)SwigPyPacked_print, /* tp_print */ - (getattrfunc)0, /* tp_getattr */ - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX>=0x03000000 - 0, /* tp_reserved in 3.0.1 */ -#else - (cmpfunc)SwigPyPacked_compare, /* tp_compare */ -#endif - (reprfunc)SwigPyPacked_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyPacked_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigpacked_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0, /* tp_iter */ - 0, /* tp_iternext */ - 0, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - swigpypacked_type = tmp; - /* for Python 3 the ob_type already assigned in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - swigpypacked_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &swigpypacked_type; -} - -SWIGRUNTIME PyObject * -SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty) -{ - SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); - if (sobj) { - void *pack = malloc(size); - if (pack) { - memcpy(pack, ptr, size); - sobj->pack = pack; - sobj->ty = ty; - sobj->size = size; - } else { - PyObject_DEL((PyObject *) sobj); - sobj = 0; - } - } - return (PyObject *) sobj; -} - -SWIGRUNTIME swig_type_info * -SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size) -{ - if (SwigPyPacked_Check(obj)) { - SwigPyPacked *sobj = (SwigPyPacked *)obj; - if (sobj->size != size) return 0; - memcpy(ptr, sobj->pack, size); - return sobj->ty; - } else { - return 0; - } -} - -/* ----------------------------------------------------------------------------- - * pointers/data manipulation - * ----------------------------------------------------------------------------- */ - -SWIGRUNTIMEINLINE PyObject * -_SWIG_This(void) -{ - return SWIG_Python_str_FromChar("this"); -} - -SWIGRUNTIME PyObject * -SWIG_This(void) -{ - static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This(); - return swig_this; -} - -/* #define SWIG_PYTHON_SLOW_GETSET_THIS */ - -/* TODO: I don't know how to implement the fast getset in Python 3 right now */ -#if PY_VERSION_HEX>=0x03000000 -#define SWIG_PYTHON_SLOW_GETSET_THIS -#endif - -SWIGRUNTIME SwigPyObject * -SWIG_Python_GetSwigThis(PyObject *pyobj) -{ - if (SwigPyObject_Check(pyobj)) { - return (SwigPyObject *) pyobj; - } else { - PyObject *obj = 0; -#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) - if (PyInstance_Check(pyobj)) { - obj = _PyInstance_Lookup(pyobj, SWIG_This()); - } else { - PyObject **dictptr = _PyObject_GetDictPtr(pyobj); - if (dictptr != NULL) { - PyObject *dict = *dictptr; - obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; - } else { -#ifdef PyWeakref_CheckProxy - if (PyWeakref_CheckProxy(pyobj)) { - PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); - return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; - } -#endif - obj = PyObject_GetAttr(pyobj,SWIG_This()); - if (obj) { - Py_DECREF(obj); - } else { - if (PyErr_Occurred()) PyErr_Clear(); - return 0; - } - } - } -#else - obj = PyObject_GetAttr(pyobj,SWIG_This()); - if (obj) { - Py_DECREF(obj); - } else { - if (PyErr_Occurred()) PyErr_Clear(); - return 0; - } -#endif - if (obj && !SwigPyObject_Check(obj)) { - /* a PyObject is called 'this', try to get the 'real this' - SwigPyObject from it */ - return SWIG_Python_GetSwigThis(obj); - } - return (SwigPyObject *)obj; - } -} - -/* Acquire a pointer value */ - -SWIGRUNTIME int -SWIG_Python_AcquirePtr(PyObject *obj, int own) { - if (own == SWIG_POINTER_OWN) { - SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); - if (sobj) { - int oldown = sobj->own; - sobj->own = own; - return oldown; - } - } - return 0; -} - -/* Convert a pointer value */ - -SWIGRUNTIME int -SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { - if (!obj) return SWIG_ERROR; - if (obj == Py_None) { - if (ptr) *ptr = 0; - return SWIG_OK; - } else { - SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); - if (own) - *own = 0; - while (sobj) { - void *vptr = sobj->ptr; - if (ty) { - swig_type_info *to = sobj->ty; - if (to == ty) { - /* no type cast needed */ - if (ptr) *ptr = vptr; - break; - } else { - swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); - if (!tc) { - sobj = (SwigPyObject *)sobj->next; - } else { - if (ptr) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc,vptr,&newmemory); - if (newmemory == SWIG_CAST_NEW_MEMORY) { - assert(own); - if (own) - *own = *own | SWIG_CAST_NEW_MEMORY; - } - } - break; - } - } - } else { - if (ptr) *ptr = vptr; - break; - } - } - if (sobj) { - if (own) - *own = *own | sobj->own; - if (flags & SWIG_POINTER_DISOWN) { - sobj->own = 0; - } - return SWIG_OK; - } else { - int res = SWIG_ERROR; - if (flags & SWIG_POINTER_IMPLICIT_CONV) { - SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; - if (data && !data->implicitconv) { - PyObject *klass = data->klass; - if (klass) { - PyObject *impconv; - data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ - impconv = SWIG_Python_CallFunctor(klass, obj); - data->implicitconv = 0; - if (PyErr_Occurred()) { - PyErr_Clear(); - impconv = 0; - } - if (impconv) { - SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv); - if (iobj) { - void *vptr; - res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); - if (SWIG_IsOK(res)) { - if (ptr) { - *ptr = vptr; - /* transfer the ownership to 'ptr' */ - iobj->own = 0; - res = SWIG_AddCast(res); - res = SWIG_AddNewMask(res); - } else { - res = SWIG_AddCast(res); - } - } - } - Py_DECREF(impconv); - } - } - } - } - return res; - } - } -} - -/* Convert a function ptr value */ - -SWIGRUNTIME int -SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { - if (!PyCFunction_Check(obj)) { - return SWIG_ConvertPtr(obj, ptr, ty, 0); - } else { - void *vptr = 0; - - /* here we get the method pointer for callbacks */ - const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); - const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; - if (desc) - desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; - if (!desc) - return SWIG_ERROR; - if (ty) { - swig_cast_info *tc = SWIG_TypeCheck(desc,ty); - if (tc) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc,vptr,&newmemory); - assert(!newmemory); /* newmemory handling not yet implemented */ - } else { - return SWIG_ERROR; - } - } else { - *ptr = vptr; - } - return SWIG_OK; - } -} - -/* Convert a packed value value */ - -SWIGRUNTIME int -SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { - swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz); - if (!to) return SWIG_ERROR; - if (ty) { - if (to != ty) { - /* check type cast? */ - swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); - if (!tc) return SWIG_ERROR; - } - } - return SWIG_OK; -} - -/* ----------------------------------------------------------------------------- - * Create a new pointer object - * ----------------------------------------------------------------------------- */ - -/* - Create a new instance object, without calling __init__, and set the - 'this' attribute. -*/ - -SWIGRUNTIME PyObject* -SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) -{ -#if (PY_VERSION_HEX >= 0x02020000) - PyObject *inst = 0; - PyObject *newraw = data->newraw; - if (newraw) { - inst = PyObject_Call(newraw, data->newargs, NULL); - if (inst) { -#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject **dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - PyObject *dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - PyDict_SetItem(dict, SWIG_This(), swig_this); - } - } -#else - PyObject *key = SWIG_This(); - PyObject_SetAttr(inst, key, swig_this); -#endif - } - } else { -#if PY_VERSION_HEX >= 0x03000000 - inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); - PyObject_SetAttr(inst, SWIG_This(), swig_this); - Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; -#else - PyObject *dict = PyDict_New(); - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); -#endif - } - return inst; -#else -#if (PY_VERSION_HEX >= 0x02010000) - PyObject *inst; - PyObject *dict = PyDict_New(); - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); - return (PyObject *) inst; -#else - PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); - if (inst == NULL) { - return NULL; - } - inst->in_class = (PyClassObject *)data->newargs; - Py_INCREF(inst->in_class); - inst->in_dict = PyDict_New(); - if (inst->in_dict == NULL) { - Py_DECREF(inst); - return NULL; - } -#ifdef Py_TPFLAGS_HAVE_WEAKREFS - inst->in_weakreflist = NULL; -#endif -#ifdef Py_TPFLAGS_GC - PyObject_GC_Init(inst); -#endif - PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); - return (PyObject *) inst; -#endif -#endif -} - -SWIGRUNTIME void -SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) -{ - PyObject *dict; -#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject **dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - } - PyDict_SetItem(dict, SWIG_This(), swig_this); - return; - } -#endif - dict = PyObject_GetAttrString(inst, (char*)"__dict__"); - PyDict_SetItem(dict, SWIG_This(), swig_this); - Py_DECREF(dict); -} - - -SWIGINTERN PyObject * -SWIG_Python_InitShadowInstance(PyObject *args) { - PyObject *obj[2]; - if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) { - return NULL; - } else { - SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]); - if (sthis) { - SwigPyObject_append((PyObject*) sthis, obj[1]); - } else { - SWIG_Python_SetSwigThis(obj[0], obj[1]); - } - return SWIG_Py_Void(); - } -} - -/* Create a new pointer object */ - -SWIGRUNTIME PyObject * -SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) { - if (!ptr) { - return SWIG_Py_Void(); - } else { - int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - PyObject *robj = SwigPyObject_New(ptr, type, own); - SwigPyClientData *clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0; - if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { - PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); - if (inst) { - Py_DECREF(robj); - robj = inst; - } - } - return robj; - } -} - -/* Create a new packed object */ - -SWIGRUNTIMEINLINE PyObject * -SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { - return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); -} - -/* -----------------------------------------------------------------------------* - * Get type list - * -----------------------------------------------------------------------------*/ - -#ifdef SWIG_LINK_RUNTIME -void *SWIG_ReturnGlobalTypeList(void *); -#endif - -SWIGRUNTIME swig_module_info * -SWIG_Python_GetModule(void) { - static void *type_pointer = (void *)0; - /* first check if module already created */ - if (!type_pointer) { -#ifdef SWIG_LINK_RUNTIME - type_pointer = SWIG_ReturnGlobalTypeList((void *)0); -#else - type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, - (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); - if (PyErr_Occurred()) { - PyErr_Clear(); - type_pointer = (void *)0; - } -#endif - } - return (swig_module_info *) type_pointer; -} - -#if PY_MAJOR_VERSION < 2 -/* PyModule_AddObject function was introduced in Python 2.0. The following function - is copied out of Python/modsupport.c in python version 2.3.4 */ -SWIGINTERN int -PyModule_AddObject(PyObject *m, char *name, PyObject *o) -{ - PyObject *dict; - if (!PyModule_Check(m)) { - PyErr_SetString(PyExc_TypeError, - "PyModule_AddObject() needs module as first arg"); - return SWIG_ERROR; - } - if (!o) { - PyErr_SetString(PyExc_TypeError, - "PyModule_AddObject() needs non-NULL value"); - return SWIG_ERROR; - } - - dict = PyModule_GetDict(m); - if (dict == NULL) { - /* Internal error -- modules must have a dict! */ - PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", - PyModule_GetName(m)); - return SWIG_ERROR; - } - if (PyDict_SetItemString(dict, name, o)) - return SWIG_ERROR; - Py_DECREF(o); - return SWIG_OK; -} -#endif - -SWIGRUNTIME void -SWIG_Python_DestroyModule(void *vptr) -{ - swig_module_info *swig_module = (swig_module_info *) vptr; - swig_type_info **types = swig_module->types; - size_t i; - for (i =0; i < swig_module->size; ++i) { - swig_type_info *ty = types[i]; - if (ty->owndata) { - SwigPyClientData *data = (SwigPyClientData *) ty->clientdata; - if (data) SwigPyClientData_Del(data); - } - } - Py_DECREF(SWIG_This()); -} - -SWIGRUNTIME void -SWIG_Python_SetModule(swig_module_info *swig_module) { - static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ - -#if PY_VERSION_HEX >= 0x03000000 - /* Add a dummy module object into sys.modules */ - PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION); -#else - PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, - swig_empty_runtime_method_table); -#endif - PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); - if (pointer && module) { - PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); - } else { - Py_XDECREF(pointer); - } -} - -/* The python cached type query */ -SWIGRUNTIME PyObject * -SWIG_Python_TypeCache(void) { - static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); - return cache; -} - -SWIGRUNTIME swig_type_info * -SWIG_Python_TypeQuery(const char *type) -{ - PyObject *cache = SWIG_Python_TypeCache(); - PyObject *key = SWIG_Python_str_FromChar(type); - PyObject *obj = PyDict_GetItem(cache, key); - swig_type_info *descriptor; - if (obj) { - descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); - } else { - swig_module_info *swig_module = SWIG_Python_GetModule(); - descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); - if (descriptor) { - obj = PyCObject_FromVoidPtr(descriptor, NULL); - PyDict_SetItem(cache, key, obj); - Py_DECREF(obj); - } - } - Py_DECREF(key); - return descriptor; -} - -/* - For backward compatibility only -*/ -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) -#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) - -SWIGRUNTIME int -SWIG_Python_AddErrMesg(const char* mesg, int infront) -{ - if (PyErr_Occurred()) { - PyObject *type = 0; - PyObject *value = 0; - PyObject *traceback = 0; - PyErr_Fetch(&type, &value, &traceback); - if (value) { - char *tmp; - PyObject *old_str = PyObject_Str(value); - Py_XINCREF(type); - PyErr_Clear(); - if (infront) { - PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str)); - } else { - PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); - } - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - } - return 1; - } else { - return 0; - } -} - -SWIGRUNTIME int -SWIG_Python_ArgFail(int argnum) -{ - if (PyErr_Occurred()) { - /* add information about failing argument */ - char mesg[256]; - PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); - return SWIG_Python_AddErrMesg(mesg, 1); - } else { - return 0; - } -} - -SWIGRUNTIMEINLINE const char * -SwigPyObject_GetDesc(PyObject *self) -{ - SwigPyObject *v = (SwigPyObject *)self; - swig_type_info *ty = v ? v->ty : 0; - return ty ? ty->str : (char*)""; -} - -SWIGRUNTIME void -SWIG_Python_TypeError(const char *type, PyObject *obj) -{ - if (type) { -#if defined(SWIG_COBJECT_TYPES) - if (obj && SwigPyObject_Check(obj)) { - const char *otype = (const char *) SwigPyObject_GetDesc(obj); - if (otype) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received", - type, otype); - return; - } - } else -#endif - { - const char *otype = (obj ? obj->ob_type->tp_name : 0); - if (otype) { - PyObject *str = PyObject_Str(obj); - const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0; - if (cstr) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", - type, otype, cstr); - SWIG_Python_str_DelForPy3(cstr); - } else { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", - type, otype); - } - Py_XDECREF(str); - return; - } - } - PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); - } else { - PyErr_Format(PyExc_TypeError, "unexpected type is received"); - } -} - - -/* Convert a pointer value, signal an exception on a type mismatch */ -SWIGRUNTIME void * -SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) { - void *result; - if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { - PyErr_Clear(); -#if SWIG_POINTER_EXCEPTION - if (flags) { - SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); - SWIG_Python_ArgFail(argnum); - } -#endif - } - return result; -} - - -#ifdef __cplusplus -#if 0 -{ /* cc-mode */ -#endif -} -#endif - - - -#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) - -#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else - - - -/* define the PyAPI_FUNC macro if it doesn't exist, for example with Python - version below 2.3... But not really tested... */ -#ifndef PyAPI_FUNC -# define PyAPI_FUNC(RTYPE) RTYPE -#endif - -/* remove the PyInt_AS_LONG if defined, as this cause problems on RedHat */ -#ifdef PyInt_AS_LONG -#undef PyInt_AS_LONG -#endif - -/* wrapper to the better function PyInt_AsLong, removing problems - with RedHat (I hope) */ -long PyInt_AS_LONG (PyObject *obj) { - return PyInt_AsLong (obj); -} - -/* remove the PyFloat_AS_DOUBLE if defined, to prevent errors */ -#ifdef PyFloat_AS_DOUBLE -#undef PyFloat_AS_DOUBLE -#endif - -/* wrapper to the better function PyFloat_AS_DOUBLE, to prevent errors */ -double PyFloat_AS_DOUBLE (PyObject *obj) { - return PyFloat_AsDouble (obj); -} - - - #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -#define SWIGTYPE_p_Cv32suf swig_types[0] -#define SWIGTYPE_p_Cv64suf swig_types[1] -#define SWIGTYPE_p_CvAttrList swig_types[2] -#define SWIGTYPE_p_CvAvgComp swig_types[3] -#define SWIGTYPE_p_CvBox2D swig_types[4] -#define SWIGTYPE_p_CvCapture swig_types[5] -#define SWIGTYPE_p_CvChain swig_types[6] -#define SWIGTYPE_p_CvChainPtReader swig_types[7] -#define SWIGTYPE_p_CvConDensation swig_types[8] -#define SWIGTYPE_p_CvConnectedComp swig_types[9] -#define SWIGTYPE_p_CvContour swig_types[10] -#define SWIGTYPE_p_CvContourTree swig_types[11] -#define SWIGTYPE_p_CvConvexityDefect swig_types[12] -#define SWIGTYPE_p_CvFileNode swig_types[13] -#define SWIGTYPE_p_CvFileStorage swig_types[14] -#define SWIGTYPE_p_CvFilter swig_types[15] -#define SWIGTYPE_p_CvFont swig_types[16] -#define SWIGTYPE_p_CvGenericHash swig_types[17] -#define SWIGTYPE_p_CvGraph swig_types[18] -#define SWIGTYPE_p_CvGraphEdge swig_types[19] -#define SWIGTYPE_p_CvGraphScanner swig_types[20] -#define SWIGTYPE_p_CvGraphVtx swig_types[21] -#define SWIGTYPE_p_CvGraphVtx2D swig_types[22] -#define SWIGTYPE_p_CvHaarClassifier swig_types[23] -#define SWIGTYPE_p_CvHaarClassifierCascade swig_types[24] -#define SWIGTYPE_p_CvHaarFeature swig_types[25] -#define SWIGTYPE_p_CvHaarStageClassifier swig_types[26] -#define SWIGTYPE_p_CvHidHaarClassifierCascade swig_types[27] -#define SWIGTYPE_p_CvHistogram swig_types[28] -#define SWIGTYPE_p_CvHuMoments swig_types[29] -#define SWIGTYPE_p_CvKalman swig_types[30] -#define SWIGTYPE_p_CvLineIterator swig_types[31] -#define SWIGTYPE_p_CvMSERParams swig_types[32] -#define SWIGTYPE_p_CvMat swig_types[33] -#define SWIGTYPE_p_CvMatND swig_types[34] -#define SWIGTYPE_p_CvMatrix3 swig_types[35] -#define SWIGTYPE_p_CvMemBlock swig_types[36] -#define SWIGTYPE_p_CvMemStorage swig_types[37] -#define SWIGTYPE_p_CvMemStoragePos swig_types[38] -#define SWIGTYPE_p_CvModuleInfo swig_types[39] -#define SWIGTYPE_p_CvMoments swig_types[40] -#define SWIGTYPE_p_CvNArrayIterator swig_types[41] -#define SWIGTYPE_p_CvNextEdgeType swig_types[42] -#define SWIGTYPE_p_CvPOSITObject swig_types[43] -#define SWIGTYPE_p_CvPluginFuncInfo swig_types[44] -#define SWIGTYPE_p_CvPoint swig_types[45] -#define SWIGTYPE_p_CvPoint2D32f swig_types[46] -#define SWIGTYPE_p_CvPoint2D64f swig_types[47] -#define SWIGTYPE_p_CvPoint3D32f swig_types[48] -#define SWIGTYPE_p_CvPoint3D64f swig_types[49] -#define SWIGTYPE_p_CvQuadEdge2D swig_types[50] -#define SWIGTYPE_p_CvRNG_Wrapper swig_types[51] -#define SWIGTYPE_p_CvRect swig_types[52] -#define SWIGTYPE_p_CvSURFParams swig_types[53] -#define SWIGTYPE_p_CvSURFPoint swig_types[54] -#define SWIGTYPE_p_CvScalar swig_types[55] -#define SWIGTYPE_p_CvSeq swig_types[56] -#define SWIGTYPE_p_CvSeqBlock swig_types[57] -#define SWIGTYPE_p_CvSeqReader swig_types[58] -#define SWIGTYPE_p_CvSeqWriter swig_types[59] -#define SWIGTYPE_p_CvSet swig_types[60] -#define SWIGTYPE_p_CvSetElem swig_types[61] -#define SWIGTYPE_p_CvSize swig_types[62] -#define SWIGTYPE_p_CvSize2D32f swig_types[63] -#define SWIGTYPE_p_CvSlice swig_types[64] -#define SWIGTYPE_p_CvSparseMat swig_types[65] -#define SWIGTYPE_p_CvSparseMatIterator swig_types[66] -#define SWIGTYPE_p_CvSparseNode swig_types[67] -#define SWIGTYPE_p_CvStarDetectorParams swig_types[68] -#define SWIGTYPE_p_CvStarKeypoint swig_types[69] -#define SWIGTYPE_p_CvStereoBMState swig_types[70] -#define SWIGTYPE_p_CvStereoGCState swig_types[71] -#define SWIGTYPE_p_CvString swig_types[72] -#define SWIGTYPE_p_CvStringHashNode swig_types[73] -#define SWIGTYPE_p_CvSubdiv2D swig_types[74] -#define SWIGTYPE_p_CvSubdiv2DEdge_Wrapper swig_types[75] -#define SWIGTYPE_p_CvSubdiv2DPoint swig_types[76] -#define SWIGTYPE_p_CvSubdiv2DPointLocation swig_types[77] -#define SWIGTYPE_p_CvTermCriteria swig_types[78] -#define SWIGTYPE_p_CvTreeNodeIterator swig_types[79] -#define SWIGTYPE_p_CvTypeInfo swig_types[80] -#define SWIGTYPE_p_CvTypedSeqT_CvConnectedComp_t swig_types[81] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint2D32f_t swig_types[82] -#define SWIGTYPE_p_CvTypedSeqT_CvPoint_t swig_types[83] -#define SWIGTYPE_p_CvTypedSeqT_CvQuadEdge2D_t swig_types[84] -#define SWIGTYPE_p_CvTypedSeqT_CvRect_t swig_types[85] -#define SWIGTYPE_p_CvTypedSeqT_CvSeq_p_t swig_types[86] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t swig_types[87] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_2_t_t swig_types[88] -#define SWIGTYPE_p_CvTypedSeqT_CvTupleT_float_3_t_t swig_types[89] -#define SWIGTYPE_p_CvVideoWriter swig_types[90] -#define SWIGTYPE_p_CvvImage swig_types[91] -#define SWIGTYPE_p__IplConvKernel swig_types[92] -#define SWIGTYPE_p__IplConvKernelFP swig_types[93] -#define SWIGTYPE_p__IplImage swig_types[94] -#define SWIGTYPE_p__IplROI swig_types[95] -#define SWIGTYPE_p__IplTileInfo swig_types[96] -#define SWIGTYPE_p_allocator_type swig_types[97] -#define SWIGTYPE_p_char swig_types[98] -#define SWIGTYPE_p_difference_type swig_types[99] -#define SWIGTYPE_p_f_int__void swig_types[100] -#define SWIGTYPE_p_f_int_int_int_int_p_void__void swig_types[101] -#define SWIGTYPE_p_f_int_p_void__void swig_types[102] -#define SWIGTYPE_p_float swig_types[103] -#define SWIGTYPE_p_int swig_types[104] -#define SWIGTYPE_p_int64_t swig_types[105] -#define SWIGTYPE_p_p_char swig_types[106] -#define SWIGTYPE_p_signed_char swig_types[107] -#define SWIGTYPE_p_size_t swig_types[108] -#define SWIGTYPE_p_size_type swig_types[109] -#define SWIGTYPE_p_uint64_t swig_types[110] -#define SWIGTYPE_p_unsigned_char swig_types[111] -#define SWIGTYPE_p_unsigned_short swig_types[112] -#define SWIGTYPE_p_value_type swig_types[113] -#define SWIGTYPE_p_void swig_types[114] -static swig_type_info *swig_types[116]; -static swig_module_info swig_module = {swig_types, 115, 0, 0, 0, 0}; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) -#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) - -/* -------- TYPES TABLE (END) -------- */ - -#if (PY_VERSION_HEX <= 0x02000000) -# if !defined(SWIG_PYTHON_CLASSIC) -# error "This python version requires swig to be run with the '-classic' option" -# endif -#endif - -/*----------------------------------------------- - @(target):= _highgui.so - ------------------------------------------------*/ -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_init PyInit__highgui - -#else -# define SWIG_init init_highgui - -#endif -#define SWIG_name "_highgui" - -#define SWIGVERSION 0x010340 -#define SWIG_VERSION SWIGVERSION - - -#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) - - -#include - - -namespace swig { - class SwigPtr_PyObject { - protected: - PyObject *_obj; - - public: - SwigPtr_PyObject() :_obj(0) - { - } - - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) - { - Py_XINCREF(_obj); - } - - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) - { - if (initial_ref) { - Py_XINCREF(_obj); - } - } - - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) - { - Py_XINCREF(item._obj); - Py_XDECREF(_obj); - _obj = item._obj; - return *this; - } - - ~SwigPtr_PyObject() - { - Py_XDECREF(_obj); - } - - operator PyObject *() const - { - return _obj; - } - - PyObject *operator->() const - { - return _obj; - } - }; -} - - -namespace swig { - struct SwigVar_PyObject : SwigPtr_PyObject { - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } - - SwigVar_PyObject & operator = (PyObject* obj) - { - Py_XDECREF(_obj); - _obj = obj; - return *this; - } - }; -} - - - #include - #include - #include - #include "pyhelpers.h" - #include "pycvseq.hpp" - - - -#include "pyhelpers.h" - -static CvArr * PyObject_to_CvArr(PyObject * obj, bool * freearg); - -// convert a python sequence/array/list object into a c-array -#define PyObject_AsArrayImpl(func, ctype, ptype) \ - int func(PyObject * obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(PyNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = PyObject_As##ptype( obj ); \ - } \ - else if(PyList_Check(obj) || PyTuple_Check(obj)){ \ - int seqsize = PySequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(PyObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - PyErr_SetString( PyExc_TypeError, "could not convert to CvPoint"); - return cvPoint(0,0); -} - -static CvPoint2D32f PyObject_to_CvPoint2D32f(PyObject * obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(PyObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - PyErr_SetString(PyExc_TypeError, "could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); -} - -/* Check if this object can be interpreted as a CvScalar */ -static bool CvScalar_Check(PyObject * obj){ - void * vptr; - CvScalar val; - return SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0 ) != -1 || - PyObject_AsDoubleArray(obj, val.val, 4) !=-1; -} - -static CvScalar PyObject_to_CvScalar(PyObject * obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(PyObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); -} - -static int CvArr_Check( PyObject * obj ) -{ - void *ptr; - if( obj == Py_None || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMatND, 0) ) || - PyObject_HasAttrString(obj, "__array_interface__") || - PySequence_Check(obj) ) - { - return 1; - } - PyErr_Clear(); - return 0; -} - -/* if python sequence type, convert to CvMat or CvMatND */ -static CvArr * PyObject_to_CvArr (PyObject * obj, bool * freearg) -{ - CvArr * cvarr = NULL; - *freearg = false; - - if ( obj == Py_None ) - { - // Interpret None as NULL pointer - return NULL; - } - else if( SWIG_IsOK( SWIG_ConvertPtr(obj, (void **)& cvarr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void** )& cvarr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvMatND, 0) )) - { - // we got a directly wrapped void * pointer, OpenCV array or sequence type - return cvarr; - } - else if (PyObject_HasAttrString (obj, "__array_interface__")) - { - // if we didn't get our own datatype, let's see if it supports the array protocol - // array protocol is great because we just have to create another header but can - // use the original data without copying - cvarr = PyArray_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PySequence_Check (obj)) - { - // our next bet is a tuple or list of tuples or lists this has to be copied over, however - cvarr = PySequence_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PyLong_Check (obj) && PyLong_AsLong (obj) == 0) - { - // Interpret a '0' integer as a NULL pointer - * freearg = false; - return NULL; - } - else - { - // TODO, throw an error here - return NULL; - } - - return cvarr; -} - - -static int PyObject_GetElemType(PyObject * obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(PyTuple_Check(obj) || PyList_Check(obj)) return CV_MAKE_TYPE(CV_32F, PySequence_Size( obj )); - if(PyLong_Check(obj)) return CV_32S; - return CV_32F; -} - - - -// Wrapper class -class CvRNG_Wrapper { -private: - CvRNG m_val; -public: - CvRNG_Wrapper( const CvRNG & val ) : - m_val(val) - { - } - CvRNG * ptr() { return &m_val; } - CvRNG & ref() { return m_val; } - bool operator==(const CvRNG_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvRNG_Wrapper & x){ - return m_val!=x.m_val; - } -}; - - -SWIGINTERNINLINE PyObject* - SWIG_From_bool (bool value) -{ - return PyBool_FromLong(value ? 1 : 0); -} - - -// Wrapper class -class CvSubdiv2DEdge_Wrapper { -private: - CvSubdiv2DEdge m_val; -public: - CvSubdiv2DEdge_Wrapper( const CvSubdiv2DEdge & val ) : - m_val(val) - { - } - CvSubdiv2DEdge * ptr() { return &m_val; } - CvSubdiv2DEdge & ref() { return m_val; } - bool operator==(const CvSubdiv2DEdge_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvSubdiv2DEdge_Wrapper & x){ - return m_val!=x.m_val; - } -}; - - -SWIGINTERN int -SWIG_AsVal_double (PyObject *obj, double *val) -{ - int res = SWIG_TypeError; - if (PyFloat_Check(obj)) { - if (val) *val = PyFloat_AsDouble(obj); - return SWIG_OK; - } else if (PyInt_Check(obj)) { - if (val) *val = PyInt_AsLong(obj); - return SWIG_OK; - } else if (PyLong_Check(obj)) { - double v = PyLong_AsDouble(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - double d = PyFloat_AsDouble(obj); - if (!PyErr_Occurred()) { - if (val) *val = d; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - long v = PyLong_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); - } else { - PyErr_Clear(); - } - } - } -#endif - return res; -} - - -#include - - -#include - - -SWIGINTERNINLINE int -SWIG_CanCastAsInteger(double *d, double min, double max) { - double x = *d; - if ((min <= x && x <= max)) { - double fx = floor(x); - double cx = ceil(x); - double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ - if ((errno == EDOM) || (errno == ERANGE)) { - errno = 0; - } else { - double summ, reps, diff; - if (rd < x) { - diff = x - rd; - } else if (rd > x) { - diff = rd - x; - } else { - return 1; - } - summ = rd + x; - reps = diff/summ; - if (reps < 8*DBL_EPSILON) { - *d = rd; - return 1; - } - } - } - return 0; -} - - -SWIGINTERN int -SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) -{ - if (PyInt_Check(obj)) { - long v = PyInt_AsLong(obj); - if (v >= 0) { - if (val) *val = v; - return SWIG_OK; - } else { - return SWIG_OverflowError; - } - } else if (PyLong_Check(obj)) { - unsigned long v = PyLong_AsUnsignedLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - unsigned long v = PyLong_AsUnsignedLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { - if (val) *val = (unsigned long)(d); - return res; - } - } - } -#endif - return SWIG_TypeError; -} - - -SWIGINTERNINLINE int -SWIG_AsVal_size_t (PyObject * obj, size_t *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); - return res; -} - - - /* This encapsulates the python callback and user_data for mouse callback */ - struct PyCvMouseCBData { - PyObject * py_func; - PyObject * user_data; - }; - /* This encapsulates the python callback and user_data for mouse callback */ - /* C helper function which is responsible for calling - the Python real trackbar callback function */ - static void icvPyOnMouse (int event, int x, int y, - int flags, PyCvMouseCBData * param) { - - /* Must ensure this thread has a lock on the interpreter */ - PyGILState_STATE state = PyGILState_Ensure(); - - PyObject *result; - - /* the argument of the callback ready to be passed to Python code */ - PyObject *arg1 = PyInt_FromLong (event); - PyObject *arg2 = PyInt_FromLong (x); - PyObject *arg3 = PyInt_FromLong (y); - PyObject *arg4 = PyInt_FromLong (flags); - PyObject *arg5 = param->user_data; // assume this is already a PyObject - - /* build the tuple for calling the Python callback */ - PyObject *arglist = Py_BuildValue ("(OOOOO)", - arg1, arg2, arg3, arg4, arg5); - - /* call the Python callback */ - result = PyEval_CallObject (param->py_func, arglist); - - /* Errors in Python callback get swallowed, so report them here */ - if(!result){ - PyErr_Print(); - cvError( CV_StsInternal, "icvPyOnMouse", "", __FILE__, __LINE__); - } - - /* cleanup */ - Py_XDECREF (result); - - /* Release Interpreter lock */ - PyGILState_Release(state); - } - - - void cvSetMouseCallbackPy( const char* window_name, PyObject * on_mouse, PyObject * param=NULL ){ - // TODO potential memory leak if mouse callback is redefined - PyCvMouseCBData * py_callback = new PyCvMouseCBData; - py_callback->py_func = on_mouse; - py_callback->user_data = param ? param : Py_None; - - Py_XINCREF(py_callback->py_func); - Py_XINCREF(py_callback->user_data); - - cvSetMouseCallback( window_name, (CvMouseCallback) icvPyOnMouse, (void *) py_callback ); - } - - -SWIGINTERN swig_type_info* -SWIG_pchar_descriptor(void) -{ - static int init = 0; - static swig_type_info* info = 0; - if (!init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; -} - - -SWIGINTERN int -SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) -{ -#if PY_VERSION_HEX>=0x03000000 - if (PyUnicode_Check(obj)) -#else - if (PyString_Check(obj)) -#endif - { - char *cstr; Py_ssize_t len; -#if PY_VERSION_HEX>=0x03000000 - if (!alloc && cptr) { - /* We can't allow converting without allocation, since the internal - representation of string in Python 3 is UCS-2/UCS-4 but we require - a UTF-8 representation. - TODO(bhy) More detailed explanation */ - return SWIG_RuntimeError; - } - obj = PyUnicode_AsUTF8String(obj); - PyBytes_AsStringAndSize(obj, &cstr, &len); - if(alloc) *alloc = SWIG_NEWOBJ; -#else - PyString_AsStringAndSize(obj, &cstr, &len); -#endif - if (cptr) { - if (alloc) { - /* - In python the user should not be able to modify the inner - string representation. To warranty that, if you define - SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string - buffer is always returned. - - The default behavior is just to return the pointer value, - so, be careful. - */ -#if defined(SWIG_PYTHON_SAFE_CSTRINGS) - if (*alloc != SWIG_OLDOBJ) -#else - if (*alloc == SWIG_NEWOBJ) -#endif - { - *cptr = reinterpret_cast< char* >(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); - *alloc = SWIG_NEWOBJ; - } - else { - *cptr = cstr; - *alloc = SWIG_OLDOBJ; - } - } else { - #if PY_VERSION_HEX>=0x03000000 - assert(0); /* Should never reach here in Python 3 */ - #endif - *cptr = SWIG_Python_str_AsChar(obj); - } - } - if (psize) *psize = len + 1; -#if PY_VERSION_HEX>=0x03000000 - Py_XDECREF(obj); -#endif - return SWIG_OK; - } else { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - if (pchar_descriptor) { - void* vptr = 0; - if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { - if (cptr) *cptr = (char *) vptr; - if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; - if (alloc) *alloc = SWIG_OLDOBJ; - return SWIG_OK; - } - } - } - return SWIG_TypeError; -} - - - - - - PyObject * cvWaitKeyPy(int delay=0){ - // In order for the event processing thread to run a python callback - // it must acquire the global interpreter lock, but cvWaitKey blocks, so - // this thread can never release the lock. So release it here. - PyThreadState * thread_state = PyEval_SaveThread(); - int res = cvWaitKey(delay); - PyEval_RestoreThread( thread_state ); - - char str[2]={(char)res,0}; - if(res==-1){ - return PyLong_FromLong(-1); - } - return PyString_FromString(str); - } - - -#include -#if !defined(SWIG_NO_LLONG_MAX) -# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) -# define LLONG_MAX __LONG_LONG_MAX__ -# define LLONG_MIN (-LLONG_MAX - 1LL) -# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -# endif -#endif - - -SWIGINTERN int -SWIG_AsVal_long (PyObject *obj, long* val) -{ - if (PyInt_Check(obj)) { - if (val) *val = PyInt_AsLong(obj); - return SWIG_OK; - } else if (PyLong_Check(obj)) { - long v = PyLong_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - long v = PyInt_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { - if (val) *val = (long)(d); - return res; - } - } - } -#endif - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_int (PyObject * obj, int *val) -{ - long v; - int res = SWIG_AsVal_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = static_cast< int >(v); - } - } - return res; -} - - -#include "highgui.h" - - -namespace swig { - struct stop_iteration { - }; - - struct SwigPyIterator { - private: - SwigPtr_PyObject _seq; - - protected: - SwigPyIterator(PyObject *seq) : _seq(seq) - { - } - - public: - virtual ~SwigPyIterator() {} - - // Access iterator method, required by Python - virtual PyObject *value() const = 0; - - // Forward iterator method, required by Python - virtual SwigPyIterator *incr(size_t n = 1) = 0; - - // Backward iterator method, very common in C++, but not required in Python - virtual SwigPyIterator *decr(size_t /*n*/ = 1) - { - throw stop_iteration(); - } - - // Random access iterator methods, but not required in Python - virtual ptrdiff_t distance(const SwigPyIterator &/*x*/) const - { - throw std::invalid_argument("operation not supported"); - } - - virtual bool equal (const SwigPyIterator &/*x*/) const - { - throw std::invalid_argument("operation not supported"); - } - - // C++ common/needed methods - virtual SwigPyIterator *copy() const = 0; - - PyObject *next() - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; // disable threads - PyObject *obj = value(); - incr(); - SWIG_PYTHON_THREAD_END_BLOCK; // re-enable threads - return obj; - } - - /* Make an alias for Python 3.x */ - PyObject *__next__() - { - return next(); - } - - PyObject *previous() - { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; // disable threads - decr(); - PyObject *obj = value(); - SWIG_PYTHON_THREAD_END_BLOCK; // re-enable threads - return obj; - } - - SwigPyIterator *advance(ptrdiff_t n) - { - return (n > 0) ? incr(n) : decr(-n); - } - - bool operator == (const SwigPyIterator& x) const - { - return equal(x); - } - - bool operator != (const SwigPyIterator& x) const - { - return ! operator==(x); - } - - SwigPyIterator& operator += (ptrdiff_t n) - { - return *advance(n); - } - - SwigPyIterator& operator -= (ptrdiff_t n) - { - return *advance(-n); - } - - SwigPyIterator* operator + (ptrdiff_t n) const - { - return copy()->advance(n); - } - - SwigPyIterator* operator - (ptrdiff_t n) const - { - return copy()->advance(-n); - } - - ptrdiff_t operator - (const SwigPyIterator& x) const - { - return x.distance(*this); - } - - static swig_type_info* descriptor() { - static int init = 0; - static swig_type_info* desc = 0; - if (!init) { - desc = SWIG_TypeQuery("swig::SwigPyIterator *"); - init = 1; - } - return desc; - } - }; -} - - -namespace swig { - template - struct noconst_traits { - typedef Type noconst_type; - }; - - template - struct noconst_traits { - typedef Type noconst_type; - }; - - /* - type categories - */ - struct pointer_category { }; - struct value_category { }; - - /* - General traits that provides type_name and type_info - */ - template struct traits { }; - - template - inline const char* type_name() { - return traits::noconst_type >::type_name(); - } - - template - struct traits_info { - static swig_type_info *type_query(std::string name) { - name += " *"; - return SWIG_TypeQuery(name.c_str()); - } - static swig_type_info *type_info() { - static swig_type_info *info = type_query(type_name()); - return info; - } - }; - - template - inline swig_type_info *type_info() { - return traits_info::type_info(); - } - - /* - Partial specialization for pointers - */ - template struct traits { - typedef pointer_category category; - static std::string make_ptr_name(const char* name) { - std::string ptrname = name; - ptrname += " *"; - return ptrname; - } - static const char* type_name() { - static std::string name = make_ptr_name(swig::type_name()); - return name.c_str(); - } - }; - - template - struct traits_as { }; - - template - struct traits_check { }; - -} - - -namespace swig { - /* - Traits that provides the from method - */ - template struct traits_from_ptr { - static PyObject *from(Type *val, int owner = 0) { - return SWIG_NewPointerObj(val, type_info(), owner); - } - }; - - template struct traits_from { - static PyObject *from(const Type& val) { - return traits_from_ptr::from(new Type(val), 1); - } - }; - - template struct traits_from { - static PyObject *from(Type* val) { - return traits_from_ptr::from(val, 0); - } - }; - - template struct traits_from { - static PyObject *from(const Type* val) { - return traits_from_ptr::from(const_cast(val), 0); - } - }; - - - template - inline PyObject *from(const Type& val) { - return traits_from::from(val); - } - - template - inline PyObject *from_ptr(Type* val, int owner) { - return traits_from_ptr::from(val, owner); - } - - /* - Traits that provides the asval/as/check method - */ - template - struct traits_asptr { - static int asptr(PyObject *obj, Type **val) { - Type *p; - int res = SWIG_ConvertPtr(obj, (void**)&p, type_info(), 0); - if (SWIG_IsOK(res)) { - if (val) *val = p; - } - return res; - } - }; - - template - inline int asptr(PyObject *obj, Type **vptr) { - return traits_asptr::asptr(obj, vptr); - } - - template - struct traits_asval { - static int asval(PyObject *obj, Type *val) { - if (val) { - Type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (!SWIG_IsOK(res)) return res; - if (p) { - typedef typename noconst_traits::noconst_type noconst_type; - *(const_cast(val)) = *p; - if (SWIG_IsNewObj(res)){ - delete p; - res = SWIG_DelNewMask(res); - } - return res; - } else { - return SWIG_ERROR; - } - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template struct traits_asval { - static int asval(PyObject *obj, Type **val) { - if (val) { - typedef typename noconst_traits::noconst_type noconst_type; - noconst_type *p = 0; - int res = traits_asptr::asptr(obj, &p); - if (SWIG_IsOK(res)) { - *(const_cast(val)) = p; - } - return res; - } else { - return traits_asptr::asptr(obj, (Type **)(0)); - } - } - }; - - template - inline int asval(PyObject *obj, Type *val) { - return traits_asval::asval(obj, val); - } - - template - struct traits_as { - static Type as(PyObject *obj, bool throw_error) { - Type v; - int res = asval(obj, &v); - if (!obj || !SWIG_IsOK(res)) { - if (!PyErr_Occurred()) { - ::SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - } - return v; - } - }; - - template - struct traits_as { - static Type as(PyObject *obj, bool throw_error) { - Type *v = 0; - int res = (obj ? traits_asptr::asptr(obj, &v) : SWIG_ERROR); - if (SWIG_IsOK(res) && v) { - if (SWIG_IsNewObj(res)) { - Type r(*v); - delete v; - return r; - } else { - return *v; - } - } else { - // Uninitialized return value, no Type() constructor required. - static Type *v_def = (Type*) malloc(sizeof(Type)); - if (!PyErr_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - memset(v_def,0,sizeof(Type)); - return *v_def; - } - } - }; - - template - struct traits_as { - static Type* as(PyObject *obj, bool throw_error) { - Type *v = 0; - int res = (obj ? traits_asptr::asptr(obj, &v) : SWIG_ERROR); - if (SWIG_IsOK(res)) { - return v; - } else { - if (!PyErr_Occurred()) { - SWIG_Error(SWIG_TypeError, swig::type_name()); - } - if (throw_error) throw std::invalid_argument("bad type"); - return 0; - } - } - }; - - template - inline Type as(PyObject *obj, bool te = false) { - return traits_as::category>::as(obj, te); - } - - template - struct traits_check { - static bool check(PyObject *obj) { - int res = obj ? asval(obj, (Type *)(0)) : SWIG_ERROR; - return SWIG_IsOK(res) ? true : false; - } - }; - - template - struct traits_check { - static bool check(PyObject *obj) { - int res = obj ? asptr(obj, (Type **)(0)) : SWIG_ERROR; - return SWIG_IsOK(res) ? true : false; - } - }; - - template - inline bool check(PyObject *obj) { - return traits_check::category>::check(obj); - } -} - - -#include - -namespace std { - template <> - struct less : public binary_function - { - bool - operator()(PyObject * v, PyObject *w) const - { - bool res; - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - res = PyObject_RichCompareBool(v, w, Py_LT) ? true : false; - /* This may fall into a case of inconsistent - eg. ObjA > ObjX > ObjB - but ObjA < ObjB - */ - if( PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_TypeError) ) - { - /* Objects can't be compared, this mostly occurred in Python 3.0 */ - /* Compare their ptr directly for a workaround */ - res = (v < w); - PyErr_Clear(); - } - SWIG_PYTHON_THREAD_END_BLOCK; - return res; - } - }; - - template <> - struct less : public binary_function - { - bool - operator()(const swig::SwigPtr_PyObject& v, const swig::SwigPtr_PyObject& w) const - { - return std::less()(v, w); - } - }; - - template <> - struct less : public binary_function - { - bool - operator()(const swig::SwigVar_PyObject& v, const swig::SwigVar_PyObject& w) const - { - return std::less()(v, w); - } - }; - -} - -namespace swig { - template <> struct traits { - typedef value_category category; - static const char* type_name() { return "PyObject *"; } - }; - - template <> struct traits_asval { - typedef PyObject * value_type; - static int asval(PyObject *obj, value_type *val) { - if (val) *val = obj; - return SWIG_OK; - } - }; - - template <> - struct traits_check { - static bool check(PyObject *) { - return true; - } - }; - - template <> struct traits_from { - typedef PyObject * value_type; - static PyObject *from(const value_type& val) { - Py_XINCREF(val); - return val; - } - }; - -} - -namespace swig { - inline size_t - check_index(ptrdiff_t i, size_t size, bool insert = false) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) - return (size_t) (i + size); - } else if ( (size_t) i < size ) { - return (size_t) i; - } else if (insert && ((size_t) i == size)) { - return size; - } - - throw std::out_of_range("index out of range"); - } - - inline size_t - slice_index(ptrdiff_t i, size_t size) { - if ( i < 0 ) { - if ((size_t) (-i) <= size) { - return (size_t) (i + size); - } else { - throw std::out_of_range("index out of range"); - } - } else { - return ( (size_t) i < size ) ? ((size_t) i) : size; - } - } - - template - inline typename Sequence::iterator - getpos(Sequence* self, Difference i) { - typename Sequence::iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline typename Sequence::const_iterator - cgetpos(const Sequence* self, Difference i) { - typename Sequence::const_iterator pos = self->begin(); - std::advance(pos, check_index(i,self->size())); - return pos; - } - - template - inline Sequence* - getslice(const Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size); - typename Sequence::size_type jj = swig::slice_index(j, size); - - if (jj > ii) { - typename Sequence::const_iterator vb = self->begin(); - typename Sequence::const_iterator ve = self->begin(); - std::advance(vb,ii); - std::advance(ve,jj); - return new Sequence(vb, ve); - } else { - return new Sequence(); - } - } - - template - inline void - setslice(Sequence* self, Difference i, Difference j, const InputSeq& v) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj < ii) jj = ii; - size_t ssize = jj - ii; - if (ssize <= v.size()) { - typename Sequence::iterator sb = self->begin(); - typename InputSeq::const_iterator vmid = v.begin(); - std::advance(sb,ii); - std::advance(vmid, jj - ii); - self->insert(std::copy(v.begin(), vmid, sb), vmid, v.end()); - } else { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - self->insert(sb, v.begin(), v.end()); - } - } - - template - inline void - delslice(Sequence* self, Difference i, Difference j) { - typename Sequence::size_type size = self->size(); - typename Sequence::size_type ii = swig::check_index(i, size, true); - typename Sequence::size_type jj = swig::slice_index(j, size); - if (jj > ii) { - typename Sequence::iterator sb = self->begin(); - typename Sequence::iterator se = self->begin(); - std::advance(sb,ii); - std::advance(se,jj); - self->erase(sb,se); - } - } -} - - -#if defined(__SUNPRO_CC) && defined(_RWSTD_VER) -# if !defined(SWIG_NO_STD_NOITERATOR_TRAITS_STL) -# define SWIG_STD_NOITERATOR_TRAITS_STL -# endif -#endif - -#if !defined(SWIG_STD_NOITERATOR_TRAITS_STL) -#include -#else -namespace std { - template - struct iterator_traits { - typedef ptrdiff_t difference_type; - typedef typename Iterator::value_type value_type; - }; - - template - struct iterator_traits<__reverse_bi_iterator > { - typedef Distance difference_type; - typedef T value_type; - }; - - template - struct iterator_traits { - typedef T value_type; - typedef ptrdiff_t difference_type; - }; - - template - inline typename iterator_traits<_InputIterator>::difference_type - distance(_InputIterator __first, _InputIterator __last) - { - typename iterator_traits<_InputIterator>::difference_type __n = 0; - while (__first != __last) { - ++__first; ++__n; - } - return __n; - } -} -#endif - - -namespace swig { - template - class SwigPyIterator_T : public SwigPyIterator - { - public: - typedef OutIterator out_iterator; - typedef typename std::iterator_traits::value_type value_type; - typedef SwigPyIterator_T self_type; - - SwigPyIterator_T(out_iterator curr, PyObject *seq) - : SwigPyIterator(seq), current(curr) - { - } - - const out_iterator& get_current() const - { - return current; - } - - - bool equal (const SwigPyIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return (current == iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - ptrdiff_t distance(const SwigPyIterator &iter) const - { - const self_type *iters = dynamic_cast(&iter); - if (iters) { - return std::distance(current, iters->get_current()); - } else { - throw std::invalid_argument("bad iterator type"); - } - } - - protected: - out_iterator current; - }; - - template - struct from_oper - { - typedef const ValueType& argument_type; - typedef PyObject *result_type; - result_type operator()(argument_type v) const - { - return swig::from(v); - } - }; - - template::value_type, - typename FromOper = from_oper > - class SwigPyIteratorOpen_T : public SwigPyIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef SwigPyIterator_T base; - typedef SwigPyIteratorOpen_T self_type; - - SwigPyIteratorOpen_T(out_iterator curr, PyObject *seq) - : SwigPyIterator_T(curr, seq) - { - } - - PyObject *value() const { - return from(static_cast(*(base::current))); - } - - SwigPyIterator *copy() const - { - return new self_type(*this); - } - - SwigPyIterator *incr(size_t n = 1) - { - while (n--) { - ++base::current; - } - return this; - } - - SwigPyIterator *decr(size_t n = 1) - { - while (n--) { - --base::current; - } - return this; - } - }; - - template::value_type, - typename FromOper = from_oper > - class SwigPyIteratorClosed_T : public SwigPyIterator_T - { - public: - FromOper from; - typedef OutIterator out_iterator; - typedef ValueType value_type; - typedef SwigPyIterator_T base; - typedef SwigPyIteratorClosed_T self_type; - - SwigPyIteratorClosed_T(out_iterator curr, out_iterator first, out_iterator last, PyObject *seq) - : SwigPyIterator_T(curr, seq), begin(first), end(last) - { - } - - PyObject *value() const { - if (base::current == end) { - throw stop_iteration(); - } else { - return from(static_cast(*(base::current))); - } - } - - SwigPyIterator *copy() const - { - return new self_type(*this); - } - - SwigPyIterator *incr(size_t n = 1) - { - while (n--) { - if (base::current == end) { - throw stop_iteration(); - } else { - ++base::current; - } - } - return this; - } - - SwigPyIterator *decr(size_t n = 1) - { - while (n--) { - if (base::current == begin) { - throw stop_iteration(); - } else { - --base::current; - } - } - return this; - } - - private: - out_iterator begin; - out_iterator end; - }; - - template - inline SwigPyIterator* - make_output_iterator(const OutIter& current, const OutIter& begin,const OutIter& end, PyObject *seq = 0) - { - return new SwigPyIteratorClosed_T(current, begin, end, seq); - } - - template - inline SwigPyIterator* - make_output_iterator(const OutIter& current, PyObject *seq = 0) - { - return new SwigPyIteratorOpen_T(current, seq); - } -} - - -namespace swig -{ - template - struct SwigPySequence_Ref - { - SwigPySequence_Ref(PyObject* seq, int index) - : _seq(seq), _index(index) - { - } - - operator T () const - { - swig::SwigVar_PyObject item = PySequence_GetItem(_seq, _index); - try { - return swig::as(item, true); - } catch (std::exception& e) { - char msg[1024]; - sprintf(msg, "in sequence element %d ", _index); - if (!PyErr_Occurred()) { - ::SWIG_Error(SWIG_TypeError, swig::type_name()); - } - SWIG_Python_AddErrorMsg(msg); - SWIG_Python_AddErrorMsg(e.what()); - throw; - } - } - - SwigPySequence_Ref& operator=(const T& v) - { - PySequence_SetItem(_seq, _index, swig::from(v)); - return *this; - } - - private: - PyObject* _seq; - int _index; - }; - - template - struct SwigPySequence_ArrowProxy - { - SwigPySequence_ArrowProxy(const T& x): m_value(x) {} - const T* operator->() const { return &m_value; } - operator const T*() const { return &m_value; } - T m_value; - }; - - template - struct SwigPySequence_InputIterator - { - typedef SwigPySequence_InputIterator self; - - typedef std::random_access_iterator_tag iterator_category; - typedef Reference reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - - SwigPySequence_InputIterator() - { - } - - SwigPySequence_InputIterator(PyObject* seq, int index) - : _seq(seq), _index(index) - { - } - - reference operator*() const - { - return reference(_seq, _index); - } - - SwigPySequence_ArrowProxy - operator->() const { - return SwigPySequence_ArrowProxy(operator*()); - } - - bool operator==(const self& ri) const - { - return (_index == ri._index) && (_seq == ri._seq); - } - - bool operator!=(const self& ri) const - { - return !(operator==(ri)); - } - - self& operator ++ () - { - ++_index; - return *this; - } - - self& operator -- () - { - --_index; - return *this; - } - - self& operator += (difference_type n) - { - _index += n; - return *this; - } - - self operator +(difference_type n) const - { - return self(_seq, _index + n); - } - - self& operator -= (difference_type n) - { - _index -= n; - return *this; - } - - self operator -(difference_type n) const - { - return self(_seq, _index - n); - } - - difference_type operator - (const self& ri) const - { - return _index - ri._index; - } - - bool operator < (const self& ri) const - { - return _index < ri._index; - } - - reference - operator[](difference_type n) const - { - return reference(_seq, _index + n); - } - - private: - PyObject* _seq; - difference_type _index; - }; - - template - struct SwigPySequence_Cont - { - typedef SwigPySequence_Ref reference; - typedef const SwigPySequence_Ref const_reference; - typedef T value_type; - typedef T* pointer; - typedef int difference_type; - typedef int size_type; - typedef const pointer const_pointer; - typedef SwigPySequence_InputIterator iterator; - typedef SwigPySequence_InputIterator const_iterator; - - SwigPySequence_Cont(PyObject* seq) : _seq(0) - { - if (!PySequence_Check(seq)) { - throw std::invalid_argument("a sequence is expected"); - } - _seq = seq; - Py_INCREF(_seq); - } - - ~SwigPySequence_Cont() - { - Py_XDECREF(_seq); - } - - size_type size() const - { - return static_cast(PySequence_Size(_seq)); - } - - bool empty() const - { - return size() == 0; - } - - iterator begin() - { - return iterator(_seq, 0); - } - - const_iterator begin() const - { - return const_iterator(_seq, 0); - } - - iterator end() - { - return iterator(_seq, size()); - } - - const_iterator end() const - { - return const_iterator(_seq, size()); - } - - reference operator[](difference_type n) - { - return reference(_seq, n); - } - - const_reference operator[](difference_type n) const - { - return const_reference(_seq, n); - } - - bool check(bool set_err = true) const - { - int s = size(); - for (int i = 0; i < s; ++i) { - swig::SwigVar_PyObject item = PySequence_GetItem(_seq, i); - if (!swig::check(item)) { - if (set_err) { - char msg[1024]; - sprintf(msg, "in sequence element %d", i); - SWIG_Error(SWIG_RuntimeError, msg); - } - return false; - } - } - return true; - } - - private: - PyObject* _seq; - }; - -} - - -CvMat * cvLoadImageMat(const char* filename, int iscolor=CV_LOAD_IMAGE_COLOR ){ - return cvLoadImageM(filename, iscolor); -} - - -CvMat * cvRetrieveFrame__CvMat( CvCapture* capture ){ - IplImage * im = cvRetrieveFrame(capture); - if(im){ - CvMat * mat = (CvMat *)cvAlloc(sizeof(CvMat)); - mat = cvGetMat(im, mat); - return mat; - } - return false; -} - - -CvMat * cvQueryFrame__CvMat( CvCapture * capture ){ - IplImage * im = cvQueryFrame(capture); - if(im){ - CvMat * mat = (CvMat *)cvAlloc(sizeof(CvMat)); - mat = cvGetMat(im, mat); - return mat; - } - return false; -} - - - #define SWIG_From_long PyInt_FromLong - - -SWIGINTERNINLINE PyObject * -SWIG_From_int (int value) -{ - return SWIG_From_long (value); -} - - -SWIGINTERNINLINE PyObject * -SWIG_FromCharPtrAndSize(const char* carray, size_t size) -{ - if (carray) { - if (size > INT_MAX) { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - return pchar_descriptor ? - SWIG_NewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); - } else { -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromStringAndSize(carray, static_cast< int >(size)); -#else - return PyString_FromStringAndSize(carray, static_cast< int >(size)); -#endif - } - } else { - return SWIG_Py_Void(); - } -} - - -SWIGINTERNINLINE PyObject * -SWIG_FromCharPtr(const char *cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); -} - - - #define SWIG_From_double PyFloat_FromDouble - - -SWIGINTERN int -SWIG_AsCharArray(PyObject * obj, char *val, size_t size) -{ - char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize; - if (csize <= size) { - if (val) { - if (csize) memcpy(val, cptr, csize*sizeof(char)); - if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) delete[] cptr; - } - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_char (PyObject * obj, char *val) -{ - int res = SWIG_AsCharArray(obj, val, 1); - if (!SWIG_IsOK(res)) { - long v; - res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); - if (SWIG_IsOK(res)) { - if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { - if (val) *val = static_cast< char >(v); - } else { - res = SWIG_OverflowError; - } - } - } - return res; -} - -SWIGINTERN void delete_CvCapture(CvCapture *self){ CvCapture * dummy = self; cvReleaseCapture (& dummy); } -SWIGINTERN void delete_CvVideoWriter(CvVideoWriter *self){ CvVideoWriter * dummy = self; cvReleaseVideoWriter (& dummy); } -#ifdef __cplusplus -extern "C" { -#endif -SWIGINTERN PyObject *_wrap_new_CvRNG_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG *arg1 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG_Wrapper *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvRNG_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_uint64_t, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - arg1 = reinterpret_cast< CvRNG * >(argp1); - result = (CvRNG_Wrapper *)new CvRNG_Wrapper((CvRNG const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper_ptr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRNG_Wrapper_ptr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ptr" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - result = (CvRNG *)(arg1)->ptr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper_ref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRNG_Wrapper_ref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ref" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - result = (CvRNG *) &(arg1)->ref(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRNG_Wrapper___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___eq__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvRNG_Wrapper * >(argp2); - result = (bool)(arg1)->operator ==((CvRNG_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRNG_Wrapper___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___ne__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvRNG_Wrapper * >(argp2); - result = (bool)(arg1)->operator !=((CvRNG_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvRNG_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvRNG_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvRNG_Wrapper_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvRNG_Wrapper, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSubdiv2DEdge_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge *arg1 = 0 ; - CvSubdiv2DEdge temp1 ; - size_t val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge_Wrapper *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvSubdiv2DEdge_Wrapper",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge""'"); - } - temp1 = static_cast< CvSubdiv2DEdge >(val1); - arg1 = &temp1; - result = (CvSubdiv2DEdge_Wrapper *)new CvSubdiv2DEdge_Wrapper((CvSubdiv2DEdge const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper_ptr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DEdge_Wrapper_ptr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ptr" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - result = (CvSubdiv2DEdge *)(arg1)->ptr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper_ref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DEdge_Wrapper_ref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ref" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - result = (CvSubdiv2DEdge *) &(arg1)->ref(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DEdge_Wrapper___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp2); - result = (bool)(arg1)->operator ==((CvSubdiv2DEdge_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DEdge_Wrapper___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp2); - result = (bool)(arg1)->operator !=((CvSubdiv2DEdge_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSubdiv2DEdge_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSubdiv2DEdge_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSubdiv2DEdge_Wrapper_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvSetMouseCallback__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - PyObject *arg3 = (PyObject *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetMouseCallback",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetMouseCallback" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - arg2 = obj1; - arg3 = obj2; - cvSetMouseCallbackPy((char const *)arg1,arg2,arg3); - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetMouseCallback__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - PyObject *arg2 = (PyObject *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvSetMouseCallback",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetMouseCallback" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - arg2 = obj1; - cvSetMouseCallbackPy((char const *)arg1,arg2); - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetMouseCallback(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - return _wrap_cvSetMouseCallback__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - _v = (argv[1] != 0); - if (_v) { - _v = (argv[2] != 0); - if (_v) { - return _wrap_cvSetMouseCallback__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvSetMouseCallback'.\n" - " Possible C/C++ prototypes are:\n" - " cvSetMouseCallbackPy(char const *,PyObject *,PyObject *)\n" - " cvSetMouseCallbackPy(char const *,PyObject *)\n"); - return NULL; -} - - - - /* C helper function which is responsible for calling - the Python real trackbar callback function */ - static void icvPyOnTrackbar( PyObject * py_cb_func, int pos) { - - /* Must ensure this thread has a lock on the interpreter */ - PyGILState_STATE state = PyGILState_Ensure(); - - PyObject *result; - - /* the argument of the callback ready to be passed to Python code */ - PyObject *arg1 = PyInt_FromLong (pos); - - /* build the tuple for calling the Python callback */ - PyObject *arglist = Py_BuildValue ("(O)", arg1); - - /* call the Python callback */ - result = PyEval_CallObject (py_cb_func, arglist); - - /* Errors in Python callback get swallowed, so report them here */ - if(!result){ - PyErr_Print(); - cvError( CV_StsInternal, "icvPyOnTrackbar", "", __FILE__, __LINE__); - } - - - /* cleanup */ - Py_XDECREF (result); - - /* Release Interpreter lock */ - PyGILState_Release(state); - } - -#define ICV_PY_MAX_CB 10 - - struct PyCvTrackbar { - CvTrackbarCallback cv_func; - PyObject * py_func; - PyObject * py_pos; - }; - - static int my_trackbar_cb_size=0; - extern PyCvTrackbar my_trackbar_cb_funcs[ICV_PY_MAX_CB]; - - -static void icvPyTrackbarCB0(int pos){ - if(!my_trackbar_cb_funcs[0].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[0].py_func, pos ); -} - - -static void icvPyTrackbarCB1(int pos){ - if(!my_trackbar_cb_funcs[1].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[1].py_func, pos ); -} - - -static void icvPyTrackbarCB2(int pos){ - if(!my_trackbar_cb_funcs[2].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[2].py_func, pos ); -} - - -static void icvPyTrackbarCB3(int pos){ - if(!my_trackbar_cb_funcs[3].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[3].py_func, pos ); -} - - -static void icvPyTrackbarCB4(int pos){ - if(!my_trackbar_cb_funcs[4].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[4].py_func, pos ); -} - - -static void icvPyTrackbarCB5(int pos){ - if(!my_trackbar_cb_funcs[5].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[5].py_func, pos ); -} - - -static void icvPyTrackbarCB6(int pos){ - if(!my_trackbar_cb_funcs[6].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[6].py_func, pos ); -} - - -static void icvPyTrackbarCB7(int pos){ - if(!my_trackbar_cb_funcs[7].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[7].py_func, pos ); -} - - -static void icvPyTrackbarCB8(int pos){ - if(!my_trackbar_cb_funcs[8].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[8].py_func, pos ); -} - - -static void icvPyTrackbarCB9(int pos){ - if(!my_trackbar_cb_funcs[9].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[9].py_func, pos ); -} - - - PyCvTrackbar my_trackbar_cb_funcs[ICV_PY_MAX_CB] = { - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB0, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB1, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB2, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB3, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB4, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB5, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB6, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB7, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB8, NULL, NULL } -/*@SWIG@*/, - /*@SWIG:highgui.i,181,%ICV_PY_CB_TAB_ENTRY@*/ - {(CvTrackbarCallback) icvPyTrackbarCB9, NULL, NULL } -/*@SWIG@*/ - }; - -SWIGINTERN PyObject *_wrap_cvWaitKey__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvWaitKey",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvWaitKey" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - result = (PyObject *)cvWaitKeyPy(arg1); - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWaitKey__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":cvWaitKey")) SWIG_fail; - result = (PyObject *)cvWaitKeyPy(); - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWaitKey(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[2]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 1); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_cvWaitKey__SWIG_1(self, args); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvWaitKey__SWIG_0(self, args); - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvWaitKey'.\n" - " Possible C/C++ prototypes are:\n" - " cvWaitKeyPy(int)\n" - " cvWaitKeyPy()\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLoadImage__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int arg2 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvLoadImage",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoadImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvLoadImage" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvMat *)cvLoadImageMat((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLoadImage__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvLoadImage",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoadImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - result = (CvMat *)cvLoadImageMat((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLoadImage(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_cvLoadImage__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_cvLoadImage__SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'cvLoadImage'.\n" - " Possible C/C++ prototypes are:\n" - " cvLoadImageMat(char const *,int)\n" - " cvLoadImageMat(char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRetrieveFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvRetrieveFrame",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRetrieveFrame" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - { - try { - result = (CvMat *)cvRetrieveFrame__CvMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvQueryFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvQueryFrame",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvQueryFrame" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - { - try { - result = (CvMat *)cvQueryFrame__CvMat(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvInitSystem(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - char **arg2 = (char **) 0 ; - int val1 ; - int ecode1 = 0 ; - void *vptr2 ; - char *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvInitSystem",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvInitSystem" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_char, 1)) == -1){ - SWIG_fail; - } - buffer2 = (char *) vptr2; - arg2=&buffer2; - } - { - try { - result = (int)cvInitSystem(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvStartWindowThread(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int result; - - if (!PyArg_ParseTuple(args,(char *)":cvStartWindowThread")) SWIG_fail; - { - try { - result = (int)cvStartWindowThread(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvNamedWindow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int arg2 = (int) 1 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvNamedWindow",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvNamedWindow" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvNamedWindow" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (int)cvNamedWindow((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvShowImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvShowImage",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvShowImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - cvShowImage((char const *)arg1,(void const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvResizeWindow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int arg2 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvResizeWindow",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvResizeWindow" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvResizeWindow" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvResizeWindow" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvResizeWindow((char const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvMoveWindow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int arg2 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvMoveWindow",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvMoveWindow" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvMoveWindow" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvMoveWindow" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvMoveWindow((char const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDestroyWindow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvDestroyWindow",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvDestroyWindow" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - cvDestroyWindow((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDestroyAllWindows(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - - if (!PyArg_ParseTuple(args,(char *)":cvDestroyAllWindows")) SWIG_fail; - { - try { - cvDestroyAllWindows(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetWindowHandle(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - void *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetWindowHandle",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetWindowHandle" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - result = (void *)cvGetWindowHandle((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetWindowName(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - void *arg1 = (void *) 0 ; - int res1 ; - PyObject * obj0 = 0 ; - char *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetWindowName",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0,SWIG_as_voidptrptr(&arg1), 0, 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetWindowName" "', argument " "1"" of type '" "void *""'"); - } - { - try { - result = (char *)cvGetWindowName(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_FromCharPtr((const char *)result); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateTrackbar(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int *arg3 = (int *) 0 ; - int arg4 ; - CvTrackbarCallback arg5 = (CvTrackbarCallback) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:cvCreateTrackbar",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateTrackbar" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCreateTrackbar" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - arg3 = (int *)malloc (sizeof (int)); - *arg3 = PyInt_AsLong (obj2); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateTrackbar" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - if(my_trackbar_cb_size == ICV_PY_MAX_CB){ - SWIG_exception(SWIG_IndexError, "Exceeded maximum number of trackbars"); - } - - my_trackbar_cb_size++; - - if (!PyCallable_Check(obj4)) { - PyErr_SetString(PyExc_TypeError, "parameter must be callable"); - return 0; - } - Py_XINCREF((PyObject*) obj4); /* Add a reference to new callback */ - Py_XDECREF(my_trackbar_cb_funcs[my_trackbar_cb_size-1].py_func); /* Dispose of previous callback */ - my_trackbar_cb_funcs[my_trackbar_cb_size-1].py_func = (PyObject *) obj4; - - /* prepare to call the C function who will register the callback */ - arg5 = my_trackbar_cb_funcs[ my_trackbar_cb_size-1 ].cv_func; - } - { - try { - result = (int)cvCreateTrackbar((char const *)arg1,(char const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateTrackbar2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int *arg3 = (int *) 0 ; - int arg4 ; - CvTrackbarCallback2 arg5 = (CvTrackbarCallback2) 0 ; - void *arg6 = (void *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val4 ; - int ecode4 = 0 ; - int res6 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvCreateTrackbar2",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateTrackbar2" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCreateTrackbar2" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - arg3 = (int *)malloc (sizeof (int)); - *arg3 = PyInt_AsLong (obj2); - } - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateTrackbar2" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - int res = SWIG_ConvertFunctionPtr(obj4, (void**)(&arg5), SWIGTYPE_p_f_int_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvCreateTrackbar2" "', argument " "5"" of type '" "CvTrackbarCallback2""'"); - } - } - if (obj5) { - res6 = SWIG_ConvertPtr(obj5,SWIG_as_voidptrptr(&arg6), 0, 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "cvCreateTrackbar2" "', argument " "6"" of type '" "void *""'"); - } - } - { - try { - result = (int)cvCreateTrackbar2((char const *)arg1,(char const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetTrackbarPos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetTrackbarPos",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetTrackbarPos" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvGetTrackbarPos" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (int)cvGetTrackbarPos((char const *)arg1,(char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetTrackbarPos(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetTrackbarPos",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetTrackbarPos" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvSetTrackbarPos" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetTrackbarPos" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - cvSetTrackbarPos((char const *)arg1,(char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetMouseCallbackOld(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvMouseCallback arg2 = (CvMouseCallback) 0 ; - void *arg3 = (void *) NULL ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int res3 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSetMouseCallbackOld",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetMouseCallbackOld" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - int res = SWIG_ConvertFunctionPtr(obj1, (void**)(&arg2), SWIGTYPE_p_f_int_int_int_int_p_void__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "cvSetMouseCallbackOld" "', argument " "2"" of type '" "CvMouseCallback""'"); - } - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2,SWIG_as_voidptrptr(&arg3), 0, 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSetMouseCallbackOld" "', argument " "3"" of type '" "void *""'"); - } - } - { - try { - cvSetMouseCallback((char const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvLoadImageM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int arg2 = (int) 1 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvLoadImageM",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvLoadImageM" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvLoadImageM" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (CvMat *)cvLoadImageM((char const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, SWIG_POINTER_OWN | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSaveImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int *arg3 = (int *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvSaveImage",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSaveImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvSaveImage" "', argument " "3"" of type '" "int const *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - } - { - try { - result = (int)cvSaveImage((char const *)arg1,(void const *)arg2,(int const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDecodeImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 = (int) 1 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvDecodeImage",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvDecodeImage" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (IplImage *)cvDecodeImage((CvMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvDecodeImageM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 = (int) 1 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvDecodeImageM",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvDecodeImageM" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (CvMat *)cvDecodeImageM((CvMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvEncodeImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int *arg3 = (int *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvEncodeImage",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvEncodeImage" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvEncodeImage" "', argument " "3"" of type '" "int const *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - } - { - try { - result = (CvMat *)cvEncodeImage((char const *)arg1,(void const *)arg2,(int const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvConvertImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvArr *arg1 = (CvArr *) 0 ; - CvArr *arg2 = (CvArr *) 0 ; - int arg3 = (int) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO|O:cvConvertImage",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = PyObject_to_CvArr(obj1, &freearg2); - } - if (obj2) { - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvConvertImage" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - } - { - try { - cvConvertImage((void const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1) - { - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2) - { - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWaitKeyC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 = (int) 0 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"|O:cvWaitKeyC",&obj0)) SWIG_fail; - if (obj0) { - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvWaitKeyC" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - } - { - try { - result = (int)cvWaitKey(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateFileCapture(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - PyObject * obj0 = 0 ; - CvCapture *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCreateFileCapture",&obj0)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateFileCapture" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - { - try { - result = (CvCapture *)cvCreateFileCapture((char const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvCapture, 0 | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateCameraCapture(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvCapture *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvCreateCameraCapture",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateCameraCapture" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (CvCapture *)cvCreateCameraCapture(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvCapture, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGrabFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGrabFrame",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGrabFrame" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - { - try { - result = (int)cvGrabFrame(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRetrieveFrame__Deprecated(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - int arg2 = (int) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O|O:cvRetrieveFrame__Deprecated",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRetrieveFrame__Deprecated" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - if (obj1) { - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvRetrieveFrame__Deprecated" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - } - { - try { - result = (IplImage *)cvRetrieveFrame(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvQueryFrame__Deprecated(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:cvQueryFrame__Deprecated",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvQueryFrame__Deprecated" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - { - try { - result = (IplImage *)cvQueryFrame(arg1); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetCaptureProperty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvGetCaptureProperty",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetCaptureProperty" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvGetCaptureProperty" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (double)cvGetCaptureProperty(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvSetCaptureProperty(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - int arg2 ; - double arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:cvSetCaptureProperty",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvSetCaptureProperty" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvSetCaptureProperty" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvSetCaptureProperty" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = (int)cvSetCaptureProperty(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvGetCaptureDomain(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:cvGetCaptureDomain",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvGetCaptureDomain" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - { - try { - result = (int)cvGetCaptureDomain(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CV_FOURCC(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char arg1 ; - char arg2 ; - char arg3 ; - char arg4 ; - char val1 ; - int ecode1 = 0 ; - char val2 ; - int ecode2 = 0 ; - char val3 ; - int ecode3 = 0 ; - char val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CV_FOURCC",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_char(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CV_FOURCC" "', argument " "1"" of type '" "char""'"); - } - arg1 = static_cast< char >(val1); - ecode2 = SWIG_AsVal_char(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CV_FOURCC" "', argument " "2"" of type '" "char""'"); - } - arg2 = static_cast< char >(val2); - ecode3 = SWIG_AsVal_char(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CV_FOURCC" "', argument " "3"" of type '" "char""'"); - } - arg3 = static_cast< char >(val3); - ecode4 = SWIG_AsVal_char(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CV_FOURCC" "', argument " "4"" of type '" "char""'"); - } - arg4 = static_cast< char >(val4); - { - try { - result = (int)CV_FOURCC(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateVideoWriter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - char *arg1 = (char *) 0 ; - int arg2 ; - double arg3 ; - CvSize arg4 ; - int arg5 = (int) 1 ; - int res1 ; - char *buf1 = 0 ; - int alloc1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - CvSize temp4 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvVideoWriter *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO|O:cvCreateVideoWriter",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvCreateVideoWriter" "', argument " "1"" of type '" "char const *""'"); - } - arg1 = reinterpret_cast< char * >(buf1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "cvCreateVideoWriter" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateVideoWriter" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"ii", & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - arg4 = *ptr; - } - } - if (obj4) { - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "cvCreateVideoWriter" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - } - { - try { - result = (CvVideoWriter *)cvCreateVideoWriter((char const *)arg1,arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVideoWriter, SWIG_POINTER_OWN | 0 ); - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return resultobj; -fail: - if (alloc1 == SWIG_NEWOBJ) delete[] buf1; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvWriteFrame(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVideoWriter *arg1 = (CvVideoWriter *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:cvWriteFrame",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVideoWriter, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvWriteFrame" "', argument " "1"" of type '" "CvVideoWriter *""'"); - } - arg1 = reinterpret_cast< CvVideoWriter * >(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(obj1, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - { - try { - result = (int)cvWriteFrame(arg1,(_IplImage const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvvImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvvImage")) SWIG_fail; - { - try { - result = (CvvImage *)new CvvImage(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvvImage, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvvImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvvImage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvvImage" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Create__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - int arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvvImage_Create",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Create" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvvImage_Create" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_Create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvvImage_Create" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvvImage_Create" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - result = (bool)(arg1)->Create(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Create__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - int arg2 ; - int arg3 ; - int arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvvImage_Create",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Create" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvvImage_Create" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_Create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvvImage_Create" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - try { - result = (bool)(arg1)->Create(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Create(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_Create__SWIG_1(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_Create__SWIG_0(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvvImage_Create'.\n" - " Possible C/C++ prototypes are:\n" - " Create(CvvImage *,int,int,int,int)\n" - " Create(CvvImage *,int,int,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Load__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvvImage_Load",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Load" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_Load" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (bool)(arg1)->Load((char const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Load__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvvImage_Load",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Load" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (bool)(arg1)->Load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Load(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvvImage_Load__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_Load__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvvImage_Load'.\n" - " Possible C/C++ prototypes are:\n" - " Load(CvvImage *,char const *,int)\n" - " Load(CvvImage *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_LoadRect(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - int arg3 ; - CvRect arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int val3 ; - int ecode3 = 0 ; - CvRect temp4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvvImage_LoadRect",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_LoadRect" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_LoadRect" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_LoadRect" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iiii", & temp4.x, & temp4.y, & temp4.width, & temp4.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - arg4 = *ptr; - } - } - { - try { - result = (bool)(arg1)->LoadRect((char const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Save(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvvImage_Save",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Save" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (bool)(arg1)->Save((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_CopyOf__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - CvvImage *arg2 = 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvvImage_CopyOf",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvvImage, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - arg2 = reinterpret_cast< CvvImage * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_CopyOf" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - (arg1)->CopyOf(*arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_CopyOf__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - CvvImage *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvvImage_CopyOf",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvvImage, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvvImage_CopyOf" "', argument " "2"" of type '" "CvvImage &""'"); - } - arg2 = reinterpret_cast< CvvImage * >(argp2); - { - try { - (arg1)->CopyOf(*arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_CopyOf__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvvImage_CopyOf",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(obj1, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvvImage_CopyOf" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - (arg1)->CopyOf(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_CopyOf__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - IplImage *arg2 = (IplImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - IplImage header2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvvImage_CopyOf",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_CopyOf" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - void * vptr; - int res = SWIG_ConvertPtr(obj1, (&vptr), SWIGTYPE_p_CvMat, 0); - if ( res == -1 ){ - SWIG_exception( SWIG_TypeError, "%%typemap(in) IplImage * : could not convert to CvMat"); - SWIG_fail; - } - arg2 = cvGetImage((CvMat *)vptr, &header2); - } - { - try { - (arg1)->CopyOf(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_CopyOf(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_3(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p__IplImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_2(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvvImage, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvvImage_CopyOf__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvvImage_CopyOf'.\n" - " Possible C/C++ prototypes are:\n" - " CopyOf(CvvImage *,CvvImage &,int)\n" - " CopyOf(CvvImage *,CvvImage &)\n" - " CopyOf(CvvImage *,IplImage *,int)\n" - " CopyOf(CvvImage *,IplImage *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_GetImage(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - IplImage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvvImage_GetImage",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_GetImage" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - try { - result = (IplImage *)(arg1)->GetImage(); - } - catch (...) - { - SWIG_fail; - } - } - { - SWIG_exception( SWIG_TypeError, "IplImage * return type is deprecated. Please file a bug report at www.sourceforge.net/opencvlibrary if you see this error message."); - SWIG_fail; - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Destroy(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvvImage_Destroy",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Destroy" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - try { - (arg1)->Destroy(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Width(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvvImage_Width",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Width" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - try { - result = (int)(arg1)->Width(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Height(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvvImage_Height",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Height" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - try { - result = (int)(arg1)->Height(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Bpp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvvImage_Bpp",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Bpp" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - { - try { - result = (int)(arg1)->Bpp(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Fill(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvvImage_Fill",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Fill" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvvImage_Fill" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - (arg1)->Fill(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvvImage_Show(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvvImage *arg1 = (CvvImage *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvvImage_Show",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvvImage, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvvImage_Show" "', argument " "1"" of type '" "CvvImage *""'"); - } - arg1 = reinterpret_cast< CvvImage * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvvImage_Show" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - (arg1)->Show((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *CvvImage_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvvImage, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_delete_CvCapture(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvCapture *arg1 = (CvCapture *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvCapture",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvCapture, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvCapture" "', argument " "1"" of type '" "CvCapture *""'"); - } - arg1 = reinterpret_cast< CvCapture * >(argp1); - { - try { - delete_CvCapture(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvCapture_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvCapture, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_delete_CvVideoWriter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVideoWriter *arg1 = (CvVideoWriter *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvVideoWriter",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVideoWriter, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvVideoWriter" "', argument " "1"" of type '" "CvVideoWriter *""'"); - } - arg1 = reinterpret_cast< CvVideoWriter * >(argp1); - { - try { - delete_CvVideoWriter(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvVideoWriter_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvVideoWriter, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -static PyMethodDef SwigMethods[] = { - { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL}, - { (char *)"new_CvRNG_Wrapper", _wrap_new_CvRNG_Wrapper, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper_ptr", _wrap_CvRNG_Wrapper_ptr, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper_ref", _wrap_CvRNG_Wrapper_ref, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper___eq__", _wrap_CvRNG_Wrapper___eq__, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper___ne__", _wrap_CvRNG_Wrapper___ne__, METH_VARARGS, NULL}, - { (char *)"delete_CvRNG_Wrapper", _wrap_delete_CvRNG_Wrapper, METH_VARARGS, (char *)"delete_CvRNG_Wrapper(CvRNG_Wrapper self)"}, - { (char *)"CvRNG_Wrapper_swigregister", CvRNG_Wrapper_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvSubdiv2DEdge_Wrapper", _wrap_new_CvSubdiv2DEdge_Wrapper, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper_ptr", _wrap_CvSubdiv2DEdge_Wrapper_ptr, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper_ref", _wrap_CvSubdiv2DEdge_Wrapper_ref, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper___eq__", _wrap_CvSubdiv2DEdge_Wrapper___eq__, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper___ne__", _wrap_CvSubdiv2DEdge_Wrapper___ne__, METH_VARARGS, NULL}, - { (char *)"delete_CvSubdiv2DEdge_Wrapper", _wrap_delete_CvSubdiv2DEdge_Wrapper, METH_VARARGS, (char *)"delete_CvSubdiv2DEdge_Wrapper(CvSubdiv2DEdge_Wrapper self)"}, - { (char *)"CvSubdiv2DEdge_Wrapper_swigregister", CvSubdiv2DEdge_Wrapper_swigregister, METH_VARARGS, NULL}, - { (char *)"cvSetMouseCallback", _wrap_cvSetMouseCallback, METH_VARARGS, NULL}, - { (char *)"cvWaitKey", _wrap_cvWaitKey, METH_VARARGS, NULL}, - { (char *)"cvLoadImage", _wrap_cvLoadImage, METH_VARARGS, (char *)"\n" - "cvLoadImage(char filename, int iscolor = 1) -> CvMat\n" - "cvLoadImage(char filename) -> CvMat\n" - ""}, - { (char *)"cvRetrieveFrame", _wrap_cvRetrieveFrame, METH_VARARGS, (char *)"cvRetrieveFrame(CvCapture capture) -> CvMat"}, - { (char *)"cvQueryFrame", _wrap_cvQueryFrame, METH_VARARGS, (char *)"cvQueryFrame(CvCapture capture) -> CvMat"}, - { (char *)"cvInitSystem", _wrap_cvInitSystem, METH_VARARGS, (char *)"cvInitSystem(int argc, char argv) -> int"}, - { (char *)"cvStartWindowThread", _wrap_cvStartWindowThread, METH_VARARGS, (char *)"cvStartWindowThread() -> int"}, - { (char *)"cvNamedWindow", _wrap_cvNamedWindow, METH_VARARGS, (char *)"cvNamedWindow(char name, int flags = 1) -> int"}, - { (char *)"cvShowImage", _wrap_cvShowImage, METH_VARARGS, (char *)"cvShowImage(char name, CvArr image)"}, - { (char *)"cvResizeWindow", _wrap_cvResizeWindow, METH_VARARGS, (char *)"cvResizeWindow(char name, int width, int height)"}, - { (char *)"cvMoveWindow", _wrap_cvMoveWindow, METH_VARARGS, (char *)"cvMoveWindow(char name, int x, int y)"}, - { (char *)"cvDestroyWindow", _wrap_cvDestroyWindow, METH_VARARGS, (char *)"cvDestroyWindow(char name)"}, - { (char *)"cvDestroyAllWindows", _wrap_cvDestroyAllWindows, METH_VARARGS, (char *)"cvDestroyAllWindows()"}, - { (char *)"cvGetWindowHandle", _wrap_cvGetWindowHandle, METH_VARARGS, (char *)"cvGetWindowHandle(char name) -> void"}, - { (char *)"cvGetWindowName", _wrap_cvGetWindowName, METH_VARARGS, (char *)"cvGetWindowName(void window_handle) -> char"}, - { (char *)"cvCreateTrackbar", _wrap_cvCreateTrackbar, METH_VARARGS, (char *)"\n" - "cvCreateTrackbar(char trackbar_name, char window_name, int value, int count, \n" - " CvTrackbarCallback on_change) -> int\n" - ""}, - { (char *)"cvCreateTrackbar2", _wrap_cvCreateTrackbar2, METH_VARARGS, (char *)"\n" - "cvCreateTrackbar2(char trackbar_name, char window_name, int value, int count, \n" - " CvTrackbarCallback2 on_change, void userdata = None) -> int\n" - ""}, - { (char *)"cvGetTrackbarPos", _wrap_cvGetTrackbarPos, METH_VARARGS, (char *)"cvGetTrackbarPos(char trackbar_name, char window_name) -> int"}, - { (char *)"cvSetTrackbarPos", _wrap_cvSetTrackbarPos, METH_VARARGS, (char *)"cvSetTrackbarPos(char trackbar_name, char window_name, int pos)"}, - { (char *)"cvSetMouseCallbackOld", _wrap_cvSetMouseCallbackOld, METH_VARARGS, (char *)"cvSetMouseCallbackOld(char window_name, CvMouseCallback on_mouse, void param = None)"}, - { (char *)"cvLoadImageM", _wrap_cvLoadImageM, METH_VARARGS, (char *)"cvLoadImageM(char filename, int iscolor = 1) -> CvMat"}, - { (char *)"cvSaveImage", _wrap_cvSaveImage, METH_VARARGS, (char *)"cvSaveImage(char filename, CvArr image, int params = None) -> int"}, - { (char *)"cvDecodeImage", _wrap_cvDecodeImage, METH_VARARGS, (char *)"cvDecodeImage(CvMat buf, int iscolor = 1)"}, - { (char *)"cvDecodeImageM", _wrap_cvDecodeImageM, METH_VARARGS, (char *)"cvDecodeImageM(CvMat buf, int iscolor = 1) -> CvMat"}, - { (char *)"cvEncodeImage", _wrap_cvEncodeImage, METH_VARARGS, (char *)"cvEncodeImage(char ext, CvArr image, int params = None) -> CvMat"}, - { (char *)"cvConvertImage", _wrap_cvConvertImage, METH_VARARGS, (char *)"cvConvertImage(CvArr src, CvArr dst, int flags = 0)"}, - { (char *)"cvWaitKeyC", _wrap_cvWaitKeyC, METH_VARARGS, (char *)"cvWaitKeyC(int delay = 0) -> int"}, - { (char *)"cvCreateFileCapture", _wrap_cvCreateFileCapture, METH_VARARGS, (char *)"cvCreateFileCapture(char filename) -> CvCapture"}, - { (char *)"cvCreateCameraCapture", _wrap_cvCreateCameraCapture, METH_VARARGS, (char *)"cvCreateCameraCapture(int index) -> CvCapture"}, - { (char *)"cvGrabFrame", _wrap_cvGrabFrame, METH_VARARGS, (char *)"cvGrabFrame(CvCapture capture) -> int"}, - { (char *)"cvRetrieveFrame__Deprecated", _wrap_cvRetrieveFrame__Deprecated, METH_VARARGS, (char *)"cvRetrieveFrame__Deprecated(CvCapture capture, int streamIdx = 0)"}, - { (char *)"cvQueryFrame__Deprecated", _wrap_cvQueryFrame__Deprecated, METH_VARARGS, (char *)"cvQueryFrame__Deprecated(CvCapture capture)"}, - { (char *)"cvGetCaptureProperty", _wrap_cvGetCaptureProperty, METH_VARARGS, (char *)"cvGetCaptureProperty(CvCapture capture, int property_id) -> double"}, - { (char *)"cvSetCaptureProperty", _wrap_cvSetCaptureProperty, METH_VARARGS, (char *)"cvSetCaptureProperty(CvCapture capture, int property_id, double value) -> int"}, - { (char *)"cvGetCaptureDomain", _wrap_cvGetCaptureDomain, METH_VARARGS, (char *)"cvGetCaptureDomain(CvCapture capture) -> int"}, - { (char *)"CV_FOURCC", _wrap_CV_FOURCC, METH_VARARGS, (char *)"CV_FOURCC(char c1, char c2, char c3, char c4) -> int"}, - { (char *)"cvCreateVideoWriter", _wrap_cvCreateVideoWriter, METH_VARARGS, (char *)"\n" - "cvCreateVideoWriter(char filename, int fourcc, double fps, CvSize frame_size, \n" - " int is_color = 1) -> CvVideoWriter\n" - ""}, - { (char *)"cvWriteFrame", _wrap_cvWriteFrame, METH_VARARGS, (char *)"cvWriteFrame(CvVideoWriter writer, image) -> int"}, - { (char *)"new_CvvImage", _wrap_new_CvvImage, METH_VARARGS, (char *)"new_CvvImage() -> CvvImage"}, - { (char *)"delete_CvvImage", _wrap_delete_CvvImage, METH_VARARGS, (char *)"delete_CvvImage(CvvImage self)"}, - { (char *)"CvvImage_Create", _wrap_CvvImage_Create, METH_VARARGS, (char *)"\n" - "Create(int width, int height, int bits_per_pixel, int image_origin = 0) -> bool\n" - "CvvImage_Create(CvvImage self, int width, int height, int bits_per_pixel) -> bool\n" - ""}, - { (char *)"CvvImage_Load", _wrap_CvvImage_Load, METH_VARARGS, (char *)"\n" - "Load(char filename, int desired_color = 1) -> bool\n" - "CvvImage_Load(CvvImage self, char filename) -> bool\n" - ""}, - { (char *)"CvvImage_LoadRect", _wrap_CvvImage_LoadRect, METH_VARARGS, (char *)"CvvImage_LoadRect(CvvImage self, char filename, int desired_color, CvRect r) -> bool"}, - { (char *)"CvvImage_Save", _wrap_CvvImage_Save, METH_VARARGS, (char *)"CvvImage_Save(CvvImage self, char filename) -> bool"}, - { (char *)"CvvImage_CopyOf", _wrap_CvvImage_CopyOf, METH_VARARGS, (char *)"\n" - "CopyOf(CvvImage image, int desired_color = -1)\n" - "CopyOf(CvvImage image)\n" - "CopyOf( img, int desired_color = -1)\n" - "CvvImage_CopyOf(CvvImage self, img)\n" - ""}, - { (char *)"CvvImage_GetImage", _wrap_CvvImage_GetImage, METH_VARARGS, (char *)"CvvImage_GetImage(CvvImage self)"}, - { (char *)"CvvImage_Destroy", _wrap_CvvImage_Destroy, METH_VARARGS, (char *)"CvvImage_Destroy(CvvImage self)"}, - { (char *)"CvvImage_Width", _wrap_CvvImage_Width, METH_VARARGS, (char *)"CvvImage_Width(CvvImage self) -> int"}, - { (char *)"CvvImage_Height", _wrap_CvvImage_Height, METH_VARARGS, (char *)"CvvImage_Height(CvvImage self) -> int"}, - { (char *)"CvvImage_Bpp", _wrap_CvvImage_Bpp, METH_VARARGS, (char *)"CvvImage_Bpp(CvvImage self) -> int"}, - { (char *)"CvvImage_Fill", _wrap_CvvImage_Fill, METH_VARARGS, (char *)"CvvImage_Fill(CvvImage self, int color)"}, - { (char *)"CvvImage_Show", _wrap_CvvImage_Show, METH_VARARGS, (char *)"CvvImage_Show(CvvImage self, char window)"}, - { (char *)"CvvImage_swigregister", CvvImage_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_CvCapture", _wrap_delete_CvCapture, METH_VARARGS, (char *)"delete_CvCapture(CvCapture self)"}, - { (char *)"CvCapture_swigregister", CvCapture_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_CvVideoWriter", _wrap_delete_CvVideoWriter, METH_VARARGS, (char *)"delete_CvVideoWriter(CvVideoWriter self)"}, - { (char *)"CvVideoWriter_swigregister", CvVideoWriter_swigregister, METH_VARARGS, NULL}, - { NULL, NULL, 0, NULL } -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - -static void *_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< CvPoint,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,2 > > *) x)); -} -static void *_p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvConnectedComp > *) x)); -} -static void *_p_CvTypedSeqT_CvRect_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvRect > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint > *) x)); -} -static void *_p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvTuple< float,3 > > *) x)); -} -static void *_p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvSeq * > *) x)); -} -static void *_p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvQuadEdge2D > *) x)); -} -static void *_p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvSeq *) ((CvTypedSeq< CvPoint2D32f > *) x)); -} -static swig_type_info _swigt__p_Cv32suf = {"_p_Cv32suf", "Cv32suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv64suf = {"_p_Cv64suf", "Cv64suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAttrList = {"_p_CvAttrList", "CvAttrList *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAvgComp = {"_p_CvAvgComp", "CvAvgComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBox2D = {"_p_CvBox2D", "CvBox2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvCapture = {"_p_CvCapture", "CvCapture *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChain = {"_p_CvChain", "CvChain *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChainPtReader = {"_p_CvChainPtReader", "CvChainPtReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConDensation = {"_p_CvConDensation", "CvConDensation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConnectedComp = {"_p_CvConnectedComp", "CvConnectedComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContour = {"_p_CvContour", "CvPoint2DSeq *|CvContour *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContourTree = {"_p_CvContourTree", "CvContourTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConvexityDefect = {"_p_CvConvexityDefect", "CvConvexityDefect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileNode = {"_p_CvFileNode", "CvFileNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileStorage = {"_p_CvFileStorage", "CvFileStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFilter = {"_p_CvFilter", "enum CvFilter *|CvFilter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFont = {"_p_CvFont", "CvFont *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGenericHash = {"_p_CvGenericHash", "CvGenericHash *|CvFileNodeHash *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraph = {"_p_CvGraph", "CvGraph *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphEdge = {"_p_CvGraphEdge", "CvGraphEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphScanner = {"_p_CvGraphScanner", "CvGraphScanner *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx = {"_p_CvGraphVtx", "CvGraphVtx *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx2D = {"_p_CvGraphVtx2D", "CvGraphVtx2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifier = {"_p_CvHaarClassifier", "CvHaarClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifierCascade = {"_p_CvHaarClassifierCascade", "CvHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarFeature = {"_p_CvHaarFeature", "CvHaarFeature *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarStageClassifier = {"_p_CvHaarStageClassifier", "CvHaarStageClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHidHaarClassifierCascade = {"_p_CvHidHaarClassifierCascade", "CvHidHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHistogram = {"_p_CvHistogram", "CvHistogram *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHuMoments = {"_p_CvHuMoments", "CvHuMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvKalman = {"_p_CvKalman", "CvKalman *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLineIterator = {"_p_CvLineIterator", "CvLineIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMSERParams = {"_p_CvMSERParams", "CvMSERParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMat = {"_p_CvMat", "CvMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND = {"_p_CvMatND", "CvMatND *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatrix3 = {"_p_CvMatrix3", "CvMatrix3 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemBlock = {"_p_CvMemBlock", "CvMemBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStorage = {"_p_CvMemStorage", "CvMemStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStoragePos = {"_p_CvMemStoragePos", "CvMemStoragePos *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvModuleInfo = {"_p_CvModuleInfo", "CvModuleInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMoments = {"_p_CvMoments", "CvMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNArrayIterator = {"_p_CvNArrayIterator", "CvNArrayIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNextEdgeType = {"_p_CvNextEdgeType", "enum CvNextEdgeType *|CvNextEdgeType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPOSITObject = {"_p_CvPOSITObject", "CvPOSITObject *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPluginFuncInfo = {"_p_CvPluginFuncInfo", "CvPluginFuncInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint = {"_p_CvPoint", "CvPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D32f = {"_p_CvPoint2D32f", "CvPoint2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D64f = {"_p_CvPoint2D64f", "CvPoint2D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D32f = {"_p_CvPoint3D32f", "CvPoint3D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D64f = {"_p_CvPoint3D64f", "CvPoint3D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvQuadEdge2D = {"_p_CvQuadEdge2D", "CvQuadEdge2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRNG_Wrapper = {"_p_CvRNG_Wrapper", "CvRNG_Wrapper *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRect = {"_p_CvRect", "CvRect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFParams = {"_p_CvSURFParams", "CvSURFParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFPoint = {"_p_CvSURFPoint", "CvSURFPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvScalar = {"_p_CvScalar", "CvScalar *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeq = {"_p_CvSeq", "CvSeq *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t = {"_p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t = {"_p_CvTypedSeqT_CvTupleT_float_2_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvRect_t = {"_p_CvTypedSeqT_CvRect_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint_t = {"_p_CvTypedSeqT_CvPoint_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvQuadEdge2D_t = {"_p_CvTypedSeqT_CvQuadEdge2D_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvSeq_p_t = {"_p_CvTypedSeqT_CvSeq_p_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvPoint2D32f_t = {"_p_CvTypedSeqT_CvPoint2D32f_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t = {"_p_CvTypedSeqT_CvTupleT_float_3_t_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvTypedSeqT_CvConnectedComp_t = {"_p_CvTypedSeqT_CvConnectedComp_t", 0, 0, 0, 0, 0}; -static swig_type_info _swigt__p_CvSeqBlock = {"_p_CvSeqBlock", "CvSeqBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqReader = {"_p_CvSeqReader", "CvSeqReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqWriter = {"_p_CvSeqWriter", "CvSeqWriter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSet = {"_p_CvSet", "CvSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSetElem = {"_p_CvSetElem", "CvSetElem *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize = {"_p_CvSize", "CvSize *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize2D32f = {"_p_CvSize2D32f", "CvSize2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSlice = {"_p_CvSlice", "CvSlice *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMat = {"_p_CvSparseMat", "CvSparseMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMatIterator = {"_p_CvSparseMatIterator", "CvSparseMatIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseNode = {"_p_CvSparseNode", "CvSparseNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarDetectorParams = {"_p_CvStarDetectorParams", "CvStarDetectorParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarKeypoint = {"_p_CvStarKeypoint", "CvStarKeypoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoBMState = {"_p_CvStereoBMState", "CvStereoBMState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoGCState = {"_p_CvStereoGCState", "CvStereoGCState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvString = {"_p_CvString", "CvString *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStringHashNode = {"_p_CvStringHashNode", "CvStringHashNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2D = {"_p_CvSubdiv2D", "CvSubdiv2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DEdge_Wrapper = {"_p_CvSubdiv2DEdge_Wrapper", "CvSubdiv2DEdge_Wrapper *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPoint = {"_p_CvSubdiv2DPoint", "CvSubdiv2DPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPointLocation = {"_p_CvSubdiv2DPointLocation", "enum CvSubdiv2DPointLocation *|CvSubdiv2DPointLocation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTermCriteria = {"_p_CvTermCriteria", "CvTermCriteria *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTreeNodeIterator = {"_p_CvTreeNodeIterator", "CvTreeNodeIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypeInfo = {"_p_CvTypeInfo", "CvTypeInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvVideoWriter = {"_p_CvVideoWriter", "CvVideoWriter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvvImage = {"_p_CvvImage", "CvvImage *|CImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernel = {"_p__IplConvKernel", "_IplConvKernel *|IplConvKernel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernelFP = {"_p__IplConvKernelFP", "_IplConvKernelFP *|IplConvKernelFP *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplImage = {"_p__IplImage", "_IplImage *|IplImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplROI = {"_p__IplROI", "_IplROI *|IplROI *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplTileInfo = {"_p__IplTileInfo", "_IplTileInfo *|IplTileInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_allocator_type = {"_p_allocator_type", "allocator_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_difference_type = {"_p_difference_type", "difference_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int__void = {"_p_f_int__void", "void (*)(int)|CvTrackbarCallback", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_int_int_int_p_void__void = {"_p_f_int_int_int_int_p_void__void", "void (*)(int,int,int,int,void *)|CvMouseCallback", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_f_int_p_void__void = {"_p_f_int_p_void__void", "CvTrackbarCallback2|void (*)(int,void *)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_float = {"_p_float", "float *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int = {"_p_int", "CvHistType *|int *|CVStatus *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|int64 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "schar *|signed char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *|CvSubdiv2DEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_type = {"_p_size_type", "size_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uint64 *|CvRNG *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "uchar *|unsigned char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|ushort *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_value_type = {"_p_value_type", "value_type *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_void = {"_p_void", "CvArr *|void *", 0, 0, (void*)0, 0}; - -static swig_type_info *swig_type_initial[] = { - &_swigt__p_Cv32suf, - &_swigt__p_Cv64suf, - &_swigt__p_CvAttrList, - &_swigt__p_CvAvgComp, - &_swigt__p_CvBox2D, - &_swigt__p_CvCapture, - &_swigt__p_CvChain, - &_swigt__p_CvChainPtReader, - &_swigt__p_CvConDensation, - &_swigt__p_CvConnectedComp, - &_swigt__p_CvContour, - &_swigt__p_CvContourTree, - &_swigt__p_CvConvexityDefect, - &_swigt__p_CvFileNode, - &_swigt__p_CvFileStorage, - &_swigt__p_CvFilter, - &_swigt__p_CvFont, - &_swigt__p_CvGenericHash, - &_swigt__p_CvGraph, - &_swigt__p_CvGraphEdge, - &_swigt__p_CvGraphScanner, - &_swigt__p_CvGraphVtx, - &_swigt__p_CvGraphVtx2D, - &_swigt__p_CvHaarClassifier, - &_swigt__p_CvHaarClassifierCascade, - &_swigt__p_CvHaarFeature, - &_swigt__p_CvHaarStageClassifier, - &_swigt__p_CvHidHaarClassifierCascade, - &_swigt__p_CvHistogram, - &_swigt__p_CvHuMoments, - &_swigt__p_CvKalman, - &_swigt__p_CvLineIterator, - &_swigt__p_CvMSERParams, - &_swigt__p_CvMat, - &_swigt__p_CvMatND, - &_swigt__p_CvMatrix3, - &_swigt__p_CvMemBlock, - &_swigt__p_CvMemStorage, - &_swigt__p_CvMemStoragePos, - &_swigt__p_CvModuleInfo, - &_swigt__p_CvMoments, - &_swigt__p_CvNArrayIterator, - &_swigt__p_CvNextEdgeType, - &_swigt__p_CvPOSITObject, - &_swigt__p_CvPluginFuncInfo, - &_swigt__p_CvPoint, - &_swigt__p_CvPoint2D32f, - &_swigt__p_CvPoint2D64f, - &_swigt__p_CvPoint3D32f, - &_swigt__p_CvPoint3D64f, - &_swigt__p_CvQuadEdge2D, - &_swigt__p_CvRNG_Wrapper, - &_swigt__p_CvRect, - &_swigt__p_CvSURFParams, - &_swigt__p_CvSURFPoint, - &_swigt__p_CvScalar, - &_swigt__p_CvSeq, - &_swigt__p_CvSeqBlock, - &_swigt__p_CvSeqReader, - &_swigt__p_CvSeqWriter, - &_swigt__p_CvSet, - &_swigt__p_CvSetElem, - &_swigt__p_CvSize, - &_swigt__p_CvSize2D32f, - &_swigt__p_CvSlice, - &_swigt__p_CvSparseMat, - &_swigt__p_CvSparseMatIterator, - &_swigt__p_CvSparseNode, - &_swigt__p_CvStarDetectorParams, - &_swigt__p_CvStarKeypoint, - &_swigt__p_CvStereoBMState, - &_swigt__p_CvStereoGCState, - &_swigt__p_CvString, - &_swigt__p_CvStringHashNode, - &_swigt__p_CvSubdiv2D, - &_swigt__p_CvSubdiv2DEdge_Wrapper, - &_swigt__p_CvSubdiv2DPoint, - &_swigt__p_CvSubdiv2DPointLocation, - &_swigt__p_CvTermCriteria, - &_swigt__p_CvTreeNodeIterator, - &_swigt__p_CvTypeInfo, - &_swigt__p_CvTypedSeqT_CvConnectedComp_t, - &_swigt__p_CvTypedSeqT_CvPoint2D32f_t, - &_swigt__p_CvTypedSeqT_CvPoint_t, - &_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, - &_swigt__p_CvTypedSeqT_CvRect_t, - &_swigt__p_CvTypedSeqT_CvSeq_p_t, - &_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, - &_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, - &_swigt__p_CvVideoWriter, - &_swigt__p_CvvImage, - &_swigt__p__IplConvKernel, - &_swigt__p__IplConvKernelFP, - &_swigt__p__IplImage, - &_swigt__p__IplROI, - &_swigt__p__IplTileInfo, - &_swigt__p_allocator_type, - &_swigt__p_char, - &_swigt__p_difference_type, - &_swigt__p_f_int__void, - &_swigt__p_f_int_int_int_int_p_void__void, - &_swigt__p_f_int_p_void__void, - &_swigt__p_float, - &_swigt__p_int, - &_swigt__p_int64_t, - &_swigt__p_p_char, - &_swigt__p_signed_char, - &_swigt__p_size_t, - &_swigt__p_size_type, - &_swigt__p_uint64_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_short, - &_swigt__p_value_type, - &_swigt__p_void, -}; - -static swig_cast_info _swigc__p_Cv32suf[] = { {&_swigt__p_Cv32suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv64suf[] = { {&_swigt__p_Cv64suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAttrList[] = { {&_swigt__p_CvAttrList, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAvgComp[] = { {&_swigt__p_CvAvgComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBox2D[] = { {&_swigt__p_CvBox2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvCapture[] = { {&_swigt__p_CvCapture, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChain[] = { {&_swigt__p_CvChain, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChainPtReader[] = { {&_swigt__p_CvChainPtReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConDensation[] = { {&_swigt__p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConnectedComp[] = { {&_swigt__p_CvConnectedComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContour[] = { {&_swigt__p_CvContour, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContourTree[] = { {&_swigt__p_CvContourTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConvexityDefect[] = { {&_swigt__p_CvConvexityDefect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode[] = { {&_swigt__p_CvFileNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileStorage[] = { {&_swigt__p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFilter[] = { {&_swigt__p_CvFilter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFont[] = { {&_swigt__p_CvFont, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGenericHash[] = { {&_swigt__p_CvGenericHash, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraph[] = { {&_swigt__p_CvGraph, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphEdge[] = { {&_swigt__p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphScanner[] = { {&_swigt__p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx[] = { {&_swigt__p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx2D[] = { {&_swigt__p_CvGraphVtx2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifier[] = { {&_swigt__p_CvHaarClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifierCascade[] = { {&_swigt__p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature[] = { {&_swigt__p_CvHaarFeature, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarStageClassifier[] = { {&_swigt__p_CvHaarStageClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHidHaarClassifierCascade[] = { {&_swigt__p_CvHidHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHistogram[] = { {&_swigt__p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHuMoments[] = { {&_swigt__p_CvHuMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKalman[] = { {&_swigt__p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLineIterator[] = { {&_swigt__p_CvLineIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMSERParams[] = { {&_swigt__p_CvMSERParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat[] = { {&_swigt__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND[] = { {&_swigt__p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix3[] = { {&_swigt__p_CvMatrix3, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemBlock[] = { {&_swigt__p_CvMemBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStorage[] = { {&_swigt__p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStoragePos[] = { {&_swigt__p_CvMemStoragePos, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModuleInfo[] = { {&_swigt__p_CvModuleInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMoments[] = { {&_swigt__p_CvMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNArrayIterator[] = { {&_swigt__p_CvNArrayIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNextEdgeType[] = { {&_swigt__p_CvNextEdgeType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPOSITObject[] = { {&_swigt__p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPluginFuncInfo[] = { {&_swigt__p_CvPluginFuncInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint[] = { {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D32f[] = { {&_swigt__p_CvPoint2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D64f[] = { {&_swigt__p_CvPoint2D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D32f[] = { {&_swigt__p_CvPoint3D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D64f[] = { {&_swigt__p_CvPoint3D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvQuadEdge2D[] = { {&_swigt__p_CvQuadEdge2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRNG_Wrapper[] = { {&_swigt__p_CvRNG_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRect[] = { {&_swigt__p_CvRect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFParams[] = { {&_swigt__p_CvSURFParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFPoint[] = { {&_swigt__p_CvSURFPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvScalar[] = { {&_swigt__p_CvScalar, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t[] = {{&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t[] = {{&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvRect_t[] = {{&_swigt__p_CvTypedSeqT_CvRect_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint_t[] = {{&_swigt__p_CvTypedSeqT_CvPoint_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvQuadEdge2D_t[] = {{&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvSeq_p_t[] = {{&_swigt__p_CvTypedSeqT_CvSeq_p_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvPoint2D32f_t[] = {{&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t[] = {{&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypedSeqT_CvConnectedComp_t[] = {{&_swigt__p_CvTypedSeqT_CvConnectedComp_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeq[] = { {&_swigt__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, _p_CvTypedSeqT_CvTupleT_CvPoint_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_2_t_t, _p_CvTypedSeqT_CvTupleT_float_2_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvRect_t, _p_CvTypedSeqT_CvRect_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint_t, _p_CvTypedSeqT_CvPoint_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvQuadEdge2D_t, _p_CvTypedSeqT_CvQuadEdge2D_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvSeq_p_t, _p_CvTypedSeqT_CvSeq_p_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvPoint2D32f_t, _p_CvTypedSeqT_CvPoint2D32f_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvSeq, 0, 0, 0}, {&_swigt__p_CvTypedSeqT_CvTupleT_float_3_t_t, _p_CvTypedSeqT_CvTupleT_float_3_t_tTo_p_CvSeq, 0, 0}, {&_swigt__p_CvTypedSeqT_CvConnectedComp_t, _p_CvTypedSeqT_CvConnectedComp_tTo_p_CvSeq, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqBlock[] = { {&_swigt__p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqReader[] = { {&_swigt__p_CvSeqReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqWriter[] = { {&_swigt__p_CvSeqWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSet[] = { {&_swigt__p_CvSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSetElem[] = { {&_swigt__p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize[] = { {&_swigt__p_CvSize, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize2D32f[] = { {&_swigt__p_CvSize2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSlice[] = { {&_swigt__p_CvSlice, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMat[] = { {&_swigt__p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMatIterator[] = { {&_swigt__p_CvSparseMatIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseNode[] = { {&_swigt__p_CvSparseNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarDetectorParams[] = { {&_swigt__p_CvStarDetectorParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarKeypoint[] = { {&_swigt__p_CvStarKeypoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoBMState[] = { {&_swigt__p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoGCState[] = { {&_swigt__p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvString[] = { {&_swigt__p_CvString, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStringHashNode[] = { {&_swigt__p_CvStringHashNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2D[] = { {&_swigt__p_CvSubdiv2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DEdge_Wrapper[] = { {&_swigt__p_CvSubdiv2DEdge_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPoint[] = { {&_swigt__p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPointLocation[] = { {&_swigt__p_CvSubdiv2DPointLocation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTermCriteria[] = { {&_swigt__p_CvTermCriteria, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTreeNodeIterator[] = { {&_swigt__p_CvTreeNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypeInfo[] = { {&_swigt__p_CvTypeInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvVideoWriter[] = { {&_swigt__p_CvVideoWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvvImage[] = { {&_swigt__p_CvvImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernel[] = { {&_swigt__p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernelFP[] = { {&_swigt__p__IplConvKernelFP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplImage[] = { {&_swigt__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplROI[] = { {&_swigt__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplTileInfo[] = { {&_swigt__p__IplTileInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_allocator_type[] = { {&_swigt__p_allocator_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_difference_type[] = { {&_swigt__p_difference_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int__void[] = { {&_swigt__p_f_int__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_int_int_int_p_void__void[] = { {&_swigt__p_f_int_int_int_int_p_void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_f_int_p_void__void[] = { {&_swigt__p_f_int_p_void__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_type[] = { {&_swigt__p_size_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_value_type[] = { {&_swigt__p_value_type, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; - -static swig_cast_info *swig_cast_initial[] = { - _swigc__p_Cv32suf, - _swigc__p_Cv64suf, - _swigc__p_CvAttrList, - _swigc__p_CvAvgComp, - _swigc__p_CvBox2D, - _swigc__p_CvCapture, - _swigc__p_CvChain, - _swigc__p_CvChainPtReader, - _swigc__p_CvConDensation, - _swigc__p_CvConnectedComp, - _swigc__p_CvContour, - _swigc__p_CvContourTree, - _swigc__p_CvConvexityDefect, - _swigc__p_CvFileNode, - _swigc__p_CvFileStorage, - _swigc__p_CvFilter, - _swigc__p_CvFont, - _swigc__p_CvGenericHash, - _swigc__p_CvGraph, - _swigc__p_CvGraphEdge, - _swigc__p_CvGraphScanner, - _swigc__p_CvGraphVtx, - _swigc__p_CvGraphVtx2D, - _swigc__p_CvHaarClassifier, - _swigc__p_CvHaarClassifierCascade, - _swigc__p_CvHaarFeature, - _swigc__p_CvHaarStageClassifier, - _swigc__p_CvHidHaarClassifierCascade, - _swigc__p_CvHistogram, - _swigc__p_CvHuMoments, - _swigc__p_CvKalman, - _swigc__p_CvLineIterator, - _swigc__p_CvMSERParams, - _swigc__p_CvMat, - _swigc__p_CvMatND, - _swigc__p_CvMatrix3, - _swigc__p_CvMemBlock, - _swigc__p_CvMemStorage, - _swigc__p_CvMemStoragePos, - _swigc__p_CvModuleInfo, - _swigc__p_CvMoments, - _swigc__p_CvNArrayIterator, - _swigc__p_CvNextEdgeType, - _swigc__p_CvPOSITObject, - _swigc__p_CvPluginFuncInfo, - _swigc__p_CvPoint, - _swigc__p_CvPoint2D32f, - _swigc__p_CvPoint2D64f, - _swigc__p_CvPoint3D32f, - _swigc__p_CvPoint3D64f, - _swigc__p_CvQuadEdge2D, - _swigc__p_CvRNG_Wrapper, - _swigc__p_CvRect, - _swigc__p_CvSURFParams, - _swigc__p_CvSURFPoint, - _swigc__p_CvScalar, - _swigc__p_CvSeq, - _swigc__p_CvSeqBlock, - _swigc__p_CvSeqReader, - _swigc__p_CvSeqWriter, - _swigc__p_CvSet, - _swigc__p_CvSetElem, - _swigc__p_CvSize, - _swigc__p_CvSize2D32f, - _swigc__p_CvSlice, - _swigc__p_CvSparseMat, - _swigc__p_CvSparseMatIterator, - _swigc__p_CvSparseNode, - _swigc__p_CvStarDetectorParams, - _swigc__p_CvStarKeypoint, - _swigc__p_CvStereoBMState, - _swigc__p_CvStereoGCState, - _swigc__p_CvString, - _swigc__p_CvStringHashNode, - _swigc__p_CvSubdiv2D, - _swigc__p_CvSubdiv2DEdge_Wrapper, - _swigc__p_CvSubdiv2DPoint, - _swigc__p_CvSubdiv2DPointLocation, - _swigc__p_CvTermCriteria, - _swigc__p_CvTreeNodeIterator, - _swigc__p_CvTypeInfo, - _swigc__p_CvTypedSeqT_CvConnectedComp_t, - _swigc__p_CvTypedSeqT_CvPoint2D32f_t, - _swigc__p_CvTypedSeqT_CvPoint_t, - _swigc__p_CvTypedSeqT_CvQuadEdge2D_t, - _swigc__p_CvTypedSeqT_CvRect_t, - _swigc__p_CvTypedSeqT_CvSeq_p_t, - _swigc__p_CvTypedSeqT_CvTupleT_CvPoint_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_2_t_t, - _swigc__p_CvTypedSeqT_CvTupleT_float_3_t_t, - _swigc__p_CvVideoWriter, - _swigc__p_CvvImage, - _swigc__p__IplConvKernel, - _swigc__p__IplConvKernelFP, - _swigc__p__IplImage, - _swigc__p__IplROI, - _swigc__p__IplTileInfo, - _swigc__p_allocator_type, - _swigc__p_char, - _swigc__p_difference_type, - _swigc__p_f_int__void, - _swigc__p_f_int_int_int_int_p_void__void, - _swigc__p_f_int_p_void__void, - _swigc__p_float, - _swigc__p_int, - _swigc__p_int64_t, - _swigc__p_p_char, - _swigc__p_signed_char, - _swigc__p_size_t, - _swigc__p_size_type, - _swigc__p_uint64_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_short, - _swigc__p_value_type, - _swigc__p_void, -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -static swig_const_info swig_const_table[] = { -{0, 0, 0, 0.0, 0, 0}}; - -#ifdef __cplusplus -} -#endif -/* ----------------------------------------------------------------------------- - * Type initialization: - * This problem is tough by the requirement that no dynamic - * memory is used. Also, since swig_type_info structures store pointers to - * swig_cast_info structures and swig_cast_info structures store pointers back - * to swig_type_info structures, we need some lookup code at initialization. - * The idea is that swig generates all the structures that are needed. - * The runtime then collects these partially filled structures. - * The SWIG_InitializeModule function takes these initial arrays out of - * swig_module, and does all the lookup, filling in the swig_module.types - * array with the correct data and linking the correct swig_cast_info - * structures together. - * - * The generated swig_type_info structures are assigned staticly to an initial - * array. We just loop through that array, and handle each type individually. - * First we lookup if this type has been already loaded, and if so, use the - * loaded structure instead of the generated one. Then we have to fill in the - * cast linked list. The cast data is initially stored in something like a - * two-dimensional array. Each row corresponds to a type (there are the same - * number of rows as there are in the swig_type_initial array). Each entry in - * a column is one of the swig_cast_info structures for that type. - * The cast_initial array is actually an array of arrays, because each row has - * a variable number of columns. So to actually build the cast linked list, - * we find the array of casts associated with the type, and loop through it - * adding the casts to the list. The one last trick we need to do is making - * sure the type pointer in the swig_cast_info struct is correct. - * - * First off, we lookup the cast->type name to see if it is already loaded. - * There are three cases to handle: - * 1) If the cast->type has already been loaded AND the type we are adding - * casting info to has not been loaded (it is in this module), THEN we - * replace the cast->type pointer with the type pointer that has already - * been loaded. - * 2) If BOTH types (the one we are adding casting info to, and the - * cast->type) are loaded, THEN the cast info has already been loaded by - * the previous module so we just ignore it. - * 3) Finally, if cast->type has not already been loaded, then we add that - * swig_cast_info to the linked list (because the cast->type) pointer will - * be correct. - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* c-mode */ -#endif -#endif - -#if 0 -#define SWIGRUNTIME_DEBUG -#endif - - -SWIGRUNTIME void -SWIG_InitializeModule(void *clientdata) { - size_t i; - swig_module_info *module_head, *iter; - int found, init; - - clientdata = clientdata; - - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next==0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (!module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - module_head = &swig_module; - } else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - found=0; - iter=module_head; - do { - if (iter==&swig_module) { - found=1; - break; - } - iter=iter->next; - } while (iter!= module_head); - - /* if the is found in the list, then all is done and we may leave */ - if (found) return; - /* otherwise we must add out module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpeters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) return; - - /* Now work on filling in swig_module.types */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %d\n", swig_module.size); -#endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info *type = 0; - swig_type_info *ret; - swig_cast_info *cast; - -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); -#endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } else { - /* Check for casting already in the list */ - swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (!ocast) ret = 0; - } - } - - if (!ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; - } - swig_module.types[i] = 0; - -#ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info *cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n",j); - } - printf("**** SWIG_InitializeModule: Cast List ******\n"); -#endif -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientData(void) { - size_t i; - swig_cast_info *equiv; - static int init_run = 0; - - if (init_run) return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (!equiv->converter) { - if (equiv->type && !equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } - } - } -} - -#ifdef __cplusplus -#if 0 -{ - /* c-mode */ -#endif -} -#endif - - - -#ifdef __cplusplus -extern "C" { -#endif - - /* Python-specific SWIG API */ -#define SWIG_newvarlink() SWIG_Python_newvarlink() -#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) -#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) - - /* ----------------------------------------------------------------------------- - * global variable support code. - * ----------------------------------------------------------------------------- */ - - typedef struct swig_globalvar { - char *name; /* Name of global variable */ - PyObject *(*get_attr)(void); /* Return the current value */ - int (*set_attr)(PyObject *); /* Set the value */ - struct swig_globalvar *next; - } swig_globalvar; - - typedef struct swig_varlinkobject { - PyObject_HEAD - swig_globalvar *vars; - } swig_varlinkobject; - - SWIGINTERN PyObject * - swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_InternFromString(""); -#else - return PyString_FromString(""); -#endif - } - - SWIGINTERN PyObject * - swig_varlink_str(swig_varlinkobject *v) { -#if PY_VERSION_HEX >= 0x03000000 - PyObject *str = PyUnicode_InternFromString("("); - PyObject *tail; - PyObject *joined; - swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - tail = PyUnicode_FromString(var->name); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - if (var->next) { - tail = PyUnicode_InternFromString(", "); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - } - } - tail = PyUnicode_InternFromString(")"); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; -#else - PyObject *str = PyString_FromString("("); - swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - PyString_ConcatAndDel(&str,PyString_FromString(var->name)); - if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); - } - PyString_ConcatAndDel(&str,PyString_FromString(")")); -#endif - return str; - } - - SWIGINTERN int - swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { - char *tmp; - PyObject *str = swig_varlink_str(v); - fprintf(fp,"Swig global variables "); - fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str)); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(str); - return 0; - } - - SWIGINTERN void - swig_varlink_dealloc(swig_varlinkobject *v) { - swig_globalvar *var = v->vars; - while (var) { - swig_globalvar *n = var->next; - free(var->name); - free(var); - var = n; - } - } - - SWIGINTERN PyObject * - swig_varlink_getattr(swig_varlinkobject *v, char *n) { - PyObject *res = NULL; - swig_globalvar *var = v->vars; - while (var) { - if (strcmp(var->name,n) == 0) { - res = (*var->get_attr)(); - break; - } - var = var->next; - } - if (res == NULL && !PyErr_Occurred()) { - PyErr_SetString(PyExc_NameError,"Unknown C global variable"); - } - return res; - } - - SWIGINTERN int - swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { - int res = 1; - swig_globalvar *var = v->vars; - while (var) { - if (strcmp(var->name,n) == 0) { - res = (*var->set_attr)(p); - break; - } - var = var->next; - } - if (res == 1 && !PyErr_Occurred()) { - PyErr_SetString(PyExc_NameError,"Unknown C global variable"); - } - return res; - } - - SWIGINTERN PyTypeObject* - swig_varlink_type(void) { - static char varlink__doc__[] = "Swig var link object"; - static PyTypeObject varlink_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* Number of items in variable part (ob_size) */ -#endif - (char *)"swigvarlink", /* Type name (tp_name) */ - sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ - 0, /* Itemsize (tp_itemsize) */ - (destructor) swig_varlink_dealloc, /* Deallocator (tp_dealloc) */ - (printfunc) swig_varlink_print, /* Print (tp_print) */ - (getattrfunc) swig_varlink_getattr, /* get attr (tp_getattr) */ - (setattrfunc) swig_varlink_setattr, /* Set attr (tp_setattr) */ - 0, /* tp_compare */ - (reprfunc) swig_varlink_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - 0, /* tp_hash */ - 0, /* tp_call */ - (reprfunc) swig_varlink_str, /* tp_str */ - 0, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - 0, /* tp_flags */ - varlink__doc__, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - varlink_type = tmp; - /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - varlink_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &varlink_type; - } - - /* Create a variable linking object for use later */ - SWIGINTERN PyObject * - SWIG_Python_newvarlink(void) { - swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); - if (result) { - result->vars = 0; - } - return ((PyObject*) result); - } - - SWIGINTERN void - SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { - swig_varlinkobject *v = (swig_varlinkobject *) p; - swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); - if (gv) { - size_t size = strlen(name)+1; - gv->name = (char *)malloc(size); - if (gv->name) { - strncpy(gv->name,name,size); - gv->get_attr = get_attr; - gv->set_attr = set_attr; - gv->next = v->vars; - } - } - v->vars = gv; - } - - SWIGINTERN PyObject * - SWIG_globals(void) { - static PyObject *_SWIG_globals = 0; - if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); - return _SWIG_globals; - } - - /* ----------------------------------------------------------------------------- - * constants/methods manipulation - * ----------------------------------------------------------------------------- */ - - /* Install Constants */ - SWIGINTERN void - SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { - PyObject *obj = 0; - size_t i; - for (i = 0; constants[i].type; ++i) { - switch(constants[i].type) { - case SWIG_PY_POINTER: - obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); - break; - case SWIG_PY_BINARY: - obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); - break; - default: - obj = 0; - break; - } - if (obj) { - PyDict_SetItemString(d, constants[i].name, obj); - Py_DECREF(obj); - } - } - } - - /* -----------------------------------------------------------------------------*/ - /* Fix SwigMethods to carry the callback ptrs when needed */ - /* -----------------------------------------------------------------------------*/ - - SWIGINTERN void - SWIG_Python_FixMethods(PyMethodDef *methods, - swig_const_info *const_table, - swig_type_info **types, - swig_type_info **types_initial) { - size_t i; - for (i = 0; methods[i].ml_name; ++i) { - const char *c = methods[i].ml_doc; - if (c && (c = strstr(c, "swig_ptr: "))) { - int j; - swig_const_info *ci = 0; - const char *name = c + 10; - for (j = 0; const_table[j].type; ++j) { - if (strncmp(const_table[j].name, name, - strlen(const_table[j].name)) == 0) { - ci = &(const_table[j]); - break; - } - } - if (ci) { - size_t shift = (ci->ptype) - types; - swig_type_info *ty = types_initial[shift]; - size_t ldoc = (c - methods[i].ml_doc); - size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; - char *ndoc = (char*)malloc(ldoc + lptr + 10); - if (ndoc) { - char *buff = ndoc; - void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; - if (ptr) { - strncpy(buff, methods[i].ml_doc, ldoc); - buff += ldoc; - strncpy(buff, "swig_ptr: ", 10); - buff += 10; - SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); - methods[i].ml_doc = ndoc; - } - } - } - } - } - } - -#ifdef __cplusplus -} -#endif - -/* -----------------------------------------------------------------------------* - * Partial Init method - * -----------------------------------------------------------------------------*/ - -#ifdef __cplusplus -extern "C" -#endif - -SWIGEXPORT -#if PY_VERSION_HEX >= 0x03000000 -PyObject* -#else -void -#endif -SWIG_init(void) { - PyObject *m, *d; -#if PY_VERSION_HEX >= 0x03000000 - static struct PyModuleDef SWIG_module = { - PyModuleDef_HEAD_INIT, - (char *) SWIG_name, - NULL, - -1, - SwigMethods, - NULL, - NULL, - NULL, - NULL - }; -#endif - - /* Fix SwigMethods to carry the callback ptrs when needed */ - SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); - -#if PY_VERSION_HEX >= 0x03000000 - m = PyModule_Create(&SWIG_module); -#else - m = Py_InitModule((char *) SWIG_name, SwigMethods); -#endif - d = PyModule_GetDict(m); - - SWIG_InitializeModule(0); - SWIG_InstallConstants(d,swig_const_table); - - - - PyEval_InitThreads(); - - SWIG_Python_SetConstant(d, "CV_WINDOW_AUTOSIZE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_EVENT_MOUSEMOVE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_EVENT_LBUTTONDOWN",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_EVENT_RBUTTONDOWN",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_EVENT_MBUTTONDOWN",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_EVENT_LBUTTONUP",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_EVENT_RBUTTONUP",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_EVENT_MBUTTONUP",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_EVENT_LBUTTONDBLCLK",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_EVENT_RBUTTONDBLCLK",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_EVENT_MBUTTONDBLCLK",SWIG_From_int(static_cast< int >(9))); - SWIG_Python_SetConstant(d, "CV_EVENT_FLAG_LBUTTON",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_EVENT_FLAG_RBUTTON",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_EVENT_FLAG_MBUTTON",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_EVENT_FLAG_CTRLKEY",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_EVENT_FLAG_SHIFTKEY",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_EVENT_FLAG_ALTKEY",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_LOAD_IMAGE_UNCHANGED",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "CV_LOAD_IMAGE_GRAYSCALE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_LOAD_IMAGE_COLOR",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_LOAD_IMAGE_ANYDEPTH",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_LOAD_IMAGE_ANYCOLOR",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_IMWRITE_JPEG_QUALITY",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_IMWRITE_PNG_COMPRESSION",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_IMWRITE_PXM_BINARY",SWIG_From_int(static_cast< int >(32))); - SWIG_Python_SetConstant(d, "CV_CVTIMG_FLIP",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CVTIMG_SWAP_RB",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CAP_ANY",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_CAP_MIL",SWIG_From_int(static_cast< int >(100))); - SWIG_Python_SetConstant(d, "CV_CAP_VFW",SWIG_From_int(static_cast< int >(200))); - SWIG_Python_SetConstant(d, "CV_CAP_V4L",SWIG_From_int(static_cast< int >(200))); - SWIG_Python_SetConstant(d, "CV_CAP_V4L2",SWIG_From_int(static_cast< int >(200))); - SWIG_Python_SetConstant(d, "CV_CAP_FIREWARE",SWIG_From_int(static_cast< int >(300))); - SWIG_Python_SetConstant(d, "CV_CAP_FIREWIRE",SWIG_From_int(static_cast< int >(300))); - SWIG_Python_SetConstant(d, "CV_CAP_IEEE1394",SWIG_From_int(static_cast< int >(300))); - SWIG_Python_SetConstant(d, "CV_CAP_DC1394",SWIG_From_int(static_cast< int >(300))); - SWIG_Python_SetConstant(d, "CV_CAP_CMU1394",SWIG_From_int(static_cast< int >(300))); - SWIG_Python_SetConstant(d, "CV_CAP_STEREO",SWIG_From_int(static_cast< int >(400))); - SWIG_Python_SetConstant(d, "CV_CAP_TYZX",SWIG_From_int(static_cast< int >(400))); - SWIG_Python_SetConstant(d, "CV_TYZX_LEFT",SWIG_From_int(static_cast< int >(400))); - SWIG_Python_SetConstant(d, "CV_TYZX_RIGHT",SWIG_From_int(static_cast< int >(401))); - SWIG_Python_SetConstant(d, "CV_TYZX_COLOR",SWIG_From_int(static_cast< int >(402))); - SWIG_Python_SetConstant(d, "CV_TYZX_Z",SWIG_From_int(static_cast< int >(403))); - SWIG_Python_SetConstant(d, "CV_CAP_QT",SWIG_From_int(static_cast< int >(500))); - SWIG_Python_SetConstant(d, "CV_CAP_UNICAP",SWIG_From_int(static_cast< int >(600))); - SWIG_Python_SetConstant(d, "CV_CAP_DSHOW",SWIG_From_int(static_cast< int >(700))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_POS_MSEC",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_POS_FRAMES",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_POS_AVI_RATIO",SWIG_From_int(static_cast< int >(2))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_FRAME_WIDTH",SWIG_From_int(static_cast< int >(3))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_FRAME_HEIGHT",SWIG_From_int(static_cast< int >(4))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_FPS",SWIG_From_int(static_cast< int >(5))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_FOURCC",SWIG_From_int(static_cast< int >(6))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_FRAME_COUNT",SWIG_From_int(static_cast< int >(7))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_FORMAT",SWIG_From_int(static_cast< int >(8))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_MODE",SWIG_From_int(static_cast< int >(9))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_BRIGHTNESS",SWIG_From_int(static_cast< int >(10))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_CONTRAST",SWIG_From_int(static_cast< int >(11))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_SATURATION",SWIG_From_int(static_cast< int >(12))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_HUE",SWIG_From_int(static_cast< int >(13))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_GAIN",SWIG_From_int(static_cast< int >(14))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_EXPOSURE",SWIG_From_int(static_cast< int >(15))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_CONVERT_RGB",SWIG_From_int(static_cast< int >(16))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_WHITE_BALANCE",SWIG_From_int(static_cast< int >(17))); - SWIG_Python_SetConstant(d, "CV_CAP_PROP_RECTIFICATION",SWIG_From_int(static_cast< int >(18))); - SWIG_Python_SetConstant(d, "CV_FOURCC_PROMPT",SWIG_From_int(static_cast< int >(-1))); - SWIG_Python_SetConstant(d, "HG_AUTOSIZE",SWIG_From_int(static_cast< int >(1))); -#if PY_VERSION_HEX >= 0x03000000 - return m; -#else - return; -#endif -} - diff --git a/interfaces/swig/python/_ml.cpp b/interfaces/swig/python/_ml.cpp deleted file mode 100644 index 757e66bca..000000000 --- a/interfaces/swig/python/_ml.cpp +++ /dev/null @@ -1,50413 +0,0 @@ -/* ---------------------------------------------------------------------------- - * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.40 - * - * This file is not intended to be easily readable and contains a number of - * coding conventions designed to improve portability and efficiency. Do not make - * changes to this file unless you know what you are doing--modify the SWIG - * interface file instead. - * ----------------------------------------------------------------------------- */ - -#define SWIGPYTHON -#define SWIG_PYTHON_DIRECTOR_NO_VTABLE - - -#ifdef __cplusplus -/* SwigValueWrapper is described in swig.swg */ -template class SwigValueWrapper { - struct SwigMovePointer { - T *ptr; - SwigMovePointer(T *p) : ptr(p) { } - ~SwigMovePointer() { delete ptr; } - SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; } - } pointer; - SwigValueWrapper& operator=(const SwigValueWrapper& rhs); - SwigValueWrapper(const SwigValueWrapper& rhs); -public: - SwigValueWrapper() : pointer(0) { } - SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; } - operator T&() const { return *pointer.ptr; } - T *operator&() { return pointer.ptr; } -}; - -template T SwigValueInit() { - return T(); -} -#endif - -/* ----------------------------------------------------------------------------- - * This section contains generic SWIG labels for method/variable - * declarations/attributes, and other compiler dependent labels. - * ----------------------------------------------------------------------------- */ - -/* template workaround for compilers that cannot correctly implement the C++ standard */ -#ifndef SWIGTEMPLATEDISAMBIGUATOR -# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560) -# define SWIGTEMPLATEDISAMBIGUATOR template -# elif defined(__HP_aCC) -/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */ -/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */ -# define SWIGTEMPLATEDISAMBIGUATOR template -# else -# define SWIGTEMPLATEDISAMBIGUATOR -# endif -#endif - -/* inline attribute */ -#ifndef SWIGINLINE -# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -# else -# define SWIGINLINE -# endif -#endif - -/* attribute recognised by some compilers to avoid 'unused' warnings */ -#ifndef SWIGUNUSED -# if defined(__GNUC__) -# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -# elif defined(__ICC) -# define SWIGUNUSED __attribute__ ((__unused__)) -# else -# define SWIGUNUSED -# endif -#endif - -#ifndef SWIG_MSC_UNSUPPRESS_4505 -# if defined(_MSC_VER) -# pragma warning(disable : 4505) /* unreferenced local function has been removed */ -# endif -#endif - -#ifndef SWIGUNUSEDPARM -# ifdef __cplusplus -# define SWIGUNUSEDPARM(p) -# else -# define SWIGUNUSEDPARM(p) p SWIGUNUSED -# endif -#endif - -/* internal SWIG method */ -#ifndef SWIGINTERN -# define SWIGINTERN static SWIGUNUSED -#endif - -/* internal inline SWIG method */ -#ifndef SWIGINTERNINLINE -# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE -#endif - -/* exporting methods */ -#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) -# ifndef GCC_HASCLASSVISIBILITY -# define GCC_HASCLASSVISIBILITY -# endif -#endif - -#ifndef SWIGEXPORT -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if defined(STATIC_LINKED) -# define SWIGEXPORT -# else -# define SWIGEXPORT __declspec(dllexport) -# endif -# else -# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) -# define SWIGEXPORT __attribute__ ((visibility("default"))) -# else -# define SWIGEXPORT -# endif -# endif -#endif - -/* calling conventions for Windows */ -#ifndef SWIGSTDCALL -# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# define SWIGSTDCALL __stdcall -# else -# define SWIGSTDCALL -# endif -#endif - -/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ -#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) -# define _CRT_SECURE_NO_DEPRECATE -#endif - -/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */ -#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE) -# define _SCL_SECURE_NO_DEPRECATE -#endif - - - -/* Python.h has to appear first */ -#include - -/* ----------------------------------------------------------------------------- - * swigrun.swg - * - * This file contains generic C API SWIG runtime support for pointer - * type checking. - * ----------------------------------------------------------------------------- */ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "4" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -# define SWIG_QUOTE_STRING(x) #x -# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -# define SWIG_TYPE_TABLE_NAME -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the SWIG runtime code. - In 99.9% of the cases, SWIG just needs to declare them as 'static'. - - But only do this if strictly necessary, ie, if you have problems - with your compiler or suchlike. -*/ - -#ifndef SWIGRUNTIME -# define SWIGRUNTIME SWIGINTERN -#endif - -#ifndef SWIGRUNTIMEINLINE -# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -/* Generic buffer size */ -#ifndef SWIG_BUFFER_SIZE -# define SWIG_BUFFER_SIZE 1024 -#endif - -/* Flags for pointer conversions */ -#define SWIG_POINTER_DISOWN 0x1 -#define SWIG_CAST_NEW_MEMORY 0x2 - -/* Flags for new pointer objects */ -#define SWIG_POINTER_OWN 0x1 - - -/* - Flags/methods for returning states. - - The SWIG conversion methods, as ConvertPtr, return and integer - that tells if the conversion was successful or not. And if not, - an error code can be returned (see swigerrors.swg for the codes). - - Use the following macros/flags to set or process the returning - states. - - In old versions of SWIG, code such as the following was usually written: - - if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { - // success code - } else { - //fail code - } - - Now you can be more explicit: - - int res = SWIG_ConvertPtr(obj,vptr,ty.flags); - if (SWIG_IsOK(res)) { - // success code - } else { - // fail code - } - - which is the same really, but now you can also do - - Type *ptr; - int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); - if (SWIG_IsOK(res)) { - // success code - if (SWIG_IsNewObj(res) { - ... - delete *ptr; - } else { - ... - } - } else { - // fail code - } - - I.e., now SWIG_ConvertPtr can return new objects and you can - identify the case and take care of the deallocation. Of course that - also requires SWIG_ConvertPtr to return new result values, such as - - int SWIG_ConvertPtr(obj, ptr,...) { - if () { - if () { - *ptr = ; - return SWIG_NEWOBJ; - } else { - *ptr = ; - return SWIG_OLDOBJ; - } - } else { - return SWIG_BADOBJ; - } - } - - Of course, returning the plain '0(success)/-1(fail)' still works, but you can be - more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the - SWIG errors code. - - Finally, if the SWIG_CASTRANK_MODE is enabled, the result code - allows to return the 'cast rank', for example, if you have this - - int food(double) - int fooi(int); - - and you call - - food(1) // cast rank '1' (1 -> 1.0) - fooi(1) // cast rank '0' - - just use the SWIG_AddCast()/SWIG_CheckState() -*/ - -#define SWIG_OK (0) -#define SWIG_ERROR (-1) -#define SWIG_IsOK(r) (r >= 0) -#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) - -/* The CastRankLimit says how many bits are used for the cast rank */ -#define SWIG_CASTRANKLIMIT (1 << 8) -/* The NewMask denotes the object was created (using new/malloc) */ -#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1) -/* The TmpMask is for in/out typemaps that use temporal objects */ -#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1) -/* Simple returning values */ -#define SWIG_BADOBJ (SWIG_ERROR) -#define SWIG_OLDOBJ (SWIG_OK) -#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK) -#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK) -/* Check, add and del mask methods */ -#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) -#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) -#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) -#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) -#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) -#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) - -/* Cast-Rank Mode */ -#if defined(SWIG_CASTRANK_MODE) -# ifndef SWIG_TypeRank -# define SWIG_TypeRank unsigned long -# endif -# ifndef SWIG_MAXCASTRANK /* Default cast allowed */ -# define SWIG_MAXCASTRANK (2) -# endif -# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) -# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) -SWIGINTERNINLINE int SWIG_AddCast(int r) { - return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; -} -SWIGINTERNINLINE int SWIG_CheckState(int r) { - return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; -} -#else /* no cast-rank mode */ -# define SWIG_AddCast -# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) -#endif - - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *, int *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -/* Structure to store information on one type */ -typedef struct swig_type_info { - const char *name; /* mangled name of this type */ - const char *str; /* human readable name of this type */ - swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ - struct swig_cast_info *cast; /* linked list of types that can cast into this type */ - void *clientdata; /* language specific type data */ - int owndata; /* flag if the structure owns the clientdata */ -} swig_type_info; - -/* Structure to store a type and conversion function used for casting */ -typedef struct swig_cast_info { - swig_type_info *type; /* pointer to type that is equivalent to this type */ - swig_converter_func converter; /* function to cast the void pointers */ - struct swig_cast_info *next; /* pointer to next cast in linked list */ - struct swig_cast_info *prev; /* pointer to the previous cast */ -} swig_cast_info; - -/* Structure used to store module information - * Each module generates one structure like this, and the runtime collects - * all of these structures and stores them in a circularly linked list.*/ -typedef struct swig_module_info { - swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */ - size_t size; /* Number of types in this module */ - struct swig_module_info *next; /* Pointer to next element in circularly linked list */ - swig_type_info **type_initial; /* Array of initially generated type structures */ - swig_cast_info **cast_initial; /* Array of initially generated casting structures */ - void *clientdata; /* Language specific module data */ -} swig_module_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1; - } - return (int)((l1 - f1) - (l2 - f2)); -} - -/* - Check type equivalence in a name list like ||... - Return 0 if not equal, 1 if equal -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Check type equivalence in a name list like ||... - Return 0 if equal, -1 if nb < tb, 1 if nb > tb -*/ -SWIGRUNTIME int -SWIG_TypeCompare(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0; - if (*ne) ++ne; - } - return equiv; -} - - -/* - Check the typename -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (strcmp(iter->type->name, c) == 0) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison -*/ -SWIGRUNTIME swig_cast_info * -SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) { - if (ty) { - swig_cast_info *iter = ty->cast; - while (iter) { - if (iter->type == from) { - if (iter == ty->cast) - return iter; - /* Move iter to the top of the linked list */ - iter->prev->next = iter->next; - if (iter->next) - iter->next->prev = iter->prev; - iter->next = ty->cast; - iter->prev = 0; - if (ty->cast) ty->cast->prev = iter; - ty->cast = iter; - return iter; - } - iter = iter->next; - } - } - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (!type) return NULL; - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - swig_cast_info *cast = ti->cast; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - - while (cast) { - if (!cast->converter) { - swig_type_info *tc = cast->type; - if (!tc->clientdata) { - SWIG_TypeClientData(tc, clientdata); - } - } - cast = cast->next; - } -} -SWIGRUNTIME void -SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientData(ti, clientdata); - ti->owndata = 1; -} - -/* - Search for a swig_type_info structure only by mangled name - Search is a O(log #types) - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_MangledTypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - swig_module_info *iter = start; - do { - if (iter->size) { - register size_t l = 0; - register size_t r = iter->size - 1; - do { - /* since l+r >= 0, we can (>> 1) instead (/ 2) */ - register size_t i = (l + r) >> 1; - const char *iname = iter->types[i]->name; - if (iname) { - register int compare = strcmp(name, iname); - if (compare == 0) { - return iter->types[i]; - } else if (compare < 0) { - if (i) { - r = i - 1; - } else { - break; - } - } else if (compare > 0) { - l = i + 1; - } - } else { - break; /* should never happen */ - } - } while (l <= r); - } - iter = iter->next; - } while (iter != end); - return 0; -} - -/* - Search for a swig_type_info structure for either a mangled name or a human readable name. - It first searches the mangled names of the types, which is a O(log #types) - If a type is not found it then searches the human readable names, which is O(#types). - - We start searching at module start, and finish searching when start == end. - Note: if start == end at the beginning of the function, we go all the way around - the circular list. -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryModule(swig_module_info *start, - swig_module_info *end, - const char *name) { - /* STEP 1: Search the name field using binary search */ - swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); - if (ret) { - return ret; - } else { - /* STEP 2: If the type hasn't been found, do a complete search - of the str field (the human readable name) */ - swig_module_info *iter = start; - do { - register size_t i = 0; - for (; i < iter->size; ++i) { - if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) - return iter->types[i]; - } - iter = iter->next; - } while (iter != end); - } - - /* neither found a match */ - return 0; -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static const char hex[17] = "0123456789abcdef"; - register const unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register unsigned char uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register char d = *(c++); - register unsigned char uu; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/* Errors in SWIG */ -#define SWIG_UnknownError -1 -#define SWIG_IOError -2 -#define SWIG_RuntimeError -3 -#define SWIG_IndexError -4 -#define SWIG_TypeError -5 -#define SWIG_DivisionByZero -6 -#define SWIG_OverflowError -7 -#define SWIG_SyntaxError -8 -#define SWIG_ValueError -9 -#define SWIG_SystemError -10 -#define SWIG_AttributeError -11 -#define SWIG_MemoryError -12 -#define SWIG_NullReferenceError -13 - - - -/* Compatibility macros for Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - -#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type) -#define PyInt_Check(x) PyLong_Check(x) -#define PyInt_AsLong(x) PyLong_AsLong(x) -#define PyInt_FromLong(x) PyLong_FromLong(x) -#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args) - -#endif - -#ifndef Py_TYPE -# define Py_TYPE(op) ((op)->ob_type) -#endif - -/* SWIG APIs for compatibility of both Python 2 & 3 */ - -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_Python_str_FromFormat PyUnicode_FromFormat -#else -# define SWIG_Python_str_FromFormat PyString_FromFormat -#endif - - -/* Warning: This function will allocate a new string in Python 3, - * so please call SWIG_Python_str_DelForPy3(x) to free the space. - */ -SWIGINTERN char* -SWIG_Python_str_AsChar(PyObject *str) -{ -#if PY_VERSION_HEX >= 0x03000000 - char *cstr; - char *newstr; - Py_ssize_t len; - str = PyUnicode_AsUTF8String(str); - PyBytes_AsStringAndSize(str, &cstr, &len); - newstr = (char *) malloc(len+1); - memcpy(newstr, cstr, len+1); - Py_XDECREF(str); - return newstr; -#else - return PyString_AsString(str); -#endif -} - -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) ) -#else -# define SWIG_Python_str_DelForPy3(x) -#endif - - -SWIGINTERN PyObject* -SWIG_Python_str_FromChar(const char *c) -{ -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromString(c); -#else - return PyString_FromString(c); -#endif -} - -/* Add PyOS_snprintf for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 -# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) -# define PyOS_snprintf _snprintf -# else -# define PyOS_snprintf snprintf -# endif -#endif - -/* A crude PyString_FromFormat implementation for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 - -#ifndef SWIG_PYBUFFER_SIZE -# define SWIG_PYBUFFER_SIZE 1024 -#endif - -static PyObject * -PyString_FromFormat(const char *fmt, ...) { - va_list ap; - char buf[SWIG_PYBUFFER_SIZE * 2]; - int res; - va_start(ap, fmt); - res = vsnprintf(buf, sizeof(buf), fmt, ap); - va_end(ap); - return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf); -} -#endif - -/* Add PyObject_Del for old Pythons */ -#if PY_VERSION_HEX < 0x01060000 -# define PyObject_Del(op) PyMem_DEL((op)) -#endif -#ifndef PyObject_DEL -# define PyObject_DEL PyObject_Del -#endif - -/* A crude PyExc_StopIteration exception for old Pythons */ -#if PY_VERSION_HEX < 0x02020000 -# ifndef PyExc_StopIteration -# define PyExc_StopIteration PyExc_RuntimeError -# endif -# ifndef PyObject_GenericGetAttr -# define PyObject_GenericGetAttr 0 -# endif -#endif - -/* Py_NotImplemented is defined in 2.1 and up. */ -#if PY_VERSION_HEX < 0x02010000 -# ifndef Py_NotImplemented -# define Py_NotImplemented PyExc_RuntimeError -# endif -#endif - -/* A crude PyString_AsStringAndSize implementation for old Pythons */ -#if PY_VERSION_HEX < 0x02010000 -# ifndef PyString_AsStringAndSize -# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} -# endif -#endif - -/* PySequence_Size for old Pythons */ -#if PY_VERSION_HEX < 0x02000000 -# ifndef PySequence_Size -# define PySequence_Size PySequence_Length -# endif -#endif - -/* PyBool_FromLong for old Pythons */ -#if PY_VERSION_HEX < 0x02030000 -static -PyObject *PyBool_FromLong(long ok) -{ - PyObject *result = ok ? Py_True : Py_False; - Py_INCREF(result); - return result; -} -#endif - -/* Py_ssize_t for old Pythons */ -/* This code is as recommended by: */ -/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */ -#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN) -typedef int Py_ssize_t; -# define PY_SSIZE_T_MAX INT_MAX -# define PY_SSIZE_T_MIN INT_MIN -#endif - -/* ----------------------------------------------------------------------------- - * error manipulation - * ----------------------------------------------------------------------------- */ - -SWIGRUNTIME PyObject* -SWIG_Python_ErrorType(int code) { - PyObject* type = 0; - switch(code) { - case SWIG_MemoryError: - type = PyExc_MemoryError; - break; - case SWIG_IOError: - type = PyExc_IOError; - break; - case SWIG_RuntimeError: - type = PyExc_RuntimeError; - break; - case SWIG_IndexError: - type = PyExc_IndexError; - break; - case SWIG_TypeError: - type = PyExc_TypeError; - break; - case SWIG_DivisionByZero: - type = PyExc_ZeroDivisionError; - break; - case SWIG_OverflowError: - type = PyExc_OverflowError; - break; - case SWIG_SyntaxError: - type = PyExc_SyntaxError; - break; - case SWIG_ValueError: - type = PyExc_ValueError; - break; - case SWIG_SystemError: - type = PyExc_SystemError; - break; - case SWIG_AttributeError: - type = PyExc_AttributeError; - break; - default: - type = PyExc_RuntimeError; - } - return type; -} - - -SWIGRUNTIME void -SWIG_Python_AddErrorMsg(const char* mesg) -{ - PyObject *type = 0; - PyObject *value = 0; - PyObject *traceback = 0; - - if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback); - if (value) { - char *tmp; - PyObject *old_str = PyObject_Str(value); - PyErr_Clear(); - Py_XINCREF(type); - - PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - Py_DECREF(value); - } else { - PyErr_SetString(PyExc_RuntimeError, mesg); - } -} - -#if defined(SWIG_PYTHON_NO_THREADS) -# if defined(SWIG_PYTHON_THREADS) -# undef SWIG_PYTHON_THREADS -# endif -#endif -#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ -# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) -# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ -# define SWIG_PYTHON_USE_GIL -# endif -# endif -# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ -# ifndef SWIG_PYTHON_INITIALIZE_THREADS -# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads() -# endif -# ifdef __cplusplus /* C++ code */ - class SWIG_Python_Thread_Block { - bool status; - PyGILState_STATE state; - public: - void end() { if (status) { PyGILState_Release(state); status = false;} } - SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} - ~SWIG_Python_Thread_Block() { end(); } - }; - class SWIG_Python_Thread_Allow { - bool status; - PyThreadState *save; - public: - void end() { if (status) { PyEval_RestoreThread(save); status = false; }} - SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} - ~SWIG_Python_Thread_Allow() { end(); } - }; -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block -# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end() -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow -# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end() -# else /* C code */ -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure() -# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block) -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread() -# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow) -# endif -# else /* Old thread way, not implemented, user must provide it */ -# if !defined(SWIG_PYTHON_INITIALIZE_THREADS) -# define SWIG_PYTHON_INITIALIZE_THREADS -# endif -# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK -# endif -# if !defined(SWIG_PYTHON_THREAD_END_BLOCK) -# define SWIG_PYTHON_THREAD_END_BLOCK -# endif -# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW -# endif -# if !defined(SWIG_PYTHON_THREAD_END_ALLOW) -# define SWIG_PYTHON_THREAD_END_ALLOW -# endif -# endif -#else /* No thread support */ -# define SWIG_PYTHON_INITIALIZE_THREADS -# define SWIG_PYTHON_THREAD_BEGIN_BLOCK -# define SWIG_PYTHON_THREAD_END_BLOCK -# define SWIG_PYTHON_THREAD_BEGIN_ALLOW -# define SWIG_PYTHON_THREAD_END_ALLOW -#endif - -/* ----------------------------------------------------------------------------- - * Python API portion that goes into the runtime - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* cc-mode */ -#endif -#endif - -/* ----------------------------------------------------------------------------- - * Constant declarations - * ----------------------------------------------------------------------------- */ - -/* Constant Types */ -#define SWIG_PY_POINTER 4 -#define SWIG_PY_BINARY 5 - -/* Constant information structure */ -typedef struct swig_const_info { - int type; - char *name; - long lvalue; - double dvalue; - void *pvalue; - swig_type_info **ptype; -} swig_const_info; - - -/* ----------------------------------------------------------------------------- - * Wrapper of PyInstanceMethod_New() used in Python 3 - * It is exported to the generated module, used for -fastproxy - * ----------------------------------------------------------------------------- */ -SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *self, PyObject *func) -{ -#if PY_VERSION_HEX >= 0x03000000 - return PyInstanceMethod_New(func); -#else - return NULL; -#endif -} - -#ifdef __cplusplus -#if 0 -{ /* cc-mode */ -#endif -} -#endif - - -/* ----------------------------------------------------------------------------- - * See the LICENSE file for information on copyright, usage and redistribution - * of SWIG, and the README file for authors - http://www.swig.org/release.html. - * - * pyrun.swg - * - * This file contains the runtime support for Python modules - * and includes code for managing global variables and pointer - * type checking. - * - * ----------------------------------------------------------------------------- */ - -/* Common SWIG API */ - -/* for raw pointers */ -#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) -#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags) -#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) -#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags) -#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty) -#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src) -#define swig_owntype int - -/* for raw packed data */ -#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) - -/* for class or struct pointers */ -#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags) -#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags) - -/* for C or C++ function pointers */ -#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type) -#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0) - -/* for C++ member pointers, ie, member methods */ -#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty) -#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type) - - -/* Runtime API */ - -#define SWIG_GetModule(clientdata) SWIG_Python_GetModule() -#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer) -#define SWIG_NewClientData(obj) SwigPyClientData_New(obj) - -#define SWIG_SetErrorObj SWIG_Python_SetErrorObj -#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg -#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code) -#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg) -#define SWIG_fail goto fail - - -/* Runtime API implementation */ - -/* Error manipulation */ - -SWIGINTERN void -SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetObject(errtype, obj); - Py_DECREF(obj); - SWIG_PYTHON_THREAD_END_BLOCK; -} - -SWIGINTERN void -SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { - SWIG_PYTHON_THREAD_BEGIN_BLOCK; - PyErr_SetString(errtype, (char *) msg); - SWIG_PYTHON_THREAD_END_BLOCK; -} - -#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) - -/* Set a constant value */ - -SWIGINTERN void -SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) { - PyDict_SetItemString(d, (char*) name, obj); - Py_DECREF(obj); -} - -/* Append a value to the result obj */ - -SWIGINTERN PyObject* -SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) { -#if !defined(SWIG_PYTHON_OUTPUT_TUPLE) - if (!result) { - result = obj; - } else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } else { - if (!PyList_Check(result)) { - PyObject *o2 = result; - result = PyList_New(1); - PyList_SetItem(result, 0, o2); - } - PyList_Append(result,obj); - Py_DECREF(obj); - } - return result; -#else - PyObject* o2; - PyObject* o3; - if (!result) { - result = obj; - } else if (result == Py_None) { - Py_DECREF(result); - result = obj; - } else { - if (!PyTuple_Check(result)) { - o2 = result; - result = PyTuple_New(1); - PyTuple_SET_ITEM(result, 0, o2); - } - o3 = PyTuple_New(1); - PyTuple_SET_ITEM(o3, 0, obj); - o2 = result; - result = PySequence_Concat(o2, o3); - Py_DECREF(o2); - Py_DECREF(o3); - } - return result; -#endif -} - -/* Unpack the argument tuple */ - -SWIGINTERN int -SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs) -{ - if (!args) { - if (!min && !max) { - return 1; - } else { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none", - name, (min == max ? "" : "at least "), (int)min); - return 0; - } - } - if (!PyTuple_Check(args)) { - PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); - return 0; - } else { - register Py_ssize_t l = PyTuple_GET_SIZE(args); - if (l < min) { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", - name, (min == max ? "" : "at least "), (int)min, (int)l); - return 0; - } else if (l > max) { - PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", - name, (min == max ? "" : "at most "), (int)max, (int)l); - return 0; - } else { - register int i; - for (i = 0; i < l; ++i) { - objs[i] = PyTuple_GET_ITEM(args, i); - } - for (; l < max; ++l) { - objs[l] = 0; - } - return i + 1; - } - } -} - -/* A functor is a function object with one single object argument */ -#if PY_VERSION_HEX >= 0x02020000 -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL); -#else -#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj); -#endif - -/* - Helper for static pointer initialization for both C and C++ code, for example - static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); -*/ -#ifdef __cplusplus -#define SWIG_STATIC_POINTER(var) var -#else -#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var -#endif - -/* ----------------------------------------------------------------------------- - * Pointer declarations - * ----------------------------------------------------------------------------- */ - -/* Flags for new pointer objects */ -#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1) -#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) - -#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1) - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* cc-mode */ -#endif -#endif - -/* How to access Py_None */ -#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# ifndef SWIG_PYTHON_NO_BUILD_NONE -# ifndef SWIG_PYTHON_BUILD_NONE -# define SWIG_PYTHON_BUILD_NONE -# endif -# endif -#endif - -#ifdef SWIG_PYTHON_BUILD_NONE -# ifdef Py_None -# undef Py_None -# define Py_None SWIG_Py_None() -# endif -SWIGRUNTIMEINLINE PyObject * -_SWIG_Py_None(void) -{ - PyObject *none = Py_BuildValue((char*)""); - Py_DECREF(none); - return none; -} -SWIGRUNTIME PyObject * -SWIG_Py_None(void) -{ - static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None(); - return none; -} -#endif - -/* The python void return value */ - -SWIGRUNTIMEINLINE PyObject * -SWIG_Py_Void(void) -{ - PyObject *none = Py_None; - Py_INCREF(none); - return none; -} - -/* SwigPyClientData */ - -typedef struct { - PyObject *klass; - PyObject *newraw; - PyObject *newargs; - PyObject *destroy; - int delargs; - int implicitconv; -} SwigPyClientData; - -SWIGRUNTIMEINLINE int -SWIG_Python_CheckImplicit(swig_type_info *ty) -{ - SwigPyClientData *data = (SwigPyClientData *)ty->clientdata; - return data ? data->implicitconv : 0; -} - -SWIGRUNTIMEINLINE PyObject * -SWIG_Python_ExceptionType(swig_type_info *desc) { - SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0; - PyObject *klass = data ? data->klass : 0; - return (klass ? klass : PyExc_RuntimeError); -} - - -SWIGRUNTIME SwigPyClientData * -SwigPyClientData_New(PyObject* obj) -{ - if (!obj) { - return 0; - } else { - SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData)); - /* the klass element */ - data->klass = obj; - Py_INCREF(data->klass); - /* the newraw method and newargs arguments used to create a new raw instance */ - if (PyClass_Check(obj)) { - data->newraw = 0; - data->newargs = obj; - Py_INCREF(obj); - } else { -#if (PY_VERSION_HEX < 0x02020000) - data->newraw = 0; -#else - data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__"); -#endif - if (data->newraw) { - Py_INCREF(data->newraw); - data->newargs = PyTuple_New(1); - PyTuple_SetItem(data->newargs, 0, obj); - } else { - data->newargs = obj; - } - Py_INCREF(data->newargs); - } - /* the destroy method, aka as the C++ delete method */ - data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__"); - if (PyErr_Occurred()) { - PyErr_Clear(); - data->destroy = 0; - } - if (data->destroy) { - int flags; - Py_INCREF(data->destroy); - flags = PyCFunction_GET_FLAGS(data->destroy); -#ifdef METH_O - data->delargs = !(flags & (METH_O)); -#else - data->delargs = 0; -#endif - } else { - data->delargs = 0; - } - data->implicitconv = 0; - return data; - } -} - -SWIGRUNTIME void -SwigPyClientData_Del(SwigPyClientData* data) -{ - Py_XDECREF(data->newraw); - Py_XDECREF(data->newargs); - Py_XDECREF(data->destroy); -} - -/* =============== SwigPyObject =====================*/ - -typedef struct { - PyObject_HEAD - void *ptr; - swig_type_info *ty; - int own; - PyObject *next; -} SwigPyObject; - -SWIGRUNTIME PyObject * -SwigPyObject_long(SwigPyObject *v) -{ - return PyLong_FromVoidPtr(v->ptr); -} - -SWIGRUNTIME PyObject * -SwigPyObject_format(const char* fmt, SwigPyObject *v) -{ - PyObject *res = NULL; - PyObject *args = PyTuple_New(1); - if (args) { - if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { - PyObject *ofmt = SWIG_Python_str_FromChar(fmt); - if (ofmt) { -#if PY_VERSION_HEX >= 0x03000000 - res = PyUnicode_Format(ofmt,args); -#else - res = PyString_Format(ofmt,args); -#endif - Py_DECREF(ofmt); - } - Py_DECREF(args); - } - } - return res; -} - -SWIGRUNTIME PyObject * -SwigPyObject_oct(SwigPyObject *v) -{ - return SwigPyObject_format("%o",v); -} - -SWIGRUNTIME PyObject * -SwigPyObject_hex(SwigPyObject *v) -{ - return SwigPyObject_format("%x",v); -} - -SWIGRUNTIME PyObject * -#ifdef METH_NOARGS -SwigPyObject_repr(SwigPyObject *v) -#else -SwigPyObject_repr(SwigPyObject *v, PyObject *args) -#endif -{ - const char *name = SWIG_TypePrettyName(v->ty); - PyObject *repr = SWIG_Python_str_FromFormat("", name, v); - if (v->next) { -#ifdef METH_NOARGS - PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next); -#else - PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args); -#endif -#if PY_VERSION_HEX >= 0x03000000 - PyObject *joined = PyUnicode_Concat(repr, nrep); - Py_DecRef(repr); - Py_DecRef(nrep); - repr = joined; -#else - PyString_ConcatAndDel(&repr,nrep); -#endif - } - return repr; -} - -SWIGRUNTIME int -SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) -{ - char *str; -#ifdef METH_NOARGS - PyObject *repr = SwigPyObject_repr(v); -#else - PyObject *repr = SwigPyObject_repr(v, NULL); -#endif - if (repr) { - str = SWIG_Python_str_AsChar(repr); - fputs(str, fp); - SWIG_Python_str_DelForPy3(str); - Py_DECREF(repr); - return 0; - } else { - return 1; - } -} - -SWIGRUNTIME PyObject * -SwigPyObject_str(SwigPyObject *v) -{ - char result[SWIG_BUFFER_SIZE]; - return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ? - SWIG_Python_str_FromChar(result) : 0; -} - -SWIGRUNTIME int -SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) -{ - void *i = v->ptr; - void *j = w->ptr; - return (i < j) ? -1 : ((i > j) ? 1 : 0); -} - -/* Added for Python 3.x, would it also be useful for Python 2.x? */ -SWIGRUNTIME PyObject* -SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op) -{ - PyObject* res; - if( op != Py_EQ && op != Py_NE ) { - Py_INCREF(Py_NotImplemented); - return Py_NotImplemented; - } - if( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ) - res = Py_True; - else - res = Py_False; - Py_INCREF(res); - return res; -} - - -SWIGRUNTIME PyTypeObject* _PySwigObject_type(void); - -SWIGRUNTIME PyTypeObject* -SwigPyObject_type(void) { - static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigObject_type(); - return type; -} - -SWIGRUNTIMEINLINE int -SwigPyObject_Check(PyObject *op) { - return (Py_TYPE(op) == SwigPyObject_type()) - || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); -} - -SWIGRUNTIME PyObject * -SwigPyObject_New(void *ptr, swig_type_info *ty, int own); - -SWIGRUNTIME void -SwigPyObject_dealloc(PyObject *v) -{ - SwigPyObject *sobj = (SwigPyObject *) v; - PyObject *next = sobj->next; - if (sobj->own == SWIG_POINTER_OWN) { - swig_type_info *ty = sobj->ty; - SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; - PyObject *destroy = data ? data->destroy : 0; - if (destroy) { - /* destroy is always a VARARGS method */ - PyObject *res; - if (data->delargs) { - /* we need to create a temporary object to carry the destroy operation */ - PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0); - res = SWIG_Python_CallFunctor(destroy, tmp); - Py_DECREF(tmp); - } else { - PyCFunction meth = PyCFunction_GET_FUNCTION(destroy); - PyObject *mself = PyCFunction_GET_SELF(destroy); - res = ((*meth)(mself, v)); - } - Py_XDECREF(res); - } -#if !defined(SWIG_PYTHON_SILENT_MEMLEAK) - else { - const char *name = SWIG_TypePrettyName(ty); - printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown")); - } -#endif - } - Py_XDECREF(next); - PyObject_DEL(v); -} - -SWIGRUNTIME PyObject* -SwigPyObject_append(PyObject* v, PyObject* next) -{ - SwigPyObject *sobj = (SwigPyObject *) v; -#ifndef METH_O - PyObject *tmp = 0; - if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; - next = tmp; -#endif - if (!SwigPyObject_Check(next)) { - return NULL; - } - sobj->next = next; - Py_INCREF(next); - return SWIG_Py_Void(); -} - -SWIGRUNTIME PyObject* -#ifdef METH_NOARGS -SwigPyObject_next(PyObject* v) -#else -SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *) v; - if (sobj->next) { - Py_INCREF(sobj->next); - return sobj->next; - } else { - return SWIG_Py_Void(); - } -} - -SWIGINTERN PyObject* -#ifdef METH_NOARGS -SwigPyObject_disown(PyObject *v) -#else -SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *)v; - sobj->own = 0; - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* -#ifdef METH_NOARGS -SwigPyObject_acquire(PyObject *v) -#else -SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) -#endif -{ - SwigPyObject *sobj = (SwigPyObject *)v; - sobj->own = SWIG_POINTER_OWN; - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject* -SwigPyObject_own(PyObject *v, PyObject *args) -{ - PyObject *val = 0; -#if (PY_VERSION_HEX < 0x02020000) - if (!PyArg_ParseTuple(args,(char *)"|O:own",&val)) -#else - if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val)) -#endif - { - return NULL; - } - else - { - SwigPyObject *sobj = (SwigPyObject *)v; - PyObject *obj = PyBool_FromLong(sobj->own); - if (val) { -#ifdef METH_NOARGS - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v); - } else { - SwigPyObject_disown(v); - } -#else - if (PyObject_IsTrue(val)) { - SwigPyObject_acquire(v,args); - } else { - SwigPyObject_disown(v,args); - } -#endif - } - return obj; - } -} - -#ifdef METH_O -static PyMethodDef -swigobject_methods[] = { - {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"}, - {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"aquires ownership of the pointer"}, - {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, - {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"}, - {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"}, - {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"}, - {0, 0, 0, 0} -}; -#else -static PyMethodDef -swigobject_methods[] = { - {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"}, - {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"}, - {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"}, - {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"}, - {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"}, - {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"}, - {0, 0, 0, 0} -}; -#endif - -#if PY_VERSION_HEX < 0x02020000 -SWIGINTERN PyObject * -SwigPyObject_getattr(SwigPyObject *sobj,char *name) -{ - return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name); -} -#endif - -SWIGRUNTIME PyTypeObject* -_PySwigObject_type(void) { - static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer"; - - static PyNumberMethods SwigPyObject_as_number = { - (binaryfunc)0, /*nb_add*/ - (binaryfunc)0, /*nb_subtract*/ - (binaryfunc)0, /*nb_multiply*/ - /* nb_divide removed in Python 3 */ -#if PY_VERSION_HEX < 0x03000000 - (binaryfunc)0, /*nb_divide*/ -#endif - (binaryfunc)0, /*nb_remainder*/ - (binaryfunc)0, /*nb_divmod*/ - (ternaryfunc)0,/*nb_power*/ - (unaryfunc)0, /*nb_negative*/ - (unaryfunc)0, /*nb_positive*/ - (unaryfunc)0, /*nb_absolute*/ - (inquiry)0, /*nb_nonzero*/ - 0, /*nb_invert*/ - 0, /*nb_lshift*/ - 0, /*nb_rshift*/ - 0, /*nb_and*/ - 0, /*nb_xor*/ - 0, /*nb_or*/ -#if PY_VERSION_HEX < 0x03000000 - 0, /*nb_coerce*/ -#endif - (unaryfunc)SwigPyObject_long, /*nb_int*/ -#if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_long, /*nb_long*/ -#else - 0, /*nb_reserved*/ -#endif - (unaryfunc)0, /*nb_float*/ -#if PY_VERSION_HEX < 0x03000000 - (unaryfunc)SwigPyObject_oct, /*nb_oct*/ - (unaryfunc)SwigPyObject_hex, /*nb_hex*/ -#endif -#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */ -#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */ -#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */ - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */ -#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */ - 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ -#endif - }; - - static PyTypeObject swigpyobject_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ -#endif - (char *)"SwigPyObject", /* tp_name */ - sizeof(SwigPyObject), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyObject_dealloc, /* tp_dealloc */ - (printfunc)SwigPyObject_print, /* tp_print */ -#if PY_VERSION_HEX < 0x02020000 - (getattrfunc)SwigPyObject_getattr, /* tp_getattr */ -#else - (getattrfunc)0, /* tp_getattr */ -#endif - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX >= 0x03000000 - 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */ -#else - (cmpfunc)SwigPyObject_compare, /* tp_compare */ -#endif - (reprfunc)SwigPyObject_repr, /* tp_repr */ - &SwigPyObject_as_number, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyObject_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigobject_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - (richcmpfunc)SwigPyObject_richcompare, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0, /* tp_iter */ - 0, /* tp_iternext */ - swigobject_methods, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - swigpyobject_type = tmp; - /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - swigpyobject_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &swigpyobject_type; -} - -SWIGRUNTIME PyObject * -SwigPyObject_New(void *ptr, swig_type_info *ty, int own) -{ - SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); - if (sobj) { - sobj->ptr = ptr; - sobj->ty = ty; - sobj->own = own; - sobj->next = 0; - } - return (PyObject *)sobj; -} - -/* ----------------------------------------------------------------------------- - * Implements a simple Swig Packed type, and use it instead of string - * ----------------------------------------------------------------------------- */ - -typedef struct { - PyObject_HEAD - void *pack; - swig_type_info *ty; - size_t size; -} SwigPyPacked; - -SWIGRUNTIME int -SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags)) -{ - char result[SWIG_BUFFER_SIZE]; - fputs("pack, v->size, 0, sizeof(result))) { - fputs("at ", fp); - fputs(result, fp); - } - fputs(v->ty->name,fp); - fputs(">", fp); - return 0; -} - -SWIGRUNTIME PyObject * -SwigPyPacked_repr(SwigPyPacked *v) -{ - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) { - return SWIG_Python_str_FromFormat("", result, v->ty->name); - } else { - return SWIG_Python_str_FromFormat("", v->ty->name); - } -} - -SWIGRUNTIME PyObject * -SwigPyPacked_str(SwigPyPacked *v) -{ - char result[SWIG_BUFFER_SIZE]; - if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){ - return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name); - } else { - return SWIG_Python_str_FromChar(v->ty->name); - } -} - -SWIGRUNTIME int -SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w) -{ - size_t i = v->size; - size_t j = w->size; - int s = (i < j) ? -1 : ((i > j) ? 1 : 0); - return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size); -} - -SWIGRUNTIME PyTypeObject* _PySwigPacked_type(void); - -SWIGRUNTIME PyTypeObject* -SwigPyPacked_type(void) { - static PyTypeObject *SWIG_STATIC_POINTER(type) = _PySwigPacked_type(); - return type; -} - -SWIGRUNTIMEINLINE int -SwigPyPacked_Check(PyObject *op) { - return ((op)->ob_type == _PySwigPacked_type()) - || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0); -} - -SWIGRUNTIME void -SwigPyPacked_dealloc(PyObject *v) -{ - if (SwigPyPacked_Check(v)) { - SwigPyPacked *sobj = (SwigPyPacked *) v; - free(sobj->pack); - } - PyObject_DEL(v); -} - -SWIGRUNTIME PyTypeObject* -_PySwigPacked_type(void) { - static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer"; - static PyTypeObject swigpypacked_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX>=0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* ob_size */ -#endif - (char *)"SwigPyPacked", /* tp_name */ - sizeof(SwigPyPacked), /* tp_basicsize */ - 0, /* tp_itemsize */ - (destructor)SwigPyPacked_dealloc, /* tp_dealloc */ - (printfunc)SwigPyPacked_print, /* tp_print */ - (getattrfunc)0, /* tp_getattr */ - (setattrfunc)0, /* tp_setattr */ -#if PY_VERSION_HEX>=0x03000000 - 0, /* tp_reserved in 3.0.1 */ -#else - (cmpfunc)SwigPyPacked_compare, /* tp_compare */ -#endif - (reprfunc)SwigPyPacked_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - (hashfunc)0, /* tp_hash */ - (ternaryfunc)0, /* tp_call */ - (reprfunc)SwigPyPacked_str, /* tp_str */ - PyObject_GenericGetAttr, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT, /* tp_flags */ - swigpacked_doc, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0, /* tp_iter */ - 0, /* tp_iternext */ - 0, /* tp_methods */ - 0, /* tp_members */ - 0, /* tp_getset */ - 0, /* tp_base */ - 0, /* tp_dict */ - 0, /* tp_descr_get */ - 0, /* tp_descr_set */ - 0, /* tp_dictoffset */ - 0, /* tp_init */ - 0, /* tp_alloc */ - 0, /* tp_new */ - 0, /* tp_free */ - 0, /* tp_is_gc */ - 0, /* tp_bases */ - 0, /* tp_mro */ - 0, /* tp_cache */ - 0, /* tp_subclasses */ - 0, /* tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - swigpypacked_type = tmp; - /* for Python 3 the ob_type already assigned in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - swigpypacked_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &swigpypacked_type; -} - -SWIGRUNTIME PyObject * -SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty) -{ - SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type()); - if (sobj) { - void *pack = malloc(size); - if (pack) { - memcpy(pack, ptr, size); - sobj->pack = pack; - sobj->ty = ty; - sobj->size = size; - } else { - PyObject_DEL((PyObject *) sobj); - sobj = 0; - } - } - return (PyObject *) sobj; -} - -SWIGRUNTIME swig_type_info * -SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size) -{ - if (SwigPyPacked_Check(obj)) { - SwigPyPacked *sobj = (SwigPyPacked *)obj; - if (sobj->size != size) return 0; - memcpy(ptr, sobj->pack, size); - return sobj->ty; - } else { - return 0; - } -} - -/* ----------------------------------------------------------------------------- - * pointers/data manipulation - * ----------------------------------------------------------------------------- */ - -SWIGRUNTIMEINLINE PyObject * -_SWIG_This(void) -{ - return SWIG_Python_str_FromChar("this"); -} - -SWIGRUNTIME PyObject * -SWIG_This(void) -{ - static PyObject *SWIG_STATIC_POINTER(swig_this) = _SWIG_This(); - return swig_this; -} - -/* #define SWIG_PYTHON_SLOW_GETSET_THIS */ - -/* TODO: I don't know how to implement the fast getset in Python 3 right now */ -#if PY_VERSION_HEX>=0x03000000 -#define SWIG_PYTHON_SLOW_GETSET_THIS -#endif - -SWIGRUNTIME SwigPyObject * -SWIG_Python_GetSwigThis(PyObject *pyobj) -{ - if (SwigPyObject_Check(pyobj)) { - return (SwigPyObject *) pyobj; - } else { - PyObject *obj = 0; -#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) - if (PyInstance_Check(pyobj)) { - obj = _PyInstance_Lookup(pyobj, SWIG_This()); - } else { - PyObject **dictptr = _PyObject_GetDictPtr(pyobj); - if (dictptr != NULL) { - PyObject *dict = *dictptr; - obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; - } else { -#ifdef PyWeakref_CheckProxy - if (PyWeakref_CheckProxy(pyobj)) { - PyObject *wobj = PyWeakref_GET_OBJECT(pyobj); - return wobj ? SWIG_Python_GetSwigThis(wobj) : 0; - } -#endif - obj = PyObject_GetAttr(pyobj,SWIG_This()); - if (obj) { - Py_DECREF(obj); - } else { - if (PyErr_Occurred()) PyErr_Clear(); - return 0; - } - } - } -#else - obj = PyObject_GetAttr(pyobj,SWIG_This()); - if (obj) { - Py_DECREF(obj); - } else { - if (PyErr_Occurred()) PyErr_Clear(); - return 0; - } -#endif - if (obj && !SwigPyObject_Check(obj)) { - /* a PyObject is called 'this', try to get the 'real this' - SwigPyObject from it */ - return SWIG_Python_GetSwigThis(obj); - } - return (SwigPyObject *)obj; - } -} - -/* Acquire a pointer value */ - -SWIGRUNTIME int -SWIG_Python_AcquirePtr(PyObject *obj, int own) { - if (own == SWIG_POINTER_OWN) { - SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); - if (sobj) { - int oldown = sobj->own; - sobj->own = own; - return oldown; - } - } - return 0; -} - -/* Convert a pointer value */ - -SWIGRUNTIME int -SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { - if (!obj) return SWIG_ERROR; - if (obj == Py_None) { - if (ptr) *ptr = 0; - return SWIG_OK; - } else { - SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj); - if (own) - *own = 0; - while (sobj) { - void *vptr = sobj->ptr; - if (ty) { - swig_type_info *to = sobj->ty; - if (to == ty) { - /* no type cast needed */ - if (ptr) *ptr = vptr; - break; - } else { - swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); - if (!tc) { - sobj = (SwigPyObject *)sobj->next; - } else { - if (ptr) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc,vptr,&newmemory); - if (newmemory == SWIG_CAST_NEW_MEMORY) { - assert(own); - if (own) - *own = *own | SWIG_CAST_NEW_MEMORY; - } - } - break; - } - } - } else { - if (ptr) *ptr = vptr; - break; - } - } - if (sobj) { - if (own) - *own = *own | sobj->own; - if (flags & SWIG_POINTER_DISOWN) { - sobj->own = 0; - } - return SWIG_OK; - } else { - int res = SWIG_ERROR; - if (flags & SWIG_POINTER_IMPLICIT_CONV) { - SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; - if (data && !data->implicitconv) { - PyObject *klass = data->klass; - if (klass) { - PyObject *impconv; - data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/ - impconv = SWIG_Python_CallFunctor(klass, obj); - data->implicitconv = 0; - if (PyErr_Occurred()) { - PyErr_Clear(); - impconv = 0; - } - if (impconv) { - SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv); - if (iobj) { - void *vptr; - res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0); - if (SWIG_IsOK(res)) { - if (ptr) { - *ptr = vptr; - /* transfer the ownership to 'ptr' */ - iobj->own = 0; - res = SWIG_AddCast(res); - res = SWIG_AddNewMask(res); - } else { - res = SWIG_AddCast(res); - } - } - } - Py_DECREF(impconv); - } - } - } - } - return res; - } - } -} - -/* Convert a function ptr value */ - -SWIGRUNTIME int -SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) { - if (!PyCFunction_Check(obj)) { - return SWIG_ConvertPtr(obj, ptr, ty, 0); - } else { - void *vptr = 0; - - /* here we get the method pointer for callbacks */ - const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); - const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0; - if (desc) - desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0; - if (!desc) - return SWIG_ERROR; - if (ty) { - swig_cast_info *tc = SWIG_TypeCheck(desc,ty); - if (tc) { - int newmemory = 0; - *ptr = SWIG_TypeCast(tc,vptr,&newmemory); - assert(!newmemory); /* newmemory handling not yet implemented */ - } else { - return SWIG_ERROR; - } - } else { - *ptr = vptr; - } - return SWIG_OK; - } -} - -/* Convert a packed value value */ - -SWIGRUNTIME int -SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) { - swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz); - if (!to) return SWIG_ERROR; - if (ty) { - if (to != ty) { - /* check type cast? */ - swig_cast_info *tc = SWIG_TypeCheck(to->name,ty); - if (!tc) return SWIG_ERROR; - } - } - return SWIG_OK; -} - -/* ----------------------------------------------------------------------------- - * Create a new pointer object - * ----------------------------------------------------------------------------- */ - -/* - Create a new instance object, without calling __init__, and set the - 'this' attribute. -*/ - -SWIGRUNTIME PyObject* -SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) -{ -#if (PY_VERSION_HEX >= 0x02020000) - PyObject *inst = 0; - PyObject *newraw = data->newraw; - if (newraw) { - inst = PyObject_Call(newraw, data->newargs, NULL); - if (inst) { -#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject **dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - PyObject *dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - PyDict_SetItem(dict, SWIG_This(), swig_this); - } - } -#else - PyObject *key = SWIG_This(); - PyObject_SetAttr(inst, key, swig_this); -#endif - } - } else { -#if PY_VERSION_HEX >= 0x03000000 - inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); - PyObject_SetAttr(inst, SWIG_This(), swig_this); - Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; -#else - PyObject *dict = PyDict_New(); - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); -#endif - } - return inst; -#else -#if (PY_VERSION_HEX >= 0x02010000) - PyObject *inst; - PyObject *dict = PyDict_New(); - PyDict_SetItem(dict, SWIG_This(), swig_this); - inst = PyInstance_NewRaw(data->newargs, dict); - Py_DECREF(dict); - return (PyObject *) inst; -#else - PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type); - if (inst == NULL) { - return NULL; - } - inst->in_class = (PyClassObject *)data->newargs; - Py_INCREF(inst->in_class); - inst->in_dict = PyDict_New(); - if (inst->in_dict == NULL) { - Py_DECREF(inst); - return NULL; - } -#ifdef Py_TPFLAGS_HAVE_WEAKREFS - inst->in_weakreflist = NULL; -#endif -#ifdef Py_TPFLAGS_GC - PyObject_GC_Init(inst); -#endif - PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this); - return (PyObject *) inst; -#endif -#endif -} - -SWIGRUNTIME void -SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this) -{ - PyObject *dict; -#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) - PyObject **dictptr = _PyObject_GetDictPtr(inst); - if (dictptr != NULL) { - dict = *dictptr; - if (dict == NULL) { - dict = PyDict_New(); - *dictptr = dict; - } - PyDict_SetItem(dict, SWIG_This(), swig_this); - return; - } -#endif - dict = PyObject_GetAttrString(inst, (char*)"__dict__"); - PyDict_SetItem(dict, SWIG_This(), swig_this); - Py_DECREF(dict); -} - - -SWIGINTERN PyObject * -SWIG_Python_InitShadowInstance(PyObject *args) { - PyObject *obj[2]; - if (!SWIG_Python_UnpackTuple(args,(char*)"swiginit", 2, 2, obj)) { - return NULL; - } else { - SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]); - if (sthis) { - SwigPyObject_append((PyObject*) sthis, obj[1]); - } else { - SWIG_Python_SetSwigThis(obj[0], obj[1]); - } - return SWIG_Py_Void(); - } -} - -/* Create a new pointer object */ - -SWIGRUNTIME PyObject * -SWIG_Python_NewPointerObj(void *ptr, swig_type_info *type, int flags) { - if (!ptr) { - return SWIG_Py_Void(); - } else { - int own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0; - PyObject *robj = SwigPyObject_New(ptr, type, own); - SwigPyClientData *clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0; - if (clientdata && !(flags & SWIG_POINTER_NOSHADOW)) { - PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj); - if (inst) { - Py_DECREF(robj); - robj = inst; - } - } - return robj; - } -} - -/* Create a new packed object */ - -SWIGRUNTIMEINLINE PyObject * -SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) { - return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void(); -} - -/* -----------------------------------------------------------------------------* - * Get type list - * -----------------------------------------------------------------------------*/ - -#ifdef SWIG_LINK_RUNTIME -void *SWIG_ReturnGlobalTypeList(void *); -#endif - -SWIGRUNTIME swig_module_info * -SWIG_Python_GetModule(void) { - static void *type_pointer = (void *)0; - /* first check if module already created */ - if (!type_pointer) { -#ifdef SWIG_LINK_RUNTIME - type_pointer = SWIG_ReturnGlobalTypeList((void *)0); -#else - type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, - (char*)"type_pointer" SWIG_TYPE_TABLE_NAME); - if (PyErr_Occurred()) { - PyErr_Clear(); - type_pointer = (void *)0; - } -#endif - } - return (swig_module_info *) type_pointer; -} - -#if PY_MAJOR_VERSION < 2 -/* PyModule_AddObject function was introduced in Python 2.0. The following function - is copied out of Python/modsupport.c in python version 2.3.4 */ -SWIGINTERN int -PyModule_AddObject(PyObject *m, char *name, PyObject *o) -{ - PyObject *dict; - if (!PyModule_Check(m)) { - PyErr_SetString(PyExc_TypeError, - "PyModule_AddObject() needs module as first arg"); - return SWIG_ERROR; - } - if (!o) { - PyErr_SetString(PyExc_TypeError, - "PyModule_AddObject() needs non-NULL value"); - return SWIG_ERROR; - } - - dict = PyModule_GetDict(m); - if (dict == NULL) { - /* Internal error -- modules must have a dict! */ - PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__", - PyModule_GetName(m)); - return SWIG_ERROR; - } - if (PyDict_SetItemString(dict, name, o)) - return SWIG_ERROR; - Py_DECREF(o); - return SWIG_OK; -} -#endif - -SWIGRUNTIME void -SWIG_Python_DestroyModule(void *vptr) -{ - swig_module_info *swig_module = (swig_module_info *) vptr; - swig_type_info **types = swig_module->types; - size_t i; - for (i =0; i < swig_module->size; ++i) { - swig_type_info *ty = types[i]; - if (ty->owndata) { - SwigPyClientData *data = (SwigPyClientData *) ty->clientdata; - if (data) SwigPyClientData_Del(data); - } - } - Py_DECREF(SWIG_This()); -} - -SWIGRUNTIME void -SWIG_Python_SetModule(swig_module_info *swig_module) { - static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} };/* Sentinel */ - -#if PY_VERSION_HEX >= 0x03000000 - /* Add a dummy module object into sys.modules */ - PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION); -#else - PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, - swig_empty_runtime_method_table); -#endif - PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule); - if (pointer && module) { - PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer); - } else { - Py_XDECREF(pointer); - } -} - -/* The python cached type query */ -SWIGRUNTIME PyObject * -SWIG_Python_TypeCache(void) { - static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New(); - return cache; -} - -SWIGRUNTIME swig_type_info * -SWIG_Python_TypeQuery(const char *type) -{ - PyObject *cache = SWIG_Python_TypeCache(); - PyObject *key = SWIG_Python_str_FromChar(type); - PyObject *obj = PyDict_GetItem(cache, key); - swig_type_info *descriptor; - if (obj) { - descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj); - } else { - swig_module_info *swig_module = SWIG_Python_GetModule(); - descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type); - if (descriptor) { - obj = PyCObject_FromVoidPtr(descriptor, NULL); - PyDict_SetItem(cache, key, obj); - Py_DECREF(obj); - } - } - Py_DECREF(key); - return descriptor; -} - -/* - For backward compatibility only -*/ -#define SWIG_POINTER_EXCEPTION 0 -#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg) -#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags) - -SWIGRUNTIME int -SWIG_Python_AddErrMesg(const char* mesg, int infront) -{ - if (PyErr_Occurred()) { - PyObject *type = 0; - PyObject *value = 0; - PyObject *traceback = 0; - PyErr_Fetch(&type, &value, &traceback); - if (value) { - char *tmp; - PyObject *old_str = PyObject_Str(value); - Py_XINCREF(type); - PyErr_Clear(); - if (infront) { - PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str)); - } else { - PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg); - } - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(old_str); - } - return 1; - } else { - return 0; - } -} - -SWIGRUNTIME int -SWIG_Python_ArgFail(int argnum) -{ - if (PyErr_Occurred()) { - /* add information about failing argument */ - char mesg[256]; - PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum); - return SWIG_Python_AddErrMesg(mesg, 1); - } else { - return 0; - } -} - -SWIGRUNTIMEINLINE const char * -SwigPyObject_GetDesc(PyObject *self) -{ - SwigPyObject *v = (SwigPyObject *)self; - swig_type_info *ty = v ? v->ty : 0; - return ty ? ty->str : (char*)""; -} - -SWIGRUNTIME void -SWIG_Python_TypeError(const char *type, PyObject *obj) -{ - if (type) { -#if defined(SWIG_COBJECT_TYPES) - if (obj && SwigPyObject_Check(obj)) { - const char *otype = (const char *) SwigPyObject_GetDesc(obj); - if (otype) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received", - type, otype); - return; - } - } else -#endif - { - const char *otype = (obj ? obj->ob_type->tp_name : 0); - if (otype) { - PyObject *str = PyObject_Str(obj); - const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0; - if (cstr) { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received", - type, otype, cstr); - SWIG_Python_str_DelForPy3(cstr); - } else { - PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received", - type, otype); - } - Py_XDECREF(str); - return; - } - } - PyErr_Format(PyExc_TypeError, "a '%s' is expected", type); - } else { - PyErr_Format(PyExc_TypeError, "unexpected type is received"); - } -} - - -/* Convert a pointer value, signal an exception on a type mismatch */ -SWIGRUNTIME void * -SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int argnum, int flags) { - void *result; - if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) { - PyErr_Clear(); -#if SWIG_POINTER_EXCEPTION - if (flags) { - SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj); - SWIG_Python_ArgFail(argnum); - } -#endif - } - return result; -} - - -#ifdef __cplusplus -#if 0 -{ /* cc-mode */ -#endif -} -#endif - - - -#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0) - -#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else - - - -/* define the PyAPI_FUNC macro if it doesn't exist, for example with Python - version below 2.3... But not really tested... */ -#ifndef PyAPI_FUNC -# define PyAPI_FUNC(RTYPE) RTYPE -#endif - -/* remove the PyInt_AS_LONG if defined, as this cause problems on RedHat */ -#ifdef PyInt_AS_LONG -#undef PyInt_AS_LONG -#endif - -/* wrapper to the better function PyInt_AsLong, removing problems - with RedHat (I hope) */ -long PyInt_AS_LONG (PyObject *obj) { - return PyInt_AsLong (obj); -} - -/* remove the PyFloat_AS_DOUBLE if defined, to prevent errors */ -#ifdef PyFloat_AS_DOUBLE -#undef PyFloat_AS_DOUBLE -#endif - -/* wrapper to the better function PyFloat_AS_DOUBLE, to prevent errors */ -double PyFloat_AS_DOUBLE (PyObject *obj) { - return PyFloat_AsDouble (obj); -} - - - #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0) - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -#define SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void swig_types[0] -#define SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float swig_types[1] -#define SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void swig_types[2] -#define SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool swig_types[3] -#define SWIGTYPE_p_Calc swig_types[4] -#define SWIGTYPE_p_CalcRho swig_types[5] -#define SWIGTYPE_p_Cv32suf swig_types[6] -#define SWIGTYPE_p_Cv64suf swig_types[7] -#define SWIGTYPE_p_CvANN_MLP swig_types[8] -#define SWIGTYPE_p_CvANN_MLP_TrainParams swig_types[9] -#define SWIGTYPE_p_CvAttrList swig_types[10] -#define SWIGTYPE_p_CvAvgComp swig_types[11] -#define SWIGTYPE_p_CvBoost swig_types[12] -#define SWIGTYPE_p_CvBoostParams swig_types[13] -#define SWIGTYPE_p_CvBoostTree swig_types[14] -#define SWIGTYPE_p_CvBox2D swig_types[15] -#define SWIGTYPE_p_CvChain swig_types[16] -#define SWIGTYPE_p_CvChainPtReader swig_types[17] -#define SWIGTYPE_p_CvConDensation swig_types[18] -#define SWIGTYPE_p_CvConnectedComp swig_types[19] -#define SWIGTYPE_p_CvContour swig_types[20] -#define SWIGTYPE_p_CvContourTree swig_types[21] -#define SWIGTYPE_p_CvConvexityDefect swig_types[22] -#define SWIGTYPE_p_CvDTree swig_types[23] -#define SWIGTYPE_p_CvDTreeNode swig_types[24] -#define SWIGTYPE_p_CvDTreeParams swig_types[25] -#define SWIGTYPE_p_CvDTreeSplit swig_types[26] -#define SWIGTYPE_p_CvDTreeTrainData swig_types[27] -#define SWIGTYPE_p_CvEM swig_types[28] -#define SWIGTYPE_p_CvEMParams swig_types[29] -#define SWIGTYPE_p_CvERTreeTrainData swig_types[30] -#define SWIGTYPE_p_CvERTrees swig_types[31] -#define SWIGTYPE_p_CvFileNode swig_types[32] -#define SWIGTYPE_p_CvFileStorage swig_types[33] -#define SWIGTYPE_p_CvFilter swig_types[34] -#define SWIGTYPE_p_CvFont swig_types[35] -#define SWIGTYPE_p_CvForestERTree swig_types[36] -#define SWIGTYPE_p_CvForestTree swig_types[37] -#define SWIGTYPE_p_CvGenericHash swig_types[38] -#define SWIGTYPE_p_CvGraph swig_types[39] -#define SWIGTYPE_p_CvGraphEdge swig_types[40] -#define SWIGTYPE_p_CvGraphScanner swig_types[41] -#define SWIGTYPE_p_CvGraphVtx swig_types[42] -#define SWIGTYPE_p_CvGraphVtx2D swig_types[43] -#define SWIGTYPE_p_CvHaarClassifier swig_types[44] -#define SWIGTYPE_p_CvHaarClassifierCascade swig_types[45] -#define SWIGTYPE_p_CvHaarFeature swig_types[46] -#define SWIGTYPE_p_CvHaarStageClassifier swig_types[47] -#define SWIGTYPE_p_CvHidHaarClassifierCascade swig_types[48] -#define SWIGTYPE_p_CvHistogram swig_types[49] -#define SWIGTYPE_p_CvHuMoments swig_types[50] -#define SWIGTYPE_p_CvKNearest swig_types[51] -#define SWIGTYPE_p_CvKalman swig_types[52] -#define SWIGTYPE_p_CvLineIterator swig_types[53] -#define SWIGTYPE_p_CvMLData swig_types[54] -#define SWIGTYPE_p_CvMSERParams swig_types[55] -#define SWIGTYPE_p_CvMat swig_types[56] -#define SWIGTYPE_p_CvMatND swig_types[57] -#define SWIGTYPE_p_CvMatrix3 swig_types[58] -#define SWIGTYPE_p_CvMemBlock swig_types[59] -#define SWIGTYPE_p_CvMemStorage swig_types[60] -#define SWIGTYPE_p_CvMemStoragePos swig_types[61] -#define SWIGTYPE_p_CvModuleInfo swig_types[62] -#define SWIGTYPE_p_CvMoments swig_types[63] -#define SWIGTYPE_p_CvNArrayIterator swig_types[64] -#define SWIGTYPE_p_CvNextEdgeType swig_types[65] -#define SWIGTYPE_p_CvNormalBayesClassifier swig_types[66] -#define SWIGTYPE_p_CvPOSITObject swig_types[67] -#define SWIGTYPE_p_CvPair16u32s swig_types[68] -#define SWIGTYPE_p_CvParamGrid swig_types[69] -#define SWIGTYPE_p_CvPluginFuncInfo swig_types[70] -#define SWIGTYPE_p_CvPoint swig_types[71] -#define SWIGTYPE_p_CvPoint2D32f swig_types[72] -#define SWIGTYPE_p_CvPoint2D64f swig_types[73] -#define SWIGTYPE_p_CvPoint3D32f swig_types[74] -#define SWIGTYPE_p_CvPoint3D64f swig_types[75] -#define SWIGTYPE_p_CvQuadEdge2D swig_types[76] -#define SWIGTYPE_p_CvRNG_Wrapper swig_types[77] -#define SWIGTYPE_p_CvRTParams swig_types[78] -#define SWIGTYPE_p_CvRTrees swig_types[79] -#define SWIGTYPE_p_CvRect swig_types[80] -#define SWIGTYPE_p_CvSURFParams swig_types[81] -#define SWIGTYPE_p_CvSURFPoint swig_types[82] -#define SWIGTYPE_p_CvSVM swig_types[83] -#define SWIGTYPE_p_CvSVMDecisionFunc swig_types[84] -#define SWIGTYPE_p_CvSVMKernel swig_types[85] -#define SWIGTYPE_p_CvSVMKernelRow swig_types[86] -#define SWIGTYPE_p_CvSVMParams swig_types[87] -#define SWIGTYPE_p_CvSVMSolutionInfo swig_types[88] -#define SWIGTYPE_p_CvSVMSolver swig_types[89] -#define SWIGTYPE_p_CvScalar swig_types[90] -#define SWIGTYPE_p_CvSeq swig_types[91] -#define SWIGTYPE_p_CvSeqBlock swig_types[92] -#define SWIGTYPE_p_CvSeqReader swig_types[93] -#define SWIGTYPE_p_CvSeqWriter swig_types[94] -#define SWIGTYPE_p_CvSet swig_types[95] -#define SWIGTYPE_p_CvSetElem swig_types[96] -#define SWIGTYPE_p_CvSize swig_types[97] -#define SWIGTYPE_p_CvSize2D32f swig_types[98] -#define SWIGTYPE_p_CvSlice swig_types[99] -#define SWIGTYPE_p_CvSparseMat swig_types[100] -#define SWIGTYPE_p_CvSparseMatIterator swig_types[101] -#define SWIGTYPE_p_CvSparseNode swig_types[102] -#define SWIGTYPE_p_CvStarDetectorParams swig_types[103] -#define SWIGTYPE_p_CvStarKeypoint swig_types[104] -#define SWIGTYPE_p_CvStatModel swig_types[105] -#define SWIGTYPE_p_CvStereoBMState swig_types[106] -#define SWIGTYPE_p_CvStereoGCState swig_types[107] -#define SWIGTYPE_p_CvString swig_types[108] -#define SWIGTYPE_p_CvStringHashNode swig_types[109] -#define SWIGTYPE_p_CvSubdiv2D swig_types[110] -#define SWIGTYPE_p_CvSubdiv2DEdge_Wrapper swig_types[111] -#define SWIGTYPE_p_CvSubdiv2DPoint swig_types[112] -#define SWIGTYPE_p_CvSubdiv2DPointLocation swig_types[113] -#define SWIGTYPE_p_CvTermCriteria swig_types[114] -#define SWIGTYPE_p_CvTrainTestSplit swig_types[115] -#define SWIGTYPE_p_CvTrainTestSplit_class_part swig_types[116] -#define SWIGTYPE_p_CvTrainTestSplit_train_sample_part swig_types[117] -#define SWIGTYPE_p_CvTreeNodeIterator swig_types[118] -#define SWIGTYPE_p_CvTypeInfo swig_types[119] -#define SWIGTYPE_p_CvVectors swig_types[120] -#define SWIGTYPE_p_CvVectors_data swig_types[121] -#define SWIGTYPE_p_GetRow swig_types[122] -#define SWIGTYPE_p_SelectWorkingSet swig_types[123] -#define SWIGTYPE_p__IplConvKernel swig_types[124] -#define SWIGTYPE_p__IplConvKernelFP swig_types[125] -#define SWIGTYPE_p__IplImage swig_types[126] -#define SWIGTYPE_p__IplROI swig_types[127] -#define SWIGTYPE_p__IplTileInfo swig_types[128] -#define SWIGTYPE_p_bool swig_types[129] -#define SWIGTYPE_p_char swig_types[130] -#define SWIGTYPE_p_double swig_types[131] -#define SWIGTYPE_p_float swig_types[132] -#define SWIGTYPE_p_int swig_types[133] -#define SWIGTYPE_p_int64_t swig_types[134] -#define SWIGTYPE_p_p_CvMat swig_types[135] -#define SWIGTYPE_p_p_double swig_types[136] -#define SWIGTYPE_p_p_float swig_types[137] -#define SWIGTYPE_p_p_int swig_types[138] -#define SWIGTYPE_p_p_unsigned_char swig_types[139] -#define SWIGTYPE_p_signed_char swig_types[140] -#define SWIGTYPE_p_size_t swig_types[141] -#define SWIGTYPE_p_uint64_t swig_types[142] -#define SWIGTYPE_p_unsigned_char swig_types[143] -#define SWIGTYPE_p_unsigned_short swig_types[144] -#define SWIGTYPE_p_vectorT_float_t swig_types[145] -#define SWIGTYPE_p_vectorT_vectorT_float_t_t swig_types[146] -#define SWIGTYPE_p_vectorT_vectorT_int_t_t swig_types[147] -#define SWIGTYPE_p_void swig_types[148] -static swig_type_info *swig_types[150]; -static swig_module_info swig_module = {swig_types, 149, 0, 0, 0, 0}; -#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) -#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) - -/* -------- TYPES TABLE (END) -------- */ - -#if (PY_VERSION_HEX <= 0x02000000) -# if !defined(SWIG_PYTHON_CLASSIC) -# error "This python version requires swig to be run with the '-classic' option" -# endif -#endif - -/*----------------------------------------------- - @(target):= _ml.so - ------------------------------------------------*/ -#if PY_VERSION_HEX >= 0x03000000 -# define SWIG_init PyInit__ml - -#else -# define SWIG_init init_ml - -#endif -#define SWIG_name "_ml" - -#define SWIGVERSION 0x010340 -#define SWIG_VERSION SWIGVERSION - - -#define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a)) -#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a)) - - -#include - - -namespace swig { - class SwigPtr_PyObject { - protected: - PyObject *_obj; - - public: - SwigPtr_PyObject() :_obj(0) - { - } - - SwigPtr_PyObject(const SwigPtr_PyObject& item) : _obj(item._obj) - { - Py_XINCREF(_obj); - } - - SwigPtr_PyObject(PyObject *obj, bool initial_ref = true) :_obj(obj) - { - if (initial_ref) { - Py_XINCREF(_obj); - } - } - - SwigPtr_PyObject & operator=(const SwigPtr_PyObject& item) - { - Py_XINCREF(item._obj); - Py_XDECREF(_obj); - _obj = item._obj; - return *this; - } - - ~SwigPtr_PyObject() - { - Py_XDECREF(_obj); - } - - operator PyObject *() const - { - return _obj; - } - - PyObject *operator->() const - { - return _obj; - } - }; -} - - -namespace swig { - struct SwigVar_PyObject : SwigPtr_PyObject { - SwigVar_PyObject(PyObject* obj = 0) : SwigPtr_PyObject(obj, false) { } - - SwigVar_PyObject & operator = (PyObject* obj) - { - Py_XDECREF(_obj); - _obj = obj; - return *this; - } - }; -} - - - #include - #include - #include - #include - #include "pyhelpers.h" - #include "pycvseq.hpp" - - - -#include "pyhelpers.h" - -static CvArr * PyObject_to_CvArr(PyObject * obj, bool * freearg); - -// convert a python sequence/array/list object into a c-array -#define PyObject_AsArrayImpl(func, ctype, ptype) \ - int func(PyObject * obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(PyNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = PyObject_As##ptype( obj ); \ - } \ - else if(PyList_Check(obj) || PyTuple_Check(obj)){ \ - int seqsize = PySequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(PyObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - PyErr_SetString( PyExc_TypeError, "could not convert to CvPoint"); - return cvPoint(0,0); -} - -static CvPoint2D32f PyObject_to_CvPoint2D32f(PyObject * obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(PyObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - PyErr_SetString(PyExc_TypeError, "could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); -} - -/* Check if this object can be interpreted as a CvScalar */ -static bool CvScalar_Check(PyObject * obj){ - void * vptr; - CvScalar val; - return SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0 ) != -1 || - PyObject_AsDoubleArray(obj, val.val, 4) !=-1; -} - -static CvScalar PyObject_to_CvScalar(PyObject * obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(PyObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); -} - -static int CvArr_Check( PyObject * obj ) -{ - void *ptr; - if( obj == Py_None || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMatND, 0) ) || - PyObject_HasAttrString(obj, "__array_interface__") || - PySequence_Check(obj) ) - { - return 1; - } - PyErr_Clear(); - return 0; -} - -/* if python sequence type, convert to CvMat or CvMatND */ -static CvArr * PyObject_to_CvArr (PyObject * obj, bool * freearg) -{ - CvArr * cvarr = NULL; - *freearg = false; - - if ( obj == Py_None ) - { - // Interpret None as NULL pointer - return NULL; - } - else if( SWIG_IsOK( SWIG_ConvertPtr(obj, (void **)& cvarr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void** )& cvarr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvMatND, 0) )) - { - // we got a directly wrapped void * pointer, OpenCV array or sequence type - return cvarr; - } - else if (PyObject_HasAttrString (obj, "__array_interface__")) - { - // if we didn't get our own datatype, let's see if it supports the array protocol - // array protocol is great because we just have to create another header but can - // use the original data without copying - cvarr = PyArray_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PySequence_Check (obj)) - { - // our next bet is a tuple or list of tuples or lists this has to be copied over, however - cvarr = PySequence_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PyLong_Check (obj) && PyLong_AsLong (obj) == 0) - { - // Interpret a '0' integer as a NULL pointer - * freearg = false; - return NULL; - } - else - { - // TODO, throw an error here - return NULL; - } - - return cvarr; -} - - -static int PyObject_GetElemType(PyObject * obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(PyTuple_Check(obj) || PyList_Check(obj)) return CV_MAKE_TYPE(CV_32F, PySequence_Size( obj )); - if(PyLong_Check(obj)) return CV_32S; - return CV_32F; -} - - - -// Wrapper class -class CvRNG_Wrapper { -private: - CvRNG m_val; -public: - CvRNG_Wrapper( const CvRNG & val ) : - m_val(val) - { - } - CvRNG * ptr() { return &m_val; } - CvRNG & ref() { return m_val; } - bool operator==(const CvRNG_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvRNG_Wrapper & x){ - return m_val!=x.m_val; - } -}; - - -SWIGINTERNINLINE PyObject* - SWIG_From_bool (bool value) -{ - return PyBool_FromLong(value ? 1 : 0); -} - - -// Wrapper class -class CvSubdiv2DEdge_Wrapper { -private: - CvSubdiv2DEdge m_val; -public: - CvSubdiv2DEdge_Wrapper( const CvSubdiv2DEdge & val ) : - m_val(val) - { - } - CvSubdiv2DEdge * ptr() { return &m_val; } - CvSubdiv2DEdge & ref() { return m_val; } - bool operator==(const CvSubdiv2DEdge_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const CvSubdiv2DEdge_Wrapper & x){ - return m_val!=x.m_val; - } -}; - - -SWIGINTERN int -SWIG_AsVal_double (PyObject *obj, double *val) -{ - int res = SWIG_TypeError; - if (PyFloat_Check(obj)) { - if (val) *val = PyFloat_AsDouble(obj); - return SWIG_OK; - } else if (PyInt_Check(obj)) { - if (val) *val = PyInt_AsLong(obj); - return SWIG_OK; - } else if (PyLong_Check(obj)) { - double v = PyLong_AsDouble(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - double d = PyFloat_AsDouble(obj); - if (!PyErr_Occurred()) { - if (val) *val = d; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - long v = PyLong_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_AddCast(SWIG_OK)); - } else { - PyErr_Clear(); - } - } - } -#endif - return res; -} - - -#include - - -#include - - -SWIGINTERNINLINE int -SWIG_CanCastAsInteger(double *d, double min, double max) { - double x = *d; - if ((min <= x && x <= max)) { - double fx = floor(x); - double cx = ceil(x); - double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */ - if ((errno == EDOM) || (errno == ERANGE)) { - errno = 0; - } else { - double summ, reps, diff; - if (rd < x) { - diff = x - rd; - } else if (rd > x) { - diff = rd - x; - } else { - return 1; - } - summ = rd + x; - reps = diff/summ; - if (reps < 8*DBL_EPSILON) { - *d = rd; - return 1; - } - } - } - return 0; -} - - -SWIGINTERN int -SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val) -{ - if (PyInt_Check(obj)) { - long v = PyInt_AsLong(obj); - if (v >= 0) { - if (val) *val = v; - return SWIG_OK; - } else { - return SWIG_OverflowError; - } - } else if (PyLong_Check(obj)) { - unsigned long v = PyLong_AsUnsignedLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - unsigned long v = PyLong_AsUnsignedLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) { - if (val) *val = (unsigned long)(d); - return res; - } - } - } -#endif - return SWIG_TypeError; -} - - -SWIGINTERNINLINE int -SWIG_AsVal_size_t (PyObject * obj, size_t *val) -{ - unsigned long v; - int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0); - if (SWIG_IsOK(res) && val) *val = static_cast< size_t >(v); - return res; -} - - - #define SWIG_From_double PyFloat_FromDouble - - - #define SWIG_From_long PyInt_FromLong - - -SWIGINTERNINLINE PyObject * -SWIG_From_int (int value) -{ - return SWIG_From_long (value); -} - - -#include -#if !defined(SWIG_NO_LLONG_MAX) -# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__) -# define LLONG_MAX __LONG_LONG_MAX__ -# define LLONG_MIN (-LLONG_MAX - 1LL) -# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL) -# endif -#endif - - -SWIGINTERN int -SWIG_AsVal_long (PyObject *obj, long* val) -{ - if (PyInt_Check(obj)) { - if (val) *val = PyInt_AsLong(obj); - return SWIG_OK; - } else if (PyLong_Check(obj)) { - long v = PyLong_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_OK; - } else { - PyErr_Clear(); - } - } -#ifdef SWIG_PYTHON_CAST_MODE - { - int dispatch = 0; - long v = PyInt_AsLong(obj); - if (!PyErr_Occurred()) { - if (val) *val = v; - return SWIG_AddCast(SWIG_OK); - } else { - PyErr_Clear(); - } - if (!dispatch) { - double d; - int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d)); - if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) { - if (val) *val = (long)(d); - return res; - } - } - } -#endif - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_int (PyObject * obj, int *val) -{ - long v; - int res = SWIG_AsVal_long (obj, &v); - if (SWIG_IsOK(res)) { - if ((v < INT_MIN || v > INT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = static_cast< int >(v); - } - } - return res; -} - - -typedef union { - uchar** ptr; - float** fl; - double** db; - } CvVectors_data; - - - -SWIGINTERN swig_type_info* -SWIG_pchar_descriptor(void) -{ - static int init = 0; - static swig_type_info* info = 0; - if (!init) { - info = SWIG_TypeQuery("_p_char"); - init = 1; - } - return info; -} - - -SWIGINTERNINLINE PyObject * -SWIG_FromCharPtrAndSize(const char* carray, size_t size) -{ - if (carray) { - if (size > INT_MAX) { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - return pchar_descriptor ? - SWIG_NewPointerObj(const_cast< char * >(carray), pchar_descriptor, 0) : SWIG_Py_Void(); - } else { -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_FromStringAndSize(carray, static_cast< int >(size)); -#else - return PyString_FromStringAndSize(carray, static_cast< int >(size)); -#endif - } - } else { - return SWIG_Py_Void(); - } -} - - -SWIGINTERNINLINE PyObject * -SWIG_FromCharPtr(const char *cptr) -{ - return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0)); -} - - -SWIGINTERN int -SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc) -{ -#if PY_VERSION_HEX>=0x03000000 - if (PyUnicode_Check(obj)) -#else - if (PyString_Check(obj)) -#endif - { - char *cstr; Py_ssize_t len; -#if PY_VERSION_HEX>=0x03000000 - if (!alloc && cptr) { - /* We can't allow converting without allocation, since the internal - representation of string in Python 3 is UCS-2/UCS-4 but we require - a UTF-8 representation. - TODO(bhy) More detailed explanation */ - return SWIG_RuntimeError; - } - obj = PyUnicode_AsUTF8String(obj); - PyBytes_AsStringAndSize(obj, &cstr, &len); - if(alloc) *alloc = SWIG_NEWOBJ; -#else - PyString_AsStringAndSize(obj, &cstr, &len); -#endif - if (cptr) { - if (alloc) { - /* - In python the user should not be able to modify the inner - string representation. To warranty that, if you define - SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string - buffer is always returned. - - The default behavior is just to return the pointer value, - so, be careful. - */ -#if defined(SWIG_PYTHON_SAFE_CSTRINGS) - if (*alloc != SWIG_OLDOBJ) -#else - if (*alloc == SWIG_NEWOBJ) -#endif - { - *cptr = reinterpret_cast< char* >(memcpy((new char[len + 1]), cstr, sizeof(char)*(len + 1))); - *alloc = SWIG_NEWOBJ; - } - else { - *cptr = cstr; - *alloc = SWIG_OLDOBJ; - } - } else { - #if PY_VERSION_HEX>=0x03000000 - assert(0); /* Should never reach here in Python 3 */ - #endif - *cptr = SWIG_Python_str_AsChar(obj); - } - } - if (psize) *psize = len + 1; -#if PY_VERSION_HEX>=0x03000000 - Py_XDECREF(obj); -#endif - return SWIG_OK; - } else { - swig_type_info* pchar_descriptor = SWIG_pchar_descriptor(); - if (pchar_descriptor) { - void* vptr = 0; - if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) { - if (cptr) *cptr = (char *) vptr; - if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0; - if (alloc) *alloc = SWIG_OLDOBJ; - return SWIG_OK; - } - } - } - return SWIG_TypeError; -} - - - - - -SWIGINTERN int -SWIG_AsVal_bool (PyObject *obj, bool *val) -{ - int r = PyObject_IsTrue(obj); - if (r == -1) - return SWIG_ERROR; - if (val) *val = r ? true : false; - return SWIG_OK; -} - - -SWIGINTERNINLINE PyObject * -SWIG_From_float (float value) -{ - return SWIG_From_double (value); -} - -SWIGINTERN PyObject *CvEM_get_covs(CvEM *self){ - CvMat ** pointers = const_cast (self->get_covs()); - int n = self->get_nclusters(); - - PyObject * result = PyTuple_New(n); - for (int i=0; i FLT_MAX)) { - return SWIG_OverflowError; - } else { - if (val) *val = static_cast< float >(v); - } - } - return res; -} - - -typedef union { - int *count; - float *portion; - } CvTrainTestSplit_class_part; - - - -typedef union { - int count; - float portion; - } CvTrainTestSplit_train_sample_part; - - - -SWIGINTERN int -SWIG_AsCharArray(PyObject * obj, char *val, size_t size) -{ - char* cptr = 0; size_t csize = 0; int alloc = SWIG_OLDOBJ; - int res = SWIG_AsCharPtrAndSize(obj, &cptr, &csize, &alloc); - if (SWIG_IsOK(res)) { - if ((csize == size + 1) && cptr && !(cptr[csize-1])) --csize; - if (csize <= size) { - if (val) { - if (csize) memcpy(val, cptr, csize*sizeof(char)); - if (csize < size) memset(val + csize, 0, (size - csize)*sizeof(char)); - } - if (alloc == SWIG_NEWOBJ) { - delete[] cptr; - res = SWIG_DelNewMask(res); - } - return res; - } - if (alloc == SWIG_NEWOBJ) delete[] cptr; - } - return SWIG_TypeError; -} - - -SWIGINTERN int -SWIG_AsVal_char (PyObject * obj, char *val) -{ - int res = SWIG_AsCharArray(obj, val, 1); - if (!SWIG_IsOK(res)) { - long v; - res = SWIG_AddCast(SWIG_AsVal_long (obj, &v)); - if (SWIG_IsOK(res)) { - if ((CHAR_MIN <= v) && (v <= CHAR_MAX)) { - if (val) *val = static_cast< char >(v); - } else { - res = SWIG_OverflowError; - } - } - } - return res; -} - - -SWIGINTERNINLINE PyObject * -SWIG_From_char (char c) -{ - return SWIG_FromCharPtrAndSize(&c,1); -} - -#ifdef __cplusplus -extern "C" { -#endif -SWIGINTERN PyObject *_wrap_new_CvRNG_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG *arg1 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG_Wrapper *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvRNG_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1, SWIGTYPE_p_uint64_t, 0 | 0); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - if (!argp1) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG const &""'"); - } - arg1 = reinterpret_cast< CvRNG * >(argp1); - result = (CvRNG_Wrapper *)new CvRNG_Wrapper((CvRNG const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper_ptr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRNG_Wrapper_ptr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ptr" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - result = (CvRNG *)(arg1)->ptr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper_ref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRNG_Wrapper_ref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper_ref" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - result = (CvRNG *) &(arg1)->ref(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_uint64_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRNG_Wrapper___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___eq__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___eq__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvRNG_Wrapper * >(argp2); - result = (bool)(arg1)->operator ==((CvRNG_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRNG_Wrapper___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - CvRNG_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRNG_Wrapper___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRNG_Wrapper___ne__" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvRNG_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRNG_Wrapper___ne__" "', argument " "2"" of type '" "CvRNG_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvRNG_Wrapper * >(argp2); - result = (bool)(arg1)->operator !=((CvRNG_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvRNG_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRNG_Wrapper *arg1 = (CvRNG_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvRNG_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRNG_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRNG_Wrapper" "', argument " "1"" of type '" "CvRNG_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvRNG_Wrapper * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvRNG_Wrapper_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvRNG_Wrapper, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSubdiv2DEdge_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge *arg1 = 0 ; - CvSubdiv2DEdge temp1 ; - size_t val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge_Wrapper *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvSubdiv2DEdge_Wrapper",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_size_t(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge""'"); - } - temp1 = static_cast< CvSubdiv2DEdge >(val1); - arg1 = &temp1; - result = (CvSubdiv2DEdge_Wrapper *)new CvSubdiv2DEdge_Wrapper((CvSubdiv2DEdge const &)*arg1); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper_ptr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DEdge_Wrapper_ptr",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ptr" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - result = (CvSubdiv2DEdge *)(arg1)->ptr(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper_ref(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSubdiv2DEdge *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSubdiv2DEdge_Wrapper_ref",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper_ref" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - result = (CvSubdiv2DEdge *) &(arg1)->ref(); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_size_t, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper___eq__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DEdge_Wrapper___eq__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___eq__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp2); - result = (bool)(arg1)->operator ==((CvSubdiv2DEdge_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSubdiv2DEdge_Wrapper___ne__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - CvSubdiv2DEdge_Wrapper *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSubdiv2DEdge_Wrapper___ne__",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSubdiv2DEdge_Wrapper___ne__" "', argument " "2"" of type '" "CvSubdiv2DEdge_Wrapper const &""'"); - } - arg2 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp2); - result = (bool)(arg1)->operator !=((CvSubdiv2DEdge_Wrapper const &)*arg2); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSubdiv2DEdge_Wrapper(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSubdiv2DEdge_Wrapper *arg1 = (CvSubdiv2DEdge_Wrapper *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSubdiv2DEdge_Wrapper",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSubdiv2DEdge_Wrapper" "', argument " "1"" of type '" "CvSubdiv2DEdge_Wrapper *""'"); - } - arg1 = reinterpret_cast< CvSubdiv2DEdge_Wrapper * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSubdiv2DEdge_Wrapper_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSubdiv2DEdge_Wrapper, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvVectors_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_type_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvVectors_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_type_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - result = (int) ((arg1)->type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_dims_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_dims_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_dims_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvVectors_dims_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->dims = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_dims_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_dims_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_dims_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - result = (int) ((arg1)->dims); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_count_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvVectors_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_count_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - CvVectors *arg2 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_next_set" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvVectors, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvVectors_next_set" "', argument " "2"" of type '" "CvVectors *""'"); - } - arg2 = reinterpret_cast< CvVectors * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvVectors *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_next_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - result = (CvVectors *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvVectors_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_data_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_get" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - result = (CvVectors_data *)& ((arg1)->data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors_data, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvVectors(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvVectors")) SWIG_fail; - { - try { - result = (CvVectors *)new CvVectors(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvVectors(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors *arg1 = (CvVectors *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvVectors",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvVectors" "', argument " "1"" of type '" "CvVectors *""'"); - } - arg1 = reinterpret_cast< CvVectors * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvVectors_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvVectors, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvVectors_data_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - uchar **arg2 = (uchar **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_data_ptr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_ptr_set" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvVectors_data_ptr_set" "', argument " "2"" of type '" "uchar **""'"); - } - arg2 = reinterpret_cast< uchar ** >(argp2); - if (arg1) (arg1)->ptr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_data_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - uchar **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_data_ptr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_ptr_get" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - result = (uchar **) ((arg1)->ptr); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_unsigned_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_data_fl_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_data_fl_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_fl_set" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->fl = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_data_fl_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_data_fl_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_fl_get" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - result = (float **) ((arg1)->fl); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_data_db_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - double **arg2 = (double **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvVectors_data_db_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_db_set" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_double, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvVectors_data_db_set" "', argument " "2"" of type '" "double **""'"); - } - arg2 = reinterpret_cast< double ** >(argp2); - if (arg1) (arg1)->db = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvVectors_data_db_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvVectors_data_db_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvVectors_data_db_get" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - result = (double **) ((arg1)->db); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvVectors_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvVectors_data")) SWIG_fail; - { - try { - result = (CvVectors_data *)new CvVectors_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvVectors_data, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvVectors_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvVectors_data *arg1 = (CvVectors_data *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvVectors_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvVectors_data, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvVectors_data" "', argument " "1"" of type '" "CvVectors_data *""'"); - } - arg1 = reinterpret_cast< CvVectors_data * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvVectors_data_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvVectors_data, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvStatModel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvStatModel")) SWIG_fail; - { - try { - result = (CvStatModel *)new CvStatModel(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvStatModel, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvStatModel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvStatModel",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvStatModel" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvStatModel_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_clear" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_save__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvStatModel_save",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_save" "', argument " "1"" of type '" "CvStatModel const *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_save" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvStatModel const *)arg1)->save((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_save__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStatModel_save",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_save" "', argument " "1"" of type '" "CvStatModel const *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_save" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - ((CvStatModel const *)arg1)->save((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_save(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_save__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_save__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvStatModel_save'.\n" - " Possible C/C++ prototypes are:\n" - " save(CvStatModel const *,char const *,char const *)\n" - " save(CvStatModel const *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_load__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvStatModel_load",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_load" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_load" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - (arg1)->load((char const *)arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_load__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvStatModel_load",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_load" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_load" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - (arg1)->load((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_load(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_load__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvStatModel, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvStatModel_load__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvStatModel_load'.\n" - " Possible C/C++ prototypes are:\n" - " load(CvStatModel *,char const *,char const *)\n" - " load(CvStatModel *,char const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvStatModel_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_write" "', argument " "1"" of type '" "CvStatModel const *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvStatModel const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvStatModel_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvStatModel *arg1 = (CvStatModel *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvStatModel_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvStatModel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvStatModel_read" "', argument " "1"" of type '" "CvStatModel *""'"); - } - arg1 = reinterpret_cast< CvStatModel * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvStatModel_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvStatModel_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvStatModel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvStatModel, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvParamGrid__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvParamGrid")) SWIG_fail; - { - try { - result = (CvParamGrid *)new CvParamGrid(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvParamGrid, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvParamGrid__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - double arg1 ; - double arg2 ; - double arg3 ; - double val1 ; - int ecode1 = 0 ; - double val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvParamGrid *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvParamGrid",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_double(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvParamGrid" "', argument " "1"" of type '" "double""'"); - } - arg1 = static_cast< double >(val1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvParamGrid" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvParamGrid" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = (CvParamGrid *)new CvParamGrid(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvParamGrid, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvParamGrid(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvParamGrid__SWIG_0(self, args); - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_double(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvParamGrid__SWIG_1(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvParamGrid'.\n" - " Possible C/C++ prototypes are:\n" - " CvParamGrid()\n" - " CvParamGrid(double,double,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_check(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvParamGrid_check",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_check" "', argument " "1"" of type '" "CvParamGrid const *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - { - try { - result = (bool)((CvParamGrid const *)arg1)->check(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_min_val_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvParamGrid_min_val_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_min_val_set" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvParamGrid_min_val_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->min_val = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_min_val_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvParamGrid_min_val_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_min_val_get" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - result = (double) ((arg1)->min_val); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_max_val_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvParamGrid_max_val_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_max_val_set" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvParamGrid_max_val_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->max_val = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_max_val_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvParamGrid_max_val_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_max_val_get" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - result = (double) ((arg1)->max_val); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_step_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvParamGrid_step_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_step_set" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvParamGrid_step_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->step = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvParamGrid_step_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvParamGrid_step_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvParamGrid_step_get" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - result = (double) ((arg1)->step); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvParamGrid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvParamGrid *arg1 = (CvParamGrid *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvParamGrid",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvParamGrid, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvParamGrid" "', argument " "1"" of type '" "CvParamGrid *""'"); - } - arg1 = reinterpret_cast< CvParamGrid * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvParamGrid_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvParamGrid, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvNormalBayesClassifier__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvNormalBayesClassifier")) SWIG_fail; - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvNormalBayesClassifier(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvNormalBayesClassifier",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvNormalBayesClassifier" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvNormalBayesClassifier__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvNormalBayesClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvNormalBayesClassifier",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvNormalBayesClassifier__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvNormalBayesClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvNormalBayesClassifier",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvNormalBayesClassifier__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvNormalBayesClassifier *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvNormalBayesClassifier",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvNormalBayesClassifier *)new CvNormalBayesClassifier((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvNormalBayesClassifier, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvNormalBayesClassifier(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvNormalBayesClassifier__SWIG_0(self, args); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvNormalBayesClassifier__SWIG_3(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvNormalBayesClassifier__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvNormalBayesClassifier__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvNormalBayesClassifier'.\n" - " Possible C/C++ prototypes are:\n" - " CvNormalBayesClassifier()\n" - " CvNormalBayesClassifier(CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " CvNormalBayesClassifier(CvMat const *,CvMat const *,CvMat const *)\n" - " CvNormalBayesClassifier(CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvNormalBayesClassifier_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - ecode6 = SWIG_AsVal_bool(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvNormalBayesClassifier_train" "', argument " "6"" of type '" "bool""'"); - } - arg6 = static_cast< bool >(val6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvNormalBayesClassifier_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvNormalBayesClassifier_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvNormalBayesClassifier_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_train" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_3(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_1(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvNormalBayesClassifier_train__SWIG_0(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvNormalBayesClassifier_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvNormalBayesClassifier *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,bool)\n" - " train(CvNormalBayesClassifier *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvNormalBayesClassifier *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvNormalBayesClassifier *,CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_predict__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvNormalBayesClassifier_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_predict" "', argument " "1"" of type '" "CvNormalBayesClassifier const *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvNormalBayesClassifier const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_predict__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvNormalBayesClassifier_predict",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_predict" "', argument " "1"" of type '" "CvNormalBayesClassifier const *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (float)((CvNormalBayesClassifier const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_predict(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_predict__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvNormalBayesClassifier, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvNormalBayesClassifier_predict__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvNormalBayesClassifier_predict'.\n" - " Possible C/C++ prototypes are:\n" - " predict(CvNormalBayesClassifier const *,CvMat const *,CvMat *)\n" - " predict(CvNormalBayesClassifier const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvNormalBayesClassifier_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_clear" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvNormalBayesClassifier_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_write" "', argument " "1"" of type '" "CvNormalBayesClassifier const *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvNormalBayesClassifier const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvNormalBayesClassifier_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvNormalBayesClassifier *arg1 = (CvNormalBayesClassifier *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvNormalBayesClassifier_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvNormalBayesClassifier, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvNormalBayesClassifier_read" "', argument " "1"" of type '" "CvNormalBayesClassifier *""'"); - } - arg1 = reinterpret_cast< CvNormalBayesClassifier * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvNormalBayesClassifier_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvNormalBayesClassifier_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvNormalBayesClassifier_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvNormalBayesClassifier, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvKNearest__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvKNearest")) SWIG_fail; - { - try { - result = (CvKNearest *)new CvKNearest(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvKNearest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvKNearest",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvKNearest" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvKNearest__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool arg4 ; - int arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvKNearest *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvKNearest",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_bool(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvKNearest" "', argument " "4"" of type '" "bool""'"); - } - arg4 = static_cast< bool >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvKNearest" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvKNearest__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool arg4 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvKNearest *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvKNearest",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_bool(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvKNearest" "', argument " "4"" of type '" "bool""'"); - } - arg4 = static_cast< bool >(val4); - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvKNearest__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvKNearest *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvKNearest",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvKNearest__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvKNearest *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvKNearest",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvKNearest *)new CvKNearest((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvKNearest, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvKNearest(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvKNearest__SWIG_0(self, args); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvKNearest__SWIG_4(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvKNearest__SWIG_3(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvKNearest__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvKNearest__SWIG_1(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvKNearest'.\n" - " Possible C/C++ prototypes are:\n" - " CvKNearest()\n" - " CvKNearest(CvMat const *,CvMat const *,CvMat const *,bool,int)\n" - " CvKNearest(CvMat const *,CvMat const *,CvMat const *,bool)\n" - " CvKNearest(CvMat const *,CvMat const *,CvMat const *)\n" - " CvKNearest(CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool arg5 ; - int arg6 ; - bool arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvKNearest_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvKNearest_train" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvKNearest_train" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - ecode7 = SWIG_AsVal_bool(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvKNearest_train" "', argument " "7"" of type '" "bool""'"); - } - arg7 = static_cast< bool >(val7); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool arg5 ; - int arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvKNearest_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvKNearest_train" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvKNearest_train" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvKNearest_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvKNearest_train" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvKNearest_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvKNearest_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_train" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[8]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 7); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_train__SWIG_4(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_train__SWIG_3(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_train__SWIG_2(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_train__SWIG_1(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_train__SWIG_0(self, args); - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvKNearest_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvKNearest *,CvMat const *,CvMat const *,CvMat const *,bool,int,bool)\n" - " train(CvKNearest *,CvMat const *,CvMat const *,CvMat const *,bool,int)\n" - " train(CvKNearest *,CvMat const *,CvMat const *,CvMat const *,bool)\n" - " train(CvKNearest *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvKNearest *,CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_find_nearest__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - float **arg5 = (float **) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - void *vptr5 ; - float *buffer5 ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvKNearest_find_nearest",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if ((SWIG_ConvertPtr(obj4, &vptr5, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer5 = (float *) vptr5; - arg5=&buffer5; - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4,(float const **)arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_find_nearest__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - float **arg5 = (float **) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - void *vptr5 ; - float *buffer5 ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvKNearest_find_nearest",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if ((SWIG_ConvertPtr(obj4, &vptr5, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer5 = (float *) vptr5; - arg5=&buffer5; - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4,(float const **)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_find_nearest__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - float **arg5 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - void *vptr5 ; - float *buffer5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvKNearest_find_nearest",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if ((SWIG_ConvertPtr(obj4, &vptr5, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer5 = (float *) vptr5; - arg5=&buffer5; - } - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4,(float const **)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_find_nearest__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvKNearest_find_nearest",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_find_nearest__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvKNearest_find_nearest",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_find_nearest" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvKNearest_find_nearest" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (float)((CvKNearest const *)arg1)->find_nearest((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_find_nearest(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[8]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 7); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_4(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_3(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_2(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_1(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvKNearest, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvKNearest_find_nearest__SWIG_0(self, args); - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvKNearest_find_nearest'.\n" - " Possible C/C++ prototypes are:\n" - " find_nearest(CvKNearest const *,CvMat const *,int,CvMat *,float const **,CvMat *,CvMat *)\n" - " find_nearest(CvKNearest const *,CvMat const *,int,CvMat *,float const **,CvMat *)\n" - " find_nearest(CvKNearest const *,CvMat const *,int,CvMat *,float const **)\n" - " find_nearest(CvKNearest const *,CvMat const *,int,CvMat *)\n" - " find_nearest(CvKNearest const *,CvMat const *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKNearest_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_clear" "', argument " "1"" of type '" "CvKNearest *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_get_max_k(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKNearest_get_max_k",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_get_max_k" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - try { - result = (int)((CvKNearest const *)arg1)->get_max_k(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_get_var_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKNearest_get_var_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_get_var_count" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - try { - result = (int)((CvKNearest const *)arg1)->get_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_get_sample_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKNearest_get_sample_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_get_sample_count" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - try { - result = (int)((CvKNearest const *)arg1)->get_sample_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvKNearest_is_regression(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvKNearest *arg1 = (CvKNearest *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvKNearest_is_regression",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvKNearest, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvKNearest_is_regression" "', argument " "1"" of type '" "CvKNearest const *""'"); - } - arg1 = reinterpret_cast< CvKNearest * >(argp1); - { - try { - result = (bool)((CvKNearest const *)arg1)->is_regression(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvKNearest_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvKNearest, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSVMParams__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVMParams")) SWIG_fail; - { - try { - result = (CvSVMParams *)new CvSVMParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMParams__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - double arg3 ; - double arg4 ; - double arg5 ; - double arg6 ; - double arg7 ; - double arg8 ; - CvMat *arg9 = (CvMat *) 0 ; - CvTermCriteria arg10 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - bool freearg9 = false ; - CvTermCriteria temp10 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - CvSVMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:new_CvSVMParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSVMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvSVMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvSVMParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvSVMParams" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvSVMParams" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "new_CvSVMParams" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvSVMParams" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - ecode8 = SWIG_AsVal_double(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvSVMParams" "', argument " "8"" of type '" "double""'"); - } - arg8 = static_cast< double >(val8); - { - arg9 = (CvMat*)PyObject_to_CvArr(obj8, &freearg9); - } - { - if (PyTuple_Check(obj9)) - { - if (!PyArg_ParseTuple(obj9,"iid", & temp10.type, & temp10.max_iter, & temp10.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg10 = temp10; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj9, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg10 = *ptr; - } - } - { - try { - result = (CvSVMParams *)new CvSVMParams(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, SWIG_POINTER_NEW | 0 ); - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - return resultobj; -fail: - { - if(arg9!=NULL && freearg9){ - cvReleaseData( arg9 ); - cvFree(&(arg9)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMParams(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[11]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 10); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvSVMParams__SWIG_0(self, args); - } - if (argc == 10) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[9], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVMParams__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvSVMParams'.\n" - " Possible C/C++ prototypes are:\n" - " CvSVMParams()\n" - " CvSVMParams(int,int,double,double,double,double,double,double,CvMat *,CvTermCriteria)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_svm_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_svm_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_svm_type_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_svm_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->svm_type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_svm_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_svm_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_svm_type_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (int) ((arg1)->svm_type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_kernel_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_kernel_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_kernel_type_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_kernel_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->kernel_type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_kernel_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_kernel_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_kernel_type_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (int) ((arg1)->kernel_type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_degree_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_degree_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_degree_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_degree_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->degree = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_degree_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_degree_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_degree_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (double) ((arg1)->degree); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_gamma_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_gamma_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_gamma_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_gamma_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->gamma = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_gamma_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_gamma_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_gamma_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (double) ((arg1)->gamma); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_coef0_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_coef0_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_coef0_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_coef0_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->coef0 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_coef0_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_coef0_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_coef0_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (double) ((arg1)->coef0); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_C_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_C_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_C_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_C_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->C = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_C_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_C_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_C_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (double) ((arg1)->C); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_nu_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_nu_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_nu_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_nu_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->nu = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_nu_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_nu_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_nu_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (double) ((arg1)->nu); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_p_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_p_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_p_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMParams_p_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->p = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_p_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_p_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_p_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (double) ((arg1)->p); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_class_weights_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_class_weights_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_class_weights_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->class_weights = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_class_weights_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_class_weights_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_class_weights_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (CvMat *) ((arg1)->class_weights); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_term_crit_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMParams_term_crit_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_term_crit_set" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = reinterpret_cast< CvTermCriteria * >(argp2); - if (arg1) (arg1)->term_crit = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMParams_term_crit_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTermCriteria *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMParams_term_crit_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMParams_term_crit_get" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVMParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVMParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMParams" "', argument " "1"" of type '" "CvSVMParams *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVMParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVMParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSVMKernel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVMKernel")) SWIG_fail; - { - try { - result = (CvSVMKernel *)new CvSVMKernel(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernel, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMKernel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMParams *arg1 = (CvSVMParams *) 0 ; - CvSVMKernel::Calc arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSVMKernel *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvSVMKernel",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_CvSVMKernel" "', argument " "1"" of type '" "CvSVMParams const *""'"); - } - arg1 = reinterpret_cast< CvSVMParams * >(argp1); - { - int res = SWIG_ConvertMember(obj1, SWIG_as_voidptr(&arg2), sizeof(CvSVMKernel::Calc),SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMKernel" "', argument " "2"" of type '" "CvSVMKernel::Calc""'"); - } - } - { - try { - result = (CvSVMKernel *)new CvSVMKernel((CvSVMParams const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernel, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMKernel(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvSVMKernel__SWIG_0(self, args); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVMKernel__SWIG_1(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvSVMKernel'.\n" - " Possible C/C++ prototypes are:\n" - " CvSVMKernel()\n" - " CvSVMKernel(CvSVMParams const *,CvSVMKernel::Calc)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_create(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - CvSVMParams *arg2 = (CvSVMParams *) 0 ; - CvSVMKernel::Calc arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMKernel_create",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_create" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMParams, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernel_create" "', argument " "2"" of type '" "CvSVMParams const *""'"); - } - arg2 = reinterpret_cast< CvSVMParams * >(argp2); - { - int res = SWIG_ConvertMember(obj2, SWIG_as_voidptr(&arg3), sizeof(CvSVMKernel::Calc),SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMKernel_create" "', argument " "3"" of type '" "CvSVMKernel::Calc""'"); - } - } - { - try { - result = (bool)(arg1)->create((CvSVMParams const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVMKernel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVMKernel",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMKernel" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMKernel_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_clear" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVMKernel_calc",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - (arg1)->calc(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_params_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - CvSVMParams *arg2 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMKernel_params_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_params_set" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernel_params_set" "', argument " "2"" of type '" "CvSVMParams const *""'"); - } - arg2 = reinterpret_cast< CvSVMParams * >(argp2); - if (arg1) (arg1)->params = (CvSVMParams const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_params_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMKernel_params_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_params_get" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - result = (CvSVMParams *) ((arg1)->params); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_func_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - CvSVMKernel::Calc arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMKernel_calc_func_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_func_set" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - { - int res = SWIG_ConvertMember(obj1, SWIG_as_voidptr(&arg2), sizeof(CvSVMKernel::Calc),SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMKernel_calc_func_set" "', argument " "2"" of type '" "CvSVMKernel::Calc""'"); - } - } - if (arg1) (arg1)->calc_func = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_func_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMKernel::Calc result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMKernel_calc_func_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_func_get" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - result = (CvSVMKernel::Calc) ((arg1)->calc_func); - resultobj = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMKernel::Calc), SWIGTYPE_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_non_rbf_base(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - double arg7 ; - double arg8 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvSVMKernel_calc_non_rbf_base",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - ecode8 = SWIG_AsVal_double(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "CvSVMKernel_calc_non_rbf_base" "', argument " "8"" of type '" "double""'"); - } - arg8 = static_cast< double >(val8); - { - try { - (arg1)->calc_non_rbf_base(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_linear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVMKernel_calc_linear",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_linear" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_linear" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_linear" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_linear" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_linear" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - (arg1)->calc_linear(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_rbf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVMKernel_calc_rbf",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_rbf" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_rbf" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_rbf" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_rbf" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_rbf" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - (arg1)->calc_rbf(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_poly(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVMKernel_calc_poly",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_poly" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_poly" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_poly" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_poly" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_poly" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - (arg1)->calc_poly(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernel_calc_sigmoid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernel *arg1 = (CvSVMKernel *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - float *arg6 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVMKernel_calc_sigmoid",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "1"" of type '" "CvSVMKernel *""'"); - } - arg1 = reinterpret_cast< CvSVMKernel * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMKernel_calc_sigmoid" "', argument " "6"" of type '" "float *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - (arg1)->calc_sigmoid(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVMKernel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVMKernel, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSVMKernelRow_prev_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMKernelRow_prev_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_prev_set" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernelRow_prev_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = reinterpret_cast< CvSVMKernelRow * >(argp2); - if (arg1) (arg1)->prev = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernelRow_prev_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMKernelRow *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMKernelRow_prev_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_prev_get" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - result = (CvSVMKernelRow *) ((arg1)->prev); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernelRow_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMKernelRow_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_next_set" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernelRow_next_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = reinterpret_cast< CvSVMKernelRow * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernelRow_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMKernelRow *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMKernelRow_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_next_get" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - result = (CvSVMKernelRow *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernelRow_data_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMKernelRow_data_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_data_set" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMKernelRow_data_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->data = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMKernelRow_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMKernelRow_data_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMKernelRow_data_get" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - result = (float *) ((arg1)->data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMKernelRow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVMKernelRow")) SWIG_fail; - { - try { - result = (CvSVMKernelRow *)new CvSVMKernelRow(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVMKernelRow(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMKernelRow *arg1 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVMKernelRow",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMKernelRow" "', argument " "1"" of type '" "CvSVMKernelRow *""'"); - } - arg1 = reinterpret_cast< CvSVMKernelRow * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVMKernelRow_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVMKernelRow, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_obj_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolutionInfo_obj_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_obj_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_obj_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->obj = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_obj_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolutionInfo_obj_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_obj_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - result = (double) ((arg1)->obj); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_rho_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolutionInfo_rho_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_rho_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_rho_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rho = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_rho_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolutionInfo_rho_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_rho_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - result = (double) ((arg1)->rho); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_upper_bound_p_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolutionInfo_upper_bound_p_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_p_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_upper_bound_p_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->upper_bound_p = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_upper_bound_p_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolutionInfo_upper_bound_p_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_p_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - result = (double) ((arg1)->upper_bound_p); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_upper_bound_n_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolutionInfo_upper_bound_n_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_n_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_upper_bound_n_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->upper_bound_n = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_upper_bound_n_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolutionInfo_upper_bound_n_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_upper_bound_n_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - result = (double) ((arg1)->upper_bound_n); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_r_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolutionInfo_r_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_r_set" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolutionInfo_r_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->r = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolutionInfo_r_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolutionInfo_r_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolutionInfo_r_get" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - result = (double) ((arg1)->r); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMSolutionInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVMSolutionInfo")) SWIG_fail; - { - try { - result = (CvSVMSolutionInfo *)new CvSVMSolutionInfo(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMSolutionInfo, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVMSolutionInfo(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolutionInfo *arg1 = (CvSVMSolutionInfo *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVMSolutionInfo",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolutionInfo, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMSolutionInfo" "', argument " "1"" of type '" "CvSVMSolutionInfo *""'"); - } - arg1 = reinterpret_cast< CvSVMSolutionInfo * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVMSolutionInfo_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVMSolutionInfo, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSVMSolver__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVMSolver")) SWIG_fail; - { - try { - result = (CvSVMSolver *)new CvSVMSolver(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMSolver, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMSolver__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - float **arg3 = (float **) 0 ; - schar *arg4 = (schar *) 0 ; - int arg5 ; - double *arg6 = (double *) 0 ; - double arg7 ; - double arg8 ; - CvMemStorage *arg9 = (CvMemStorage *) 0 ; - CvSVMKernel *arg10 = (CvSVMKernel *) 0 ; - CvSVMSolver::GetRow arg11 ; - CvSVMSolver::SelectWorkingSet arg12 ; - CvSVMSolver::CalcRho arg13 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *vptr3 ; - float *buffer3 ; - void *argp4 = 0 ; - int res4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - double val7 ; - int ecode7 = 0 ; - double val8 ; - int ecode8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - void *argp10 = 0 ; - int res10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - CvSVMSolver *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOO:new_CvSVMSolver",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvSVMSolver" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvSVMSolver" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - if ((SWIG_ConvertPtr(obj2, &vptr3, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer3 = (float *) vptr3; - arg3=&buffer3; - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "new_CvSVMSolver" "', argument " "4"" of type '" "schar *""'"); - } - arg4 = reinterpret_cast< schar * >(argp4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvSVMSolver" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvSVMSolver" "', argument " "6"" of type '" "double *""'"); - } - arg6 = reinterpret_cast< double * >(argp6); - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvSVMSolver" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - ecode8 = SWIG_AsVal_double(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvSVMSolver" "', argument " "8"" of type '" "double""'"); - } - arg8 = static_cast< double >(val8); - res9 = SWIG_ConvertPtr(obj8, &argp9,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "new_CvSVMSolver" "', argument " "9"" of type '" "CvMemStorage *""'"); - } - arg9 = reinterpret_cast< CvMemStorage * >(argp9); - res10 = SWIG_ConvertPtr(obj9, &argp10,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "new_CvSVMSolver" "', argument " "10"" of type '" "CvSVMKernel *""'"); - } - arg10 = reinterpret_cast< CvSVMKernel * >(argp10); - { - int res = SWIG_ConvertMember(obj10, SWIG_as_voidptr(&arg11), sizeof(CvSVMSolver::GetRow),SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMSolver" "', argument " "11"" of type '" "CvSVMSolver::GetRow""'"); - } - } - { - int res = SWIG_ConvertMember(obj11, SWIG_as_voidptr(&arg12), sizeof(CvSVMSolver::SelectWorkingSet),SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMSolver" "', argument " "12"" of type '" "CvSVMSolver::SelectWorkingSet""'"); - } - } - { - int res = SWIG_ConvertMember(obj12, SWIG_as_voidptr(&arg13), sizeof(CvSVMSolver::CalcRho),SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "new_CvSVMSolver" "', argument " "13"" of type '" "CvSVMSolver::CalcRho""'"); - } - } - { - try { - result = (CvSVMSolver *)new CvSVMSolver(arg1,arg2,(float const **)arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMSolver, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMSolver(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[14]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 13); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvSVMSolver__SWIG_0(self, args); - } - if (argc == 13) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_signed_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_double, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_double(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_CvMemStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[9], &vptr, SWIGTYPE_p_CvSVMKernel, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[10], &vptr, SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[11], &vptr, SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[12], &vptr, SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVMSolver__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvSVMSolver'.\n" - " Possible C/C++ prototypes are:\n" - " CvSVMSolver()\n" - " CvSVMSolver(int,int,float const **,schar *,int,double *,double,double,CvMemStorage *,CvSVMKernel *,CvSVMSolver::GetRow,CvSVMSolver::SelectWorkingSet,CvSVMSolver::CalcRho)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_create(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - schar *arg5 = (schar *) 0 ; - int arg6 ; - double *arg7 = (double *) 0 ; - double arg8 ; - double arg9 ; - CvMemStorage *arg10 = (CvMemStorage *) 0 ; - CvSVMKernel *arg11 = (CvSVMKernel *) 0 ; - CvSVMSolver::GetRow arg12 ; - CvSVMSolver::SelectWorkingSet arg13 ; - CvSVMSolver::CalcRho arg14 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - double val8 ; - int ecode8 = 0 ; - double val9 ; - int ecode9 = 0 ; - void *argp10 = 0 ; - int res10 = 0 ; - void *argp11 = 0 ; - int res11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - PyObject * obj13 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOOO:CvSVMSolver_create",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_create" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_create" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_create" "', argument " "5"" of type '" "schar *""'"); - } - arg5 = reinterpret_cast< schar * >(argp5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvSVMSolver_create" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_create" "', argument " "7"" of type '" "double *""'"); - } - arg7 = reinterpret_cast< double * >(argp7); - ecode8 = SWIG_AsVal_double(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "CvSVMSolver_create" "', argument " "8"" of type '" "double""'"); - } - arg8 = static_cast< double >(val8); - ecode9 = SWIG_AsVal_double(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "CvSVMSolver_create" "', argument " "9"" of type '" "double""'"); - } - arg9 = static_cast< double >(val9); - res10 = SWIG_ConvertPtr(obj9, &argp10,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVMSolver_create" "', argument " "10"" of type '" "CvMemStorage *""'"); - } - arg10 = reinterpret_cast< CvMemStorage * >(argp10); - res11 = SWIG_ConvertPtr(obj10, &argp11,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVMSolver_create" "', argument " "11"" of type '" "CvSVMKernel *""'"); - } - arg11 = reinterpret_cast< CvSVMKernel * >(argp11); - { - int res = SWIG_ConvertMember(obj11, SWIG_as_voidptr(&arg12), sizeof(CvSVMSolver::GetRow),SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_create" "', argument " "12"" of type '" "CvSVMSolver::GetRow""'"); - } - } - { - int res = SWIG_ConvertMember(obj12, SWIG_as_voidptr(&arg13), sizeof(CvSVMSolver::SelectWorkingSet),SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_create" "', argument " "13"" of type '" "CvSVMSolver::SelectWorkingSet""'"); - } - } - { - int res = SWIG_ConvertMember(obj13, SWIG_as_voidptr(&arg14), sizeof(CvSVMSolver::CalcRho),SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_create" "', argument " "14"" of type '" "CvSVMSolver::CalcRho""'"); - } - } - { - try { - result = (bool)(arg1)->create(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVMSolver(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVMSolver",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMSolver" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_clear" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_solve_generic(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolutionInfo *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_solve_generic",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_generic" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_solve_generic" "', argument " "2"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_generic" "', argument " "2"" of type '" "CvSVMSolutionInfo &""'"); - } - arg2 = reinterpret_cast< CvSVMSolutionInfo * >(argp2); - { - try { - result = (bool)(arg1)->solve_generic(*arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_solve_c_svc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - schar *arg5 = (schar *) 0 ; - double arg6 ; - double arg7 ; - CvMemStorage *arg8 = (CvMemStorage *) 0 ; - CvSVMKernel *arg9 = (CvSVMKernel *) 0 ; - double *arg10 = (double *) 0 ; - CvSVMSolutionInfo *arg11 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - double val6 ; - int ecode6 = 0 ; - double val7 ; - int ecode7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - void *argp10 = 0 ; - int res10 = 0 ; - void *argp11 = 0 ; - int res11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO:CvSVMSolver_solve_c_svc",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "5"" of type '" "schar *""'"); - } - arg5 = reinterpret_cast< schar * >(argp5); - ecode6 = SWIG_AsVal_double(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "6"" of type '" "double""'"); - } - arg6 = static_cast< double >(val6); - ecode7 = SWIG_AsVal_double(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "7"" of type '" "double""'"); - } - arg7 = static_cast< double >(val7); - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "8"" of type '" "CvMemStorage *""'"); - } - arg8 = reinterpret_cast< CvMemStorage * >(argp8); - res9 = SWIG_ConvertPtr(obj8, &argp9,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "9"" of type '" "CvSVMKernel *""'"); - } - arg9 = reinterpret_cast< CvSVMKernel * >(argp9); - res10 = SWIG_ConvertPtr(obj9, &argp10,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "10"" of type '" "double *""'"); - } - arg10 = reinterpret_cast< double * >(argp10); - res11 = SWIG_ConvertPtr(obj10, &argp11, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVMSolver_solve_c_svc" "', argument " "11"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_c_svc" "', argument " "11"" of type '" "CvSVMSolutionInfo &""'"); - } - arg11 = reinterpret_cast< CvSVMSolutionInfo * >(argp11); - { - try { - result = (bool)(arg1)->solve_c_svc(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,arg8,arg9,arg10,*arg11); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_solve_nu_svc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - schar *arg5 = (schar *) 0 ; - CvMemStorage *arg6 = (CvMemStorage *) 0 ; - CvSVMKernel *arg7 = (CvSVMKernel *) 0 ; - double *arg8 = (double *) 0 ; - CvSVMSolutionInfo *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvSVMSolver_solve_nu_svc",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_signed_char, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "5"" of type '" "schar *""'"); - } - arg5 = reinterpret_cast< schar * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "6"" of type '" "CvMemStorage *""'"); - } - arg6 = reinterpret_cast< CvMemStorage * >(argp6); - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "7"" of type '" "CvSVMKernel *""'"); - } - arg7 = reinterpret_cast< CvSVMKernel * >(argp7); - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "8"" of type '" "double *""'"); - } - arg8 = reinterpret_cast< double * >(argp8); - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_nu_svc" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - arg9 = reinterpret_cast< CvSVMSolutionInfo * >(argp9); - { - try { - result = (bool)(arg1)->solve_nu_svc(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,arg8,*arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_solve_one_class(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - CvMemStorage *arg5 = (CvMemStorage *) 0 ; - CvSVMKernel *arg6 = (CvSVMKernel *) 0 ; - double *arg7 = (double *) 0 ; - CvSVMSolutionInfo *arg8 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvSVMSolver_solve_one_class",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_one_class" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_one_class" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_one_class" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_one_class" "', argument " "5"" of type '" "CvMemStorage *""'"); - } - arg5 = reinterpret_cast< CvMemStorage * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_one_class" "', argument " "6"" of type '" "CvSVMKernel *""'"); - } - arg6 = reinterpret_cast< CvSVMKernel * >(argp6); - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_one_class" "', argument " "7"" of type '" "double *""'"); - } - arg7 = reinterpret_cast< double * >(argp7); - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_one_class" "', argument " "8"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_one_class" "', argument " "8"" of type '" "CvSVMSolutionInfo &""'"); - } - arg8 = reinterpret_cast< CvSVMSolutionInfo * >(argp8); - { - try { - result = (bool)(arg1)->solve_one_class(arg2,arg3,(float const **)arg4,arg5,arg6,arg7,*arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_solve_eps_svr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - CvMemStorage *arg6 = (CvMemStorage *) 0 ; - CvSVMKernel *arg7 = (CvSVMKernel *) 0 ; - double *arg8 = (double *) 0 ; - CvSVMSolutionInfo *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvSVMSolver_solve_eps_svr",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "6"" of type '" "CvMemStorage *""'"); - } - arg6 = reinterpret_cast< CvMemStorage * >(argp6); - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "7"" of type '" "CvSVMKernel *""'"); - } - arg7 = reinterpret_cast< CvSVMKernel * >(argp7); - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "8"" of type '" "double *""'"); - } - arg8 = reinterpret_cast< double * >(argp8); - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_eps_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - arg9 = reinterpret_cast< CvSVMSolutionInfo * >(argp9); - { - try { - result = (bool)(arg1)->solve_eps_svr(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6,arg7,arg8,*arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_solve_nu_svr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - int arg3 ; - float **arg4 = (float **) 0 ; - float *arg5 = (float *) 0 ; - CvMemStorage *arg6 = (CvMemStorage *) 0 ; - CvSVMKernel *arg7 = (CvSVMKernel *) 0 ; - double *arg8 = (double *) 0 ; - CvSVMSolutionInfo *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *vptr4 ; - float *buffer4 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - void *argp7 = 0 ; - int res7 = 0 ; - void *argp8 = 0 ; - int res8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvSVMSolver_solve_nu_svr",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "5"" of type '" "float const *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_CvMemStorage, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "6"" of type '" "CvMemStorage *""'"); - } - arg6 = reinterpret_cast< CvMemStorage * >(argp6); - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "7"" of type '" "CvSVMKernel *""'"); - } - arg7 = reinterpret_cast< CvSVMKernel * >(argp7); - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "8"" of type '" "double *""'"); - } - arg8 = reinterpret_cast< double * >(argp8); - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvSVMSolutionInfo, 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_solve_nu_svr" "', argument " "9"" of type '" "CvSVMSolutionInfo &""'"); - } - arg9 = reinterpret_cast< CvSVMSolutionInfo * >(argp9); - { - try { - result = (bool)(arg1)->solve_nu_svr(arg2,arg3,(float const **)arg4,(float const *)arg5,arg6,arg7,arg8,*arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row_base(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - bool *arg3 = (bool *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMSolver_get_row_base",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_base" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_base" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_bool, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_base" "', argument " "3"" of type '" "bool *""'"); - } - arg3 = reinterpret_cast< bool * >(argp3); - { - try { - result = (float *)(arg1)->get_row_base(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMSolver_get_row",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - { - try { - result = (float *)(arg1)->get_row(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_sample_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_sample_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_sample_count_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->sample_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_sample_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_sample_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_sample_count_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (int) ((arg1)->sample_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_var_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_var_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_var_count_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->var_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_var_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_var_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_var_count_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (int) ((arg1)->var_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_cache_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_cache_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_size_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_cache_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->cache_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_cache_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_cache_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_size_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (int) ((arg1)->cache_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_cache_line_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_cache_line_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_line_size_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_cache_line_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->cache_line_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_cache_line_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_cache_line_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_cache_line_size_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (int) ((arg1)->cache_line_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_samples_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - float **arg2 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - float *buffer2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_samples_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_samples_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - { - if ((SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer2 = (float *) vptr2; - arg2=&buffer2; - } - if (arg1) (arg1)->samples = (float const **)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_samples_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_samples_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_samples_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (float **) ((arg1)->samples); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_params_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMParams *arg2 = (CvSVMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_params_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_params_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_params_set" "', argument " "2"" of type '" "CvSVMParams const *""'"); - } - arg2 = reinterpret_cast< CvSVMParams * >(argp2); - if (arg1) (arg1)->params = (CvSVMParams const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_params_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_params_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_params_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMParams *) ((arg1)->params); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMParams, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_storage_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_storage_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvMemStorage *) ((arg1)->storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_lru_list_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_lru_list_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_lru_list_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_lru_list_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = reinterpret_cast< CvSVMKernelRow * >(argp2); - if (arg1) (arg1)->lru_list = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_lru_list_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMKernelRow *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_lru_list_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_lru_list_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMKernelRow *)& ((arg1)->lru_list); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_rows_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMKernelRow *arg2 = (CvSVMKernelRow *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_rows_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_rows_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMKernelRow, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_rows_set" "', argument " "2"" of type '" "CvSVMKernelRow *""'"); - } - arg2 = reinterpret_cast< CvSVMKernelRow * >(argp2); - if (arg1) (arg1)->rows = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_rows_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMKernelRow *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_rows_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_rows_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMKernelRow *) ((arg1)->rows); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernelRow, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_alpha_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_alpha_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_count_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_alpha_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->alpha_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_alpha_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_alpha_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_count_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (int) ((arg1)->alpha_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_G_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_G_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_G_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_G_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->G = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_G_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_G_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_G_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (double *) ((arg1)->G); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_alpha_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_alpha_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_alpha_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->alpha = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_alpha_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_alpha_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (double *) ((arg1)->alpha); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_alpha_status_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_alpha_status_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_status_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_alpha_status_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->alpha_status = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_alpha_status_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_alpha_status_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_alpha_status_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (schar *) ((arg1)->alpha_status); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_y_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - schar *arg2 = (schar *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_y_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_y_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_signed_char, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_y_set" "', argument " "2"" of type '" "schar *""'"); - } - arg2 = reinterpret_cast< schar * >(argp2); - if (arg1) (arg1)->y = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_y_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - schar *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_y_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_y_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (schar *) ((arg1)->y); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_signed_char, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_b_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_b_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_b_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_b_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->b = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_b_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_b_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_b_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (double *) ((arg1)->b); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - float **arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_buf_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_float, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_buf_set" "', argument " "2"" of type '" "float *[2]""'"); - } - arg2 = reinterpret_cast< float ** >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->buf[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""buf""' of type '""float *[2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_buf_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (float **)(float **) ((arg1)->buf); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_eps_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_eps_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_eps_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_eps_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->eps = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_eps_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_eps_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_eps_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (double) ((arg1)->eps); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_max_iter_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_max_iter_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_max_iter_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_max_iter_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->max_iter = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_max_iter_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_max_iter_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_max_iter_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (int) ((arg1)->max_iter); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_C_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_C_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_C_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_C_set" "', argument " "2"" of type '" "double [2]""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - { - if (arg2) { - size_t ii = 0; - for (; ii < (size_t)2; ++ii) arg1->C[ii] = arg2[ii]; - } else { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""C""' of type '""double [2]""'"); - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_C_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_C_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_C_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (double *)(double *) ((arg1)->C); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_kernel_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMKernel *arg2 = (CvSVMKernel *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_kernel_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_kernel_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvSVMKernel, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_kernel_set" "', argument " "2"" of type '" "CvSVMKernel *""'"); - } - arg2 = reinterpret_cast< CvSVMKernel * >(argp2); - if (arg1) (arg1)->kernel = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_kernel_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMKernel *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_kernel_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_kernel_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMKernel *) ((arg1)->kernel); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMKernel, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_select_working_set_func_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolver::SelectWorkingSet arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_select_working_set_func_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set_func_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - { - int res = SWIG_ConvertMember(obj1, SWIG_as_voidptr(&arg2), sizeof(CvSVMSolver::SelectWorkingSet),SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_select_working_set_func_set" "', argument " "2"" of type '" "CvSVMSolver::SelectWorkingSet""'"); - } - } - if (arg1) (arg1)->select_working_set_func = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_select_working_set_func_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMSolver::SelectWorkingSet result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_select_working_set_func_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set_func_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMSolver::SelectWorkingSet) ((arg1)->select_working_set_func); - resultobj = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMSolver::SelectWorkingSet), SWIGTYPE_m_CvSVMSolver__f_r_int_r_int__bool); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_calc_rho_func_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolver::CalcRho arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_calc_rho_func_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho_func_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - { - int res = SWIG_ConvertMember(obj1, SWIG_as_voidptr(&arg2), sizeof(CvSVMSolver::CalcRho),SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_calc_rho_func_set" "', argument " "2"" of type '" "CvSVMSolver::CalcRho""'"); - } - } - if (arg1) (arg1)->calc_rho_func = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_calc_rho_func_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMSolver::CalcRho result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_calc_rho_func_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho_func_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMSolver::CalcRho) ((arg1)->calc_rho_func); - resultobj = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMSolver::CalcRho), SWIGTYPE_m_CvSVMSolver__f_r_double_r_double__void); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row_func_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - CvSVMSolver::GetRow arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMSolver_get_row_func_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_func_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - { - int res = SWIG_ConvertMember(obj1, SWIG_as_voidptr(&arg2), sizeof(CvSVMSolver::GetRow),SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - if (!SWIG_IsOK(res)) { - SWIG_exception_fail(SWIG_ArgError(res), "in method '" "CvSVMSolver_get_row_func_set" "', argument " "2"" of type '" "CvSVMSolver::GetRow""'"); - } - } - if (arg1) (arg1)->get_row_func = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row_func_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMSolver::GetRow result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMSolver_get_row_func_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_func_get" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - result = (CvSVMSolver::GetRow) ((arg1)->get_row_func); - resultobj = SWIG_NewMemberObj(SWIG_as_voidptr(&result), sizeof(CvSVMSolver::GetRow), SWIGTYPE_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_select_working_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int *arg2 = 0 ; - int *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMSolver_select_working_set",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_select_working_set" "', argument " "2"" of type '" "int &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set" "', argument " "2"" of type '" "int &""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_select_working_set" "', argument " "3"" of type '" "int &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set" "', argument " "3"" of type '" "int &""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - { - try { - result = (bool)(arg1)->select_working_set(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_select_working_set_nu_svm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int *arg2 = 0 ; - int *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMSolver_select_working_set_nu_svm",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "2"" of type '" "int &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "2"" of type '" "int &""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_int, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "3"" of type '" "int &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_select_working_set_nu_svm" "', argument " "3"" of type '" "int &""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - { - try { - result = (bool)(arg1)->select_working_set_nu_svm(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_calc_rho(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = 0 ; - double *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMSolver_calc_rho",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_calc_rho" "', argument " "2"" of type '" "double &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho" "', argument " "2"" of type '" "double &""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_calc_rho" "', argument " "3"" of type '" "double &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho" "', argument " "3"" of type '" "double &""'"); - } - arg3 = reinterpret_cast< double * >(argp3); - { - try { - (arg1)->calc_rho(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_calc_rho_nu_svm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - double *arg2 = 0 ; - double *arg3 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVMSolver_calc_rho_nu_svm",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "2"" of type '" "double &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "2"" of type '" "double &""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_double, 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "3"" of type '" "double &""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVMSolver_calc_rho_nu_svm" "', argument " "3"" of type '" "double &""'"); - } - arg3 = reinterpret_cast< double * >(argp3); - { - try { - (arg1)->calc_rho_nu_svm(*arg2,*arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row_svc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvSVMSolver_get_row_svc",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_svc" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_svc" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_svc" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVMSolver_get_row_svc" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvSVMSolver_get_row_svc" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - { - try { - result = (float *)(arg1)->get_row_svc(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row_one_class(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvSVMSolver_get_row_one_class",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvSVMSolver_get_row_one_class" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - { - try { - result = (float *)(arg1)->get_row_one_class(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMSolver_get_row_svr(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMSolver *arg1 = (CvSVMSolver *) 0 ; - int arg2 ; - float *arg3 = (float *) 0 ; - float *arg4 = (float *) 0 ; - bool arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvSVMSolver_get_row_svr",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMSolver, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMSolver_get_row_svr" "', argument " "1"" of type '" "CvSVMSolver *""'"); - } - arg1 = reinterpret_cast< CvSVMSolver * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMSolver_get_row_svr" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVMSolver_get_row_svr" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvSVMSolver_get_row_svr" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvSVMSolver_get_row_svr" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - { - try { - result = (float *)(arg1)->get_row_svr(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVMSolver_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVMSolver, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_rho_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMDecisionFunc_rho_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_rho_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMDecisionFunc_rho_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rho = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_rho_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMDecisionFunc_rho_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_rho_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - result = (double) ((arg1)->rho); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_sv_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMDecisionFunc_sv_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_count_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVMDecisionFunc_sv_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->sv_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_sv_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMDecisionFunc_sv_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_count_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - result = (int) ((arg1)->sv_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_alpha_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMDecisionFunc_alpha_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_alpha_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMDecisionFunc_alpha_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->alpha = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_alpha_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMDecisionFunc_alpha_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_alpha_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - result = (double *) ((arg1)->alpha); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_sv_index_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVMDecisionFunc_sv_index_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_index_set" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVMDecisionFunc_sv_index_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->sv_index = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVMDecisionFunc_sv_index_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVMDecisionFunc_sv_index_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVMDecisionFunc_sv_index_get" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - result = (int *) ((arg1)->sv_index); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVMDecisionFunc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVMDecisionFunc")) SWIG_fail; - { - try { - result = (CvSVMDecisionFunc *)new CvSVMDecisionFunc(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVMDecisionFunc, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVMDecisionFunc(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVMDecisionFunc *arg1 = (CvSVMDecisionFunc *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVMDecisionFunc",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVMDecisionFunc, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVMDecisionFunc" "', argument " "1"" of type '" "CvSVMDecisionFunc *""'"); - } - arg1 = reinterpret_cast< CvSVMDecisionFunc * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVMDecisionFunc_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVMDecisionFunc, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvSVM__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvSVM")) SWIG_fail; - { - try { - result = (CvSVM *)new CvSVM(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvSVM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvSVM",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvSVM" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVM__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSVMParams arg5 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - void *argp5 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvSVM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvSVM",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "new_CvSVM" "', argument " "5"" of type '" "CvSVMParams""'"); - } - if (!argp5) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvSVM" "', argument " "5"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp5); - arg5 = *temp; - if (SWIG_IsNewObj(res5)) delete temp; - } - } - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVM__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvSVM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvSVM",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVM__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvSVM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvSVM",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVM__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvSVM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvSVM",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvSVM *)new CvSVM((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSVM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvSVM(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvSVM__SWIG_0(self, args); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_4(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_3(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvSVM__SWIG_1(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvSVM'.\n" - " Possible C/C++ prototypes are:\n" - " CvSVM()\n" - " CvSVM(CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams)\n" - " CvSVM(CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " CvSVM(CvMat const *,CvMat const *,CvMat const *)\n" - " CvSVM(CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVM_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvSVM_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvSVM_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVM_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_3(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_1(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train__SWIG_0(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvSVM_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams)\n" - " train(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvSVM *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvSVM *,CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - CvParamGrid arg11 ; - CvParamGrid arg12 ; - CvParamGrid arg13 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - void *argp11 ; - int res11 = 0 ; - void *argp12 ; - int res12 = 0 ; - void *argp13 ; - int res13 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - PyObject * obj12 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - res10 = SWIG_ConvertPtr(obj9, &argp10, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp10); - arg10 = *temp; - if (SWIG_IsNewObj(res10)) delete temp; - } - } - { - res11 = SWIG_ConvertPtr(obj10, &argp11, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp11); - arg11 = *temp; - if (SWIG_IsNewObj(res11)) delete temp; - } - } - { - res12 = SWIG_ConvertPtr(obj11, &argp12, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } - if (!argp12) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp12); - arg12 = *temp; - if (SWIG_IsNewObj(res12)) delete temp; - } - } - { - res13 = SWIG_ConvertPtr(obj12, &argp13, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res13)) { - SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "CvSVM_train_auto" "', argument " "13"" of type '" "CvParamGrid""'"); - } - if (!argp13) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "13"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp13); - arg13 = *temp; - if (SWIG_IsNewObj(res13)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - CvParamGrid arg11 ; - CvParamGrid arg12 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - void *argp11 ; - int res11 = 0 ; - void *argp12 ; - int res12 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - res10 = SWIG_ConvertPtr(obj9, &argp10, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp10); - arg10 = *temp; - if (SWIG_IsNewObj(res10)) delete temp; - } - } - { - res11 = SWIG_ConvertPtr(obj10, &argp11, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp11); - arg11 = *temp; - if (SWIG_IsNewObj(res11)) delete temp; - } - } - { - res12 = SWIG_ConvertPtr(obj11, &argp12, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res12)) { - SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } - if (!argp12) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "12"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp12); - arg12 = *temp; - if (SWIG_IsNewObj(res12)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - CvParamGrid arg11 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - void *argp11 ; - int res11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - res10 = SWIG_ConvertPtr(obj9, &argp10, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp10); - arg10 = *temp; - if (SWIG_IsNewObj(res10)) delete temp; - } - } - { - res11 = SWIG_ConvertPtr(obj10, &argp11, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res11)) { - SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } - if (!argp11) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "11"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp11); - arg11 = *temp; - if (SWIG_IsNewObj(res11)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - CvParamGrid arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - void *argp10 ; - int res10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - res10 = SWIG_ConvertPtr(obj9, &argp10, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res10)) { - SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } - if (!argp10) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "10"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp10); - arg10 = *temp; - if (SWIG_IsNewObj(res10)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - CvParamGrid arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "9"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - CvParamGrid arg8 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - void *argp8 ; - int res8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvParamGrid, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "8"" of type '" "CvParamGrid""'"); - } else { - CvParamGrid * temp = reinterpret_cast< CvParamGrid * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - int arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvSVM_train_auto" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvSVMParams arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvSVM_train_auto",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_train_auto" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvSVMParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvSVM_train_auto" "', argument " "6"" of type '" "CvSVMParams""'"); - } else { - CvSVMParams * temp = reinterpret_cast< CvSVMParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train_auto((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_train_auto(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[14]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 13); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_7(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_6(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_5(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_4(self, args); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[9], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_3(self, args); - } - } - } - } - } - } - } - } - } - } - } - if (argc == 11) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[9], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[10], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 12) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[9], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[10], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[11], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 13) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvSVMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[9], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[10], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[11], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[12], 0, SWIGTYPE_p_CvParamGrid, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_train_auto__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvSVM_train_auto'.\n" - " Possible C/C++ prototypes are:\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int,CvParamGrid,CvParamGrid,CvParamGrid,CvParamGrid,CvParamGrid,CvParamGrid)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int,CvParamGrid,CvParamGrid,CvParamGrid,CvParamGrid,CvParamGrid)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int,CvParamGrid,CvParamGrid,CvParamGrid,CvParamGrid)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int,CvParamGrid,CvParamGrid,CvParamGrid)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int,CvParamGrid,CvParamGrid)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int,CvParamGrid)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams,int)\n" - " train_auto(CvSVM *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvSVMParams)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_predict__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVM_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_predict" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_bool(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvSVM_predict" "', argument " "3"" of type '" "bool""'"); - } - arg3 = static_cast< bool >(val3); - { - try { - result = (float)((CvSVM const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_predict__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVM_predict",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_predict" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (float)((CvSVM const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_predict(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvSVM_predict__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvSVM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvSVM_predict__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvSVM_predict'.\n" - " Possible C/C++ prototypes are:\n" - " predict(CvSVM const *,CvMat const *,bool)\n" - " predict(CvSVM const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_get_support_vector_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVM_get_support_vector_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_support_vector_count" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - try { - result = (int)((CvSVM const *)arg1)->get_support_vector_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_get_support_vector(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvSVM_get_support_vector",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_support_vector" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvSVM_get_support_vector" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (float *)((CvSVM const *)arg1)->get_support_vector(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_get_params(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSVMParams result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVM_get_params",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_params" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - try { - result = ((CvSVM const *)arg1)->get_params(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvSVMParams(static_cast< const CvSVMParams& >(result))), SWIGTYPE_p_CvSVMParams, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVM_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_clear" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_get_default_grid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvParamGrid result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVM_get_default_grid",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "CvSVM_get_default_grid" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = CvSVM::get_default_grid(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj((new CvParamGrid(static_cast< const CvParamGrid& >(result))), SWIGTYPE_p_CvParamGrid, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVM_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_write" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvSVM const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvSVM_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_read" "', argument " "1"" of type '" "CvSVM *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvSVM_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvSVM_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvSVM_get_var_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvSVM *arg1 = (CvSVM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvSVM_get_var_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvSVM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvSVM_get_var_count" "', argument " "1"" of type '" "CvSVM const *""'"); - } - arg1 = reinterpret_cast< CvSVM * >(argp1); - { - try { - result = (int)((CvSVM const *)arg1)->get_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvSVM_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvSVM, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvEMParams")) SWIG_fail; - { - try { - result = (CvEMParams *)new CvEMParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat **arg8 = (CvMat **) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - CvTermCriteria temp4 ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - void *argp8 = 0 ; - int res8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:new_CvEMParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - res8 = SWIG_ConvertPtr(obj7, &argp8,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvEMParams" "', argument " "8"" of type '" "CvMat const **""'"); - } - arg8 = reinterpret_cast< CvMat ** >(argp8); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const **)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - CvTermCriteria temp4 ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:new_CvEMParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - CvTermCriteria temp4 ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:new_CvEMParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - CvTermCriteria temp4 ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvEMParams",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - CvTermCriteria arg4 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - CvTermCriteria temp4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvEMParams",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - if (PyTuple_Check(obj3)) - { - if (!PyArg_ParseTuple(obj3,"iid", & temp4.type, & temp4.max_iter, & temp4.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg4 = temp4; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj3, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg4 = *ptr; - } - } - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int arg3 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvEMParams",&obj0,&obj1,&obj2)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvEMParams" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvEMParams",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvEMParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvEMParams *)new CvEMParams(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvEMParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvEMParams",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvEMParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (CvEMParams *)new CvEMParams(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEMParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEMParams(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[9]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 8); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvEMParams__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvEMParams__SWIG_8(self, args); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvEMParams__SWIG_7(self, args); - } - } - } - if (argc == 3) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvEMParams__SWIG_6(self, args); - } - } - } - } - if (argc == 4) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_5(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_4(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_3(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_2(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEMParams__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvEMParams'.\n" - " Possible C/C++ prototypes are:\n" - " CvEMParams()\n" - " CvEMParams(int,int,int,CvTermCriteria,CvMat const *,CvMat const *,CvMat const *,CvMat const **)\n" - " CvEMParams(int,int,int,CvTermCriteria,CvMat const *,CvMat const *,CvMat const *)\n" - " CvEMParams(int,int,int,CvTermCriteria,CvMat const *,CvMat const *)\n" - " CvEMParams(int,int,int,CvTermCriteria,CvMat const *)\n" - " CvEMParams(int,int,int,CvTermCriteria)\n" - " CvEMParams(int,int,int)\n" - " CvEMParams(int,int)\n" - " CvEMParams(int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_nclusters_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_nclusters_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_nclusters_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvEMParams_nclusters_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nclusters = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_nclusters_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_nclusters_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_nclusters_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (int) ((arg1)->nclusters); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_cov_mat_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_cov_mat_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_cov_mat_type_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvEMParams_cov_mat_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->cov_mat_type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_cov_mat_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_cov_mat_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_cov_mat_type_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (int) ((arg1)->cov_mat_type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_start_step_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_start_step_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_start_step_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvEMParams_start_step_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->start_step = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_start_step_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_start_step_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_start_step_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (int) ((arg1)->start_step); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_probs_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_probs_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_probs_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->probs = (CvMat const *)arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_probs_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_probs_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_probs_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (CvMat *) ((arg1)->probs); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_weights_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_weights_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_weights_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->weights = (CvMat const *)arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_weights_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_weights_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_weights_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (CvMat *) ((arg1)->weights); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_means_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_means_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_means_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->means = (CvMat const *)arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_means_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_means_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_means_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (CvMat *) ((arg1)->means); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_covs_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvMat **arg2 = (CvMat **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_covs_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_covs_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_covs_set" "', argument " "2"" of type '" "CvMat const **""'"); - } - arg2 = reinterpret_cast< CvMat ** >(argp2); - if (arg1) (arg1)->covs = (CvMat const **)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_covs_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat **result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_covs_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_covs_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (CvMat **) ((arg1)->covs); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_term_crit_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEMParams_term_crit_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_term_crit_set" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvEMParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = reinterpret_cast< CvTermCriteria * >(argp2); - if (arg1) (arg1)->term_crit = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEMParams_term_crit_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTermCriteria *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEMParams_term_crit_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEMParams_term_crit_get" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvEMParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEMParams *arg1 = (CvEMParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvEMParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEMParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvEMParams" "', argument " "1"" of type '" "CvEMParams *""'"); - } - arg1 = reinterpret_cast< CvEMParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvEMParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvEMParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvEM__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvEM")) SWIG_fail; - { - try { - result = (CvEM *)new CvEM(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEM__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvEMParams arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 ; - int res3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvEM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvEM",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvEMParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } else { - CvEMParams * temp = reinterpret_cast< CvEMParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1,(CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEM__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvEMParams arg3 ; - bool freearg1 = false ; - bool freearg2 = false ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvEM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvEM",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvEMParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvEM" "', argument " "3"" of type '" "CvEMParams""'"); - } else { - CvEMParams * temp = reinterpret_cast< CvEMParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1,(CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEM__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvEM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvEM",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1,(CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEM__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvEM *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvEM",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvEM *)new CvEM((CvMat const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvEM, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvEM(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvEM__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_4(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_3(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvEM__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvEM'.\n" - " Possible C/C++ prototypes are:\n" - " CvEM()\n" - " CvEM(CvMat const *,CvMat const *,CvEMParams,CvMat *)\n" - " CvEM(CvMat const *,CvMat const *,CvEMParams)\n" - " CvEM(CvMat const *,CvMat const *)\n" - " CvEM(CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvEM(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvEM",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvEM" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvEMParams arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - void *argp4 ; - int res4 = 0 ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvEM_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_CvEMParams, 0 | 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } else { - CvEMParams * temp = reinterpret_cast< CvEMParams * >(argp4); - arg4 = *temp; - if (SWIG_IsNewObj(res4)) delete temp; - } - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvEMParams arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - void *argp4 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvEM_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - res4 = SWIG_ConvertPtr(obj3, &argp4, SWIGTYPE_p_CvEMParams, 0 | 0); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } - if (!argp4) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvEM_train" "', argument " "4"" of type '" "CvEMParams""'"); - } else { - CvEMParams * temp = reinterpret_cast< CvEMParams * >(argp4); - arg4 = *temp; - if (SWIG_IsNewObj(res4)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvEM_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvEM_train",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_train" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_3(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_1(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvEM, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[3], 0, SWIGTYPE_p_CvEMParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvEM_train__SWIG_0(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvEM_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvEM *,CvMat const *,CvMat const *,CvEMParams,CvMat *)\n" - " train(CvEM *,CvMat const *,CvMat const *,CvEMParams)\n" - " train(CvEM *,CvMat const *,CvMat const *)\n" - " train(CvEM *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_predict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvEM_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_predict" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvEM const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_clear" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_get_nclusters(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_get_nclusters",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_nclusters" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - result = (int)((CvEM const *)arg1)->get_nclusters(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_get_means(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_get_means",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_means" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - result = (CvMat *)((CvEM const *)arg1)->get_means(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_get_weights(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_get_weights",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_weights" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - result = (CvMat *)((CvEM const *)arg1)->get_weights(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_get_probs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_get_probs",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_probs" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - result = (CvMat *)((CvEM const *)arg1)->get_probs(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_get_log_likelihood(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_get_log_likelihood",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_log_likelihood" "', argument " "1"" of type '" "CvEM const *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - result = (double)((CvEM const *)arg1)->get_log_likelihood(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvEM_get_covs(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvEM *arg1 = (CvEM *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - PyObject *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvEM_get_covs",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvEM, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvEM_get_covs" "', argument " "1"" of type '" "CvEM *""'"); - } - arg1 = reinterpret_cast< CvEM * >(argp1); - { - try { - result = (PyObject *)CvEM_get_covs(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = result; - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvEM_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvEM, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvPair16u32s_u_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - unsigned short *arg2 = (unsigned short *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPair16u32s_u_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_u_set" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = reinterpret_cast< CvPair16u32s * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_unsigned_short, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPair16u32s_u_set" "', argument " "2"" of type '" "unsigned short *""'"); - } - arg2 = reinterpret_cast< unsigned short * >(argp2); - if (arg1) (arg1)->u = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPair16u32s_u_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - unsigned short *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPair16u32s_u_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_u_get" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = reinterpret_cast< CvPair16u32s * >(argp1); - result = (unsigned short *) ((arg1)->u); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_unsigned_short, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPair16u32s_i_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvPair16u32s_i_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_i_set" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = reinterpret_cast< CvPair16u32s * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvPair16u32s_i_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->i = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvPair16u32s_i_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvPair16u32s_i_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPair16u32s, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvPair16u32s_i_get" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = reinterpret_cast< CvPair16u32s * >(argp1); - result = (int *) ((arg1)->i); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvPair16u32s(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPair16u32s *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvPair16u32s")) SWIG_fail; - { - try { - result = (CvPair16u32s *)new CvPair16u32s(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvPair16u32s, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvPair16u32s(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvPair16u32s *arg1 = (CvPair16u32s *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvPair16u32s",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvPair16u32s, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvPair16u32s" "', argument " "1"" of type '" "CvPair16u32s *""'"); - } - arg1 = reinterpret_cast< CvPair16u32s * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvPair16u32s_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvPair16u32s, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_var_idx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeSplit_var_idx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_var_idx_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_var_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->var_idx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_var_idx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeSplit_var_idx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_var_idx_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - result = (int) ((arg1)->var_idx); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_condensed_idx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeSplit_condensed_idx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_condensed_idx_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_condensed_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->condensed_idx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_condensed_idx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeSplit_condensed_idx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_condensed_idx_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - result = (int) ((arg1)->condensed_idx); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_inversed_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeSplit_inversed_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_inversed_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_inversed_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->inversed = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_inversed_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeSplit_inversed_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_inversed_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - result = (int) ((arg1)->inversed); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_quality_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeSplit_quality_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_quality_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeSplit_quality_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->quality = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_quality_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeSplit_quality_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_quality_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - result = (float) ((arg1)->quality); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_next_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - CvDTreeSplit *arg2 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeSplit_next_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_next_set" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeSplit_next_set" "', argument " "2"" of type '" "CvDTreeSplit *""'"); - } - arg2 = reinterpret_cast< CvDTreeSplit * >(argp2); - if (arg1) (arg1)->next = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeSplit_next_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeSplit_next_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeSplit_next_get" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - result = (CvDTreeSplit *) ((arg1)->next); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeSplit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvDTreeSplit")) SWIG_fail; - { - try { - result = (CvDTreeSplit *)new CvDTreeSplit(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvDTreeSplit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeSplit *arg1 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvDTreeSplit",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeSplit" "', argument " "1"" of type '" "CvDTreeSplit *""'"); - } - arg1 = reinterpret_cast< CvDTreeSplit * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvDTreeSplit_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvDTreeSplit, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvDTreeNode_class_idx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_class_idx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_class_idx_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_class_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->class_idx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_class_idx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_class_idx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_class_idx_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->class_idx); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_Tn_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_Tn_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_Tn_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_Tn_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->Tn = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_Tn_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_Tn_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_Tn_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->Tn); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_value_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_value_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_value_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_value_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->value = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_value_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_value_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_value_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double) ((arg1)->value); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_parent_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_parent_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_parent_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_parent_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - if (arg1) (arg1)->parent = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_parent_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_parent_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_parent_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (CvDTreeNode *) ((arg1)->parent); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_left_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_left_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_left_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_left_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - if (arg1) (arg1)->left = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_left_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_left_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_left_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (CvDTreeNode *) ((arg1)->left); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_right_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_right_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_right_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_right_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - if (arg1) (arg1)->right = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_right_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_right_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_right_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (CvDTreeNode *) ((arg1)->right); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_split_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - CvDTreeSplit *arg2 = (CvDTreeSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_split_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_split_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_split_set" "', argument " "2"" of type '" "CvDTreeSplit *""'"); - } - arg2 = reinterpret_cast< CvDTreeSplit * >(argp2); - if (arg1) (arg1)->split = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_split_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_split_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_split_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (CvDTreeSplit *) ((arg1)->split); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_sample_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_sample_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_sample_count_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->sample_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_sample_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_sample_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_sample_count_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->sample_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_depth_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_depth_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_depth_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->depth = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_depth_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_depth_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_depth_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->depth); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_num_valid_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_num_valid_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_num_valid_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_num_valid_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->num_valid = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_num_valid_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_num_valid_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_num_valid_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int *) ((arg1)->num_valid); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_offset_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_offset_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_offset_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_offset_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->offset = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_offset_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_offset_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_offset_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->offset); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_buf_idx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_buf_idx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_buf_idx_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_buf_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->buf_idx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_buf_idx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_buf_idx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_buf_idx_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->buf_idx); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_maxlr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_maxlr_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_maxlr_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_maxlr_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->maxlr = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_maxlr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_maxlr_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_maxlr_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double) ((arg1)->maxlr); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_complexity_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_complexity_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_complexity_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_complexity_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->complexity = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_complexity_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_complexity_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_complexity_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int) ((arg1)->complexity); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_alpha_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_alpha_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_alpha_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_alpha_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->alpha = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_alpha_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_alpha_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_alpha_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double) ((arg1)->alpha); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_node_risk_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_node_risk_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_node_risk_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_node_risk_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->node_risk = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_node_risk_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_node_risk_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_node_risk_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double) ((arg1)->node_risk); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_tree_risk_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_tree_risk_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_risk_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_tree_risk_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->tree_risk = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_tree_risk_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_tree_risk_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_risk_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double) ((arg1)->tree_risk); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_tree_error_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_tree_error_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_error_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_tree_error_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->tree_error = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_tree_error_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_tree_error_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_tree_error_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double) ((arg1)->tree_error); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_cv_Tn_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_cv_Tn_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_Tn_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_cv_Tn_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->cv_Tn = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_cv_Tn_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_cv_Tn_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_Tn_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (int *) ((arg1)->cv_Tn); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_cv_node_risk_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_cv_node_risk_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_risk_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_cv_node_risk_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->cv_node_risk = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_cv_node_risk_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_cv_node_risk_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_risk_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double *) ((arg1)->cv_node_risk); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_cv_node_error_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - double *arg2 = (double *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_cv_node_error_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_error_set" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_double, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeNode_cv_node_error_set" "', argument " "2"" of type '" "double *""'"); - } - arg2 = reinterpret_cast< double * >(argp2); - if (arg1) (arg1)->cv_node_error = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_cv_node_error_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeNode_cv_node_error_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_cv_node_error_get" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - result = (double *) ((arg1)->cv_node_error); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_get_num_valid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeNode_get_num_valid",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_get_num_valid" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_get_num_valid" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (int)(arg1)->get_num_valid(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeNode_set_num_valid(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTreeNode_set_num_valid",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeNode_set_num_valid" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeNode_set_num_valid" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeNode_set_num_valid" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - (arg1)->set_num_valid(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvDTreeNode")) SWIG_fail; - { - try { - result = (CvDTreeNode *)new CvDTreeNode(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvDTreeNode(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeNode *arg1 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvDTreeNode",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeNode" "', argument " "1"" of type '" "CvDTreeNode *""'"); - } - arg1 = reinterpret_cast< CvDTreeNode * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvDTreeNode_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvDTreeNode, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvDTreeParams_max_categories_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_max_categories_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_categories_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_max_categories_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->max_categories = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_max_categories_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_max_categories_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_categories_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (int) ((arg1)->max_categories); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_max_depth_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_max_depth_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_depth_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_max_depth_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->max_depth = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_max_depth_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_max_depth_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_max_depth_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (int) ((arg1)->max_depth); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_min_sample_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_min_sample_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_min_sample_count_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_min_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->min_sample_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_min_sample_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_min_sample_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_min_sample_count_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (int) ((arg1)->min_sample_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_cv_folds_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_cv_folds_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_cv_folds_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_cv_folds_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->cv_folds = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_cv_folds_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_cv_folds_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_cv_folds_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (int) ((arg1)->cv_folds); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_use_surrogates_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_use_surrogates_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_surrogates_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_use_surrogates_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->use_surrogates = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_use_surrogates_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_use_surrogates_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_surrogates_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (bool) ((arg1)->use_surrogates); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_use_1se_rule_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_use_1se_rule_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_1se_rule_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_use_1se_rule_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->use_1se_rule = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_use_1se_rule_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_use_1se_rule_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_use_1se_rule_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (bool) ((arg1)->use_1se_rule); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_truncate_pruned_tree_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_truncate_pruned_tree_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_truncate_pruned_tree_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_truncate_pruned_tree_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->truncate_pruned_tree = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_truncate_pruned_tree_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_truncate_pruned_tree_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_truncate_pruned_tree_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (bool) ((arg1)->truncate_pruned_tree); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_regression_accuracy_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_regression_accuracy_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_regression_accuracy_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeParams_regression_accuracy_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->regression_accuracy = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_regression_accuracy_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_regression_accuracy_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_regression_accuracy_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (float) ((arg1)->regression_accuracy); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_priors_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeParams_priors_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_priors_set" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeParams_priors_set" "', argument " "2"" of type '" "float const *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->priors = (float const *)arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeParams_priors_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeParams_priors_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeParams_priors_get" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - result = (float *) ((arg1)->priors); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeParams__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvDTreeParams")) SWIG_fail; - { - try { - result = (CvDTreeParams *)new CvDTreeParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeParams__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - float arg3 ; - bool arg4 ; - int arg5 ; - int arg6 ; - bool arg7 ; - bool arg8 ; - float *arg9 = (float *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - int val6 ; - int ecode6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - bool val8 ; - int ecode8 = 0 ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - CvDTreeParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:new_CvDTreeParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvDTreeParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvDTreeParams" "', argument " "3"" of type '" "float""'"); - } - arg3 = static_cast< float >(val3); - ecode4 = SWIG_AsVal_bool(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvDTreeParams" "', argument " "4"" of type '" "bool""'"); - } - arg4 = static_cast< bool >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvDTreeParams" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "new_CvDTreeParams" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - ecode7 = SWIG_AsVal_bool(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvDTreeParams" "', argument " "7"" of type '" "bool""'"); - } - arg7 = static_cast< bool >(val7); - ecode8 = SWIG_AsVal_bool(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvDTreeParams" "', argument " "8"" of type '" "bool""'"); - } - arg8 = static_cast< bool >(val8); - res9 = SWIG_ConvertPtr(obj8, &argp9,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "new_CvDTreeParams" "', argument " "9"" of type '" "float const *""'"); - } - arg9 = reinterpret_cast< float * >(argp9); - { - try { - result = (CvDTreeParams *)new CvDTreeParams(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,(float const *)arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeParams(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[10]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 9); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvDTreeParams__SWIG_0(self, args); - } - if (argc == 9) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[8], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeParams__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvDTreeParams'.\n" - " Possible C/C++ prototypes are:\n" - " CvDTreeParams()\n" - " CvDTreeParams(int,int,float,bool,int,int,bool,bool,float const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvDTreeParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeParams *arg1 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvDTreeParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeParams" "', argument " "1"" of type '" "CvDTreeParams *""'"); - } - arg1 = reinterpret_cast< CvDTreeParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvDTreeParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvDTreeParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvDTreeTrainData")) SWIG_fail; - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvDTreeParams *arg8 = 0 ; - bool arg9 ; - bool arg10 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - void *argp8 = 0 ; - int res8 = 0 ; - bool val9 ; - int ecode9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - arg8 = reinterpret_cast< CvDTreeParams * >(argp8); - ecode9 = SWIG_AsVal_bool(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "new_CvDTreeTrainData" "', argument " "9"" of type '" "bool""'"); - } - arg9 = static_cast< bool >(val9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "new_CvDTreeTrainData" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvDTreeParams const &)*arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvDTreeParams *arg8 = 0 ; - bool arg9 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - void *argp8 = 0 ; - int res8 = 0 ; - bool val9 ; - int ecode9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - arg8 = reinterpret_cast< CvDTreeParams * >(argp8); - ecode9 = SWIG_AsVal_bool(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "new_CvDTreeTrainData" "', argument " "9"" of type '" "bool""'"); - } - arg9 = static_cast< bool >(val9); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvDTreeParams const &)*arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvDTreeParams *arg8 = 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - void *argp8 = 0 ; - int res8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvDTreeTrainData" "', argument " "8"" of type '" "CvDTreeParams const &""'"); - } - arg8 = reinterpret_cast< CvDTreeParams * >(argp8); - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvDTreeParams const &)*arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvDTreeTrainData",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvDTreeTrainData" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvDTreeTrainData *)new CvDTreeTrainData((CvMat const *)arg1,arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvDTreeTrainData(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[11]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 10); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvDTreeTrainData__SWIG_0(self, args); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_8(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_7(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_6(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_5(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_4(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_3(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[8], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[8], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvDTreeTrainData__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvDTreeTrainData'.\n" - " Possible C/C++ prototypes are:\n" - " CvDTreeTrainData()\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool,bool)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *,CvMat const *)\n" - " CvDTreeTrainData(CvMat const *,int,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvDTreeTrainData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvDTreeTrainData",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTreeTrainData" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - bool arg12 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - bool val12 ; - int ecode12 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvDTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - ecode11 = SWIG_AsVal_bool(obj10, &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvDTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = static_cast< bool >(val11); - ecode12 = SWIG_AsVal_bool(obj11, &val12); - if (!SWIG_IsOK(ecode12)) { - SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "CvDTreeTrainData_set_data" "', argument " "12"" of type '" "bool""'"); - } - arg12 = static_cast< bool >(val12); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvDTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - ecode11 = SWIG_AsVal_bool(obj10, &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvDTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = static_cast< bool >(val11); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvDTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_data(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[13]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 12); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_8(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_7(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_6(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_5(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_4(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_3(self, args); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - } - } - if (argc == 11) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 12) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[11], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_set_data__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTreeTrainData_set_data'.\n" - " Possible C/C++ prototypes are:\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool,bool,bool)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool,bool)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " set_data(CvDTreeTrainData *,CvMat const *,int,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_do_responses_copy(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_do_responses_copy",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_do_responses_copy" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - (arg1)->do_responses_copy(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_vectors__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvDTreeTrainData_get_vectors",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = reinterpret_cast< uchar * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - ecode6 = SWIG_AsVal_bool(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "6"" of type '" "bool""'"); - } - arg6 = static_cast< bool >(val6); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_vectors__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvDTreeTrainData_get_vectors",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = reinterpret_cast< uchar * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_vectors(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTreeTrainData_get_vectors__SWIG_1(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTreeTrainData_get_vectors__SWIG_0(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTreeTrainData_get_vectors'.\n" - " Possible C/C++ prototypes are:\n" - " get_vectors(CvDTreeTrainData *,CvMat const *,float *,uchar *,float *,bool)\n" - " get_vectors(CvDTreeTrainData *,CvMat const *,float *,uchar *,float *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_subsample_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_subsample_data",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_subsample_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvDTreeNode *)(arg1)->subsample_data((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_write_params(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_write_params",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_write_params" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_write_params" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - { - try { - ((CvDTreeTrainData const *)arg1)->write_params(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_read_params(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTreeTrainData_read_params",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_read_params" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_read_params" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_read_params" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read_params(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_clear" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_num_classes(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_num_classes",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_num_classes" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (int)((CvDTreeTrainData const *)arg1)->get_num_classes(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_var_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_get_var_type",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_var_type" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_get_var_type" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (int)((CvDTreeTrainData const *)arg1)->get_var_type(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_work_var_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_work_var_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_work_var_count" "', argument " "1"" of type '" "CvDTreeTrainData const *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (int)((CvDTreeTrainData const *)arg1)->get_work_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_ord_responses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - float *arg3 = (float *) 0 ; - float **arg4 = (float **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *vptr4 ; - float *buffer4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTreeTrainData_get_ord_responses",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_ord_responses" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_ord_responses" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_ord_responses" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - { - if ((SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer4 = (float *) vptr4; - arg4=&buffer4; - } - { - try { - (arg1)->get_ord_responses(arg2,arg3,(float const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_class_labels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTreeTrainData_get_class_labels",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_class_labels" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = reinterpret_cast< int ** >(argp4); - { - try { - (arg1)->get_class_labels(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_cv_labels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTreeTrainData_get_cv_labels",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_cv_labels" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = reinterpret_cast< int ** >(argp4); - { - try { - (arg1)->get_cv_labels(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_sample_indices(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTreeTrainData_get_sample_indices",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_sample_indices" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = reinterpret_cast< int ** >(argp4); - { - try { - (arg1)->get_sample_indices(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_cat_var_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - int *arg4 = (int *) 0 ; - int **arg5 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvDTreeTrainData_get_cat_var_data",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "4"" of type '" "int *""'"); - } - arg4 = reinterpret_cast< int * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_cat_var_data" "', argument " "5"" of type '" "int const **""'"); - } - arg5 = reinterpret_cast< int ** >(argp5); - { - try { - result = (int)(arg1)->get_cat_var_data(arg2,arg3,arg4,(int const **)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_ord_var_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - float *arg4 = (float *) 0 ; - int *arg5 = (int *) 0 ; - float **arg6 = (float **) 0 ; - int **arg7 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *vptr6 ; - float *buffer6 ; - void *argp7 = 0 ; - int res7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvDTreeTrainData_get_ord_var_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "5"" of type '" "int *""'"); - } - arg5 = reinterpret_cast< int * >(argp5); - { - if ((SWIG_ConvertPtr(obj5, &vptr6, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer6 = (float *) vptr6; - arg6=&buffer6; - } - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvDTreeTrainData_get_ord_var_data" "', argument " "7"" of type '" "int const **""'"); - } - arg7 = reinterpret_cast< int ** >(argp7); - { - try { - result = (int)(arg1)->get_ord_var_data(arg2,arg3,arg4,arg5,(float const **)arg6,(int const **)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_child_buf_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_get_child_buf_idx",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_child_buf_idx" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_get_child_buf_idx" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - { - try { - result = (int)(arg1)->get_child_buf_idx(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_set_params(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeParams *arg2 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_set_params",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_set_params" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_set_params" "', argument " "2"" of type '" "CvDTreeParams const &""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_set_params" "', argument " "2"" of type '" "CvDTreeParams const &""'"); - } - arg2 = reinterpret_cast< CvDTreeParams * >(argp2); - { - try { - result = (bool)(arg1)->set_params((CvDTreeParams const &)*arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_new_node(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - int arg4 ; - int arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvDTreeTrainData_new_node",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_new_node" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_new_node" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_new_node" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvDTreeTrainData_new_node" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvDTreeTrainData_new_node" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - { - try { - result = (CvDTreeNode *)(arg1)->new_node(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_new_split_ord(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - float arg3 ; - int arg4 ; - int arg5 ; - float arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - float val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvDTreeSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvDTreeTrainData_new_split_ord",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "3"" of type '" "float""'"); - } - arg3 = static_cast< float >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - ecode6 = SWIG_AsVal_float(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvDTreeTrainData_new_split_ord" "', argument " "6"" of type '" "float""'"); - } - arg6 = static_cast< float >(val6); - { - try { - result = (CvDTreeSplit *)(arg1)->new_split_ord(arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_new_split_cat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - float arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvDTreeSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTreeTrainData_new_split_cat",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_new_split_cat" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_new_split_cat" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTreeTrainData_new_split_cat" "', argument " "3"" of type '" "float""'"); - } - arg3 = static_cast< float >(val3); - { - try { - result = (CvDTreeSplit *)(arg1)->new_split_cat(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeSplit, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_free_node_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_free_node_data",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_free_node_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_free_node_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - { - try { - (arg1)->free_node_data(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_free_train_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_free_train_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_free_train_data" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - (arg1)->free_train_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_free_node(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_free_node",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_free_node" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_free_node" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - { - try { - (arg1)->free_node(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_pred_float_buf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_pred_float_buf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_pred_float_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (float *)(arg1)->get_pred_float_buf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_pred_int_buf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_pred_int_buf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_pred_int_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (int *)(arg1)->get_pred_int_buf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_resp_float_buf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_resp_float_buf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_resp_float_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (float *)(arg1)->get_resp_float_buf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_resp_int_buf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_resp_int_buf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_resp_int_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (int *)(arg1)->get_resp_int_buf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_cv_lables_buf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_cv_lables_buf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_cv_lables_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (int *)(arg1)->get_cv_lables_buf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_get_sample_idx_buf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_get_sample_idx_buf",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_get_sample_idx_buf" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - try { - result = (int *)(arg1)->get_sample_idx_buf(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_pred_float_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< float > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_pred_float_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_float_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_vectorT_vectorT_float_t_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_pred_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_pred_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } else { - vector< vector< float > > * temp = reinterpret_cast< vector< vector< float > > * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->pred_float_buf = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_pred_float_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - vector< vector< float > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_pred_float_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_float_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->pred_float_buf); - resultobj = SWIG_NewPointerObj((new vector< vector< float > >(static_cast< const vector< vector< float > >& >(result))), SWIGTYPE_p_vectorT_vectorT_float_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_pred_int_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_pred_int_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_int_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_pred_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_pred_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - vector< vector< int > > * temp = reinterpret_cast< vector< vector< int > > * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->pred_int_buf = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_pred_int_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - vector< vector< int > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_pred_int_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_pred_int_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->pred_int_buf); - resultobj = SWIG_NewPointerObj((new vector< vector< int > >(static_cast< const vector< vector< int > >& >(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_resp_float_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< float > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_resp_float_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_float_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_vectorT_vectorT_float_t_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_resp_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_resp_float_buf_set" "', argument " "2"" of type '" "vector< vector< float > >""'"); - } else { - vector< vector< float > > * temp = reinterpret_cast< vector< vector< float > > * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->resp_float_buf = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_resp_float_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - vector< vector< float > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_resp_float_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_float_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->resp_float_buf); - resultobj = SWIG_NewPointerObj((new vector< vector< float > >(static_cast< const vector< vector< float > >& >(result))), SWIGTYPE_p_vectorT_vectorT_float_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_resp_int_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_resp_int_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_int_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_resp_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_resp_int_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - vector< vector< int > > * temp = reinterpret_cast< vector< vector< int > > * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->resp_int_buf = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_resp_int_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - vector< vector< int > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_resp_int_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_resp_int_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->resp_int_buf); - resultobj = SWIG_NewPointerObj((new vector< vector< int > >(static_cast< const vector< vector< int > >& >(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cv_lables_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_cv_lables_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_lables_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_cv_lables_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_cv_lables_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - vector< vector< int > > * temp = reinterpret_cast< vector< vector< int > > * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->cv_lables_buf = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cv_lables_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - vector< vector< int > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_cv_lables_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_lables_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->cv_lables_buf); - resultobj = SWIG_NewPointerObj((new vector< vector< int > >(static_cast< const vector< vector< int > >& >(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_sample_idx_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - vector< vector< int > > arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_sample_idx_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_idx_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - res2 = SWIG_ConvertPtr(obj1, &argp2, SWIGTYPE_p_vectorT_vectorT_int_t_t, 0 | 0); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_sample_idx_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } - if (!argp2) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTreeTrainData_sample_idx_buf_set" "', argument " "2"" of type '" "vector< vector< int > >""'"); - } else { - vector< vector< int > > * temp = reinterpret_cast< vector< vector< int > > * >(argp2); - arg2 = *temp; - if (SWIG_IsNewObj(res2)) delete temp; - } - } - if (arg1) (arg1)->sample_idx_buf = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_sample_idx_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - vector< vector< int > > result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_sample_idx_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_idx_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->sample_idx_buf); - resultobj = SWIG_NewPointerObj((new vector< vector< int > >(static_cast< const vector< vector< int > >& >(result))), SWIGTYPE_p_vectorT_vectorT_int_t_t, SWIG_POINTER_OWN | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_sample_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_sample_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_sample_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->sample_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_sample_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_sample_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_sample_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->sample_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_all_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_var_all_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_all_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_var_all_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->var_all = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_all_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_var_all_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_all_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->var_all); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_var_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->var_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_var_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->var_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_max_c_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_max_c_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_max_c_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_max_c_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->max_c_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_max_c_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_max_c_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_max_c_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->max_c_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_ord_var_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_ord_var_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_ord_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_ord_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->ord_var_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_ord_var_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_ord_var_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_ord_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->ord_var_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_var_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_cat_var_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_cat_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->cat_var_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_var_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_cat_var_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->cat_var_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_work_var_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_work_var_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_work_var_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_work_var_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->work_var_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_work_var_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_work_var_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_work_var_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->work_var_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_have_labels_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_have_labels_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_labels_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_have_labels_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->have_labels = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_have_labels_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_have_labels_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_labels_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (bool) ((arg1)->have_labels); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_have_priors_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_have_priors_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_priors_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_have_priors_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->have_priors = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_have_priors_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_have_priors_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_have_priors_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (bool) ((arg1)->have_priors); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_is_classifier_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_is_classifier_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_classifier_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_is_classifier_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->is_classifier = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_is_classifier_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_is_classifier_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_classifier_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (bool) ((arg1)->is_classifier); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_tflag_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_tflag_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tflag_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_tflag_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->tflag = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_tflag_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_tflag_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tflag_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->tflag); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_train_data_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_train_data_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_train_data_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->train_data = (CvMat const *)arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_train_data_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_train_data_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_train_data_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->train_data); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_responses_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_responses_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->responses = (CvMat const *)arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_responses_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_responses_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->responses); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_responses_copy_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_responses_copy_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_copy_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->responses_copy = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_responses_copy_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_responses_copy_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_responses_copy_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->responses_copy); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_buf_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_buf_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_buf_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->buf_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_buf_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_buf_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->buf_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_buf_size_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_buf_size_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_size_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_buf_size_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->buf_size = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_buf_size_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_buf_size_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_size_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->buf_size); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_shared_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_shared_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_shared_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_shared_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->shared = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_shared_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_shared_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_shared_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (bool) ((arg1)->shared); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_is_buf_16u_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_is_buf_16u_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_buf_16u_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTreeTrainData_is_buf_16u_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->is_buf_16u = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_is_buf_16u_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_is_buf_16u_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_is_buf_16u_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (int) ((arg1)->is_buf_16u); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_cat_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_count_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->cat_count = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_cat_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_count_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->cat_count); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_ofs_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_cat_ofs_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_ofs_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->cat_ofs = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_ofs_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_cat_ofs_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_ofs_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->cat_ofs); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_map_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_cat_map_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_map_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->cat_map = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cat_map_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_cat_map_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cat_map_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->cat_map); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_counts_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_counts_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_counts_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->counts = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_counts_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_counts_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_counts_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->counts); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->buf = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->buf); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_direction_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_direction_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_direction_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->direction = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_direction_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_direction_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_direction_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->direction); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_split_buf_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_split_buf_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_buf_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->split_buf = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_split_buf_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_split_buf_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_buf_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->split_buf); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_idx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_var_idx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_idx_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->var_idx = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_idx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_var_idx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_idx_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->var_idx); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_var_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_type_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->var_type = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_var_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_var_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_var_type_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->var_type); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_priors_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_priors_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->priors = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_priors_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_priors_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->priors); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_priors_mult_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_priors_mult_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_mult_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->priors_mult = arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_priors_mult_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_priors_mult_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_priors_mult_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->priors_mult); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_params_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeParams *arg2 = (CvDTreeParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_params_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_params_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_params_set" "', argument " "2"" of type '" "CvDTreeParams *""'"); - } - arg2 = reinterpret_cast< CvDTreeParams * >(argp2); - if (arg1) (arg1)->params = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_params_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_params_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_params_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvDTreeParams *)& ((arg1)->params); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeParams, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_tree_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_tree_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tree_storage_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_tree_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->tree_storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_tree_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_tree_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_tree_storage_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMemStorage *) ((arg1)->tree_storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_temp_storage_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvMemStorage *arg2 = (CvMemStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_temp_storage_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_temp_storage_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMemStorage, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_temp_storage_set" "', argument " "2"" of type '" "CvMemStorage *""'"); - } - arg2 = reinterpret_cast< CvMemStorage * >(argp2); - if (arg1) (arg1)->temp_storage = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_temp_storage_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMemStorage *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_temp_storage_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_temp_storage_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvMemStorage *) ((arg1)->temp_storage); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMemStorage, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_data_root_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_data_root_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_data_root_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTreeTrainData_data_root_set" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - if (arg1) (arg1)->data_root = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_data_root_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_data_root_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_data_root_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvDTreeNode *) ((arg1)->data_root); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_node_heap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_node_heap_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_node_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->node_heap = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_node_heap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_node_heap_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_node_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvSet *) ((arg1)->node_heap); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_split_heap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_split_heap_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->split_heap = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_split_heap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_split_heap_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_split_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvSet *) ((arg1)->split_heap); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cv_heap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_cv_heap_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->cv_heap = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_cv_heap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_cv_heap_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_cv_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvSet *) ((arg1)->cv_heap); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_nv_heap_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvSet *arg2 = (CvSet *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *ptr2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_nv_heap_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_nv_heap_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - if( SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSet, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvGraph, 0) == -1 && - SWIG_ConvertPtr(obj1, &ptr2, SWIGTYPE_p_CvSubdiv2D, 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - arg2 = (CvSet *)ptr2; - } - if (arg1) (arg1)->nv_heap = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_nv_heap_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSet *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_nv_heap_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_nv_heap_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = (CvSet *) ((arg1)->nv_heap); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSet, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_rng_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - CvRNG arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *vptr2 ; - CvRNG_Wrapper *wrapper2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTreeTrainData_rng_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_rng_set" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - { - if(SWIG_ConvertPtr(obj1, &vptr2, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper2 = (CvRNG_Wrapper *) vptr2; - arg2 = wrapper2->ref(); - } - if (arg1) (arg1)->rng = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTreeTrainData_rng_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTreeTrainData *arg1 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTreeTrainData_rng_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTreeTrainData_rng_get" "', argument " "1"" of type '" "CvDTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvDTreeTrainData * >(argp1); - result = ((arg1)->rng); - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( result ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvDTreeTrainData_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvDTreeTrainData, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvDTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvDTree")) SWIG_fail; - { - try { - result = (CvDTree *)new CvDTree(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTree, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvDTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvDTree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvDTree" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvDTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvDTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } else { - CvDTreeParams * temp = reinterpret_cast< CvDTreeParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvDTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvDTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvDTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvDTree_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTree_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvDTreeParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTree_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_train" "', argument " "3"" of type '" "CvDTreeParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvDTree_train" "', argument " "3"" of type '" "CvDTreeParams""'"); - } else { - CvDTreeParams * temp = reinterpret_cast< CvDTreeParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTree_train",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_calc_error__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - vector< float > *arg4 = (vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTree_calc_error",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_calc_error" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_vectorT_float_t, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_calc_error" "', argument " "4"" of type '" "vector< float > *""'"); - } - arg4 = reinterpret_cast< vector< float > * >(argp4); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_calc_error__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTree_calc_error",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_calc_error" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvDTree_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_calc_error(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTree_calc_error__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_vectorT_float_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_calc_error__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTree_calc_error'.\n" - " Possible C/C++ prototypes are:\n" - " calc_error(CvDTree *,CvMLData *,int,vector< float > *)\n" - " calc_error(CvDTree *,CvMLData *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTree_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_train" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = reinterpret_cast< CvDTreeTrainData * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[10]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 9); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_7(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_6(self, args); - } - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_8(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_5(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_4(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_3(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_2(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_train__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTree_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvDTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams)\n" - " train(CvDTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvDTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvDTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvDTree *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " train(CvDTree *,CvMat const *,int,CvMat const *)\n" - " train(CvDTree *,CvMLData *,CvDTreeParams)\n" - " train(CvDTree *,CvMLData *)\n" - " train(CvDTree *,CvDTreeTrainData *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_predict__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - bool arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTree_predict",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_predict" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - ecode4 = SWIG_AsVal_bool(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvDTree_predict" "', argument " "4"" of type '" "bool""'"); - } - arg4 = static_cast< bool >(val4); - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_predict__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTree_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_predict" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_predict__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTree_predict",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_predict" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_predict(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_predict__SWIG_2(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_predict__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvDTree_predict__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTree_predict'.\n" - " Possible C/C++ prototypes are:\n" - " predict(CvDTree const *,CvMat const *,CvMat const *,bool)\n" - " predict(CvDTree const *,CvMat const *,CvMat const *)\n" - " predict(CvDTree const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_get_var_importance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTree_get_var_importance",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_var_importance" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_importance(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTree_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_clear" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_read__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTree_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_read" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_write__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvDTree_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_write" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvDTree const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_read__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvDTreeTrainData *arg4 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvDTree_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_read" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvDTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvDTree_read" "', argument " "4"" of type '" "CvDTreeTrainData *""'"); - } - arg4 = reinterpret_cast< CvDTreeTrainData * >(argp4); - { - try { - (arg1)->read(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_read(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_read__SWIG_0(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_read__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTree_read'.\n" - " Possible C/C++ prototypes are:\n" - " read(CvDTree *,CvFileStorage *,CvFileNode *)\n" - " read(CvDTree *,CvFileStorage *,CvFileNode *,CvDTreeTrainData *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_write__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTree_write",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_write" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvDTree_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - { - try { - ((CvDTree const *)arg1)->write(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_write(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_write__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvDTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvDTree_write__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvDTree_write'.\n" - " Possible C/C++ prototypes are:\n" - " write(CvDTree const *,CvFileStorage *,char const *)\n" - " write(CvDTree const *,CvFileStorage *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_get_root(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTree_get_root",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_root" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - try { - result = (CvDTreeNode *)((CvDTree const *)arg1)->get_root(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_get_pruned_tree_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTree_get_pruned_tree_idx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_pruned_tree_idx" "', argument " "1"" of type '" "CvDTree const *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - try { - result = (int)((CvDTree const *)arg1)->get_pruned_tree_idx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_get_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTree_get_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_get_data" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - { - try { - result = (CvDTreeTrainData *)(arg1)->get_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_pruned_tree_idx_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvDTree_pruned_tree_idx_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_pruned_tree_idx_set" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvDTree_pruned_tree_idx_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->pruned_tree_idx = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvDTree_pruned_tree_idx_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvDTree *arg1 = (CvDTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvDTree_pruned_tree_idx_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvDTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvDTree_pruned_tree_idx_get" "', argument " "1"" of type '" "CvDTree *""'"); - } - arg1 = reinterpret_cast< CvDTree * >(argp1); - result = (int) ((arg1)->pruned_tree_idx); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvDTree_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvDTree, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvForestTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvForestTree")) SWIG_fail; - { - try { - result = (CvForestTree *)new CvForestTree(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvForestTree, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvForestTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvForestTree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvForestTree" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvRTrees *arg4 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = reinterpret_cast< CvDTreeTrainData * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_train" "', argument " "4"" of type '" "CvRTrees *""'"); - } - arg4 = reinterpret_cast< CvRTrees * >(argp4); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_get_var_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvForestTree_get_var_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_get_var_count" "', argument " "1"" of type '" "CvForestTree const *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - try { - result = (int)((CvForestTree const *)arg1)->get_var_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_read__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvRTrees *arg4 = (CvRTrees *) 0 ; - CvDTreeTrainData *arg5 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvForestTree_read",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_read" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_read" "', argument " "4"" of type '" "CvRTrees *""'"); - } - arg4 = reinterpret_cast< CvRTrees * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvForestTree_read" "', argument " "5"" of type '" "CvDTreeTrainData *""'"); - } - arg5 = reinterpret_cast< CvDTreeTrainData * >(argp5); - { - try { - (arg1)->read(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvForestTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvForestTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } else { - CvDTreeParams * temp = reinterpret_cast< CvDTreeParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvForestTree_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvForestTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvForestTree_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_train" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = reinterpret_cast< CvDTreeTrainData * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[10]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 9); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_7(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_6(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_0(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_5(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_4(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_3(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_train__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvForestTree_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvForestTree *,CvDTreeTrainData *,CvMat const *,CvRTrees *)\n" - " train(CvForestTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams)\n" - " train(CvForestTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvForestTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvForestTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvForestTree *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " train(CvForestTree *,CvMat const *,int,CvMat const *)\n" - " train(CvForestTree *,CvDTreeTrainData *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_read__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvForestTree_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_read" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_read__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestTree *arg1 = (CvForestTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvDTreeTrainData *arg4 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvForestTree_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvForestTree_read" "', argument " "1"" of type '" "CvForestTree *""'"); - } - arg1 = reinterpret_cast< CvForestTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvForestTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvForestTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvForestTree_read" "', argument " "4"" of type '" "CvDTreeTrainData *""'"); - } - arg4 = reinterpret_cast< CvDTreeTrainData * >(argp4); - { - try { - (arg1)->read(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvForestTree_read(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_read__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_read__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvForestTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvForestTree_read__SWIG_0(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvForestTree_read'.\n" - " Possible C/C++ prototypes are:\n" - " read(CvForestTree *,CvFileStorage *,CvFileNode *,CvRTrees *,CvDTreeTrainData *)\n" - " read(CvForestTree *,CvFileStorage *,CvFileNode *)\n" - " read(CvForestTree *,CvFileStorage *,CvFileNode *,CvDTreeTrainData *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *CvForestTree_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvForestTree, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvRTParams_calc_var_importance_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTParams_calc_var_importance_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_calc_var_importance_set" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRTParams_calc_var_importance_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->calc_var_importance = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTParams_calc_var_importance_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTParams_calc_var_importance_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_calc_var_importance_get" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - result = (bool) ((arg1)->calc_var_importance); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTParams_nactive_vars_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTParams_nactive_vars_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_nactive_vars_set" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRTParams_nactive_vars_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->nactive_vars = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTParams_nactive_vars_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTParams_nactive_vars_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_nactive_vars_get" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - result = (int) ((arg1)->nactive_vars); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTParams_term_crit_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTParams_term_crit_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_term_crit_set" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = reinterpret_cast< CvTermCriteria * >(argp2); - if (arg1) (arg1)->term_crit = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTParams_term_crit_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTermCriteria *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTParams_term_crit_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTParams_term_crit_get" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvRTParams__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvRTParams")) SWIG_fail; - { - try { - result = (CvRTParams *)new CvRTParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRTParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvRTParams__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - float arg3 ; - bool arg4 ; - int arg5 ; - float *arg6 = (float *) 0 ; - bool arg7 ; - int arg8 ; - int arg9 ; - float arg10 ; - int arg11 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - float val3 ; - int ecode3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - int val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - int val8 ; - int ecode8 = 0 ; - int val9 ; - int ecode9 = 0 ; - float val10 ; - int ecode10 = 0 ; - int val11 ; - int ecode11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - CvRTParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO:new_CvRTParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvRTParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvRTParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_float(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvRTParams" "', argument " "3"" of type '" "float""'"); - } - arg3 = static_cast< float >(val3); - ecode4 = SWIG_AsVal_bool(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvRTParams" "', argument " "4"" of type '" "bool""'"); - } - arg4 = static_cast< bool >(val4); - ecode5 = SWIG_AsVal_int(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvRTParams" "', argument " "5"" of type '" "int""'"); - } - arg5 = static_cast< int >(val5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvRTParams" "', argument " "6"" of type '" "float const *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - ecode7 = SWIG_AsVal_bool(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "new_CvRTParams" "', argument " "7"" of type '" "bool""'"); - } - arg7 = static_cast< bool >(val7); - ecode8 = SWIG_AsVal_int(obj7, &val8); - if (!SWIG_IsOK(ecode8)) { - SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "new_CvRTParams" "', argument " "8"" of type '" "int""'"); - } - arg8 = static_cast< int >(val8); - ecode9 = SWIG_AsVal_int(obj8, &val9); - if (!SWIG_IsOK(ecode9)) { - SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "new_CvRTParams" "', argument " "9"" of type '" "int""'"); - } - arg9 = static_cast< int >(val9); - ecode10 = SWIG_AsVal_float(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "new_CvRTParams" "', argument " "10"" of type '" "float""'"); - } - arg10 = static_cast< float >(val10); - ecode11 = SWIG_AsVal_int(obj10, &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "new_CvRTParams" "', argument " "11"" of type '" "int""'"); - } - arg11 = static_cast< int >(val11); - { - try { - result = (CvRTParams *)new CvRTParams(arg1,arg2,arg3,arg4,arg5,(float const *)arg6,arg7,arg8,arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRTParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvRTParams(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[12]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 11); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvRTParams__SWIG_0(self, args); - } - if (argc == 11) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[7], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[8], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_float(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvRTParams__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvRTParams'.\n" - " Possible C/C++ prototypes are:\n" - " CvRTParams()\n" - " CvRTParams(int,int,float,bool,int,float const *,bool,int,int,float,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvRTParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTParams *arg1 = (CvRTParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvRTParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRTParams" "', argument " "1"" of type '" "CvRTParams *""'"); - } - arg1 = reinterpret_cast< CvRTParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvRTParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvRTParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvRTrees(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvRTrees")) SWIG_fail; - { - try { - result = (CvRTrees *)new CvRTrees(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvRTrees, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvRTrees(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvRTrees",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvRTrees" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvRTParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvRTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvRTParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvRTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } else { - CvRTParams * temp = reinterpret_cast< CvRTParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvRTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvRTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvRTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvRTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvRTrees_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvRTParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvRTParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvRTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } else { - CvRTParams * temp = reinterpret_cast< CvRTParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTrees_train",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_train" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[10]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 9); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_7(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_6(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_5(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_4(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_3(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_2(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_train__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvRTrees_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvRTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvRTParams)\n" - " train(CvRTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvRTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvRTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvRTrees *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " train(CvRTrees *,CvMat const *,int,CvMat const *)\n" - " train(CvRTrees *,CvMLData *,CvRTParams)\n" - " train(CvRTrees *,CvMLData *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_predict__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvRTrees const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_predict__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTrees_predict",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (float)((CvRTrees const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_predict(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvRTrees_predict'.\n" - " Possible C/C++ prototypes are:\n" - " predict(CvRTrees const *,CvMat const *,CvMat const *)\n" - " predict(CvRTrees const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_predict_prob__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_predict_prob",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict_prob" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvRTrees const *)arg1)->predict_prob((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_predict_prob__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTrees_predict_prob",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_predict_prob" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (float)((CvRTrees const *)arg1)->predict_prob((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_predict_prob(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[4]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 3); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict_prob__SWIG_1(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_predict_prob__SWIG_0(self, args); - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvRTrees_predict_prob'.\n" - " Possible C/C++ prototypes are:\n" - " predict_prob(CvRTrees const *,CvMat const *,CvMat const *)\n" - " predict_prob(CvRTrees const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTrees_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_clear" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_var_importance(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTrees_get_var_importance",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_var_importance" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_importance(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_proximity__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvRTrees_get_proximity",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_proximity" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (float)((CvRTrees const *)arg1)->get_proximity((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_proximity__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvRTrees_get_proximity",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_proximity" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (float)((CvRTrees const *)arg1)->get_proximity((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_proximity__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_get_proximity",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_proximity" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvRTrees const *)arg1)->get_proximity((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_proximity(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_get_proximity__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_get_proximity__SWIG_1(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_get_proximity__SWIG_0(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvRTrees_get_proximity'.\n" - " Possible C/C++ prototypes are:\n" - " get_proximity(CvRTrees const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " get_proximity(CvRTrees const *,CvMat const *,CvMat const *,CvMat const *)\n" - " get_proximity(CvRTrees const *,CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_calc_error__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - vector< float > *arg4 = (vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvRTrees_calc_error",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_calc_error" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_vectorT_float_t, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvRTrees_calc_error" "', argument " "4"" of type '" "vector< float > *""'"); - } - arg4 = reinterpret_cast< vector< float > * >(argp4); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_calc_error__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_calc_error",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_calc_error" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvRTrees_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_calc_error(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvRTrees_calc_error__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvRTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_vectorT_float_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvRTrees_calc_error__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvRTrees_calc_error'.\n" - " Possible C/C++ prototypes are:\n" - " calc_error(CvRTrees *,CvMLData *,int,vector< float > *)\n" - " calc_error(CvRTrees *,CvMLData *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_train_error(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTrees_get_train_error",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_train_error" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - result = (float)(arg1)->get_train_error(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_read" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvRTrees_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_write" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvRTrees_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvRTrees_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvRTrees const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_active_var_mask(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTrees_get_active_var_mask",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_active_var_mask" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_active_var_mask(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_rng(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvRNG *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTrees_get_rng",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_rng" "', argument " "1"" of type '" "CvRTrees *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - result = (CvRNG *)(arg1)->get_rng(); - } - catch (...) - { - SWIG_fail; - } - } - { - CvRNG_Wrapper * wrapper = new CvRNG_Wrapper( *(result) ); - resultobj = SWIG_NewPointerObj( wrapper, SWIGTYPE_p_CvRNG_Wrapper, 1 ); - } - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_tree_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvRTrees_get_tree_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_tree_count" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - { - try { - result = (int)((CvRTrees const *)arg1)->get_tree_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvRTrees_get_tree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvRTrees *arg1 = (CvRTrees *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvForestTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvRTrees_get_tree",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvRTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvRTrees_get_tree" "', argument " "1"" of type '" "CvRTrees const *""'"); - } - arg1 = reinterpret_cast< CvRTrees * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvRTrees_get_tree" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvForestTree *)((CvRTrees const *)arg1)->get_tree(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvForestTree, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvRTrees_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvRTrees, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - bool arg12 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - bool val12 ; - int ecode12 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - PyObject * obj11 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvERTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - ecode11 = SWIG_AsVal_bool(obj10, &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvERTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = static_cast< bool >(val11); - ecode12 = SWIG_AsVal_bool(obj11, &val12); - if (!SWIG_IsOK(ecode12)) { - SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "CvERTreeTrainData_set_data" "', argument " "12"" of type '" "bool""'"); - } - arg12 = static_cast< bool >(val12); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11,arg12); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - bool arg11 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - bool val11 ; - int ecode11 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - PyObject * obj10 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvERTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - ecode11 = SWIG_AsVal_bool(obj10, &val11); - if (!SWIG_IsOK(ecode11)) { - SWIG_exception_fail(SWIG_ArgError(ecode11), "in method '" "CvERTreeTrainData_set_data" "', argument " "11"" of type '" "bool""'"); - } - arg11 = static_cast< bool >(val11); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10,arg11); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvERTreeTrainData_set_data" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams *arg9 = 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 = 0 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTreeTrainData_set_data" "', argument " "9"" of type '" "CvDTreeParams const &""'"); - } - arg9 = reinterpret_cast< CvDTreeParams * >(argp9); - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,(CvDTreeParams const &)*arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvERTreeTrainData_set_data",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_set_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_set_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - (arg1)->set_data((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_set_data(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[13]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 12); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_8(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_7(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_6(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_5(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_4(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_3(self, args); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - } - } - if (argc == 11) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - if (argc == 12) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[10], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[11], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_set_data__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvERTreeTrainData_set_data'.\n" - " Possible C/C++ prototypes are:\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool,bool,bool)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool,bool)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &,bool)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams const &)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " set_data(CvERTreeTrainData *,CvMat const *,int,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_ord_var_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - float *arg4 = (float *) 0 ; - int *arg5 = (int *) 0 ; - float **arg6 = (float **) 0 ; - int **arg7 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - void *vptr6 ; - float *buffer6 ; - void *argp7 = 0 ; - int res7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvERTreeTrainData_get_ord_var_data",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "4"" of type '" "float *""'"); - } - arg4 = reinterpret_cast< float * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "5"" of type '" "int *""'"); - } - arg5 = reinterpret_cast< int * >(argp5); - { - if ((SWIG_ConvertPtr(obj5, &vptr6, SWIGTYPE_p_float, 1)) == -1){ - SWIG_fail; - } - buffer6 = (float *) vptr6; - arg6=&buffer6; - } - res7 = SWIG_ConvertPtr(obj6, &argp7,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res7)) { - SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "CvERTreeTrainData_get_ord_var_data" "', argument " "7"" of type '" "int const **""'"); - } - arg7 = reinterpret_cast< int ** >(argp7); - { - try { - result = (int)(arg1)->get_ord_var_data(arg2,arg3,arg4,arg5,(float const **)arg6,(int const **)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_sample_indices(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvERTreeTrainData_get_sample_indices",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_sample_indices" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = reinterpret_cast< int ** >(argp4); - { - try { - (arg1)->get_sample_indices(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_cv_labels(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int *arg3 = (int *) 0 ; - int **arg4 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvERTreeTrainData_get_cv_labels",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "3"" of type '" "int *""'"); - } - arg3 = reinterpret_cast< int * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_cv_labels" "', argument " "4"" of type '" "int const **""'"); - } - arg4 = reinterpret_cast< int ** >(argp4); - { - try { - (arg1)->get_cv_labels(arg2,arg3,(int const **)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_cat_var_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvDTreeNode *arg2 = (CvDTreeNode *) 0 ; - int arg3 ; - int *arg4 = (int *) 0 ; - int **arg5 = (int **) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvERTreeTrainData_get_cat_var_data",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "2"" of type '" "CvDTreeNode *""'"); - } - arg2 = reinterpret_cast< CvDTreeNode * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_int, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "4"" of type '" "int *""'"); - } - arg4 = reinterpret_cast< int * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_p_int, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_cat_var_data" "', argument " "5"" of type '" "int const **""'"); - } - arg5 = reinterpret_cast< int ** >(argp5); - { - try { - result = (int)(arg1)->get_cat_var_data(arg2,arg3,arg4,(int const **)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_vectors__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - bool val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvERTreeTrainData_get_vectors",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = reinterpret_cast< uchar * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - ecode6 = SWIG_AsVal_bool(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "6"" of type '" "bool""'"); - } - arg6 = static_cast< bool >(val6); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_vectors__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - float *arg3 = (float *) 0 ; - uchar *arg4 = (uchar *) 0 ; - float *arg5 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvERTreeTrainData_get_vectors",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "3"" of type '" "float *""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_unsigned_char, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "4"" of type '" "uchar *""'"); - } - arg4 = reinterpret_cast< uchar * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvERTreeTrainData_get_vectors" "', argument " "5"" of type '" "float *""'"); - } - arg5 = reinterpret_cast< float * >(argp5); - { - try { - (arg1)->get_vectors((CvMat const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_get_vectors(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTreeTrainData_get_vectors__SWIG_1(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_unsigned_char, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvERTreeTrainData_get_vectors__SWIG_0(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvERTreeTrainData_get_vectors'.\n" - " Possible C/C++ prototypes are:\n" - " get_vectors(CvERTreeTrainData *,CvMat const *,float *,uchar *,float *,bool)\n" - " get_vectors(CvERTreeTrainData *,CvMat const *,float *,uchar *,float *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_subsample_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvDTreeNode *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvERTreeTrainData_subsample_data",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_subsample_data" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (CvDTreeNode *)(arg1)->subsample_data((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeNode, 0 | 0 ); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_missing_mask_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvERTreeTrainData_missing_mask_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_missing_mask_set" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - if (arg1) (arg1)->missing_mask = (CvMat const *)arg2; - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTreeTrainData_missing_mask_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvERTreeTrainData_missing_mask_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTreeTrainData_missing_mask_get" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - result = (CvMat *) ((arg1)->missing_mask); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvERTreeTrainData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvERTreeTrainData")) SWIG_fail; - { - try { - result = (CvERTreeTrainData *)new CvERTreeTrainData(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvERTreeTrainData, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvERTreeTrainData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTreeTrainData *arg1 = (CvERTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvERTreeTrainData",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTreeTrainData, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvERTreeTrainData" "', argument " "1"" of type '" "CvERTreeTrainData *""'"); - } - arg1 = reinterpret_cast< CvERTreeTrainData * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvERTreeTrainData_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvERTreeTrainData, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvForestERTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestERTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvForestERTree")) SWIG_fail; - { - try { - result = (CvForestERTree *)new CvForestERTree(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvForestERTree, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvForestERTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvForestERTree *arg1 = (CvForestERTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvForestERTree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvForestERTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvForestERTree" "', argument " "1"" of type '" "CvForestERTree *""'"); - } - arg1 = reinterpret_cast< CvForestERTree * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvForestERTree_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvForestERTree, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvERTrees(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvERTrees")) SWIG_fail; - { - try { - result = (CvERTrees *)new CvERTrees(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvERTrees, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvERTrees(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvERTrees",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvERTrees" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvRTParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvERTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvRTParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvERTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTrees_train" "', argument " "9"" of type '" "CvRTParams""'"); - } else { - CvRTParams * temp = reinterpret_cast< CvRTParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvERTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvERTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvERTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvERTrees_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvERTrees_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvRTParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvERTrees_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvRTParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvERTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvERTrees_train" "', argument " "3"" of type '" "CvRTParams""'"); - } else { - CvRTParams * temp = reinterpret_cast< CvRTParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvERTrees *arg1 = (CvERTrees *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvERTrees_train",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvERTrees, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvERTrees_train" "', argument " "1"" of type '" "CvERTrees *""'"); - } - arg1 = reinterpret_cast< CvERTrees * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvERTrees_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvERTrees_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[10]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 9); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_7(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_6(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_5(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_4(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_3(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_2(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvERTrees, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvRTParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvERTrees_train__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvERTrees_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvERTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvRTParams)\n" - " train(CvERTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvERTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvERTrees *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvERTrees *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " train(CvERTrees *,CvMat const *,int,CvMat const *)\n" - " train(CvERTrees *,CvMLData *,CvRTParams)\n" - " train(CvERTrees *,CvMLData *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *CvERTrees_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvERTrees, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvBoostParams_boost_type_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoostParams_boost_type_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_boost_type_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_boost_type_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->boost_type = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_boost_type_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoostParams_boost_type_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_boost_type_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - result = (int) ((arg1)->boost_type); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_weak_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoostParams_weak_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weak_count_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_weak_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->weak_count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_weak_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoostParams_weak_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weak_count_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - result = (int) ((arg1)->weak_count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_split_criteria_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoostParams_split_criteria_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_split_criteria_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_split_criteria_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->split_criteria = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_split_criteria_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoostParams_split_criteria_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_split_criteria_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - result = (int) ((arg1)->split_criteria); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_weight_trim_rate_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoostParams_weight_trim_rate_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weight_trim_rate_set" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostParams_weight_trim_rate_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->weight_trim_rate = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostParams_weight_trim_rate_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoostParams_weight_trim_rate_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostParams_weight_trim_rate_get" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - result = (double) ((arg1)->weight_trim_rate); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoostParams__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvBoostParams")) SWIG_fail; - { - try { - result = (CvBoostParams *)new CvBoostParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoostParams__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int arg2 ; - double arg3 ; - int arg4 ; - bool arg5 ; - float *arg6 = (float *) 0 ; - int val1 ; - int ecode1 = 0 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - bool val5 ; - int ecode5 = 0 ; - void *argp6 = 0 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvBoostParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:new_CvBoostParams",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvBoostParams" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoostParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvBoostParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvBoostParams" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - ecode5 = SWIG_AsVal_bool(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "new_CvBoostParams" "', argument " "5"" of type '" "bool""'"); - } - arg5 = static_cast< bool >(val5); - res6 = SWIG_ConvertPtr(obj5, &argp6,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "new_CvBoostParams" "', argument " "6"" of type '" "float const *""'"); - } - arg6 = reinterpret_cast< float * >(argp6); - { - try { - result = (CvBoostParams *)new CvBoostParams(arg1,arg2,arg3,arg4,arg5,(float const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoostParams(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[7]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 6); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvBoostParams__SWIG_0(self, args); - } - if (argc == 6) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_int(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_float, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoostParams__SWIG_1(self, args); - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvBoostParams'.\n" - " Possible C/C++ prototypes are:\n" - " CvBoostParams()\n" - " CvBoostParams(int,int,double,int,bool,float const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvBoostParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostParams *arg1 = (CvBoostParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvBoostParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBoostParams" "', argument " "1"" of type '" "CvBoostParams *""'"); - } - arg1 = reinterpret_cast< CvBoostParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvBoostParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvBoostParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvBoostTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvBoostTree")) SWIG_fail; - { - try { - result = (CvBoostTree *)new CvBoostTree(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostTree, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvBoostTree(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvBoostTree",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBoostTree" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvBoost *arg4 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = reinterpret_cast< CvDTreeTrainData * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_train" "', argument " "4"" of type '" "CvBoost *""'"); - } - arg4 = reinterpret_cast< CvBoost * >(argp4); - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_scale(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoostTree_scale",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_scale" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoostTree_scale" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - { - try { - (arg1)->scale(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_read__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvBoost *arg4 = (CvBoost *) 0 ; - CvDTreeTrainData *arg5 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvBoostTree_read",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_read" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_read" "', argument " "4"" of type '" "CvBoost *""'"); - } - arg4 = reinterpret_cast< CvBoost * >(argp4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "CvBoostTree_read" "', argument " "5"" of type '" "CvDTreeTrainData *""'"); - } - arg5 = reinterpret_cast< CvDTreeTrainData * >(argp5); - { - try { - (arg1)->read(arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoostTree_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_clear" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvDTreeParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvDTreeParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvBoostTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoostTree_train" "', argument " "9"" of type '" "CvDTreeParams""'"); - } else { - CvDTreeParams * temp = reinterpret_cast< CvDTreeParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoostTree_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoostTree_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvDTreeTrainData *arg2 = (CvDTreeTrainData *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoostTree_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_train" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_train" "', argument " "2"" of type '" "CvDTreeTrainData *""'"); - } - arg2 = reinterpret_cast< CvDTreeTrainData * >(argp2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (bool)(arg1)->train(arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[10]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 9); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_7(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_6(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_0(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_5(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_4(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_3(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvDTreeParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_train__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvBoostTree_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvBoostTree *,CvDTreeTrainData *,CvMat const *,CvBoost *)\n" - " train(CvBoostTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvDTreeParams)\n" - " train(CvBoostTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvBoostTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvBoostTree *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvBoostTree *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " train(CvBoostTree *,CvMat const *,int,CvMat const *)\n" - " train(CvBoostTree *,CvDTreeTrainData *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_read__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoostTree_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_read" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_read__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoostTree *arg1 = (CvBoostTree *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - CvDTreeTrainData *arg4 = (CvDTreeTrainData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoostTree_read",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoostTree, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoostTree_read" "', argument " "1"" of type '" "CvBoostTree *""'"); - } - arg1 = reinterpret_cast< CvBoostTree * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoostTree_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoostTree_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoostTree_read" "', argument " "4"" of type '" "CvDTreeTrainData *""'"); - } - arg4 = reinterpret_cast< CvDTreeTrainData * >(argp4); - { - try { - (arg1)->read(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoostTree_read(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_read__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_read__SWIG_2(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoostTree, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvFileStorage, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvFileNode, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvDTreeTrainData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoostTree_read__SWIG_0(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvBoostTree_read'.\n" - " Possible C/C++ prototypes are:\n" - " read(CvBoostTree *,CvFileStorage *,CvFileNode *,CvBoost *,CvDTreeTrainData *)\n" - " read(CvBoostTree *,CvFileStorage *,CvFileNode *)\n" - " read(CvBoostTree *,CvFileStorage *,CvFileNode *,CvDTreeTrainData *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *CvBoostTree_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvBoostTree, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvBoost")) SWIG_fail; - { - try { - result = (CvBoost *)new CvBoost(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvBoost(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvBoost",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvBoost" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvBoostParams arg8 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - void *argp8 ; - int res8 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:new_CvBoost",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - res8 = SWIG_ConvertPtr(obj7, &argp8, SWIGTYPE_p_CvBoostParams, 0 | 0); - if (!SWIG_IsOK(res8)) { - SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "new_CvBoost" "', argument " "8"" of type '" "CvBoostParams""'"); - } - if (!argp8) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "new_CvBoost" "', argument " "8"" of type '" "CvBoostParams""'"); - } else { - CvBoostParams * temp = reinterpret_cast< CvBoostParams * >(argp8); - arg8 = *temp; - if (SWIG_IsNewObj(res8)) delete temp; - } - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:new_CvBoost",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:new_CvBoost",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:new_CvBoost",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvBoost",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - CvMat *arg3 = (CvMat *) 0 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvBoost *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvBoost",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvBoost" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (CvBoost *)new CvBoost((CvMat const *)arg1,arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoost, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvBoost(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[9]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 8); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvBoost__SWIG_0(self, args); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_6(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_5(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_4(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_3(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_2(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[7], 0, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvBoost__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvBoost'.\n" - " Possible C/C++ prototypes are:\n" - " CvBoost()\n" - " CvBoost(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvBoostParams)\n" - " CvBoost(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " CvBoost(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " CvBoost(CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " CvBoost(CvMat const *,int,CvMat const *,CvMat const *)\n" - " CvBoost(CvMat const *,int,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvBoostParams arg9 ; - bool arg10 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - bool val10 ; - int ecode10 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - PyObject * obj9 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvBoostParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } else { - CvBoostParams * temp = reinterpret_cast< CvBoostParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - ecode10 = SWIG_AsVal_bool(obj9, &val10); - if (!SWIG_IsOK(ecode10)) { - SWIG_exception_fail(SWIG_ArgError(ecode10), "in method '" "CvBoost_train" "', argument " "10"" of type '" "bool""'"); - } - arg10 = static_cast< bool >(val10); - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9,arg10); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - CvBoostParams arg9 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - void *argp9 ; - int res9 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - PyObject * obj8 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - res9 = SWIG_ConvertPtr(obj8, &argp9, SWIGTYPE_p_CvBoostParams, 0 | 0); - if (!SWIG_IsOK(res9)) { - SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } - if (!argp9) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "9"" of type '" "CvBoostParams""'"); - } else { - CvBoostParams * temp = reinterpret_cast< CvBoostParams * >(argp9); - arg9 = *temp; - if (SWIG_IsNewObj(res9)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8,arg9); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - CvMat *arg8 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - bool freearg8 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - PyObject * obj7 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - arg8 = (CvMat*)PyObject_to_CvArr(obj7, &freearg8); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7,(CvMat const *)arg8); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - { - if(arg8!=NULL && freearg8){ - cvReleaseData( arg8 ); - cvFree(&(arg8)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - CvMat *arg7 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - bool freearg7 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - arg7 = (CvMat*)PyObject_to_CvArr(obj6, &freearg7); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6,(CvMat const *)arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - { - if(arg7!=NULL && freearg7){ - cvReleaseData( arg7 ); - cvFree(&(arg7)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5,(CvMat const *)arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_6(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (bool)(arg1)->train((CvMat const *)arg2,arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_7(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvBoostParams arg3 ; - bool arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - bool val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoost_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvBoostParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } else { - CvBoostParams * temp = reinterpret_cast< CvBoostParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - ecode4 = SWIG_AsVal_bool(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvBoost_train" "', argument " "4"" of type '" "bool""'"); - } - arg4 = static_cast< bool >(val4); - { - try { - result = (bool)(arg1)->train(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_8(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - CvBoostParams arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoost_train",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_CvBoostParams, 0 | 0); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } - if (!argp3) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvBoost_train" "', argument " "3"" of type '" "CvBoostParams""'"); - } else { - CvBoostParams * temp = reinterpret_cast< CvBoostParams * >(argp3); - arg3 = *temp; - if (SWIG_IsNewObj(res3)) delete temp; - } - } - { - try { - result = (bool)(arg1)->train(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train__SWIG_9(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoost_train",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_train" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_train" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - { - try { - result = (bool)(arg1)->train(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[11]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 10); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_9(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_8(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_6(self, args); - } - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[2], 0, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_train__SWIG_7(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_5(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_4(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_3(self, args); - } - } - } - } - } - } - } - } - if (argc == 8) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_2(self, args); - } - } - } - } - } - } - } - } - } - if (argc == 9) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_train__SWIG_1(self, args); - } - } - } - } - } - } - } - } - } - } - if (argc == 10) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[5], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[8], 0, SWIGTYPE_p_CvBoostParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[9], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_train__SWIG_0(self, args); - } - } - } - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvBoost_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvBoost *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvBoostParams,bool)\n" - " train(CvBoost *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvBoostParams)\n" - " train(CvBoost *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvBoost *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvBoost *,CvMat const *,int,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvBoost *,CvMat const *,int,CvMat const *,CvMat const *)\n" - " train(CvBoost *,CvMat const *,int,CvMat const *)\n" - " train(CvBoost *,CvMLData *,CvBoostParams,bool)\n" - " train(CvBoost *,CvMLData *,CvBoostParams)\n" - " train(CvBoost *,CvMLData *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSlice arg5 ; - bool arg6 ; - bool arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - CvSlice temp5 ; - bool val6 ; - int ecode6 = 0 ; - bool val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvBoost_predict",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if (PyTuple_Check(obj4)) - { - if (!PyArg_ParseTuple(obj4,"ii", & temp5.start_index, & temp5.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg5 = temp5; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj4, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg5 = *ptr; - } - } - ecode6 = SWIG_AsVal_bool(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvBoost_predict" "', argument " "6"" of type '" "bool""'"); - } - arg6 = static_cast< bool >(val6); - ecode7 = SWIG_AsVal_bool(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvBoost_predict" "', argument " "7"" of type '" "bool""'"); - } - arg7 = static_cast< bool >(val7); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSlice arg5 ; - bool arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - CvSlice temp5 ; - bool val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvBoost_predict",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if (PyTuple_Check(obj4)) - { - if (!PyArg_ParseTuple(obj4,"ii", & temp5.start_index, & temp5.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg5 = temp5; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj4, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg5 = *ptr; - } - } - ecode6 = SWIG_AsVal_bool(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "CvBoost_predict" "', argument " "6"" of type '" "bool""'"); - } - arg6 = static_cast< bool >(val6); - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvSlice arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - CvSlice temp5 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvBoost_predict",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - if (PyTuple_Check(obj4)) - { - if (!PyArg_ParseTuple(obj4,"ii", & temp5.start_index, & temp5.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg5 = temp5; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj4, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg5 = *ptr; - } - } - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoost_predict",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoost_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2,(CvMat const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict__SWIG_5(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoost_predict",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_predict" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - result = (float)((CvBoost const *)arg1)->predict((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_predict(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[8]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 7); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_5(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_4(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_3(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_predict__SWIG_2(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_predict__SWIG_1(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[4], 0, SWIGTYPE_p_CvSlice, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[5], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_predict__SWIG_0(self, args); - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvBoost_predict'.\n" - " Possible C/C++ prototypes are:\n" - " predict(CvBoost const *,CvMat const *,CvMat const *,CvMat *,CvSlice,bool,bool)\n" - " predict(CvBoost const *,CvMat const *,CvMat const *,CvMat *,CvSlice,bool)\n" - " predict(CvBoost const *,CvMat const *,CvMat const *,CvMat *,CvSlice)\n" - " predict(CvBoost const *,CvMat const *,CvMat const *,CvMat *)\n" - " predict(CvBoost const *,CvMat const *,CvMat const *)\n" - " predict(CvBoost const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_calc_error__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - vector< float > *arg4 = (vector< float > *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - void *argp4 = 0 ; - int res4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvBoost_calc_error",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_calc_error" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_vectorT_float_t, 0 | 0 ); - if (!SWIG_IsOK(res4)) { - SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "CvBoost_calc_error" "', argument " "4"" of type '" "vector< float > *""'"); - } - arg4 = reinterpret_cast< vector< float > * >(argp4); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_calc_error__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvMLData *arg2 = (CvMLData *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoost_calc_error",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_calc_error" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_calc_error" "', argument " "2"" of type '" "CvMLData *""'"); - } - arg2 = reinterpret_cast< CvMLData * >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvBoost_calc_error" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - result = (float)(arg1)->calc_error(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_calc_error(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_calc_error__SWIG_1(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMLData, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_vectorT_float_t, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_calc_error__SWIG_0(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvBoost_calc_error'.\n" - " Possible C/C++ prototypes are:\n" - " calc_error(CvBoost *,CvMLData *,int,vector< float > *)\n" - " calc_error(CvBoost *,CvMLData *,int)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_prune(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvSlice arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - CvSlice temp2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoost_prune",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_prune" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - if (PyTuple_Check(obj1)) - { - if (!PyArg_ParseTuple(obj1,"ii", & temp2.start_index, & temp2.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - arg2 = temp2; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr (obj1, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - arg2 = *ptr; - } - } - { - try { - (arg1)->prune(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_clear" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoost_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_write" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvBoost const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvBoost_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_read" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvBoost_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvBoost_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_active_vars__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvBoost_get_active_vars",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_active_vars" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvBoost_get_active_vars" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - { - try { - result = (CvMat *)(arg1)->get_active_vars(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_active_vars__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_active_vars",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_active_vars" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_active_vars(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_active_vars(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvBoost_get_active_vars__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvBoost, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_bool(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvBoost_get_active_vars__SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvBoost_get_active_vars'.\n" - " Possible C/C++ prototypes are:\n" - " get_active_vars(CvBoost *,bool)\n" - " get_active_vars(CvBoost *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_weak_predictors(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvSeq *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_weak_predictors",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_weak_predictors" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvSeq *)(arg1)->get_weak_predictors(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvSeq, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_weights(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_weights",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_weights" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_weights(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_subtree_weights(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_subtree_weights",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_subtree_weights" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_subtree_weights(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_weak_response(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_weak_response",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_weak_response" "', argument " "1"" of type '" "CvBoost *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_weak_response(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_params(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvBoostParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_params",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_params" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvBoostParams *) &((CvBoost const *)arg1)->get_params(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvBoostParams, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvBoost_get_data(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvBoost *arg1 = (CvBoost *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvDTreeTrainData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvBoost_get_data",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvBoost, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvBoost_get_data" "', argument " "1"" of type '" "CvBoost const *""'"); - } - arg1 = reinterpret_cast< CvBoost * >(argp1); - { - try { - result = (CvDTreeTrainData *)((CvBoost const *)arg1)->get_data(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvDTreeTrainData, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvBoost_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvBoost, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP_TrainParams__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvANN_MLP_TrainParams")) SWIG_fail; - { - try { - result = (CvANN_MLP_TrainParams *)new CvANN_MLP_TrainParams(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP_TrainParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP_TrainParams__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria arg1 ; - int arg2 ; - double arg3 ; - double arg4 ; - CvTermCriteria temp1 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvANN_MLP_TrainParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvANN_MLP_TrainParams",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"iid", & temp1.type, & temp1.max_iter, & temp1.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - result = (CvANN_MLP_TrainParams *)new CvANN_MLP_TrainParams(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP_TrainParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP_TrainParams__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTermCriteria arg1 ; - int arg2 ; - double arg3 ; - CvTermCriteria temp1 ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvANN_MLP_TrainParams *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvANN_MLP_TrainParams",&obj0,&obj1,&obj2)) SWIG_fail; - { - if (PyTuple_Check(obj0)) - { - if (!PyArg_ParseTuple(obj0,"iid", & temp1.type, & temp1.max_iter, & temp1.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - arg1 = temp1; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr (obj0, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - arg1 = *ptr; - } - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP_TrainParams" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = (CvANN_MLP_TrainParams *)new CvANN_MLP_TrainParams(arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP_TrainParams, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP_TrainParams(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvANN_MLP_TrainParams__SWIG_0(self, args); - } - if (argc == 3) { - int _v; - int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP_TrainParams__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - int res = SWIG_ConvertPtr(argv[0], 0, SWIGTYPE_p_CvTermCriteria, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP_TrainParams__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvANN_MLP_TrainParams'.\n" - " Possible C/C++ prototypes are:\n" - " CvANN_MLP_TrainParams()\n" - " CvANN_MLP_TrainParams(CvTermCriteria,int,double,double)\n" - " CvANN_MLP_TrainParams(CvTermCriteria,int,double)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvANN_MLP_TrainParams(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvANN_MLP_TrainParams",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvANN_MLP_TrainParams" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_term_crit_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - CvTermCriteria *arg2 = (CvTermCriteria *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_term_crit_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_term_crit_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_TrainParams_term_crit_set" "', argument " "2"" of type '" "CvTermCriteria *""'"); - } - arg2 = reinterpret_cast< CvTermCriteria * >(argp2); - if (arg1) (arg1)->term_crit = *arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_term_crit_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTermCriteria *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_term_crit_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_term_crit_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (CvTermCriteria *)& ((arg1)->term_crit); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTermCriteria, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_train_method_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_train_method_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_train_method_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_train_method_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->train_method = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_train_method_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_train_method_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_train_method_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (int) ((arg1)->train_method); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_bp_dw_scale_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_bp_dw_scale_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_dw_scale_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_bp_dw_scale_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->bp_dw_scale = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_bp_dw_scale_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_bp_dw_scale_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_dw_scale_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->bp_dw_scale); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_bp_moment_scale_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_bp_moment_scale_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_moment_scale_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_bp_moment_scale_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->bp_moment_scale = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_bp_moment_scale_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_bp_moment_scale_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_bp_moment_scale_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->bp_moment_scale); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw0_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_rp_dw0_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw0_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw0_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rp_dw0 = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw0_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_rp_dw0_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw0_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->rp_dw0); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_plus_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_rp_dw_plus_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_plus_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_plus_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rp_dw_plus = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_plus_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_rp_dw_plus_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_plus_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->rp_dw_plus); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_minus_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_rp_dw_minus_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_minus_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_minus_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rp_dw_minus = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_minus_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_rp_dw_minus_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_minus_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->rp_dw_minus); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_min_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_rp_dw_min_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_min_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_min_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rp_dw_min = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_min_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_rp_dw_min_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_min_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->rp_dw_min); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_max_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - double arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - double val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_TrainParams_rp_dw_max_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_max_set" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - ecode2 = SWIG_AsVal_double(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_TrainParams_rp_dw_max_set" "', argument " "2"" of type '" "double""'"); - } - arg2 = static_cast< double >(val2); - if (arg1) (arg1)->rp_dw_max = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_TrainParams_rp_dw_max_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP_TrainParams *arg1 = (CvANN_MLP_TrainParams *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - double result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_TrainParams_rp_dw_max_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_TrainParams_rp_dw_max_get" "', argument " "1"" of type '" "CvANN_MLP_TrainParams *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP_TrainParams * >(argp1); - result = (double) ((arg1)->rp_dw_max); - resultobj = SWIG_From_double(static_cast< double >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvANN_MLP_TrainParams_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvANN_MLP_TrainParams, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvANN_MLP")) SWIG_fail; - { - try { - result = (CvANN_MLP *)new CvANN_MLP(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - double arg3 ; - double arg4 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - CvANN_MLP *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:new_CvANN_MLP",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_CvANN_MLP" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - double arg3 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - double val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - CvANN_MLP *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:new_CvANN_MLP",&obj0,&obj1,&obj2)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_double(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_CvANN_MLP" "', argument " "3"" of type '" "double""'"); - } - arg3 = static_cast< double >(val3); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1,arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - int arg2 ; - bool freearg1 = false ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvANN_MLP *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvANN_MLP",&obj0,&obj1)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvANN_MLP" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - bool freearg1 = false ; - PyObject * obj0 = 0 ; - CvANN_MLP *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvANN_MLP",&obj0)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - try { - result = (CvANN_MLP *)new CvANN_MLP((CvMat const *)arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_NEW | 0 ); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvANN_MLP(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[5]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 4); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvANN_MLP__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_4(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_3(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvANN_MLP__SWIG_1(self, args); - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvANN_MLP'.\n" - " Possible C/C++ prototypes are:\n" - " CvANN_MLP()\n" - " CvANN_MLP(CvMat const *,int,double,double)\n" - " CvANN_MLP(CvMat const *,int,double)\n" - " CvANN_MLP(CvMat const *,int)\n" - " CvANN_MLP(CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvANN_MLP(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvANN_MLP",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvANN_MLP" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_create__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - double arg4 ; - double arg5 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - double val5 ; - int ecode5 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvANN_MLP_create",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvANN_MLP_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvANN_MLP_create" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - ecode5 = SWIG_AsVal_double(obj4, &val5); - if (!SWIG_IsOK(ecode5)) { - SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "CvANN_MLP_create" "', argument " "5"" of type '" "double""'"); - } - arg5 = static_cast< double >(val5); - { - try { - (arg1)->create((CvMat const *)arg2,arg3,arg4,arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_create__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - double arg4 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - double val4 ; - int ecode4 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvANN_MLP_create",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvANN_MLP_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_double(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "CvANN_MLP_create" "', argument " "4"" of type '" "double""'"); - } - arg4 = static_cast< double >(val4); - { - try { - (arg1)->create((CvMat const *)arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_create__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvANN_MLP_create",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvANN_MLP_create" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - (arg1)->create((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_create__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_create",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_create" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - try { - (arg1)->create((CvMat const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_create(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[6]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 5); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_3(self, args); - } - } - } - if (argc == 3) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_2(self, args); - } - } - } - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_1(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[2], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[3], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_double(argv[4], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_create__SWIG_0(self, args); - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvANN_MLP_create'.\n" - " Possible C/C++ prototypes are:\n" - " create(CvANN_MLP *,CvMat const *,int,double,double)\n" - " create(CvANN_MLP *,CvMat const *,int,double)\n" - " create(CvANN_MLP *,CvMat const *,int)\n" - " create(CvANN_MLP *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_train__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvANN_MLP_TrainParams arg6 ; - int arg7 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - int val7 ; - int ecode7 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - PyObject * obj6 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOOO:CvANN_MLP_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } else { - CvANN_MLP_TrainParams * temp = reinterpret_cast< CvANN_MLP_TrainParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - ecode7 = SWIG_AsVal_int(obj6, &val7); - if (!SWIG_IsOK(ecode7)) { - SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "CvANN_MLP_train" "', argument " "7"" of type '" "int""'"); - } - arg7 = static_cast< int >(val7); - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_train__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - CvANN_MLP_TrainParams arg6 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - void *argp6 ; - int res6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:CvANN_MLP_train",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_CvANN_MLP_TrainParams, 0 | 0); - if (!SWIG_IsOK(res6)) { - SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } - if (!argp6) { - SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "CvANN_MLP_train" "', argument " "6"" of type '" "CvANN_MLP_TrainParams""'"); - } else { - CvANN_MLP_TrainParams * temp = reinterpret_cast< CvANN_MLP_TrainParams * >(argp6); - arg6 = *temp; - if (SWIG_IsNewObj(res6)) delete temp; - } - } - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_train__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - CvMat *arg5 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - bool freearg5 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO:CvANN_MLP_train",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4,(CvMat const *)arg5); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_train__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvMat *arg4 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - bool freearg4 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OOOO:CvANN_MLP_train",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_train" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - arg4 = (CvMat*)PyObject_to_CvArr(obj3, &freearg4); - } - { - try { - result = (int)(arg1)->train((CvMat const *)arg2,(CvMat const *)arg3,(CvMat const *)arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - { - if(arg4!=NULL && freearg4){ - cvReleaseData( arg4 ); - cvFree(&(arg4)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_train(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[8]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 7); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 4) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_3(self, args); - } - } - } - } - } - if (argc == 5) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_2(self, args); - } - } - } - } - } - } - if (argc == 6) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvANN_MLP_TrainParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_1(self, args); - } - } - } - } - } - } - } - if (argc == 7) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_CvANN_MLP, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_CvMat, 0); - _v = SWIG_CheckState(res); - if (_v) { - int res = SWIG_ConvertPtr(argv[5], 0, SWIGTYPE_p_CvANN_MLP_TrainParams, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_int(argv[6], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_CvANN_MLP_train__SWIG_0(self, args); - } - } - } - } - } - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'CvANN_MLP_train'.\n" - " Possible C/C++ prototypes are:\n" - " train(CvANN_MLP *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvANN_MLP_TrainParams,int)\n" - " train(CvANN_MLP *,CvMat const *,CvMat const *,CvMat const *,CvMat const *,CvANN_MLP_TrainParams)\n" - " train(CvANN_MLP *,CvMat const *,CvMat const *,CvMat const *,CvMat const *)\n" - " train(CvANN_MLP *,CvMat const *,CvMat const *,CvMat const *)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_predict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool freearg2 = false ; - bool freearg3 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvANN_MLP_predict",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_predict" "', argument " "1"" of type '" "CvANN_MLP const *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - { - try { - result = (float)((CvANN_MLP const *)arg1)->predict((CvMat const *)arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_float(static_cast< float >(result)); - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_clear(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_clear",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_clear" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - try { - (arg1)->clear(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_read(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - CvFileNode *arg3 = (CvFileNode *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvANN_MLP_read",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_read" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_read" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_CvFileNode, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_read" "', argument " "3"" of type '" "CvFileNode *""'"); - } - arg3 = reinterpret_cast< CvFileNode * >(argp3); - { - try { - (arg1)->read(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - CvFileStorage *arg2 = (CvFileStorage *) 0 ; - char *arg3 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int res3 ; - char *buf3 = 0 ; - int alloc3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvANN_MLP_write",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_write" "', argument " "1"" of type '" "CvANN_MLP const *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvFileStorage, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvANN_MLP_write" "', argument " "2"" of type '" "CvFileStorage *""'"); - } - arg2 = reinterpret_cast< CvFileStorage * >(argp2); - res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "CvANN_MLP_write" "', argument " "3"" of type '" "char const *""'"); - } - arg3 = reinterpret_cast< char * >(buf3); - { - try { - ((CvANN_MLP const *)arg1)->write(arg2,(char const *)arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return resultobj; -fail: - if (alloc3 == SWIG_NEWOBJ) delete[] buf3; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_get_layer_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_get_layer_count",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_get_layer_count" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - try { - result = (int)(arg1)->get_layer_count(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_get_layer_sizes(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvANN_MLP_get_layer_sizes",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_get_layer_sizes" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_layer_sizes(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvANN_MLP_get_weights(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvANN_MLP *arg1 = (CvANN_MLP *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - double *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvANN_MLP_get_weights",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvANN_MLP, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvANN_MLP_get_weights" "', argument " "1"" of type '" "CvANN_MLP *""'"); - } - arg1 = reinterpret_cast< CvANN_MLP * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvANN_MLP_get_weights" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (double *)(arg1)->get_weights(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_double, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvANN_MLP_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvANN_MLP, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_cvRandMVNormal(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat *arg1 = (CvMat *) 0 ; - CvMat *arg2 = (CvMat *) 0 ; - CvMat *arg3 = (CvMat *) 0 ; - CvRNG *arg4 = (CvRNG *) 0 ; - bool freearg1 = false ; - bool freearg2 = false ; - bool freearg3 = false ; - void *vptr4 ; - CvRNG_Wrapper *wrapper4 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO|O:cvRandMVNormal",&obj0,&obj1,&obj2,&obj3)) SWIG_fail; - { - arg1 = (CvMat*)PyObject_to_CvArr(obj0, &freearg1); - } - { - arg2 = (CvMat*)PyObject_to_CvArr(obj1, &freearg2); - } - { - arg3 = (CvMat*)PyObject_to_CvArr(obj2, &freearg3); - } - if (obj3) { - { - if(SWIG_ConvertPtr(obj3, &vptr4, SWIGTYPE_p_CvRNG_Wrapper, 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper4 = (CvRNG_Wrapper *) vptr4; - arg4 = wrapper4->ptr(); - } - } - { - try { - cvRandMVNormal(arg1,arg2,arg3,arg4); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return resultobj; -fail: - { - if(arg1!=NULL && freearg1){ - cvReleaseData( arg1 ); - cvFree(&(arg1)); - } - } - { - if(arg2!=NULL && freearg2){ - cvReleaseData( arg2 ); - cvFree(&(arg2)); - } - } - { - if(arg3!=NULL && freearg3){ - cvReleaseData( arg3 ); - cvFree(&(arg3)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvRandGaussMixture(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMat **arg1 ; - CvMat **arg2 ; - float *arg3 ; - int arg4 ; - CvMat *arg5 = (CvMat *) 0 ; - CvMat *arg6 = (CvMat *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - void *argp3 = 0 ; - int res3 = 0 ; - int val4 ; - int ecode4 = 0 ; - bool freearg5 = false ; - bool freearg6 = false ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOO|O:cvRandGaussMixture",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "cvRandGaussMixture" "', argument " "1"" of type '" "CvMat *[]""'"); - } - arg1 = reinterpret_cast< CvMat ** >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvRandGaussMixture" "', argument " "2"" of type '" "CvMat *[]""'"); - } - arg2 = reinterpret_cast< CvMat ** >(argp2); - res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_float, 0 | 0 ); - if (!SWIG_IsOK(res3)) { - SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "cvRandGaussMixture" "', argument " "3"" of type '" "float []""'"); - } - arg3 = reinterpret_cast< float * >(argp3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvRandGaussMixture" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - { - arg5 = (CvMat*)PyObject_to_CvArr(obj4, &freearg5); - } - if (obj5) { - { - arg6 = (CvMat*)PyObject_to_CvArr(obj5, &freearg6); - } - } - { - try { - cvRandGaussMixture(arg1,arg2,arg3,arg4,arg5,arg6); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return resultobj; -fail: - { - if(arg5!=NULL && freearg5){ - cvReleaseData( arg5 ); - cvFree(&(arg5)); - } - } - { - if(arg6!=NULL && freearg6){ - cvReleaseData( arg6 ); - cvFree(&(arg6)); - } - } - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateTestSet__varargs__(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *varargs) { - PyObject *resultobj = 0; - int arg1 ; - CvMat **arg2 = (CvMat **) 0 ; - int arg3 ; - int arg4 ; - CvMat **arg5 = (CvMat **) 0 ; - int arg6 ; - void *arg7 = 0 ; - int val1 ; - int ecode1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - int val3 ; - int ecode3 = 0 ; - int val4 ; - int ecode4 = 0 ; - void *argp5 = 0 ; - int res5 = 0 ; - int val6 ; - int ecode6 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - PyObject * obj3 = 0 ; - PyObject * obj4 = 0 ; - PyObject * obj5 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOOOOO:cvCreateTestSet",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "cvCreateTestSet" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "cvCreateTestSet" "', argument " "2"" of type '" "CvMat **""'"); - } - arg2 = reinterpret_cast< CvMat ** >(argp2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "cvCreateTestSet" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - ecode4 = SWIG_AsVal_int(obj3, &val4); - if (!SWIG_IsOK(ecode4)) { - SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "cvCreateTestSet" "', argument " "4"" of type '" "int""'"); - } - arg4 = static_cast< int >(val4); - res5 = SWIG_ConvertPtr(obj4, &argp5,SWIGTYPE_p_p_CvMat, 0 | 0 ); - if (!SWIG_IsOK(res5)) { - SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "cvCreateTestSet" "', argument " "5"" of type '" "CvMat **""'"); - } - arg5 = reinterpret_cast< CvMat ** >(argp5); - ecode6 = SWIG_AsVal_int(obj5, &val6); - if (!SWIG_IsOK(ecode6)) { - SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "cvCreateTestSet" "', argument " "6"" of type '" "int""'"); - } - arg6 = static_cast< int >(val6); - { - try { - cvCreateTestSet(arg1,arg2,arg3,arg4,arg5,arg6,arg7); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_cvCreateTestSet(PyObject *self, PyObject *args) { - PyObject *resultobj; - PyObject *varargs; - PyObject *newargs; - - newargs = PyTuple_GetSlice(args,0,6); - varargs = PyTuple_GetSlice(args,6,PyTuple_Size(args)+1); - resultobj = _wrap_cvCreateTestSet__varargs__(self,newargs,varargs); - Py_XDECREF(newargs); - Py_XDECREF(varargs); - return resultobj; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTrainTestSplit")) SWIG_fail; - { - try { - result = (CvTrainTestSplit *)new CvTrainTestSplit(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - bool arg2 ; - int val1 ; - int ecode1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvTrainTestSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvTrainTestSplit",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvTrainTestSplit" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvTrainTestSplit" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - { - try { - result = (CvTrainTestSplit *)new CvTrainTestSplit(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - int arg1 ; - int val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvTrainTestSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvTrainTestSplit",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_int(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvTrainTestSplit" "', argument " "1"" of type '" "int""'"); - } - arg1 = static_cast< int >(val1); - { - try { - result = (CvTrainTestSplit *)new CvTrainTestSplit(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit__SWIG_3(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - float arg1 ; - bool arg2 ; - float val1 ; - int ecode1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - CvTrainTestSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:new_CvTrainTestSplit",&obj0,&obj1)) SWIG_fail; - ecode1 = SWIG_AsVal_float(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvTrainTestSplit" "', argument " "1"" of type '" "float""'"); - } - arg1 = static_cast< float >(val1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_CvTrainTestSplit" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - { - try { - result = (CvTrainTestSplit *)new CvTrainTestSplit(arg1,arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit__SWIG_4(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - float arg1 ; - float val1 ; - int ecode1 = 0 ; - PyObject * obj0 = 0 ; - CvTrainTestSplit *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:new_CvTrainTestSplit",&obj0)) SWIG_fail; - ecode1 = SWIG_AsVal_float(obj0, &val1); - if (!SWIG_IsOK(ecode1)) { - SWIG_exception_fail(SWIG_ArgError(ecode1), "in method '" "new_CvTrainTestSplit" "', argument " "1"" of type '" "float""'"); - } - arg1 = static_cast< float >(val1); - { - try { - result = (CvTrainTestSplit *)new CvTrainTestSplit(arg1); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit(PyObject *self, PyObject *args) { - int argc; - PyObject *argv[3]; - int ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = (int)PyObject_Length(args); - for (ii = 0; (ii < argc) && (ii < 2); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 0) { - return _wrap_new_CvTrainTestSplit__SWIG_0(self, args); - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvTrainTestSplit__SWIG_2(self, args); - } - } - if (argc == 1) { - int _v; - { - int res = SWIG_AsVal_float(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvTrainTestSplit__SWIG_4(self, args); - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_int(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvTrainTestSplit__SWIG_1(self, args); - } - } - } - if (argc == 2) { - int _v; - { - int res = SWIG_AsVal_float(argv[0], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - { - int res = SWIG_AsVal_bool(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_new_CvTrainTestSplit__SWIG_3(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number of arguments for overloaded function 'new_CvTrainTestSplit'.\n" - " Possible C/C++ prototypes are:\n" - " CvTrainTestSplit()\n" - " CvTrainTestSplit(int,bool)\n" - " CvTrainTestSplit(int)\n" - " CvTrainTestSplit(float,bool)\n" - " CvTrainTestSplit(float)\n"); - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_train_sample_part_mode_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_mode_set" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_train_sample_part_mode_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->train_sample_part_mode = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_train_sample_part_mode_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_mode_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - result = (int) ((arg1)->train_sample_part_mode); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_mode_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_class_part_mode_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_mode_set" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_class_part_mode_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->class_part_mode = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_mode_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_class_part_mode_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_mode_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - result = (int) ((arg1)->class_part_mode); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_mix_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - bool arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - bool val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_mix_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_mix_set" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - ecode2 = SWIG_AsVal_bool(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_mix_set" "', argument " "2"" of type '" "bool""'"); - } - arg2 = static_cast< bool >(val2); - if (arg1) (arg1)->mix = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_mix_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - bool result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_mix_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_mix_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - result = (bool) ((arg1)->mix); - resultobj = SWIG_From_bool(static_cast< bool >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTrainTestSplit_class_part *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_class_part_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - result = (CvTrainTestSplit_class_part *) ((arg1)->class_part); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvTrainTestSplit_train_sample_part *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_train_sample_part_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_get" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - result = (CvTrainTestSplit_train_sample_part *)& ((arg1)->train_sample_part); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTrainTestSplit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit *arg1 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTrainTestSplit",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTrainTestSplit" "', argument " "1"" of type '" "CvTrainTestSplit *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTrainTestSplit_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTrainTestSplit, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - int *arg2 = (int *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_class_part_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_count_set" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_class_part * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTrainTestSplit_class_part_count_set" "', argument " "2"" of type '" "int *""'"); - } - arg2 = reinterpret_cast< int * >(argp2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_class_part_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_count_get" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_class_part * >(argp1); - result = (int *) ((arg1)->count); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_int, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_portion_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - float *arg2 = (float *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_class_part_portion_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_portion_set" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_class_part * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_float, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvTrainTestSplit_class_part_portion_set" "', argument " "2"" of type '" "float *""'"); - } - arg2 = reinterpret_cast< float * >(argp2); - if (arg1) (arg1)->portion = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_class_part_portion_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_class_part_portion_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_class_part_portion_get" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_class_part * >(argp1); - result = (float *) ((arg1)->portion); - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_float, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit_class_part(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_class_part *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTrainTestSplit_class_part")) SWIG_fail; - { - try { - result = (CvTrainTestSplit_class_part *)new CvTrainTestSplit_class_part(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_class_part, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTrainTestSplit_class_part(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_class_part *arg1 = (CvTrainTestSplit_class_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTrainTestSplit_class_part",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_class_part, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTrainTestSplit_class_part" "', argument " "1"" of type '" "CvTrainTestSplit_class_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_class_part * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTrainTestSplit_class_part_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTrainTestSplit_class_part, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_count_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_train_sample_part_count_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_count_set" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_train_sample_part * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_train_sample_part_count_set" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - if (arg1) (arg1)->count = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_count_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_train_sample_part_count_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_count_get" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_train_sample_part * >(argp1); - result = (int) ((arg1)->count); - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_portion_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - float arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - float val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvTrainTestSplit_train_sample_part_portion_set",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_portion_set" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_train_sample_part * >(argp1); - ecode2 = SWIG_AsVal_float(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvTrainTestSplit_train_sample_part_portion_set" "', argument " "2"" of type '" "float""'"); - } - arg2 = static_cast< float >(val2); - if (arg1) (arg1)->portion = arg2; - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvTrainTestSplit_train_sample_part_portion_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - float result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvTrainTestSplit_train_sample_part_portion_get",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvTrainTestSplit_train_sample_part_portion_get" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_train_sample_part * >(argp1); - result = (float) ((arg1)->portion); - resultobj = SWIG_From_float(static_cast< float >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_new_CvTrainTestSplit_train_sample_part(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_train_sample_part *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvTrainTestSplit_train_sample_part")) SWIG_fail; - { - try { - result = (CvTrainTestSplit_train_sample_part *)new CvTrainTestSplit_train_sample_part(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvTrainTestSplit_train_sample_part, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvTrainTestSplit_train_sample_part(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvTrainTestSplit_train_sample_part *arg1 = (CvTrainTestSplit_train_sample_part *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvTrainTestSplit_train_sample_part",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvTrainTestSplit_train_sample_part, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvTrainTestSplit_train_sample_part" "', argument " "1"" of type '" "CvTrainTestSplit_train_sample_part *""'"); - } - arg1 = reinterpret_cast< CvTrainTestSplit_train_sample_part * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvTrainTestSplit_train_sample_part_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvTrainTestSplit_train_sample_part, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -SWIGINTERN PyObject *_wrap_new_CvMLData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)":new_CvMLData")) SWIG_fail; - { - try { - result = (CvMLData *)new CvMLData(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMLData, SWIG_POINTER_NEW | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_delete_CvMLData(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:delete_CvMLData",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, SWIG_POINTER_DISOWN | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_CvMLData" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - delete arg1; - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_read_csv(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_read_csv",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_read_csv" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMLData_read_csv" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - result = (int)(arg1)->read_csv((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_values(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_values",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_values" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_values(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_responses(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_responses",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_responses" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_responses(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_missing(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_missing",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_missing" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_missing(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_set_response_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_set_response_idx",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_response_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_set_response_idx" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - (arg1)->set_response_idx(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_response_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_response_idx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_response_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (int)(arg1)->get_response_idx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_train_sample_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_train_sample_idx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_train_sample_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_train_sample_idx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_test_sample_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_test_sample_idx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_test_sample_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_test_sample_idx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_mix_train_and_test_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_mix_train_and_test_idx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_mix_train_and_test_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - (arg1)->mix_train_and_test_idx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_set_train_test_split(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - CvTrainTestSplit *arg2 = (CvTrainTestSplit *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - void *argp2 = 0 ; - int res2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_set_train_test_split",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_train_test_split" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_CvTrainTestSplit, 0 | 0 ); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMLData_set_train_test_split" "', argument " "2"" of type '" "CvTrainTestSplit const *""'"); - } - arg2 = reinterpret_cast< CvTrainTestSplit * >(argp2); - { - try { - (arg1)->set_train_test_split((CvTrainTestSplit const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_var_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_var_idx",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_var_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_idx(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_chahge_var_idx(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - bool arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - bool val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMLData_chahge_var_idx",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_chahge_var_idx" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_chahge_var_idx" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_bool(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMLData_chahge_var_idx" "', argument " "3"" of type '" "bool""'"); - } - arg3 = static_cast< bool >(val3); - { - try { - (arg1)->chahge_var_idx(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_var_types(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - CvMat *result = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_var_types",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_var_types" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (CvMat *)(arg1)->get_var_types(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_CvMat, 0 | 0 ); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_var_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - int result; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_get_var_type",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_var_type" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_get_var_type" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - { - try { - result = (int)(arg1)->get_var_type(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_int(static_cast< int >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_set_var_types(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - char *arg2 = (char *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - int res2 ; - char *buf2 = 0 ; - int alloc2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_set_var_types",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_var_types" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); - if (!SWIG_IsOK(res2)) { - SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "CvMLData_set_var_types" "', argument " "2"" of type '" "char const *""'"); - } - arg2 = reinterpret_cast< char * >(buf2); - { - try { - (arg1)->set_var_types((char const *)arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return resultobj; -fail: - if (alloc2 == SWIG_NEWOBJ) delete[] buf2; - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_change_var_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - int arg2 ; - int arg3 ; - void *argp1 = 0 ; - int res1 = 0 ; - int val2 ; - int ecode2 = 0 ; - int val3 ; - int ecode3 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - PyObject * obj2 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OOO:CvMLData_change_var_type",&obj0,&obj1,&obj2)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_change_var_type" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - ecode2 = SWIG_AsVal_int(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_change_var_type" "', argument " "2"" of type '" "int""'"); - } - arg2 = static_cast< int >(val2); - ecode3 = SWIG_AsVal_int(obj2, &val3); - if (!SWIG_IsOK(ecode3)) { - SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "CvMLData_change_var_type" "', argument " "3"" of type '" "int""'"); - } - arg3 = static_cast< int >(val3); - { - try { - (arg1)->change_var_type(arg2,arg3); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_set_delimiter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - char arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - char val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_set_delimiter",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_delimiter" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - ecode2 = SWIG_AsVal_char(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_set_delimiter" "', argument " "2"" of type '" "char""'"); - } - arg2 = static_cast< char >(val2); - { - try { - (arg1)->set_delimiter(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_delimiter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_delimiter",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_delimiter" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (char)(arg1)->get_delimiter(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_char(static_cast< char >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_set_miss_ch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - char arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - char val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if (!PyArg_ParseTuple(args,(char *)"OO:CvMLData_set_miss_ch",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_set_miss_ch" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - ecode2 = SWIG_AsVal_char(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "CvMLData_set_miss_ch" "', argument " "2"" of type '" "char""'"); - } - arg2 = static_cast< char >(val2); - { - try { - (arg1)->set_miss_ch(arg2); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_Py_Void(); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_CvMLData_get_miss_ch(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - CvMLData *arg1 = (CvMLData *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - char result; - - if (!PyArg_ParseTuple(args,(char *)"O:CvMLData_get_miss_ch",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_CvMLData, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "CvMLData_get_miss_ch" "', argument " "1"" of type '" "CvMLData *""'"); - } - arg1 = reinterpret_cast< CvMLData * >(argp1); - { - try { - result = (char)(arg1)->get_miss_ch(); - } - catch (...) - { - SWIG_fail; - } - } - resultobj = SWIG_From_char(static_cast< char >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *CvMLData_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; - SWIG_TypeNewClientData(SWIGTYPE_p_CvMLData, SWIG_NewClientData(obj)); - return SWIG_Py_Void(); -} - -static PyMethodDef SwigMethods[] = { - { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL}, - { (char *)"new_CvRNG_Wrapper", _wrap_new_CvRNG_Wrapper, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper_ptr", _wrap_CvRNG_Wrapper_ptr, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper_ref", _wrap_CvRNG_Wrapper_ref, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper___eq__", _wrap_CvRNG_Wrapper___eq__, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper___ne__", _wrap_CvRNG_Wrapper___ne__, METH_VARARGS, NULL}, - { (char *)"delete_CvRNG_Wrapper", _wrap_delete_CvRNG_Wrapper, METH_VARARGS, NULL}, - { (char *)"CvRNG_Wrapper_swigregister", CvRNG_Wrapper_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvSubdiv2DEdge_Wrapper", _wrap_new_CvSubdiv2DEdge_Wrapper, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper_ptr", _wrap_CvSubdiv2DEdge_Wrapper_ptr, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper_ref", _wrap_CvSubdiv2DEdge_Wrapper_ref, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper___eq__", _wrap_CvSubdiv2DEdge_Wrapper___eq__, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper___ne__", _wrap_CvSubdiv2DEdge_Wrapper___ne__, METH_VARARGS, NULL}, - { (char *)"delete_CvSubdiv2DEdge_Wrapper", _wrap_delete_CvSubdiv2DEdge_Wrapper, METH_VARARGS, NULL}, - { (char *)"CvSubdiv2DEdge_Wrapper_swigregister", CvSubdiv2DEdge_Wrapper_swigregister, METH_VARARGS, NULL}, - { (char *)"CvVectors_type_set", _wrap_CvVectors_type_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_type_get", _wrap_CvVectors_type_get, METH_VARARGS, NULL}, - { (char *)"CvVectors_dims_set", _wrap_CvVectors_dims_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_dims_get", _wrap_CvVectors_dims_get, METH_VARARGS, NULL}, - { (char *)"CvVectors_count_set", _wrap_CvVectors_count_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_count_get", _wrap_CvVectors_count_get, METH_VARARGS, NULL}, - { (char *)"CvVectors_next_set", _wrap_CvVectors_next_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_next_get", _wrap_CvVectors_next_get, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_get", _wrap_CvVectors_data_get, METH_VARARGS, NULL}, - { (char *)"new_CvVectors", _wrap_new_CvVectors, METH_VARARGS, NULL}, - { (char *)"delete_CvVectors", _wrap_delete_CvVectors, METH_VARARGS, NULL}, - { (char *)"CvVectors_swigregister", CvVectors_swigregister, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_ptr_set", _wrap_CvVectors_data_ptr_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_ptr_get", _wrap_CvVectors_data_ptr_get, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_fl_set", _wrap_CvVectors_data_fl_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_fl_get", _wrap_CvVectors_data_fl_get, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_db_set", _wrap_CvVectors_data_db_set, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_db_get", _wrap_CvVectors_data_db_get, METH_VARARGS, NULL}, - { (char *)"new_CvVectors_data", _wrap_new_CvVectors_data, METH_VARARGS, NULL}, - { (char *)"delete_CvVectors_data", _wrap_delete_CvVectors_data, METH_VARARGS, NULL}, - { (char *)"CvVectors_data_swigregister", CvVectors_data_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvStatModel", _wrap_new_CvStatModel, METH_VARARGS, NULL}, - { (char *)"delete_CvStatModel", _wrap_delete_CvStatModel, METH_VARARGS, NULL}, - { (char *)"CvStatModel_clear", _wrap_CvStatModel_clear, METH_VARARGS, NULL}, - { (char *)"CvStatModel_save", _wrap_CvStatModel_save, METH_VARARGS, NULL}, - { (char *)"CvStatModel_load", _wrap_CvStatModel_load, METH_VARARGS, NULL}, - { (char *)"CvStatModel_write", _wrap_CvStatModel_write, METH_VARARGS, NULL}, - { (char *)"CvStatModel_read", _wrap_CvStatModel_read, METH_VARARGS, NULL}, - { (char *)"CvStatModel_swigregister", CvStatModel_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvParamGrid", _wrap_new_CvParamGrid, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_check", _wrap_CvParamGrid_check, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_min_val_set", _wrap_CvParamGrid_min_val_set, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_min_val_get", _wrap_CvParamGrid_min_val_get, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_max_val_set", _wrap_CvParamGrid_max_val_set, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_max_val_get", _wrap_CvParamGrid_max_val_get, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_step_set", _wrap_CvParamGrid_step_set, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_step_get", _wrap_CvParamGrid_step_get, METH_VARARGS, NULL}, - { (char *)"delete_CvParamGrid", _wrap_delete_CvParamGrid, METH_VARARGS, NULL}, - { (char *)"CvParamGrid_swigregister", CvParamGrid_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_CvNormalBayesClassifier", _wrap_delete_CvNormalBayesClassifier, METH_VARARGS, NULL}, - { (char *)"new_CvNormalBayesClassifier", _wrap_new_CvNormalBayesClassifier, METH_VARARGS, NULL}, - { (char *)"CvNormalBayesClassifier_train", _wrap_CvNormalBayesClassifier_train, METH_VARARGS, NULL}, - { (char *)"CvNormalBayesClassifier_predict", _wrap_CvNormalBayesClassifier_predict, METH_VARARGS, NULL}, - { (char *)"CvNormalBayesClassifier_clear", _wrap_CvNormalBayesClassifier_clear, METH_VARARGS, NULL}, - { (char *)"CvNormalBayesClassifier_write", _wrap_CvNormalBayesClassifier_write, METH_VARARGS, NULL}, - { (char *)"CvNormalBayesClassifier_read", _wrap_CvNormalBayesClassifier_read, METH_VARARGS, NULL}, - { (char *)"CvNormalBayesClassifier_swigregister", CvNormalBayesClassifier_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_CvKNearest", _wrap_delete_CvKNearest, METH_VARARGS, NULL}, - { (char *)"new_CvKNearest", _wrap_new_CvKNearest, METH_VARARGS, NULL}, - { (char *)"CvKNearest_train", _wrap_CvKNearest_train, METH_VARARGS, NULL}, - { (char *)"CvKNearest_find_nearest", _wrap_CvKNearest_find_nearest, METH_VARARGS, NULL}, - { (char *)"CvKNearest_clear", _wrap_CvKNearest_clear, METH_VARARGS, NULL}, - { (char *)"CvKNearest_get_max_k", _wrap_CvKNearest_get_max_k, METH_VARARGS, NULL}, - { (char *)"CvKNearest_get_var_count", _wrap_CvKNearest_get_var_count, METH_VARARGS, NULL}, - { (char *)"CvKNearest_get_sample_count", _wrap_CvKNearest_get_sample_count, METH_VARARGS, NULL}, - { (char *)"CvKNearest_is_regression", _wrap_CvKNearest_is_regression, METH_VARARGS, NULL}, - { (char *)"CvKNearest_swigregister", CvKNearest_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvSVMParams", _wrap_new_CvSVMParams, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_svm_type_set", _wrap_CvSVMParams_svm_type_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_svm_type_get", _wrap_CvSVMParams_svm_type_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_kernel_type_set", _wrap_CvSVMParams_kernel_type_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_kernel_type_get", _wrap_CvSVMParams_kernel_type_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_degree_set", _wrap_CvSVMParams_degree_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_degree_get", _wrap_CvSVMParams_degree_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_gamma_set", _wrap_CvSVMParams_gamma_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_gamma_get", _wrap_CvSVMParams_gamma_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_coef0_set", _wrap_CvSVMParams_coef0_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_coef0_get", _wrap_CvSVMParams_coef0_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_C_set", _wrap_CvSVMParams_C_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_C_get", _wrap_CvSVMParams_C_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_nu_set", _wrap_CvSVMParams_nu_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_nu_get", _wrap_CvSVMParams_nu_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_p_set", _wrap_CvSVMParams_p_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_p_get", _wrap_CvSVMParams_p_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_class_weights_set", _wrap_CvSVMParams_class_weights_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_class_weights_get", _wrap_CvSVMParams_class_weights_get, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_term_crit_set", _wrap_CvSVMParams_term_crit_set, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_term_crit_get", _wrap_CvSVMParams_term_crit_get, METH_VARARGS, NULL}, - { (char *)"delete_CvSVMParams", _wrap_delete_CvSVMParams, METH_VARARGS, NULL}, - { (char *)"CvSVMParams_swigregister", CvSVMParams_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvSVMKernel", _wrap_new_CvSVMKernel, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_create", _wrap_CvSVMKernel_create, METH_VARARGS, NULL}, - { (char *)"delete_CvSVMKernel", _wrap_delete_CvSVMKernel, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_clear", _wrap_CvSVMKernel_clear, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc", _wrap_CvSVMKernel_calc, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_params_set", _wrap_CvSVMKernel_params_set, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_params_get", _wrap_CvSVMKernel_params_get, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_func_set", _wrap_CvSVMKernel_calc_func_set, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_func_get", _wrap_CvSVMKernel_calc_func_get, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_non_rbf_base", _wrap_CvSVMKernel_calc_non_rbf_base, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_linear", _wrap_CvSVMKernel_calc_linear, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_rbf", _wrap_CvSVMKernel_calc_rbf, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_poly", _wrap_CvSVMKernel_calc_poly, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_calc_sigmoid", _wrap_CvSVMKernel_calc_sigmoid, METH_VARARGS, NULL}, - { (char *)"CvSVMKernel_swigregister", CvSVMKernel_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_prev_set", _wrap_CvSVMKernelRow_prev_set, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_prev_get", _wrap_CvSVMKernelRow_prev_get, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_next_set", _wrap_CvSVMKernelRow_next_set, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_next_get", _wrap_CvSVMKernelRow_next_get, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_data_set", _wrap_CvSVMKernelRow_data_set, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_data_get", _wrap_CvSVMKernelRow_data_get, METH_VARARGS, NULL}, - { (char *)"new_CvSVMKernelRow", _wrap_new_CvSVMKernelRow, METH_VARARGS, NULL}, - { (char *)"delete_CvSVMKernelRow", _wrap_delete_CvSVMKernelRow, METH_VARARGS, NULL}, - { (char *)"CvSVMKernelRow_swigregister", CvSVMKernelRow_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_obj_set", _wrap_CvSVMSolutionInfo_obj_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_obj_get", _wrap_CvSVMSolutionInfo_obj_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_rho_set", _wrap_CvSVMSolutionInfo_rho_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_rho_get", _wrap_CvSVMSolutionInfo_rho_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_upper_bound_p_set", _wrap_CvSVMSolutionInfo_upper_bound_p_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_upper_bound_p_get", _wrap_CvSVMSolutionInfo_upper_bound_p_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_upper_bound_n_set", _wrap_CvSVMSolutionInfo_upper_bound_n_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_upper_bound_n_get", _wrap_CvSVMSolutionInfo_upper_bound_n_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_r_set", _wrap_CvSVMSolutionInfo_r_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_r_get", _wrap_CvSVMSolutionInfo_r_get, METH_VARARGS, NULL}, - { (char *)"new_CvSVMSolutionInfo", _wrap_new_CvSVMSolutionInfo, METH_VARARGS, NULL}, - { (char *)"delete_CvSVMSolutionInfo", _wrap_delete_CvSVMSolutionInfo, METH_VARARGS, NULL}, - { (char *)"CvSVMSolutionInfo_swigregister", CvSVMSolutionInfo_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvSVMSolver", _wrap_new_CvSVMSolver, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_create", _wrap_CvSVMSolver_create, METH_VARARGS, NULL}, - { (char *)"delete_CvSVMSolver", _wrap_delete_CvSVMSolver, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_clear", _wrap_CvSVMSolver_clear, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_solve_generic", _wrap_CvSVMSolver_solve_generic, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_solve_c_svc", _wrap_CvSVMSolver_solve_c_svc, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_solve_nu_svc", _wrap_CvSVMSolver_solve_nu_svc, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_solve_one_class", _wrap_CvSVMSolver_solve_one_class, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_solve_eps_svr", _wrap_CvSVMSolver_solve_eps_svr, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_solve_nu_svr", _wrap_CvSVMSolver_solve_nu_svr, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row_base", _wrap_CvSVMSolver_get_row_base, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row", _wrap_CvSVMSolver_get_row, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_sample_count_set", _wrap_CvSVMSolver_sample_count_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_sample_count_get", _wrap_CvSVMSolver_sample_count_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_var_count_set", _wrap_CvSVMSolver_var_count_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_var_count_get", _wrap_CvSVMSolver_var_count_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_cache_size_set", _wrap_CvSVMSolver_cache_size_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_cache_size_get", _wrap_CvSVMSolver_cache_size_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_cache_line_size_set", _wrap_CvSVMSolver_cache_line_size_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_cache_line_size_get", _wrap_CvSVMSolver_cache_line_size_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_samples_set", _wrap_CvSVMSolver_samples_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_samples_get", _wrap_CvSVMSolver_samples_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_params_set", _wrap_CvSVMSolver_params_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_params_get", _wrap_CvSVMSolver_params_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_storage_set", _wrap_CvSVMSolver_storage_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_storage_get", _wrap_CvSVMSolver_storage_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_lru_list_set", _wrap_CvSVMSolver_lru_list_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_lru_list_get", _wrap_CvSVMSolver_lru_list_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_rows_set", _wrap_CvSVMSolver_rows_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_rows_get", _wrap_CvSVMSolver_rows_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_alpha_count_set", _wrap_CvSVMSolver_alpha_count_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_alpha_count_get", _wrap_CvSVMSolver_alpha_count_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_G_set", _wrap_CvSVMSolver_G_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_G_get", _wrap_CvSVMSolver_G_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_alpha_set", _wrap_CvSVMSolver_alpha_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_alpha_get", _wrap_CvSVMSolver_alpha_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_alpha_status_set", _wrap_CvSVMSolver_alpha_status_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_alpha_status_get", _wrap_CvSVMSolver_alpha_status_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_y_set", _wrap_CvSVMSolver_y_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_y_get", _wrap_CvSVMSolver_y_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_b_set", _wrap_CvSVMSolver_b_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_b_get", _wrap_CvSVMSolver_b_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_buf_set", _wrap_CvSVMSolver_buf_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_buf_get", _wrap_CvSVMSolver_buf_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_eps_set", _wrap_CvSVMSolver_eps_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_eps_get", _wrap_CvSVMSolver_eps_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_max_iter_set", _wrap_CvSVMSolver_max_iter_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_max_iter_get", _wrap_CvSVMSolver_max_iter_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_C_set", _wrap_CvSVMSolver_C_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_C_get", _wrap_CvSVMSolver_C_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_kernel_set", _wrap_CvSVMSolver_kernel_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_kernel_get", _wrap_CvSVMSolver_kernel_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_select_working_set_func_set", _wrap_CvSVMSolver_select_working_set_func_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_select_working_set_func_get", _wrap_CvSVMSolver_select_working_set_func_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_calc_rho_func_set", _wrap_CvSVMSolver_calc_rho_func_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_calc_rho_func_get", _wrap_CvSVMSolver_calc_rho_func_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row_func_set", _wrap_CvSVMSolver_get_row_func_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row_func_get", _wrap_CvSVMSolver_get_row_func_get, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_select_working_set", _wrap_CvSVMSolver_select_working_set, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_select_working_set_nu_svm", _wrap_CvSVMSolver_select_working_set_nu_svm, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_calc_rho", _wrap_CvSVMSolver_calc_rho, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_calc_rho_nu_svm", _wrap_CvSVMSolver_calc_rho_nu_svm, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row_svc", _wrap_CvSVMSolver_get_row_svc, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row_one_class", _wrap_CvSVMSolver_get_row_one_class, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_get_row_svr", _wrap_CvSVMSolver_get_row_svr, METH_VARARGS, NULL}, - { (char *)"CvSVMSolver_swigregister", CvSVMSolver_swigregister, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_rho_set", _wrap_CvSVMDecisionFunc_rho_set, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_rho_get", _wrap_CvSVMDecisionFunc_rho_get, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_sv_count_set", _wrap_CvSVMDecisionFunc_sv_count_set, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_sv_count_get", _wrap_CvSVMDecisionFunc_sv_count_get, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_alpha_set", _wrap_CvSVMDecisionFunc_alpha_set, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_alpha_get", _wrap_CvSVMDecisionFunc_alpha_get, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_sv_index_set", _wrap_CvSVMDecisionFunc_sv_index_set, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_sv_index_get", _wrap_CvSVMDecisionFunc_sv_index_get, METH_VARARGS, NULL}, - { (char *)"new_CvSVMDecisionFunc", _wrap_new_CvSVMDecisionFunc, METH_VARARGS, NULL}, - { (char *)"delete_CvSVMDecisionFunc", _wrap_delete_CvSVMDecisionFunc, METH_VARARGS, NULL}, - { (char *)"CvSVMDecisionFunc_swigregister", CvSVMDecisionFunc_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_CvSVM", _wrap_delete_CvSVM, METH_VARARGS, NULL}, - { (char *)"new_CvSVM", _wrap_new_CvSVM, METH_VARARGS, NULL}, - { (char *)"CvSVM_train", _wrap_CvSVM_train, METH_VARARGS, NULL}, - { (char *)"CvSVM_train_auto", _wrap_CvSVM_train_auto, METH_VARARGS, NULL}, - { (char *)"CvSVM_predict", _wrap_CvSVM_predict, METH_VARARGS, NULL}, - { (char *)"CvSVM_get_support_vector_count", _wrap_CvSVM_get_support_vector_count, METH_VARARGS, NULL}, - { (char *)"CvSVM_get_support_vector", _wrap_CvSVM_get_support_vector, METH_VARARGS, NULL}, - { (char *)"CvSVM_get_params", _wrap_CvSVM_get_params, METH_VARARGS, NULL}, - { (char *)"CvSVM_clear", _wrap_CvSVM_clear, METH_VARARGS, NULL}, - { (char *)"CvSVM_get_default_grid", _wrap_CvSVM_get_default_grid, METH_VARARGS, NULL}, - { (char *)"CvSVM_write", _wrap_CvSVM_write, METH_VARARGS, NULL}, - { (char *)"CvSVM_read", _wrap_CvSVM_read, METH_VARARGS, NULL}, - { (char *)"CvSVM_get_var_count", _wrap_CvSVM_get_var_count, METH_VARARGS, NULL}, - { (char *)"CvSVM_swigregister", CvSVM_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvEMParams", _wrap_new_CvEMParams, METH_VARARGS, NULL}, - { (char *)"CvEMParams_nclusters_set", _wrap_CvEMParams_nclusters_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_nclusters_get", _wrap_CvEMParams_nclusters_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_cov_mat_type_set", _wrap_CvEMParams_cov_mat_type_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_cov_mat_type_get", _wrap_CvEMParams_cov_mat_type_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_start_step_set", _wrap_CvEMParams_start_step_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_start_step_get", _wrap_CvEMParams_start_step_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_probs_set", _wrap_CvEMParams_probs_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_probs_get", _wrap_CvEMParams_probs_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_weights_set", _wrap_CvEMParams_weights_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_weights_get", _wrap_CvEMParams_weights_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_means_set", _wrap_CvEMParams_means_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_means_get", _wrap_CvEMParams_means_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_covs_set", _wrap_CvEMParams_covs_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_covs_get", _wrap_CvEMParams_covs_get, METH_VARARGS, NULL}, - { (char *)"CvEMParams_term_crit_set", _wrap_CvEMParams_term_crit_set, METH_VARARGS, NULL}, - { (char *)"CvEMParams_term_crit_get", _wrap_CvEMParams_term_crit_get, METH_VARARGS, NULL}, - { (char *)"delete_CvEMParams", _wrap_delete_CvEMParams, METH_VARARGS, NULL}, - { (char *)"CvEMParams_swigregister", CvEMParams_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvEM", _wrap_new_CvEM, METH_VARARGS, NULL}, - { (char *)"delete_CvEM", _wrap_delete_CvEM, METH_VARARGS, NULL}, - { (char *)"CvEM_train", _wrap_CvEM_train, METH_VARARGS, NULL}, - { (char *)"CvEM_predict", _wrap_CvEM_predict, METH_VARARGS, NULL}, - { (char *)"CvEM_clear", _wrap_CvEM_clear, METH_VARARGS, NULL}, - { (char *)"CvEM_get_nclusters", _wrap_CvEM_get_nclusters, METH_VARARGS, NULL}, - { (char *)"CvEM_get_means", _wrap_CvEM_get_means, METH_VARARGS, NULL}, - { (char *)"CvEM_get_weights", _wrap_CvEM_get_weights, METH_VARARGS, NULL}, - { (char *)"CvEM_get_probs", _wrap_CvEM_get_probs, METH_VARARGS, NULL}, - { (char *)"CvEM_get_log_likelihood", _wrap_CvEM_get_log_likelihood, METH_VARARGS, NULL}, - { (char *)"CvEM_get_covs", _wrap_CvEM_get_covs, METH_VARARGS, NULL}, - { (char *)"CvEM_swigregister", CvEM_swigregister, METH_VARARGS, NULL}, - { (char *)"CvPair16u32s_u_set", _wrap_CvPair16u32s_u_set, METH_VARARGS, NULL}, - { (char *)"CvPair16u32s_u_get", _wrap_CvPair16u32s_u_get, METH_VARARGS, NULL}, - { (char *)"CvPair16u32s_i_set", _wrap_CvPair16u32s_i_set, METH_VARARGS, NULL}, - { (char *)"CvPair16u32s_i_get", _wrap_CvPair16u32s_i_get, METH_VARARGS, NULL}, - { (char *)"new_CvPair16u32s", _wrap_new_CvPair16u32s, METH_VARARGS, NULL}, - { (char *)"delete_CvPair16u32s", _wrap_delete_CvPair16u32s, METH_VARARGS, NULL}, - { (char *)"CvPair16u32s_swigregister", CvPair16u32s_swigregister, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_var_idx_set", _wrap_CvDTreeSplit_var_idx_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_var_idx_get", _wrap_CvDTreeSplit_var_idx_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_condensed_idx_set", _wrap_CvDTreeSplit_condensed_idx_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_condensed_idx_get", _wrap_CvDTreeSplit_condensed_idx_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_inversed_set", _wrap_CvDTreeSplit_inversed_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_inversed_get", _wrap_CvDTreeSplit_inversed_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_quality_set", _wrap_CvDTreeSplit_quality_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_quality_get", _wrap_CvDTreeSplit_quality_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_next_set", _wrap_CvDTreeSplit_next_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_next_get", _wrap_CvDTreeSplit_next_get, METH_VARARGS, NULL}, - { (char *)"new_CvDTreeSplit", _wrap_new_CvDTreeSplit, METH_VARARGS, NULL}, - { (char *)"delete_CvDTreeSplit", _wrap_delete_CvDTreeSplit, METH_VARARGS, NULL}, - { (char *)"CvDTreeSplit_swigregister", CvDTreeSplit_swigregister, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_class_idx_set", _wrap_CvDTreeNode_class_idx_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_class_idx_get", _wrap_CvDTreeNode_class_idx_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_Tn_set", _wrap_CvDTreeNode_Tn_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_Tn_get", _wrap_CvDTreeNode_Tn_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_value_set", _wrap_CvDTreeNode_value_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_value_get", _wrap_CvDTreeNode_value_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_parent_set", _wrap_CvDTreeNode_parent_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_parent_get", _wrap_CvDTreeNode_parent_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_left_set", _wrap_CvDTreeNode_left_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_left_get", _wrap_CvDTreeNode_left_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_right_set", _wrap_CvDTreeNode_right_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_right_get", _wrap_CvDTreeNode_right_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_split_set", _wrap_CvDTreeNode_split_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_split_get", _wrap_CvDTreeNode_split_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_sample_count_set", _wrap_CvDTreeNode_sample_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_sample_count_get", _wrap_CvDTreeNode_sample_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_depth_set", _wrap_CvDTreeNode_depth_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_depth_get", _wrap_CvDTreeNode_depth_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_num_valid_set", _wrap_CvDTreeNode_num_valid_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_num_valid_get", _wrap_CvDTreeNode_num_valid_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_offset_set", _wrap_CvDTreeNode_offset_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_offset_get", _wrap_CvDTreeNode_offset_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_buf_idx_set", _wrap_CvDTreeNode_buf_idx_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_buf_idx_get", _wrap_CvDTreeNode_buf_idx_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_maxlr_set", _wrap_CvDTreeNode_maxlr_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_maxlr_get", _wrap_CvDTreeNode_maxlr_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_complexity_set", _wrap_CvDTreeNode_complexity_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_complexity_get", _wrap_CvDTreeNode_complexity_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_alpha_set", _wrap_CvDTreeNode_alpha_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_alpha_get", _wrap_CvDTreeNode_alpha_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_node_risk_set", _wrap_CvDTreeNode_node_risk_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_node_risk_get", _wrap_CvDTreeNode_node_risk_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_tree_risk_set", _wrap_CvDTreeNode_tree_risk_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_tree_risk_get", _wrap_CvDTreeNode_tree_risk_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_tree_error_set", _wrap_CvDTreeNode_tree_error_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_tree_error_get", _wrap_CvDTreeNode_tree_error_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_cv_Tn_set", _wrap_CvDTreeNode_cv_Tn_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_cv_Tn_get", _wrap_CvDTreeNode_cv_Tn_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_cv_node_risk_set", _wrap_CvDTreeNode_cv_node_risk_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_cv_node_risk_get", _wrap_CvDTreeNode_cv_node_risk_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_cv_node_error_set", _wrap_CvDTreeNode_cv_node_error_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_cv_node_error_get", _wrap_CvDTreeNode_cv_node_error_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_get_num_valid", _wrap_CvDTreeNode_get_num_valid, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_set_num_valid", _wrap_CvDTreeNode_set_num_valid, METH_VARARGS, NULL}, - { (char *)"new_CvDTreeNode", _wrap_new_CvDTreeNode, METH_VARARGS, NULL}, - { (char *)"delete_CvDTreeNode", _wrap_delete_CvDTreeNode, METH_VARARGS, NULL}, - { (char *)"CvDTreeNode_swigregister", CvDTreeNode_swigregister, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_max_categories_set", _wrap_CvDTreeParams_max_categories_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_max_categories_get", _wrap_CvDTreeParams_max_categories_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_max_depth_set", _wrap_CvDTreeParams_max_depth_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_max_depth_get", _wrap_CvDTreeParams_max_depth_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_min_sample_count_set", _wrap_CvDTreeParams_min_sample_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_min_sample_count_get", _wrap_CvDTreeParams_min_sample_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_cv_folds_set", _wrap_CvDTreeParams_cv_folds_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_cv_folds_get", _wrap_CvDTreeParams_cv_folds_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_use_surrogates_set", _wrap_CvDTreeParams_use_surrogates_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_use_surrogates_get", _wrap_CvDTreeParams_use_surrogates_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_use_1se_rule_set", _wrap_CvDTreeParams_use_1se_rule_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_use_1se_rule_get", _wrap_CvDTreeParams_use_1se_rule_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_truncate_pruned_tree_set", _wrap_CvDTreeParams_truncate_pruned_tree_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_truncate_pruned_tree_get", _wrap_CvDTreeParams_truncate_pruned_tree_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_regression_accuracy_set", _wrap_CvDTreeParams_regression_accuracy_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_regression_accuracy_get", _wrap_CvDTreeParams_regression_accuracy_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_priors_set", _wrap_CvDTreeParams_priors_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_priors_get", _wrap_CvDTreeParams_priors_get, METH_VARARGS, NULL}, - { (char *)"new_CvDTreeParams", _wrap_new_CvDTreeParams, METH_VARARGS, NULL}, - { (char *)"delete_CvDTreeParams", _wrap_delete_CvDTreeParams, METH_VARARGS, NULL}, - { (char *)"CvDTreeParams_swigregister", CvDTreeParams_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvDTreeTrainData", _wrap_new_CvDTreeTrainData, METH_VARARGS, NULL}, - { (char *)"delete_CvDTreeTrainData", _wrap_delete_CvDTreeTrainData, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_set_data", _wrap_CvDTreeTrainData_set_data, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_do_responses_copy", _wrap_CvDTreeTrainData_do_responses_copy, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_vectors", _wrap_CvDTreeTrainData_get_vectors, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_subsample_data", _wrap_CvDTreeTrainData_subsample_data, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_write_params", _wrap_CvDTreeTrainData_write_params, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_read_params", _wrap_CvDTreeTrainData_read_params, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_clear", _wrap_CvDTreeTrainData_clear, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_num_classes", _wrap_CvDTreeTrainData_get_num_classes, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_var_type", _wrap_CvDTreeTrainData_get_var_type, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_work_var_count", _wrap_CvDTreeTrainData_get_work_var_count, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_ord_responses", _wrap_CvDTreeTrainData_get_ord_responses, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_class_labels", _wrap_CvDTreeTrainData_get_class_labels, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_cv_labels", _wrap_CvDTreeTrainData_get_cv_labels, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_sample_indices", _wrap_CvDTreeTrainData_get_sample_indices, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_cat_var_data", _wrap_CvDTreeTrainData_get_cat_var_data, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_ord_var_data", _wrap_CvDTreeTrainData_get_ord_var_data, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_child_buf_idx", _wrap_CvDTreeTrainData_get_child_buf_idx, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_set_params", _wrap_CvDTreeTrainData_set_params, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_new_node", _wrap_CvDTreeTrainData_new_node, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_new_split_ord", _wrap_CvDTreeTrainData_new_split_ord, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_new_split_cat", _wrap_CvDTreeTrainData_new_split_cat, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_free_node_data", _wrap_CvDTreeTrainData_free_node_data, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_free_train_data", _wrap_CvDTreeTrainData_free_train_data, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_free_node", _wrap_CvDTreeTrainData_free_node, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_pred_float_buf", _wrap_CvDTreeTrainData_get_pred_float_buf, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_pred_int_buf", _wrap_CvDTreeTrainData_get_pred_int_buf, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_resp_float_buf", _wrap_CvDTreeTrainData_get_resp_float_buf, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_resp_int_buf", _wrap_CvDTreeTrainData_get_resp_int_buf, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_cv_lables_buf", _wrap_CvDTreeTrainData_get_cv_lables_buf, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_get_sample_idx_buf", _wrap_CvDTreeTrainData_get_sample_idx_buf, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_pred_float_buf_set", _wrap_CvDTreeTrainData_pred_float_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_pred_float_buf_get", _wrap_CvDTreeTrainData_pred_float_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_pred_int_buf_set", _wrap_CvDTreeTrainData_pred_int_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_pred_int_buf_get", _wrap_CvDTreeTrainData_pred_int_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_resp_float_buf_set", _wrap_CvDTreeTrainData_resp_float_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_resp_float_buf_get", _wrap_CvDTreeTrainData_resp_float_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_resp_int_buf_set", _wrap_CvDTreeTrainData_resp_int_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_resp_int_buf_get", _wrap_CvDTreeTrainData_resp_int_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cv_lables_buf_set", _wrap_CvDTreeTrainData_cv_lables_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cv_lables_buf_get", _wrap_CvDTreeTrainData_cv_lables_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_sample_idx_buf_set", _wrap_CvDTreeTrainData_sample_idx_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_sample_idx_buf_get", _wrap_CvDTreeTrainData_sample_idx_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_sample_count_set", _wrap_CvDTreeTrainData_sample_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_sample_count_get", _wrap_CvDTreeTrainData_sample_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_all_set", _wrap_CvDTreeTrainData_var_all_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_all_get", _wrap_CvDTreeTrainData_var_all_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_count_set", _wrap_CvDTreeTrainData_var_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_count_get", _wrap_CvDTreeTrainData_var_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_max_c_count_set", _wrap_CvDTreeTrainData_max_c_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_max_c_count_get", _wrap_CvDTreeTrainData_max_c_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_ord_var_count_set", _wrap_CvDTreeTrainData_ord_var_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_ord_var_count_get", _wrap_CvDTreeTrainData_ord_var_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_var_count_set", _wrap_CvDTreeTrainData_cat_var_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_var_count_get", _wrap_CvDTreeTrainData_cat_var_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_work_var_count_set", _wrap_CvDTreeTrainData_work_var_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_work_var_count_get", _wrap_CvDTreeTrainData_work_var_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_have_labels_set", _wrap_CvDTreeTrainData_have_labels_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_have_labels_get", _wrap_CvDTreeTrainData_have_labels_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_have_priors_set", _wrap_CvDTreeTrainData_have_priors_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_have_priors_get", _wrap_CvDTreeTrainData_have_priors_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_is_classifier_set", _wrap_CvDTreeTrainData_is_classifier_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_is_classifier_get", _wrap_CvDTreeTrainData_is_classifier_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_tflag_set", _wrap_CvDTreeTrainData_tflag_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_tflag_get", _wrap_CvDTreeTrainData_tflag_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_train_data_set", _wrap_CvDTreeTrainData_train_data_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_train_data_get", _wrap_CvDTreeTrainData_train_data_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_responses_set", _wrap_CvDTreeTrainData_responses_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_responses_get", _wrap_CvDTreeTrainData_responses_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_responses_copy_set", _wrap_CvDTreeTrainData_responses_copy_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_responses_copy_get", _wrap_CvDTreeTrainData_responses_copy_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_buf_count_set", _wrap_CvDTreeTrainData_buf_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_buf_count_get", _wrap_CvDTreeTrainData_buf_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_buf_size_set", _wrap_CvDTreeTrainData_buf_size_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_buf_size_get", _wrap_CvDTreeTrainData_buf_size_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_shared_set", _wrap_CvDTreeTrainData_shared_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_shared_get", _wrap_CvDTreeTrainData_shared_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_is_buf_16u_set", _wrap_CvDTreeTrainData_is_buf_16u_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_is_buf_16u_get", _wrap_CvDTreeTrainData_is_buf_16u_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_count_set", _wrap_CvDTreeTrainData_cat_count_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_count_get", _wrap_CvDTreeTrainData_cat_count_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_ofs_set", _wrap_CvDTreeTrainData_cat_ofs_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_ofs_get", _wrap_CvDTreeTrainData_cat_ofs_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_map_set", _wrap_CvDTreeTrainData_cat_map_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cat_map_get", _wrap_CvDTreeTrainData_cat_map_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_counts_set", _wrap_CvDTreeTrainData_counts_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_counts_get", _wrap_CvDTreeTrainData_counts_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_buf_set", _wrap_CvDTreeTrainData_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_buf_get", _wrap_CvDTreeTrainData_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_direction_set", _wrap_CvDTreeTrainData_direction_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_direction_get", _wrap_CvDTreeTrainData_direction_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_split_buf_set", _wrap_CvDTreeTrainData_split_buf_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_split_buf_get", _wrap_CvDTreeTrainData_split_buf_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_idx_set", _wrap_CvDTreeTrainData_var_idx_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_idx_get", _wrap_CvDTreeTrainData_var_idx_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_type_set", _wrap_CvDTreeTrainData_var_type_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_var_type_get", _wrap_CvDTreeTrainData_var_type_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_priors_set", _wrap_CvDTreeTrainData_priors_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_priors_get", _wrap_CvDTreeTrainData_priors_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_priors_mult_set", _wrap_CvDTreeTrainData_priors_mult_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_priors_mult_get", _wrap_CvDTreeTrainData_priors_mult_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_params_set", _wrap_CvDTreeTrainData_params_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_params_get", _wrap_CvDTreeTrainData_params_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_tree_storage_set", _wrap_CvDTreeTrainData_tree_storage_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_tree_storage_get", _wrap_CvDTreeTrainData_tree_storage_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_temp_storage_set", _wrap_CvDTreeTrainData_temp_storage_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_temp_storage_get", _wrap_CvDTreeTrainData_temp_storage_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_data_root_set", _wrap_CvDTreeTrainData_data_root_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_data_root_get", _wrap_CvDTreeTrainData_data_root_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_node_heap_set", _wrap_CvDTreeTrainData_node_heap_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_node_heap_get", _wrap_CvDTreeTrainData_node_heap_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_split_heap_set", _wrap_CvDTreeTrainData_split_heap_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_split_heap_get", _wrap_CvDTreeTrainData_split_heap_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cv_heap_set", _wrap_CvDTreeTrainData_cv_heap_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_cv_heap_get", _wrap_CvDTreeTrainData_cv_heap_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_nv_heap_set", _wrap_CvDTreeTrainData_nv_heap_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_nv_heap_get", _wrap_CvDTreeTrainData_nv_heap_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_rng_set", _wrap_CvDTreeTrainData_rng_set, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_rng_get", _wrap_CvDTreeTrainData_rng_get, METH_VARARGS, NULL}, - { (char *)"CvDTreeTrainData_swigregister", CvDTreeTrainData_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvDTree", _wrap_new_CvDTree, METH_VARARGS, NULL}, - { (char *)"delete_CvDTree", _wrap_delete_CvDTree, METH_VARARGS, NULL}, - { (char *)"CvDTree_calc_error", _wrap_CvDTree_calc_error, METH_VARARGS, NULL}, - { (char *)"CvDTree_train", _wrap_CvDTree_train, METH_VARARGS, NULL}, - { (char *)"CvDTree_predict", _wrap_CvDTree_predict, METH_VARARGS, NULL}, - { (char *)"CvDTree_get_var_importance", _wrap_CvDTree_get_var_importance, METH_VARARGS, NULL}, - { (char *)"CvDTree_clear", _wrap_CvDTree_clear, METH_VARARGS, NULL}, - { (char *)"CvDTree_read", _wrap_CvDTree_read, METH_VARARGS, NULL}, - { (char *)"CvDTree_write", _wrap_CvDTree_write, METH_VARARGS, NULL}, - { (char *)"CvDTree_get_root", _wrap_CvDTree_get_root, METH_VARARGS, NULL}, - { (char *)"CvDTree_get_pruned_tree_idx", _wrap_CvDTree_get_pruned_tree_idx, METH_VARARGS, NULL}, - { (char *)"CvDTree_get_data", _wrap_CvDTree_get_data, METH_VARARGS, NULL}, - { (char *)"CvDTree_pruned_tree_idx_set", _wrap_CvDTree_pruned_tree_idx_set, METH_VARARGS, NULL}, - { (char *)"CvDTree_pruned_tree_idx_get", _wrap_CvDTree_pruned_tree_idx_get, METH_VARARGS, NULL}, - { (char *)"CvDTree_swigregister", CvDTree_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvForestTree", _wrap_new_CvForestTree, METH_VARARGS, NULL}, - { (char *)"delete_CvForestTree", _wrap_delete_CvForestTree, METH_VARARGS, NULL}, - { (char *)"CvForestTree_get_var_count", _wrap_CvForestTree_get_var_count, METH_VARARGS, NULL}, - { (char *)"CvForestTree_train", _wrap_CvForestTree_train, METH_VARARGS, NULL}, - { (char *)"CvForestTree_read", _wrap_CvForestTree_read, METH_VARARGS, NULL}, - { (char *)"CvForestTree_swigregister", CvForestTree_swigregister, METH_VARARGS, NULL}, - { (char *)"CvRTParams_calc_var_importance_set", _wrap_CvRTParams_calc_var_importance_set, METH_VARARGS, NULL}, - { (char *)"CvRTParams_calc_var_importance_get", _wrap_CvRTParams_calc_var_importance_get, METH_VARARGS, NULL}, - { (char *)"CvRTParams_nactive_vars_set", _wrap_CvRTParams_nactive_vars_set, METH_VARARGS, NULL}, - { (char *)"CvRTParams_nactive_vars_get", _wrap_CvRTParams_nactive_vars_get, METH_VARARGS, NULL}, - { (char *)"CvRTParams_term_crit_set", _wrap_CvRTParams_term_crit_set, METH_VARARGS, NULL}, - { (char *)"CvRTParams_term_crit_get", _wrap_CvRTParams_term_crit_get, METH_VARARGS, NULL}, - { (char *)"new_CvRTParams", _wrap_new_CvRTParams, METH_VARARGS, NULL}, - { (char *)"delete_CvRTParams", _wrap_delete_CvRTParams, METH_VARARGS, NULL}, - { (char *)"CvRTParams_swigregister", CvRTParams_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvRTrees", _wrap_new_CvRTrees, METH_VARARGS, NULL}, - { (char *)"delete_CvRTrees", _wrap_delete_CvRTrees, METH_VARARGS, NULL}, - { (char *)"CvRTrees_train", _wrap_CvRTrees_train, METH_VARARGS, NULL}, - { (char *)"CvRTrees_predict", _wrap_CvRTrees_predict, METH_VARARGS, NULL}, - { (char *)"CvRTrees_predict_prob", _wrap_CvRTrees_predict_prob, METH_VARARGS, NULL}, - { (char *)"CvRTrees_clear", _wrap_CvRTrees_clear, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_var_importance", _wrap_CvRTrees_get_var_importance, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_proximity", _wrap_CvRTrees_get_proximity, METH_VARARGS, NULL}, - { (char *)"CvRTrees_calc_error", _wrap_CvRTrees_calc_error, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_train_error", _wrap_CvRTrees_get_train_error, METH_VARARGS, NULL}, - { (char *)"CvRTrees_read", _wrap_CvRTrees_read, METH_VARARGS, NULL}, - { (char *)"CvRTrees_write", _wrap_CvRTrees_write, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_active_var_mask", _wrap_CvRTrees_get_active_var_mask, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_rng", _wrap_CvRTrees_get_rng, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_tree_count", _wrap_CvRTrees_get_tree_count, METH_VARARGS, NULL}, - { (char *)"CvRTrees_get_tree", _wrap_CvRTrees_get_tree, METH_VARARGS, NULL}, - { (char *)"CvRTrees_swigregister", CvRTrees_swigregister, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_set_data", _wrap_CvERTreeTrainData_set_data, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_get_ord_var_data", _wrap_CvERTreeTrainData_get_ord_var_data, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_get_sample_indices", _wrap_CvERTreeTrainData_get_sample_indices, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_get_cv_labels", _wrap_CvERTreeTrainData_get_cv_labels, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_get_cat_var_data", _wrap_CvERTreeTrainData_get_cat_var_data, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_get_vectors", _wrap_CvERTreeTrainData_get_vectors, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_subsample_data", _wrap_CvERTreeTrainData_subsample_data, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_missing_mask_set", _wrap_CvERTreeTrainData_missing_mask_set, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_missing_mask_get", _wrap_CvERTreeTrainData_missing_mask_get, METH_VARARGS, NULL}, - { (char *)"new_CvERTreeTrainData", _wrap_new_CvERTreeTrainData, METH_VARARGS, NULL}, - { (char *)"delete_CvERTreeTrainData", _wrap_delete_CvERTreeTrainData, METH_VARARGS, NULL}, - { (char *)"CvERTreeTrainData_swigregister", CvERTreeTrainData_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvForestERTree", _wrap_new_CvForestERTree, METH_VARARGS, NULL}, - { (char *)"delete_CvForestERTree", _wrap_delete_CvForestERTree, METH_VARARGS, NULL}, - { (char *)"CvForestERTree_swigregister", CvForestERTree_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvERTrees", _wrap_new_CvERTrees, METH_VARARGS, NULL}, - { (char *)"delete_CvERTrees", _wrap_delete_CvERTrees, METH_VARARGS, NULL}, - { (char *)"CvERTrees_train", _wrap_CvERTrees_train, METH_VARARGS, NULL}, - { (char *)"CvERTrees_swigregister", CvERTrees_swigregister, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_boost_type_set", _wrap_CvBoostParams_boost_type_set, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_boost_type_get", _wrap_CvBoostParams_boost_type_get, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_weak_count_set", _wrap_CvBoostParams_weak_count_set, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_weak_count_get", _wrap_CvBoostParams_weak_count_get, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_split_criteria_set", _wrap_CvBoostParams_split_criteria_set, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_split_criteria_get", _wrap_CvBoostParams_split_criteria_get, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_weight_trim_rate_set", _wrap_CvBoostParams_weight_trim_rate_set, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_weight_trim_rate_get", _wrap_CvBoostParams_weight_trim_rate_get, METH_VARARGS, NULL}, - { (char *)"new_CvBoostParams", _wrap_new_CvBoostParams, METH_VARARGS, NULL}, - { (char *)"delete_CvBoostParams", _wrap_delete_CvBoostParams, METH_VARARGS, NULL}, - { (char *)"CvBoostParams_swigregister", CvBoostParams_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvBoostTree", _wrap_new_CvBoostTree, METH_VARARGS, NULL}, - { (char *)"delete_CvBoostTree", _wrap_delete_CvBoostTree, METH_VARARGS, NULL}, - { (char *)"CvBoostTree_scale", _wrap_CvBoostTree_scale, METH_VARARGS, NULL}, - { (char *)"CvBoostTree_clear", _wrap_CvBoostTree_clear, METH_VARARGS, NULL}, - { (char *)"CvBoostTree_train", _wrap_CvBoostTree_train, METH_VARARGS, NULL}, - { (char *)"CvBoostTree_read", _wrap_CvBoostTree_read, METH_VARARGS, NULL}, - { (char *)"CvBoostTree_swigregister", CvBoostTree_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_CvBoost", _wrap_delete_CvBoost, METH_VARARGS, NULL}, - { (char *)"new_CvBoost", _wrap_new_CvBoost, METH_VARARGS, NULL}, - { (char *)"CvBoost_train", _wrap_CvBoost_train, METH_VARARGS, NULL}, - { (char *)"CvBoost_predict", _wrap_CvBoost_predict, METH_VARARGS, NULL}, - { (char *)"CvBoost_calc_error", _wrap_CvBoost_calc_error, METH_VARARGS, NULL}, - { (char *)"CvBoost_prune", _wrap_CvBoost_prune, METH_VARARGS, NULL}, - { (char *)"CvBoost_clear", _wrap_CvBoost_clear, METH_VARARGS, NULL}, - { (char *)"CvBoost_write", _wrap_CvBoost_write, METH_VARARGS, NULL}, - { (char *)"CvBoost_read", _wrap_CvBoost_read, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_active_vars", _wrap_CvBoost_get_active_vars, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_weak_predictors", _wrap_CvBoost_get_weak_predictors, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_weights", _wrap_CvBoost_get_weights, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_subtree_weights", _wrap_CvBoost_get_subtree_weights, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_weak_response", _wrap_CvBoost_get_weak_response, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_params", _wrap_CvBoost_get_params, METH_VARARGS, NULL}, - { (char *)"CvBoost_get_data", _wrap_CvBoost_get_data, METH_VARARGS, NULL}, - { (char *)"CvBoost_swigregister", CvBoost_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvANN_MLP_TrainParams", _wrap_new_CvANN_MLP_TrainParams, METH_VARARGS, NULL}, - { (char *)"delete_CvANN_MLP_TrainParams", _wrap_delete_CvANN_MLP_TrainParams, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_term_crit_set", _wrap_CvANN_MLP_TrainParams_term_crit_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_term_crit_get", _wrap_CvANN_MLP_TrainParams_term_crit_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_train_method_set", _wrap_CvANN_MLP_TrainParams_train_method_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_train_method_get", _wrap_CvANN_MLP_TrainParams_train_method_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_bp_dw_scale_set", _wrap_CvANN_MLP_TrainParams_bp_dw_scale_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_bp_dw_scale_get", _wrap_CvANN_MLP_TrainParams_bp_dw_scale_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_bp_moment_scale_set", _wrap_CvANN_MLP_TrainParams_bp_moment_scale_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_bp_moment_scale_get", _wrap_CvANN_MLP_TrainParams_bp_moment_scale_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw0_set", _wrap_CvANN_MLP_TrainParams_rp_dw0_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw0_get", _wrap_CvANN_MLP_TrainParams_rp_dw0_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_plus_set", _wrap_CvANN_MLP_TrainParams_rp_dw_plus_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_plus_get", _wrap_CvANN_MLP_TrainParams_rp_dw_plus_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_minus_set", _wrap_CvANN_MLP_TrainParams_rp_dw_minus_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_minus_get", _wrap_CvANN_MLP_TrainParams_rp_dw_minus_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_min_set", _wrap_CvANN_MLP_TrainParams_rp_dw_min_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_min_get", _wrap_CvANN_MLP_TrainParams_rp_dw_min_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_max_set", _wrap_CvANN_MLP_TrainParams_rp_dw_max_set, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_rp_dw_max_get", _wrap_CvANN_MLP_TrainParams_rp_dw_max_get, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_TrainParams_swigregister", CvANN_MLP_TrainParams_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvANN_MLP", _wrap_new_CvANN_MLP, METH_VARARGS, NULL}, - { (char *)"delete_CvANN_MLP", _wrap_delete_CvANN_MLP, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_create", _wrap_CvANN_MLP_create, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_train", _wrap_CvANN_MLP_train, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_predict", _wrap_CvANN_MLP_predict, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_clear", _wrap_CvANN_MLP_clear, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_read", _wrap_CvANN_MLP_read, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_write", _wrap_CvANN_MLP_write, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_get_layer_count", _wrap_CvANN_MLP_get_layer_count, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_get_layer_sizes", _wrap_CvANN_MLP_get_layer_sizes, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_get_weights", _wrap_CvANN_MLP_get_weights, METH_VARARGS, NULL}, - { (char *)"CvANN_MLP_swigregister", CvANN_MLP_swigregister, METH_VARARGS, NULL}, - { (char *)"cvRandMVNormal", _wrap_cvRandMVNormal, METH_VARARGS, NULL}, - { (char *)"cvRandGaussMixture", _wrap_cvRandGaussMixture, METH_VARARGS, NULL}, - { (char *)"cvCreateTestSet", _wrap_cvCreateTestSet, METH_VARARGS, NULL}, - { (char *)"new_CvTrainTestSplit", _wrap_new_CvTrainTestSplit, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_mode_set", _wrap_CvTrainTestSplit_train_sample_part_mode_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_mode_get", _wrap_CvTrainTestSplit_train_sample_part_mode_get, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_mode_set", _wrap_CvTrainTestSplit_class_part_mode_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_mode_get", _wrap_CvTrainTestSplit_class_part_mode_get, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_mix_set", _wrap_CvTrainTestSplit_mix_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_mix_get", _wrap_CvTrainTestSplit_mix_get, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_get", _wrap_CvTrainTestSplit_class_part_get, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_get", _wrap_CvTrainTestSplit_train_sample_part_get, METH_VARARGS, NULL}, - { (char *)"delete_CvTrainTestSplit", _wrap_delete_CvTrainTestSplit, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_swigregister", CvTrainTestSplit_swigregister, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_count_set", _wrap_CvTrainTestSplit_class_part_count_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_count_get", _wrap_CvTrainTestSplit_class_part_count_get, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_portion_set", _wrap_CvTrainTestSplit_class_part_portion_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_portion_get", _wrap_CvTrainTestSplit_class_part_portion_get, METH_VARARGS, NULL}, - { (char *)"new_CvTrainTestSplit_class_part", _wrap_new_CvTrainTestSplit_class_part, METH_VARARGS, NULL}, - { (char *)"delete_CvTrainTestSplit_class_part", _wrap_delete_CvTrainTestSplit_class_part, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_class_part_swigregister", CvTrainTestSplit_class_part_swigregister, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_count_set", _wrap_CvTrainTestSplit_train_sample_part_count_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_count_get", _wrap_CvTrainTestSplit_train_sample_part_count_get, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_portion_set", _wrap_CvTrainTestSplit_train_sample_part_portion_set, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_portion_get", _wrap_CvTrainTestSplit_train_sample_part_portion_get, METH_VARARGS, NULL}, - { (char *)"new_CvTrainTestSplit_train_sample_part", _wrap_new_CvTrainTestSplit_train_sample_part, METH_VARARGS, NULL}, - { (char *)"delete_CvTrainTestSplit_train_sample_part", _wrap_delete_CvTrainTestSplit_train_sample_part, METH_VARARGS, NULL}, - { (char *)"CvTrainTestSplit_train_sample_part_swigregister", CvTrainTestSplit_train_sample_part_swigregister, METH_VARARGS, NULL}, - { (char *)"new_CvMLData", _wrap_new_CvMLData, METH_VARARGS, NULL}, - { (char *)"delete_CvMLData", _wrap_delete_CvMLData, METH_VARARGS, NULL}, - { (char *)"CvMLData_read_csv", _wrap_CvMLData_read_csv, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_values", _wrap_CvMLData_get_values, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_responses", _wrap_CvMLData_get_responses, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_missing", _wrap_CvMLData_get_missing, METH_VARARGS, NULL}, - { (char *)"CvMLData_set_response_idx", _wrap_CvMLData_set_response_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_response_idx", _wrap_CvMLData_get_response_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_train_sample_idx", _wrap_CvMLData_get_train_sample_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_test_sample_idx", _wrap_CvMLData_get_test_sample_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_mix_train_and_test_idx", _wrap_CvMLData_mix_train_and_test_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_set_train_test_split", _wrap_CvMLData_set_train_test_split, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_var_idx", _wrap_CvMLData_get_var_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_chahge_var_idx", _wrap_CvMLData_chahge_var_idx, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_var_types", _wrap_CvMLData_get_var_types, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_var_type", _wrap_CvMLData_get_var_type, METH_VARARGS, NULL}, - { (char *)"CvMLData_set_var_types", _wrap_CvMLData_set_var_types, METH_VARARGS, NULL}, - { (char *)"CvMLData_change_var_type", _wrap_CvMLData_change_var_type, METH_VARARGS, NULL}, - { (char *)"CvMLData_set_delimiter", _wrap_CvMLData_set_delimiter, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_delimiter", _wrap_CvMLData_get_delimiter, METH_VARARGS, NULL}, - { (char *)"CvMLData_set_miss_ch", _wrap_CvMLData_set_miss_ch, METH_VARARGS, NULL}, - { (char *)"CvMLData_get_miss_ch", _wrap_CvMLData_get_miss_ch, METH_VARARGS, NULL}, - { (char *)"CvMLData_swigregister", CvMLData_swigregister, METH_VARARGS, NULL}, - { NULL, NULL, 0, NULL } -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - -static void *_p_CvERTreesTo_p_CvRTrees(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvRTrees *) ((CvERTrees *) x)); -} -static void *_p_CvERTreeTrainDataTo_p_CvDTreeTrainData(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTreeTrainData *) ((CvERTreeTrainData *) x)); -} -static void *_p_CvForestERTreeTo_p_CvForestTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvForestTree *) ((CvForestERTree *) x)); -} -static void *_p_CvRTParamsTo_p_CvDTreeParams(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTreeParams *) ((CvRTParams *) x)); -} -static void *_p_CvBoostParamsTo_p_CvDTreeParams(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTreeParams *) ((CvBoostParams *) x)); -} -static void *_p_CvNormalBayesClassifierTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvNormalBayesClassifier *) x)); -} -static void *_p_CvSVMTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvSVM *) x)); -} -static void *_p_CvForestERTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvDTree *)(CvForestTree *) ((CvForestERTree *) x)); -} -static void *_p_CvANN_MLPTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvANN_MLP *) x)); -} -static void *_p_CvKNearestTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvKNearest *) x)); -} -static void *_p_CvForestTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvDTree *) ((CvForestTree *) x)); -} -static void *_p_CvRTreesTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvRTrees *) x)); -} -static void *_p_CvBoostTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvDTree *) ((CvBoostTree *) x)); -} -static void *_p_CvERTreesTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) (CvRTrees *) ((CvERTrees *) x)); -} -static void *_p_CvEMTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvEM *) x)); -} -static void *_p_CvDTreeTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvDTree *) x)); -} -static void *_p_CvBoostTo_p_CvStatModel(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvStatModel *) ((CvBoost *) x)); -} -static void *_p_CvForestERTreeTo_p_CvDTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTree *) (CvForestTree *) ((CvForestERTree *) x)); -} -static void *_p_CvForestTreeTo_p_CvDTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTree *) ((CvForestTree *) x)); -} -static void *_p_CvBoostTreeTo_p_CvDTree(void *x, int *SWIGUNUSEDPARM(newmemory)) { - return (void *)((CvDTree *) ((CvBoostTree *) x)); -} -static swig_type_info _swigt__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void = {"_m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void", "void (CvSVMKernel::*)(int,int,float const **,float const *,float *)|CvSVMKernel::Calc", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float = {"_m_CvSVMSolver__f_int_p_float_p_float_bool__p_float", "CvSVMSolver::GetRow|float *(CvSVMSolver::*)(int,float *,float *,bool)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__m_CvSVMSolver__f_r_double_r_double__void = {"_m_CvSVMSolver__f_r_double_r_double__void", "void (CvSVMSolver::*)(double &,double &)|CvSVMSolver::CalcRho", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__m_CvSVMSolver__f_r_int_r_int__bool = {"_m_CvSVMSolver__f_r_int_r_int__bool", "CvSVMSolver::SelectWorkingSet|bool (CvSVMSolver::*)(int &,int &)", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Calc = {"_p_Calc", "Calc *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CalcRho = {"_p_CalcRho", "CalcRho *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv32suf = {"_p_Cv32suf", "Cv32suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_Cv64suf = {"_p_Cv64suf", "Cv64suf *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvANN_MLP = {"_p_CvANN_MLP", "CvANN_MLP *|cv::NeuralNet_MLP *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvANN_MLP_TrainParams = {"_p_CvANN_MLP_TrainParams", "CvANN_MLP_TrainParams *|cv::ANN_MLP_TrainParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAttrList = {"_p_CvAttrList", "CvAttrList *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvAvgComp = {"_p_CvAvgComp", "CvAvgComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBoost = {"_p_CvBoost", "CvBoost *|cv::Boost *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBoostParams = {"_p_CvBoostParams", "CvBoostParams *|cv::BoostParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBoostTree = {"_p_CvBoostTree", "CvBoostTree *|cv::BoostTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvBox2D = {"_p_CvBox2D", "CvBox2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChain = {"_p_CvChain", "CvChain *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvChainPtReader = {"_p_CvChainPtReader", "CvChainPtReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConDensation = {"_p_CvConDensation", "CvConDensation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConnectedComp = {"_p_CvConnectedComp", "CvConnectedComp *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContour = {"_p_CvContour", "CvPoint2DSeq *|CvContour *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvContourTree = {"_p_CvContourTree", "CvContourTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvConvexityDefect = {"_p_CvConvexityDefect", "CvConvexityDefect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvDTree = {"_p_CvDTree", "CvDTree *|cv::DecisionTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvDTreeNode = {"_p_CvDTreeNode", "CvDTreeNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvDTreeParams = {"_p_CvDTreeParams", "CvDTreeParams *|cv::DTreeParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvDTreeSplit = {"_p_CvDTreeSplit", "CvDTreeSplit *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvDTreeTrainData = {"_p_CvDTreeTrainData", "CvDTreeTrainData *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvEM = {"_p_CvEM", "cv::ExpectationMaximization *|CvEM *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvEMParams = {"_p_CvEMParams", "CvEMParams *|cv::EMParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvERTreeTrainData = {"_p_CvERTreeTrainData", "CvERTreeTrainData *|cv::ERTreeTRainData *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvERTrees = {"_p_CvERTrees", "CvERTrees *|cv::ERTrees *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileNode = {"_p_CvFileNode", "CvFileNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFileStorage = {"_p_CvFileStorage", "CvFileStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFilter = {"_p_CvFilter", "enum CvFilter *|CvFilter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvFont = {"_p_CvFont", "CvFont *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvForestERTree = {"_p_CvForestERTree", "CvForestERTree *|cv::ERTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvForestTree = {"_p_CvForestTree", "CvForestTree *|cv::ForestTree *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGenericHash = {"_p_CvGenericHash", "CvGenericHash *|CvFileNodeHash *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraph = {"_p_CvGraph", "CvGraph *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphEdge = {"_p_CvGraphEdge", "CvGraphEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphScanner = {"_p_CvGraphScanner", "CvGraphScanner *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx = {"_p_CvGraphVtx", "CvGraphVtx *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvGraphVtx2D = {"_p_CvGraphVtx2D", "CvGraphVtx2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifier = {"_p_CvHaarClassifier", "CvHaarClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarClassifierCascade = {"_p_CvHaarClassifierCascade", "CvHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarFeature = {"_p_CvHaarFeature", "CvHaarFeature *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHaarStageClassifier = {"_p_CvHaarStageClassifier", "CvHaarStageClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHidHaarClassifierCascade = {"_p_CvHidHaarClassifierCascade", "CvHidHaarClassifierCascade *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHistogram = {"_p_CvHistogram", "CvHistogram *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvHuMoments = {"_p_CvHuMoments", "CvHuMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvKNearest = {"_p_CvKNearest", "CvKNearest *|cv::KNearest *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvKalman = {"_p_CvKalman", "CvKalman *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvLineIterator = {"_p_CvLineIterator", "CvLineIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMLData = {"_p_CvMLData", "CvMLData *|cv::TrainData *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMSERParams = {"_p_CvMSERParams", "CvMSERParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMat = {"_p_CvMat", "CvMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatND = {"_p_CvMatND", "CvMatND *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMatrix3 = {"_p_CvMatrix3", "CvMatrix3 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemBlock = {"_p_CvMemBlock", "CvMemBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStorage = {"_p_CvMemStorage", "CvMemStorage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMemStoragePos = {"_p_CvMemStoragePos", "CvMemStoragePos *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvModuleInfo = {"_p_CvModuleInfo", "CvModuleInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvMoments = {"_p_CvMoments", "CvMoments *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNArrayIterator = {"_p_CvNArrayIterator", "CvNArrayIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNextEdgeType = {"_p_CvNextEdgeType", "enum CvNextEdgeType *|CvNextEdgeType *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvNormalBayesClassifier = {"_p_CvNormalBayesClassifier", "CvNormalBayesClassifier *|cv::NormalBayesClassifier *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPOSITObject = {"_p_CvPOSITObject", "CvPOSITObject *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPair16u32s = {"_p_CvPair16u32s", "CvPair16u32s *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvParamGrid = {"_p_CvParamGrid", "CvParamGrid *|cv::ParamGrid *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPluginFuncInfo = {"_p_CvPluginFuncInfo", "CvPluginFuncInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint = {"_p_CvPoint", "CvPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D32f = {"_p_CvPoint2D32f", "CvPoint2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint2D64f = {"_p_CvPoint2D64f", "CvPoint2D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D32f = {"_p_CvPoint3D32f", "CvPoint3D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvPoint3D64f = {"_p_CvPoint3D64f", "CvPoint3D64f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvQuadEdge2D = {"_p_CvQuadEdge2D", "CvQuadEdge2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRNG_Wrapper = {"_p_CvRNG_Wrapper", "CvRNG_Wrapper *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRTParams = {"_p_CvRTParams", "CvRTParams *|cv::RandomTreeParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRTrees = {"_p_CvRTrees", "CvRTrees *|cv::RandomTrees *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvRect = {"_p_CvRect", "CvRect *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFParams = {"_p_CvSURFParams", "CvSURFParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSURFPoint = {"_p_CvSURFPoint", "CvSURFPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVM = {"_p_CvSVM", "CvSVM *|cv::SVM *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVMDecisionFunc = {"_p_CvSVMDecisionFunc", "CvSVMDecisionFunc *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVMKernel = {"_p_CvSVMKernel", "CvSVMKernel *|cv::SVMKernel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVMKernelRow = {"_p_CvSVMKernelRow", "CvSVMKernelRow *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVMParams = {"_p_CvSVMParams", "CvSVMParams *|cv::SVMParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVMSolutionInfo = {"_p_CvSVMSolutionInfo", "CvSVMSolutionInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSVMSolver = {"_p_CvSVMSolver", "CvSVMSolver *|cv::SVMSolver *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvScalar = {"_p_CvScalar", "CvScalar *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeq = {"_p_CvSeq", "CvSeq *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqBlock = {"_p_CvSeqBlock", "CvSeqBlock *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqReader = {"_p_CvSeqReader", "CvSeqReader *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSeqWriter = {"_p_CvSeqWriter", "CvSeqWriter *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSet = {"_p_CvSet", "CvSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSetElem = {"_p_CvSetElem", "CvSetElem *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize = {"_p_CvSize", "CvSize *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSize2D32f = {"_p_CvSize2D32f", "CvSize2D32f *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSlice = {"_p_CvSlice", "CvSlice *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMat = {"_p_CvSparseMat", "CvSparseMat *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseMatIterator = {"_p_CvSparseMatIterator", "CvSparseMatIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSparseNode = {"_p_CvSparseNode", "CvSparseNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarDetectorParams = {"_p_CvStarDetectorParams", "CvStarDetectorParams *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStarKeypoint = {"_p_CvStarKeypoint", "CvStarKeypoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStatModel = {"_p_CvStatModel", "CvStatModel *|cv::StatModel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoBMState = {"_p_CvStereoBMState", "CvStereoBMState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStereoGCState = {"_p_CvStereoGCState", "CvStereoGCState *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvString = {"_p_CvString", "CvString *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvStringHashNode = {"_p_CvStringHashNode", "CvStringHashNode *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2D = {"_p_CvSubdiv2D", "CvSubdiv2D *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DEdge_Wrapper = {"_p_CvSubdiv2DEdge_Wrapper", "CvSubdiv2DEdge_Wrapper *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPoint = {"_p_CvSubdiv2DPoint", "CvSubdiv2DPoint *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvSubdiv2DPointLocation = {"_p_CvSubdiv2DPointLocation", "enum CvSubdiv2DPointLocation *|CvSubdiv2DPointLocation *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTermCriteria = {"_p_CvTermCriteria", "CvTermCriteria *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTrainTestSplit = {"_p_CvTrainTestSplit", "CvTrainTestSplit *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTrainTestSplit_class_part = {"_p_CvTrainTestSplit_class_part", "CvTrainTestSplit_class_part *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTrainTestSplit_train_sample_part = {"_p_CvTrainTestSplit_train_sample_part", "CvTrainTestSplit_train_sample_part *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTreeNodeIterator = {"_p_CvTreeNodeIterator", "CvTreeNodeIterator *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvTypeInfo = {"_p_CvTypeInfo", "CvTypeInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvVectors = {"_p_CvVectors", "CvVectors *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_CvVectors_data = {"_p_CvVectors_data", "CvVectors_data *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_GetRow = {"_p_GetRow", "GetRow *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_SelectWorkingSet = {"_p_SelectWorkingSet", "SelectWorkingSet *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernel = {"_p__IplConvKernel", "_IplConvKernel *|IplConvKernel *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplConvKernelFP = {"_p__IplConvKernelFP", "_IplConvKernelFP *|IplConvKernelFP *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplImage = {"_p__IplImage", "_IplImage *|IplImage *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplROI = {"_p__IplROI", "_IplROI *|IplROI *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p__IplTileInfo = {"_p__IplTileInfo", "_IplTileInfo *|IplTileInfo *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_bool = {"_p_bool", "bool *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_double = {"_p_double", "double *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_float = {"_p_float", "float *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int = {"_p_int", "CvHistType *|int *|CVStatus *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_int64_t = {"_p_int64_t", "int64_t *|int64 *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_CvMat = {"_p_p_CvMat", "CvMat **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_double = {"_p_p_double", "double **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_float = {"_p_p_float", "float **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_int = {"_p_p_int", "int **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_p_unsigned_char = {"_p_p_unsigned_char", "unsigned char **|uchar **", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_signed_char = {"_p_signed_char", "schar *|signed char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_size_t = {"_p_size_t", "size_t *|CvSubdiv2DEdge *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_uint64_t = {"_p_uint64_t", "uint64_t *|uint64 *|CvRNG *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_char = {"_p_unsigned_char", "uchar *|unsigned char *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_unsigned_short = {"_p_unsigned_short", "unsigned short *|ushort *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_vectorT_float_t = {"_p_vectorT_float_t", "vector< float > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_vectorT_vectorT_float_t_t = {"_p_vectorT_vectorT_float_t_t", "vector< vector< float > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_vectorT_vectorT_int_t_t = {"_p_vectorT_vectorT_int_t_t", "vector< vector< int > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_void = {"_p_void", "CvArr *|void *", 0, 0, (void*)0, 0}; - -static swig_type_info *swig_type_initial[] = { - &_swigt__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, - &_swigt__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, - &_swigt__m_CvSVMSolver__f_r_double_r_double__void, - &_swigt__m_CvSVMSolver__f_r_int_r_int__bool, - &_swigt__p_Calc, - &_swigt__p_CalcRho, - &_swigt__p_Cv32suf, - &_swigt__p_Cv64suf, - &_swigt__p_CvANN_MLP, - &_swigt__p_CvANN_MLP_TrainParams, - &_swigt__p_CvAttrList, - &_swigt__p_CvAvgComp, - &_swigt__p_CvBoost, - &_swigt__p_CvBoostParams, - &_swigt__p_CvBoostTree, - &_swigt__p_CvBox2D, - &_swigt__p_CvChain, - &_swigt__p_CvChainPtReader, - &_swigt__p_CvConDensation, - &_swigt__p_CvConnectedComp, - &_swigt__p_CvContour, - &_swigt__p_CvContourTree, - &_swigt__p_CvConvexityDefect, - &_swigt__p_CvDTree, - &_swigt__p_CvDTreeNode, - &_swigt__p_CvDTreeParams, - &_swigt__p_CvDTreeSplit, - &_swigt__p_CvDTreeTrainData, - &_swigt__p_CvEM, - &_swigt__p_CvEMParams, - &_swigt__p_CvERTreeTrainData, - &_swigt__p_CvERTrees, - &_swigt__p_CvFileNode, - &_swigt__p_CvFileStorage, - &_swigt__p_CvFilter, - &_swigt__p_CvFont, - &_swigt__p_CvForestERTree, - &_swigt__p_CvForestTree, - &_swigt__p_CvGenericHash, - &_swigt__p_CvGraph, - &_swigt__p_CvGraphEdge, - &_swigt__p_CvGraphScanner, - &_swigt__p_CvGraphVtx, - &_swigt__p_CvGraphVtx2D, - &_swigt__p_CvHaarClassifier, - &_swigt__p_CvHaarClassifierCascade, - &_swigt__p_CvHaarFeature, - &_swigt__p_CvHaarStageClassifier, - &_swigt__p_CvHidHaarClassifierCascade, - &_swigt__p_CvHistogram, - &_swigt__p_CvHuMoments, - &_swigt__p_CvKNearest, - &_swigt__p_CvKalman, - &_swigt__p_CvLineIterator, - &_swigt__p_CvMLData, - &_swigt__p_CvMSERParams, - &_swigt__p_CvMat, - &_swigt__p_CvMatND, - &_swigt__p_CvMatrix3, - &_swigt__p_CvMemBlock, - &_swigt__p_CvMemStorage, - &_swigt__p_CvMemStoragePos, - &_swigt__p_CvModuleInfo, - &_swigt__p_CvMoments, - &_swigt__p_CvNArrayIterator, - &_swigt__p_CvNextEdgeType, - &_swigt__p_CvNormalBayesClassifier, - &_swigt__p_CvPOSITObject, - &_swigt__p_CvPair16u32s, - &_swigt__p_CvParamGrid, - &_swigt__p_CvPluginFuncInfo, - &_swigt__p_CvPoint, - &_swigt__p_CvPoint2D32f, - &_swigt__p_CvPoint2D64f, - &_swigt__p_CvPoint3D32f, - &_swigt__p_CvPoint3D64f, - &_swigt__p_CvQuadEdge2D, - &_swigt__p_CvRNG_Wrapper, - &_swigt__p_CvRTParams, - &_swigt__p_CvRTrees, - &_swigt__p_CvRect, - &_swigt__p_CvSURFParams, - &_swigt__p_CvSURFPoint, - &_swigt__p_CvSVM, - &_swigt__p_CvSVMDecisionFunc, - &_swigt__p_CvSVMKernel, - &_swigt__p_CvSVMKernelRow, - &_swigt__p_CvSVMParams, - &_swigt__p_CvSVMSolutionInfo, - &_swigt__p_CvSVMSolver, - &_swigt__p_CvScalar, - &_swigt__p_CvSeq, - &_swigt__p_CvSeqBlock, - &_swigt__p_CvSeqReader, - &_swigt__p_CvSeqWriter, - &_swigt__p_CvSet, - &_swigt__p_CvSetElem, - &_swigt__p_CvSize, - &_swigt__p_CvSize2D32f, - &_swigt__p_CvSlice, - &_swigt__p_CvSparseMat, - &_swigt__p_CvSparseMatIterator, - &_swigt__p_CvSparseNode, - &_swigt__p_CvStarDetectorParams, - &_swigt__p_CvStarKeypoint, - &_swigt__p_CvStatModel, - &_swigt__p_CvStereoBMState, - &_swigt__p_CvStereoGCState, - &_swigt__p_CvString, - &_swigt__p_CvStringHashNode, - &_swigt__p_CvSubdiv2D, - &_swigt__p_CvSubdiv2DEdge_Wrapper, - &_swigt__p_CvSubdiv2DPoint, - &_swigt__p_CvSubdiv2DPointLocation, - &_swigt__p_CvTermCriteria, - &_swigt__p_CvTrainTestSplit, - &_swigt__p_CvTrainTestSplit_class_part, - &_swigt__p_CvTrainTestSplit_train_sample_part, - &_swigt__p_CvTreeNodeIterator, - &_swigt__p_CvTypeInfo, - &_swigt__p_CvVectors, - &_swigt__p_CvVectors_data, - &_swigt__p_GetRow, - &_swigt__p_SelectWorkingSet, - &_swigt__p__IplConvKernel, - &_swigt__p__IplConvKernelFP, - &_swigt__p__IplImage, - &_swigt__p__IplROI, - &_swigt__p__IplTileInfo, - &_swigt__p_bool, - &_swigt__p_char, - &_swigt__p_double, - &_swigt__p_float, - &_swigt__p_int, - &_swigt__p_int64_t, - &_swigt__p_p_CvMat, - &_swigt__p_p_double, - &_swigt__p_p_float, - &_swigt__p_p_int, - &_swigt__p_p_unsigned_char, - &_swigt__p_signed_char, - &_swigt__p_size_t, - &_swigt__p_uint64_t, - &_swigt__p_unsigned_char, - &_swigt__p_unsigned_short, - &_swigt__p_vectorT_float_t, - &_swigt__p_vectorT_vectorT_float_t_t, - &_swigt__p_vectorT_vectorT_int_t_t, - &_swigt__p_void, -}; - -static swig_cast_info _swigc__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void[] = { {&_swigt__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float[] = { {&_swigt__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__m_CvSVMSolver__f_r_double_r_double__void[] = { {&_swigt__m_CvSVMSolver__f_r_double_r_double__void, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__m_CvSVMSolver__f_r_int_r_int__bool[] = { {&_swigt__m_CvSVMSolver__f_r_int_r_int__bool, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Calc[] = { {&_swigt__p_Calc, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CalcRho[] = { {&_swigt__p_CalcRho, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv32suf[] = { {&_swigt__p_Cv32suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_Cv64suf[] = { {&_swigt__p_Cv64suf, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvANN_MLP[] = { {&_swigt__p_CvANN_MLP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvANN_MLP_TrainParams[] = { {&_swigt__p_CvANN_MLP_TrainParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAttrList[] = { {&_swigt__p_CvAttrList, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvAvgComp[] = { {&_swigt__p_CvAvgComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBoost[] = { {&_swigt__p_CvBoost, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBoostParams[] = { {&_swigt__p_CvBoostParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBoostTree[] = { {&_swigt__p_CvBoostTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvBox2D[] = { {&_swigt__p_CvBox2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChain[] = { {&_swigt__p_CvChain, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvChainPtReader[] = { {&_swigt__p_CvChainPtReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConDensation[] = { {&_swigt__p_CvConDensation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConnectedComp[] = { {&_swigt__p_CvConnectedComp, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContour[] = { {&_swigt__p_CvContour, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvContourTree[] = { {&_swigt__p_CvContourTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvConvexityDefect[] = { {&_swigt__p_CvConvexityDefect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTree[] = { {&_swigt__p_CvForestERTree, _p_CvForestERTreeTo_p_CvDTree, 0, 0}, {&_swigt__p_CvForestTree, _p_CvForestTreeTo_p_CvDTree, 0, 0}, {&_swigt__p_CvBoostTree, _p_CvBoostTreeTo_p_CvDTree, 0, 0}, {&_swigt__p_CvDTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeNode[] = { {&_swigt__p_CvDTreeNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeParams[] = { {&_swigt__p_CvRTParams, _p_CvRTParamsTo_p_CvDTreeParams, 0, 0}, {&_swigt__p_CvBoostParams, _p_CvBoostParamsTo_p_CvDTreeParams, 0, 0}, {&_swigt__p_CvDTreeParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeSplit[] = { {&_swigt__p_CvDTreeSplit, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvDTreeTrainData[] = { {&_swigt__p_CvDTreeTrainData, 0, 0, 0}, {&_swigt__p_CvERTreeTrainData, _p_CvERTreeTrainDataTo_p_CvDTreeTrainData, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvEM[] = { {&_swigt__p_CvEM, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvEMParams[] = { {&_swigt__p_CvEMParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvERTreeTrainData[] = { {&_swigt__p_CvERTreeTrainData, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvERTrees[] = { {&_swigt__p_CvERTrees, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileNode[] = { {&_swigt__p_CvFileNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFileStorage[] = { {&_swigt__p_CvFileStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFilter[] = { {&_swigt__p_CvFilter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvFont[] = { {&_swigt__p_CvFont, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvForestERTree[] = { {&_swigt__p_CvForestERTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvForestTree[] = { {&_swigt__p_CvForestERTree, _p_CvForestERTreeTo_p_CvForestTree, 0, 0}, {&_swigt__p_CvForestTree, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGenericHash[] = { {&_swigt__p_CvGenericHash, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraph[] = { {&_swigt__p_CvGraph, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphEdge[] = { {&_swigt__p_CvGraphEdge, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphScanner[] = { {&_swigt__p_CvGraphScanner, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx[] = { {&_swigt__p_CvGraphVtx, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvGraphVtx2D[] = { {&_swigt__p_CvGraphVtx2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifier[] = { {&_swigt__p_CvHaarClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarClassifierCascade[] = { {&_swigt__p_CvHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarFeature[] = { {&_swigt__p_CvHaarFeature, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHaarStageClassifier[] = { {&_swigt__p_CvHaarStageClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHidHaarClassifierCascade[] = { {&_swigt__p_CvHidHaarClassifierCascade, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHistogram[] = { {&_swigt__p_CvHistogram, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvHuMoments[] = { {&_swigt__p_CvHuMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKNearest[] = { {&_swigt__p_CvKNearest, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvKalman[] = { {&_swigt__p_CvKalman, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvLineIterator[] = { {&_swigt__p_CvLineIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMLData[] = { {&_swigt__p_CvMLData, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMSERParams[] = { {&_swigt__p_CvMSERParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMat[] = { {&_swigt__p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatND[] = { {&_swigt__p_CvMatND, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMatrix3[] = { {&_swigt__p_CvMatrix3, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemBlock[] = { {&_swigt__p_CvMemBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStorage[] = { {&_swigt__p_CvMemStorage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMemStoragePos[] = { {&_swigt__p_CvMemStoragePos, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvModuleInfo[] = { {&_swigt__p_CvModuleInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvMoments[] = { {&_swigt__p_CvMoments, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNArrayIterator[] = { {&_swigt__p_CvNArrayIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNextEdgeType[] = { {&_swigt__p_CvNextEdgeType, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvNormalBayesClassifier[] = { {&_swigt__p_CvNormalBayesClassifier, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPOSITObject[] = { {&_swigt__p_CvPOSITObject, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPair16u32s[] = { {&_swigt__p_CvPair16u32s, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvParamGrid[] = { {&_swigt__p_CvParamGrid, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPluginFuncInfo[] = { {&_swigt__p_CvPluginFuncInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint[] = { {&_swigt__p_CvPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D32f[] = { {&_swigt__p_CvPoint2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint2D64f[] = { {&_swigt__p_CvPoint2D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D32f[] = { {&_swigt__p_CvPoint3D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvPoint3D64f[] = { {&_swigt__p_CvPoint3D64f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvQuadEdge2D[] = { {&_swigt__p_CvQuadEdge2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRNG_Wrapper[] = { {&_swigt__p_CvRNG_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRTParams[] = { {&_swigt__p_CvRTParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRTrees[] = { {&_swigt__p_CvRTrees, 0, 0, 0}, {&_swigt__p_CvERTrees, _p_CvERTreesTo_p_CvRTrees, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvRect[] = { {&_swigt__p_CvRect, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFParams[] = { {&_swigt__p_CvSURFParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSURFPoint[] = { {&_swigt__p_CvSURFPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVM[] = { {&_swigt__p_CvSVM, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMDecisionFunc[] = { {&_swigt__p_CvSVMDecisionFunc, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMKernel[] = { {&_swigt__p_CvSVMKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMKernelRow[] = { {&_swigt__p_CvSVMKernelRow, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMParams[] = { {&_swigt__p_CvSVMParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMSolutionInfo[] = { {&_swigt__p_CvSVMSolutionInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSVMSolver[] = { {&_swigt__p_CvSVMSolver, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvScalar[] = { {&_swigt__p_CvScalar, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeq[] = { {&_swigt__p_CvSeq, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqBlock[] = { {&_swigt__p_CvSeqBlock, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqReader[] = { {&_swigt__p_CvSeqReader, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSeqWriter[] = { {&_swigt__p_CvSeqWriter, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSet[] = { {&_swigt__p_CvSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSetElem[] = { {&_swigt__p_CvSetElem, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize[] = { {&_swigt__p_CvSize, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSize2D32f[] = { {&_swigt__p_CvSize2D32f, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSlice[] = { {&_swigt__p_CvSlice, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMat[] = { {&_swigt__p_CvSparseMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseMatIterator[] = { {&_swigt__p_CvSparseMatIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSparseNode[] = { {&_swigt__p_CvSparseNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarDetectorParams[] = { {&_swigt__p_CvStarDetectorParams, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStarKeypoint[] = { {&_swigt__p_CvStarKeypoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStatModel[] = { {&_swigt__p_CvNormalBayesClassifier, _p_CvNormalBayesClassifierTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvForestERTree, _p_CvForestERTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvANN_MLP, _p_CvANN_MLPTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvStatModel, 0, 0, 0}, {&_swigt__p_CvKNearest, _p_CvKNearestTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvForestTree, _p_CvForestTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvRTrees, _p_CvRTreesTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvBoostTree, _p_CvBoostTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvERTrees, _p_CvERTreesTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvEM, _p_CvEMTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvSVM, _p_CvSVMTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvDTree, _p_CvDTreeTo_p_CvStatModel, 0, 0}, {&_swigt__p_CvBoost, _p_CvBoostTo_p_CvStatModel, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoBMState[] = { {&_swigt__p_CvStereoBMState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStereoGCState[] = { {&_swigt__p_CvStereoGCState, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvString[] = { {&_swigt__p_CvString, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvStringHashNode[] = { {&_swigt__p_CvStringHashNode, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2D[] = { {&_swigt__p_CvSubdiv2D, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DEdge_Wrapper[] = { {&_swigt__p_CvSubdiv2DEdge_Wrapper, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPoint[] = { {&_swigt__p_CvSubdiv2DPoint, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvSubdiv2DPointLocation[] = { {&_swigt__p_CvSubdiv2DPointLocation, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTermCriteria[] = { {&_swigt__p_CvTermCriteria, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTrainTestSplit[] = { {&_swigt__p_CvTrainTestSplit, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTrainTestSplit_class_part[] = { {&_swigt__p_CvTrainTestSplit_class_part, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTrainTestSplit_train_sample_part[] = { {&_swigt__p_CvTrainTestSplit_train_sample_part, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTreeNodeIterator[] = { {&_swigt__p_CvTreeNodeIterator, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvTypeInfo[] = { {&_swigt__p_CvTypeInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvVectors[] = { {&_swigt__p_CvVectors, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_CvVectors_data[] = { {&_swigt__p_CvVectors_data, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_GetRow[] = { {&_swigt__p_GetRow, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_SelectWorkingSet[] = { {&_swigt__p_SelectWorkingSet, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernel[] = { {&_swigt__p__IplConvKernel, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplConvKernelFP[] = { {&_swigt__p__IplConvKernelFP, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplImage[] = { {&_swigt__p__IplImage, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplROI[] = { {&_swigt__p__IplROI, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p__IplTileInfo[] = { {&_swigt__p__IplTileInfo, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_bool[] = { {&_swigt__p_bool, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_double[] = { {&_swigt__p_double, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_float[] = { {&_swigt__p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_int64_t[] = { {&_swigt__p_int64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_CvMat[] = { {&_swigt__p_p_CvMat, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_double[] = { {&_swigt__p_p_double, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_float[] = { {&_swigt__p_p_float, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_int[] = { {&_swigt__p_p_int, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_p_unsigned_char[] = { {&_swigt__p_p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_signed_char[] = { {&_swigt__p_signed_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_size_t[] = { {&_swigt__p_size_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_uint64_t[] = { {&_swigt__p_uint64_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_char[] = { {&_swigt__p_unsigned_char, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_unsigned_short[] = { {&_swigt__p_unsigned_short, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_vectorT_float_t[] = { {&_swigt__p_vectorT_float_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_vectorT_vectorT_float_t_t[] = { {&_swigt__p_vectorT_vectorT_float_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_vectorT_vectorT_int_t_t[] = { {&_swigt__p_vectorT_vectorT_int_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}}; - -static swig_cast_info *swig_cast_initial[] = { - _swigc__m_CvSVMKernel__f_int_int_p_p_q_const__float_p_q_const__float_p_float__void, - _swigc__m_CvSVMSolver__f_int_p_float_p_float_bool__p_float, - _swigc__m_CvSVMSolver__f_r_double_r_double__void, - _swigc__m_CvSVMSolver__f_r_int_r_int__bool, - _swigc__p_Calc, - _swigc__p_CalcRho, - _swigc__p_Cv32suf, - _swigc__p_Cv64suf, - _swigc__p_CvANN_MLP, - _swigc__p_CvANN_MLP_TrainParams, - _swigc__p_CvAttrList, - _swigc__p_CvAvgComp, - _swigc__p_CvBoost, - _swigc__p_CvBoostParams, - _swigc__p_CvBoostTree, - _swigc__p_CvBox2D, - _swigc__p_CvChain, - _swigc__p_CvChainPtReader, - _swigc__p_CvConDensation, - _swigc__p_CvConnectedComp, - _swigc__p_CvContour, - _swigc__p_CvContourTree, - _swigc__p_CvConvexityDefect, - _swigc__p_CvDTree, - _swigc__p_CvDTreeNode, - _swigc__p_CvDTreeParams, - _swigc__p_CvDTreeSplit, - _swigc__p_CvDTreeTrainData, - _swigc__p_CvEM, - _swigc__p_CvEMParams, - _swigc__p_CvERTreeTrainData, - _swigc__p_CvERTrees, - _swigc__p_CvFileNode, - _swigc__p_CvFileStorage, - _swigc__p_CvFilter, - _swigc__p_CvFont, - _swigc__p_CvForestERTree, - _swigc__p_CvForestTree, - _swigc__p_CvGenericHash, - _swigc__p_CvGraph, - _swigc__p_CvGraphEdge, - _swigc__p_CvGraphScanner, - _swigc__p_CvGraphVtx, - _swigc__p_CvGraphVtx2D, - _swigc__p_CvHaarClassifier, - _swigc__p_CvHaarClassifierCascade, - _swigc__p_CvHaarFeature, - _swigc__p_CvHaarStageClassifier, - _swigc__p_CvHidHaarClassifierCascade, - _swigc__p_CvHistogram, - _swigc__p_CvHuMoments, - _swigc__p_CvKNearest, - _swigc__p_CvKalman, - _swigc__p_CvLineIterator, - _swigc__p_CvMLData, - _swigc__p_CvMSERParams, - _swigc__p_CvMat, - _swigc__p_CvMatND, - _swigc__p_CvMatrix3, - _swigc__p_CvMemBlock, - _swigc__p_CvMemStorage, - _swigc__p_CvMemStoragePos, - _swigc__p_CvModuleInfo, - _swigc__p_CvMoments, - _swigc__p_CvNArrayIterator, - _swigc__p_CvNextEdgeType, - _swigc__p_CvNormalBayesClassifier, - _swigc__p_CvPOSITObject, - _swigc__p_CvPair16u32s, - _swigc__p_CvParamGrid, - _swigc__p_CvPluginFuncInfo, - _swigc__p_CvPoint, - _swigc__p_CvPoint2D32f, - _swigc__p_CvPoint2D64f, - _swigc__p_CvPoint3D32f, - _swigc__p_CvPoint3D64f, - _swigc__p_CvQuadEdge2D, - _swigc__p_CvRNG_Wrapper, - _swigc__p_CvRTParams, - _swigc__p_CvRTrees, - _swigc__p_CvRect, - _swigc__p_CvSURFParams, - _swigc__p_CvSURFPoint, - _swigc__p_CvSVM, - _swigc__p_CvSVMDecisionFunc, - _swigc__p_CvSVMKernel, - _swigc__p_CvSVMKernelRow, - _swigc__p_CvSVMParams, - _swigc__p_CvSVMSolutionInfo, - _swigc__p_CvSVMSolver, - _swigc__p_CvScalar, - _swigc__p_CvSeq, - _swigc__p_CvSeqBlock, - _swigc__p_CvSeqReader, - _swigc__p_CvSeqWriter, - _swigc__p_CvSet, - _swigc__p_CvSetElem, - _swigc__p_CvSize, - _swigc__p_CvSize2D32f, - _swigc__p_CvSlice, - _swigc__p_CvSparseMat, - _swigc__p_CvSparseMatIterator, - _swigc__p_CvSparseNode, - _swigc__p_CvStarDetectorParams, - _swigc__p_CvStarKeypoint, - _swigc__p_CvStatModel, - _swigc__p_CvStereoBMState, - _swigc__p_CvStereoGCState, - _swigc__p_CvString, - _swigc__p_CvStringHashNode, - _swigc__p_CvSubdiv2D, - _swigc__p_CvSubdiv2DEdge_Wrapper, - _swigc__p_CvSubdiv2DPoint, - _swigc__p_CvSubdiv2DPointLocation, - _swigc__p_CvTermCriteria, - _swigc__p_CvTrainTestSplit, - _swigc__p_CvTrainTestSplit_class_part, - _swigc__p_CvTrainTestSplit_train_sample_part, - _swigc__p_CvTreeNodeIterator, - _swigc__p_CvTypeInfo, - _swigc__p_CvVectors, - _swigc__p_CvVectors_data, - _swigc__p_GetRow, - _swigc__p_SelectWorkingSet, - _swigc__p__IplConvKernel, - _swigc__p__IplConvKernelFP, - _swigc__p__IplImage, - _swigc__p__IplROI, - _swigc__p__IplTileInfo, - _swigc__p_bool, - _swigc__p_char, - _swigc__p_double, - _swigc__p_float, - _swigc__p_int, - _swigc__p_int64_t, - _swigc__p_p_CvMat, - _swigc__p_p_double, - _swigc__p_p_float, - _swigc__p_p_int, - _swigc__p_p_unsigned_char, - _swigc__p_signed_char, - _swigc__p_size_t, - _swigc__p_uint64_t, - _swigc__p_unsigned_char, - _swigc__p_unsigned_short, - _swigc__p_vectorT_float_t, - _swigc__p_vectorT_vectorT_float_t_t, - _swigc__p_vectorT_vectorT_int_t_t, - _swigc__p_void, -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -static swig_const_info swig_const_table[] = { -{0, 0, 0, 0.0, 0, 0}}; - -#ifdef __cplusplus -} -#endif -/* ----------------------------------------------------------------------------- - * Type initialization: - * This problem is tough by the requirement that no dynamic - * memory is used. Also, since swig_type_info structures store pointers to - * swig_cast_info structures and swig_cast_info structures store pointers back - * to swig_type_info structures, we need some lookup code at initialization. - * The idea is that swig generates all the structures that are needed. - * The runtime then collects these partially filled structures. - * The SWIG_InitializeModule function takes these initial arrays out of - * swig_module, and does all the lookup, filling in the swig_module.types - * array with the correct data and linking the correct swig_cast_info - * structures together. - * - * The generated swig_type_info structures are assigned staticly to an initial - * array. We just loop through that array, and handle each type individually. - * First we lookup if this type has been already loaded, and if so, use the - * loaded structure instead of the generated one. Then we have to fill in the - * cast linked list. The cast data is initially stored in something like a - * two-dimensional array. Each row corresponds to a type (there are the same - * number of rows as there are in the swig_type_initial array). Each entry in - * a column is one of the swig_cast_info structures for that type. - * The cast_initial array is actually an array of arrays, because each row has - * a variable number of columns. So to actually build the cast linked list, - * we find the array of casts associated with the type, and loop through it - * adding the casts to the list. The one last trick we need to do is making - * sure the type pointer in the swig_cast_info struct is correct. - * - * First off, we lookup the cast->type name to see if it is already loaded. - * There are three cases to handle: - * 1) If the cast->type has already been loaded AND the type we are adding - * casting info to has not been loaded (it is in this module), THEN we - * replace the cast->type pointer with the type pointer that has already - * been loaded. - * 2) If BOTH types (the one we are adding casting info to, and the - * cast->type) are loaded, THEN the cast info has already been loaded by - * the previous module so we just ignore it. - * 3) Finally, if cast->type has not already been loaded, then we add that - * swig_cast_info to the linked list (because the cast->type) pointer will - * be correct. - * ----------------------------------------------------------------------------- */ - -#ifdef __cplusplus -extern "C" { -#if 0 -} /* c-mode */ -#endif -#endif - -#if 0 -#define SWIGRUNTIME_DEBUG -#endif - - -SWIGRUNTIME void -SWIG_InitializeModule(void *clientdata) { - size_t i; - swig_module_info *module_head, *iter; - int found, init; - - clientdata = clientdata; - - /* check to see if the circular list has been setup, if not, set it up */ - if (swig_module.next==0) { - /* Initialize the swig_module */ - swig_module.type_initial = swig_type_initial; - swig_module.cast_initial = swig_cast_initial; - swig_module.next = &swig_module; - init = 1; - } else { - init = 0; - } - - /* Try and load any already created modules */ - module_head = SWIG_GetModule(clientdata); - if (!module_head) { - /* This is the first module loaded for this interpreter */ - /* so set the swig module into the interpreter */ - SWIG_SetModule(clientdata, &swig_module); - module_head = &swig_module; - } else { - /* the interpreter has loaded a SWIG module, but has it loaded this one? */ - found=0; - iter=module_head; - do { - if (iter==&swig_module) { - found=1; - break; - } - iter=iter->next; - } while (iter!= module_head); - - /* if the is found in the list, then all is done and we may leave */ - if (found) return; - /* otherwise we must add out module into the list */ - swig_module.next = module_head->next; - module_head->next = &swig_module; - } - - /* When multiple interpeters are used, a module could have already been initialized in - a different interpreter, but not yet have a pointer in this interpreter. - In this case, we do not want to continue adding types... everything should be - set up already */ - if (init == 0) return; - - /* Now work on filling in swig_module.types */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: size %d\n", swig_module.size); -#endif - for (i = 0; i < swig_module.size; ++i) { - swig_type_info *type = 0; - swig_type_info *ret; - swig_cast_info *cast; - -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); -#endif - - /* if there is another module already loaded */ - if (swig_module.next != &swig_module) { - type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name); - } - if (type) { - /* Overwrite clientdata field */ -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found type %s\n", type->name); -#endif - if (swig_module.type_initial[i]->clientdata) { - type->clientdata = swig_module.type_initial[i]->clientdata; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name); -#endif - } - } else { - type = swig_module.type_initial[i]; - } - - /* Insert casting types */ - cast = swig_module.cast_initial[i]; - while (cast->type) { - /* Don't need to add information already in the list */ - ret = 0; -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: look cast %s\n", cast->type->name); -#endif - if (swig_module.next != &swig_module) { - ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name); -#ifdef SWIGRUNTIME_DEBUG - if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name); -#endif - } - if (ret) { - if (type == swig_module.type_initial[i]) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: skip old type %s\n", ret->name); -#endif - cast->type = ret; - ret = 0; - } else { - /* Check for casting already in the list */ - swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type); -#ifdef SWIGRUNTIME_DEBUG - if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name); -#endif - if (!ocast) ret = 0; - } - } - - if (!ret) { -#ifdef SWIGRUNTIME_DEBUG - printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name); -#endif - if (type->cast) { - type->cast->prev = cast; - cast->next = type->cast; - } - type->cast = cast; - } - cast++; - } - /* Set entry in modules->types array equal to the type */ - swig_module.types[i] = type; - } - swig_module.types[i] = 0; - -#ifdef SWIGRUNTIME_DEBUG - printf("**** SWIG_InitializeModule: Cast List ******\n"); - for (i = 0; i < swig_module.size; ++i) { - int j = 0; - swig_cast_info *cast = swig_module.cast_initial[i]; - printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name); - while (cast->type) { - printf("SWIG_InitializeModule: cast type %s\n", cast->type->name); - cast++; - ++j; - } - printf("---- Total casts: %d\n",j); - } - printf("**** SWIG_InitializeModule: Cast List ******\n"); -#endif -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientData(void) { - size_t i; - swig_cast_info *equiv; - static int init_run = 0; - - if (init_run) return; - init_run = 1; - - for (i = 0; i < swig_module.size; i++) { - if (swig_module.types[i]->clientdata) { - equiv = swig_module.types[i]->cast; - while (equiv) { - if (!equiv->converter) { - if (equiv->type && !equiv->type->clientdata) - SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata); - } - equiv = equiv->next; - } - } - } -} - -#ifdef __cplusplus -#if 0 -{ - /* c-mode */ -#endif -} -#endif - - - -#ifdef __cplusplus -extern "C" { -#endif - - /* Python-specific SWIG API */ -#define SWIG_newvarlink() SWIG_Python_newvarlink() -#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) -#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants) - - /* ----------------------------------------------------------------------------- - * global variable support code. - * ----------------------------------------------------------------------------- */ - - typedef struct swig_globalvar { - char *name; /* Name of global variable */ - PyObject *(*get_attr)(void); /* Return the current value */ - int (*set_attr)(PyObject *); /* Set the value */ - struct swig_globalvar *next; - } swig_globalvar; - - typedef struct swig_varlinkobject { - PyObject_HEAD - swig_globalvar *vars; - } swig_varlinkobject; - - SWIGINTERN PyObject * - swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) { -#if PY_VERSION_HEX >= 0x03000000 - return PyUnicode_InternFromString(""); -#else - return PyString_FromString(""); -#endif - } - - SWIGINTERN PyObject * - swig_varlink_str(swig_varlinkobject *v) { -#if PY_VERSION_HEX >= 0x03000000 - PyObject *str = PyUnicode_InternFromString("("); - PyObject *tail; - PyObject *joined; - swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - tail = PyUnicode_FromString(var->name); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - if (var->next) { - tail = PyUnicode_InternFromString(", "); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; - } - } - tail = PyUnicode_InternFromString(")"); - joined = PyUnicode_Concat(str, tail); - Py_DecRef(str); - Py_DecRef(tail); - str = joined; -#else - PyObject *str = PyString_FromString("("); - swig_globalvar *var; - for (var = v->vars; var; var=var->next) { - PyString_ConcatAndDel(&str,PyString_FromString(var->name)); - if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", ")); - } - PyString_ConcatAndDel(&str,PyString_FromString(")")); -#endif - return str; - } - - SWIGINTERN int - swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) { - char *tmp; - PyObject *str = swig_varlink_str(v); - fprintf(fp,"Swig global variables "); - fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str)); - SWIG_Python_str_DelForPy3(tmp); - Py_DECREF(str); - return 0; - } - - SWIGINTERN void - swig_varlink_dealloc(swig_varlinkobject *v) { - swig_globalvar *var = v->vars; - while (var) { - swig_globalvar *n = var->next; - free(var->name); - free(var); - var = n; - } - } - - SWIGINTERN PyObject * - swig_varlink_getattr(swig_varlinkobject *v, char *n) { - PyObject *res = NULL; - swig_globalvar *var = v->vars; - while (var) { - if (strcmp(var->name,n) == 0) { - res = (*var->get_attr)(); - break; - } - var = var->next; - } - if (res == NULL && !PyErr_Occurred()) { - PyErr_SetString(PyExc_NameError,"Unknown C global variable"); - } - return res; - } - - SWIGINTERN int - swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) { - int res = 1; - swig_globalvar *var = v->vars; - while (var) { - if (strcmp(var->name,n) == 0) { - res = (*var->set_attr)(p); - break; - } - var = var->next; - } - if (res == 1 && !PyErr_Occurred()) { - PyErr_SetString(PyExc_NameError,"Unknown C global variable"); - } - return res; - } - - SWIGINTERN PyTypeObject* - swig_varlink_type(void) { - static char varlink__doc__[] = "Swig var link object"; - static PyTypeObject varlink_type; - static int type_init = 0; - if (!type_init) { - const PyTypeObject tmp - = { - /* PyObject header changed in Python 3 */ -#if PY_VERSION_HEX >= 0x03000000 - PyVarObject_HEAD_INIT(&PyType_Type, 0) -#else - PyObject_HEAD_INIT(NULL) - 0, /* Number of items in variable part (ob_size) */ -#endif - (char *)"swigvarlink", /* Type name (tp_name) */ - sizeof(swig_varlinkobject), /* Basic size (tp_basicsize) */ - 0, /* Itemsize (tp_itemsize) */ - (destructor) swig_varlink_dealloc, /* Deallocator (tp_dealloc) */ - (printfunc) swig_varlink_print, /* Print (tp_print) */ - (getattrfunc) swig_varlink_getattr, /* get attr (tp_getattr) */ - (setattrfunc) swig_varlink_setattr, /* Set attr (tp_setattr) */ - 0, /* tp_compare */ - (reprfunc) swig_varlink_repr, /* tp_repr */ - 0, /* tp_as_number */ - 0, /* tp_as_sequence */ - 0, /* tp_as_mapping */ - 0, /* tp_hash */ - 0, /* tp_call */ - (reprfunc) swig_varlink_str, /* tp_str */ - 0, /* tp_getattro */ - 0, /* tp_setattro */ - 0, /* tp_as_buffer */ - 0, /* tp_flags */ - varlink__doc__, /* tp_doc */ - 0, /* tp_traverse */ - 0, /* tp_clear */ - 0, /* tp_richcompare */ - 0, /* tp_weaklistoffset */ -#if PY_VERSION_HEX >= 0x02020000 - 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ -#endif -#if PY_VERSION_HEX >= 0x02030000 - 0, /* tp_del */ -#endif -#ifdef COUNT_ALLOCS - 0,0,0,0 /* tp_alloc -> tp_next */ -#endif - }; - varlink_type = tmp; - /* for Python 3 we already assigned ob_type in PyVarObject_HEAD_INIT() */ -#if PY_VERSION_HEX < 0x03000000 - varlink_type.ob_type = &PyType_Type; -#endif - type_init = 1; - } - return &varlink_type; - } - - /* Create a variable linking object for use later */ - SWIGINTERN PyObject * - SWIG_Python_newvarlink(void) { - swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); - if (result) { - result->vars = 0; - } - return ((PyObject*) result); - } - - SWIGINTERN void - SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { - swig_varlinkobject *v = (swig_varlinkobject *) p; - swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar)); - if (gv) { - size_t size = strlen(name)+1; - gv->name = (char *)malloc(size); - if (gv->name) { - strncpy(gv->name,name,size); - gv->get_attr = get_attr; - gv->set_attr = set_attr; - gv->next = v->vars; - } - } - v->vars = gv; - } - - SWIGINTERN PyObject * - SWIG_globals(void) { - static PyObject *_SWIG_globals = 0; - if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink(); - return _SWIG_globals; - } - - /* ----------------------------------------------------------------------------- - * constants/methods manipulation - * ----------------------------------------------------------------------------- */ - - /* Install Constants */ - SWIGINTERN void - SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) { - PyObject *obj = 0; - size_t i; - for (i = 0; constants[i].type; ++i) { - switch(constants[i].type) { - case SWIG_PY_POINTER: - obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0); - break; - case SWIG_PY_BINARY: - obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype)); - break; - default: - obj = 0; - break; - } - if (obj) { - PyDict_SetItemString(d, constants[i].name, obj); - Py_DECREF(obj); - } - } - } - - /* -----------------------------------------------------------------------------*/ - /* Fix SwigMethods to carry the callback ptrs when needed */ - /* -----------------------------------------------------------------------------*/ - - SWIGINTERN void - SWIG_Python_FixMethods(PyMethodDef *methods, - swig_const_info *const_table, - swig_type_info **types, - swig_type_info **types_initial) { - size_t i; - for (i = 0; methods[i].ml_name; ++i) { - const char *c = methods[i].ml_doc; - if (c && (c = strstr(c, "swig_ptr: "))) { - int j; - swig_const_info *ci = 0; - const char *name = c + 10; - for (j = 0; const_table[j].type; ++j) { - if (strncmp(const_table[j].name, name, - strlen(const_table[j].name)) == 0) { - ci = &(const_table[j]); - break; - } - } - if (ci) { - size_t shift = (ci->ptype) - types; - swig_type_info *ty = types_initial[shift]; - size_t ldoc = (c - methods[i].ml_doc); - size_t lptr = strlen(ty->name)+2*sizeof(void*)+2; - char *ndoc = (char*)malloc(ldoc + lptr + 10); - if (ndoc) { - char *buff = ndoc; - void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0; - if (ptr) { - strncpy(buff, methods[i].ml_doc, ldoc); - buff += ldoc; - strncpy(buff, "swig_ptr: ", 10); - buff += 10; - SWIG_PackVoidPtr(buff, ptr, ty->name, lptr); - methods[i].ml_doc = ndoc; - } - } - } - } - } - } - -#ifdef __cplusplus -} -#endif - -/* -----------------------------------------------------------------------------* - * Partial Init method - * -----------------------------------------------------------------------------*/ - -#ifdef __cplusplus -extern "C" -#endif - -SWIGEXPORT -#if PY_VERSION_HEX >= 0x03000000 -PyObject* -#else -void -#endif -SWIG_init(void) { - PyObject *m, *d; -#if PY_VERSION_HEX >= 0x03000000 - static struct PyModuleDef SWIG_module = { - PyModuleDef_HEAD_INIT, - (char *) SWIG_name, - NULL, - -1, - SwigMethods, - NULL, - NULL, - NULL, - NULL - }; -#endif - - /* Fix SwigMethods to carry the callback ptrs when needed */ - SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial); - -#if PY_VERSION_HEX >= 0x03000000 - m = PyModule_Create(&SWIG_module); -#else - m = Py_InitModule((char *) SWIG_name, SwigMethods); -#endif - d = PyModule_GetDict(m); - - SWIG_InitializeModule(0); - SWIG_InstallConstants(d,swig_const_table); - - - SWIG_Python_SetConstant(d, "CV_LOG2PI",SWIG_From_double(static_cast< double >((1.8378770664093454835606594728112)))); - SWIG_Python_SetConstant(d, "CV_COL_SAMPLE",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_ROW_SAMPLE",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_VAR_NUMERICAL",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_VAR_ORDERED",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_VAR_CATEGORICAL",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_SVM",SWIG_FromCharPtr("opencv-ml-svm")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_KNN",SWIG_FromCharPtr("opencv-ml-knn")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_NBAYES",SWIG_FromCharPtr("opencv-ml-bayesian")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_EM",SWIG_FromCharPtr("opencv-ml-em")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_BOOSTING",SWIG_FromCharPtr("opencv-ml-boost-tree")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_TREE",SWIG_FromCharPtr("opencv-ml-tree")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_ANN_MLP",SWIG_FromCharPtr("opencv-ml-ann-mlp")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_CNN",SWIG_FromCharPtr("opencv-ml-cnn")); - SWIG_Python_SetConstant(d, "CV_TYPE_NAME_ML_RTREES",SWIG_FromCharPtr("opencv-ml-random-trees")); - SWIG_Python_SetConstant(d, "CV_TRAIN_ERROR",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_TEST_ERROR",SWIG_From_int(static_cast< int >(1))); - SWIG_Python_SetConstant(d, "CvParamGrid_SVM_C",SWIG_From_int(static_cast< int >(CvParamGrid::SVM_C))); - SWIG_Python_SetConstant(d, "CvParamGrid_SVM_GAMMA",SWIG_From_int(static_cast< int >(CvParamGrid::SVM_GAMMA))); - SWIG_Python_SetConstant(d, "CvParamGrid_SVM_P",SWIG_From_int(static_cast< int >(CvParamGrid::SVM_P))); - SWIG_Python_SetConstant(d, "CvParamGrid_SVM_NU",SWIG_From_int(static_cast< int >(CvParamGrid::SVM_NU))); - SWIG_Python_SetConstant(d, "CvParamGrid_SVM_COEF",SWIG_From_int(static_cast< int >(CvParamGrid::SVM_COEF))); - SWIG_Python_SetConstant(d, "CvParamGrid_SVM_DEGREE",SWIG_From_int(static_cast< int >(CvParamGrid::SVM_DEGREE))); - SWIG_Python_SetConstant(d, "CvSVM_C_SVC",SWIG_From_int(static_cast< int >(CvSVM::C_SVC))); - SWIG_Python_SetConstant(d, "CvSVM_NU_SVC",SWIG_From_int(static_cast< int >(CvSVM::NU_SVC))); - SWIG_Python_SetConstant(d, "CvSVM_ONE_CLASS",SWIG_From_int(static_cast< int >(CvSVM::ONE_CLASS))); - SWIG_Python_SetConstant(d, "CvSVM_EPS_SVR",SWIG_From_int(static_cast< int >(CvSVM::EPS_SVR))); - SWIG_Python_SetConstant(d, "CvSVM_NU_SVR",SWIG_From_int(static_cast< int >(CvSVM::NU_SVR))); - SWIG_Python_SetConstant(d, "CvSVM_LINEAR",SWIG_From_int(static_cast< int >(CvSVM::LINEAR))); - SWIG_Python_SetConstant(d, "CvSVM_POLY",SWIG_From_int(static_cast< int >(CvSVM::POLY))); - SWIG_Python_SetConstant(d, "CvSVM_RBF",SWIG_From_int(static_cast< int >(CvSVM::RBF))); - SWIG_Python_SetConstant(d, "CvSVM_SIGMOID",SWIG_From_int(static_cast< int >(CvSVM::SIGMOID))); - SWIG_Python_SetConstant(d, "CvSVM_C",SWIG_From_int(static_cast< int >(CvSVM::C))); - SWIG_Python_SetConstant(d, "CvSVM_GAMMA",SWIG_From_int(static_cast< int >(CvSVM::GAMMA))); - SWIG_Python_SetConstant(d, "CvSVM_P",SWIG_From_int(static_cast< int >(CvSVM::P))); - SWIG_Python_SetConstant(d, "CvSVM_NU",SWIG_From_int(static_cast< int >(CvSVM::NU))); - SWIG_Python_SetConstant(d, "CvSVM_COEF",SWIG_From_int(static_cast< int >(CvSVM::COEF))); - SWIG_Python_SetConstant(d, "CvSVM_DEGREE",SWIG_From_int(static_cast< int >(CvSVM::DEGREE))); - SWIG_Python_SetConstant(d, "CvEM_COV_MAT_SPHERICAL",SWIG_From_int(static_cast< int >(CvEM::COV_MAT_SPHERICAL))); - SWIG_Python_SetConstant(d, "CvEM_COV_MAT_DIAGONAL",SWIG_From_int(static_cast< int >(CvEM::COV_MAT_DIAGONAL))); - SWIG_Python_SetConstant(d, "CvEM_COV_MAT_GENERIC",SWIG_From_int(static_cast< int >(CvEM::COV_MAT_GENERIC))); - SWIG_Python_SetConstant(d, "CvEM_START_E_STEP",SWIG_From_int(static_cast< int >(CvEM::START_E_STEP))); - SWIG_Python_SetConstant(d, "CvEM_START_M_STEP",SWIG_From_int(static_cast< int >(CvEM::START_M_STEP))); - SWIG_Python_SetConstant(d, "CvEM_START_AUTO_STEP",SWIG_From_int(static_cast< int >(CvEM::START_AUTO_STEP))); - SWIG_Python_SetConstant(d, "CvBoost_DISCRETE",SWIG_From_int(static_cast< int >(CvBoost::DISCRETE))); - SWIG_Python_SetConstant(d, "CvBoost_REAL",SWIG_From_int(static_cast< int >(CvBoost::REAL))); - SWIG_Python_SetConstant(d, "CvBoost_LOGIT",SWIG_From_int(static_cast< int >(CvBoost::LOGIT))); - SWIG_Python_SetConstant(d, "CvBoost_GENTLE",SWIG_From_int(static_cast< int >(CvBoost::GENTLE))); - SWIG_Python_SetConstant(d, "CvBoost_DEFAULT",SWIG_From_int(static_cast< int >(CvBoost::DEFAULT))); - SWIG_Python_SetConstant(d, "CvBoost_GINI",SWIG_From_int(static_cast< int >(CvBoost::GINI))); - SWIG_Python_SetConstant(d, "CvBoost_MISCLASS",SWIG_From_int(static_cast< int >(CvBoost::MISCLASS))); - SWIG_Python_SetConstant(d, "CvBoost_SQERR",SWIG_From_int(static_cast< int >(CvBoost::SQERR))); - SWIG_Python_SetConstant(d, "CvANN_MLP_TrainParams_BACKPROP",SWIG_From_int(static_cast< int >(CvANN_MLP_TrainParams::BACKPROP))); - SWIG_Python_SetConstant(d, "CvANN_MLP_TrainParams_RPROP",SWIG_From_int(static_cast< int >(CvANN_MLP_TrainParams::RPROP))); - SWIG_Python_SetConstant(d, "CvANN_MLP_IDENTITY",SWIG_From_int(static_cast< int >(CvANN_MLP::IDENTITY))); - SWIG_Python_SetConstant(d, "CvANN_MLP_SIGMOID_SYM",SWIG_From_int(static_cast< int >(CvANN_MLP::SIGMOID_SYM))); - SWIG_Python_SetConstant(d, "CvANN_MLP_GAUSSIAN",SWIG_From_int(static_cast< int >(CvANN_MLP::GAUSSIAN))); - SWIG_Python_SetConstant(d, "CvANN_MLP_UPDATE_WEIGHTS",SWIG_From_int(static_cast< int >(CvANN_MLP::UPDATE_WEIGHTS))); - SWIG_Python_SetConstant(d, "CvANN_MLP_NO_INPUT_SCALE",SWIG_From_int(static_cast< int >(CvANN_MLP::NO_INPUT_SCALE))); - SWIG_Python_SetConstant(d, "CvANN_MLP_NO_OUTPUT_SCALE",SWIG_From_int(static_cast< int >(CvANN_MLP::NO_OUTPUT_SCALE))); - SWIG_Python_SetConstant(d, "CV_TS_CONCENTRIC_SPHERES",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_COUNT",SWIG_From_int(static_cast< int >(0))); - SWIG_Python_SetConstant(d, "CV_PORTION",SWIG_From_int(static_cast< int >(1))); -#if PY_VERSION_HEX >= 0x03000000 - return m; -#else - return; -#endif -} - diff --git a/interfaces/swig/python/adaptors.py b/interfaces/swig/python/adaptors.py deleted file mode 100644 index fbba53189..000000000 --- a/interfaces/swig/python/adaptors.py +++ /dev/null @@ -1,339 +0,0 @@ -######################################################################################### -# -# IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -# -# By downloading, copying, installing or using the software you agree to this license. -# If you do not agree to this license, do not download, install, -# copy or use the software. -# -# -# Intel License Agreement -# For Open Source Computer Vision Library -# -# Copyright (C) 2000, Intel Corporation, all rights reserved. -# Third party copyrights are property of their respective owners. -# -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: -# -# * Redistribution's of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# * Redistribution's in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# * The name of Intel Corporation may not be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# This software is provided by the copyright holders and contributors "as is" and -# any express or implied warranties, including, but not limited to, the implied -# warranties of merchantability and fitness for a particular purpose are disclaimed. -# In no event shall the Intel Corporation or contributors be liable for any direct, -# indirect, incidental, special, exemplary, or consequential damages -# (including, but not limited to, procurement of substitute goods or services; -# loss of use, data, or profits; or business interruption) however caused -# and on any theory of liability, whether in contract, strict liability, -# or tort (including negligence or otherwise) arising in any way out of -# the use of this software, even if advised of the possibility of such damage. -# -######################################################################################### - - -# 2004-03-16, Mark Asbach -# Institute of Communications Engineering, RWTH Aachen University -# 2007-02-xx, direct interface to numpy by Vicent Mas -# Carabos Coop. V. -# 2007-10-08, try/catch - -"""Adaptors to interchange data with numpy and/or PIL - -This module provides explicit conversion of OpenCV images/matrices to and from -the Python Imaging Library (PIL) and python's newest numeric library (numpy). - -Currently supported image/matrix formats are: - - 3 x 8 bit RGB (GBR) - - 1 x 8 bit Grayscale - - 1 x 32 bit Float - -In numpy, images are represented as multidimensional arrays with -a third dimension representing the image channels if more than one -channel is present. -""" - -import cv - -try: - import PIL.Image - - ########################################################################### - def Ipl2PIL(input): - """Converts an OpenCV/IPL image to PIL the Python Imaging Library. - - Supported input image formats are - IPL_DEPTH_8U x 1 channel - IPL_DEPTH_8U x 3 channels - IPL_DEPTH_32F x 1 channel - """ - - if not isinstance(input, cv.CvMat): - raise TypeError, 'must be called with a cv.CvMat!' - - #orientation - if input.origin == 0: - orientation = 1 # top left - elif input.origin == 1: - orientation = -1 # bottom left - else: - raise ValueError, 'origin must be 0 or 1!' - - # mode dictionary: - # (channels, depth) : (source mode, dest mode, depth in byte) - mode_list = { - (1, cv.IPL_DEPTH_8U) : ("L", "L", 1), - (3, cv.IPL_DEPTH_8U) : ("BGR", "RGB", 3), - (1, cv.IPL_DEPTH_32F) : ("F", "F", 4) - } - - key = (input.nChannels, input.depth) - if not mode_list.has_key(key): - raise ValueError, 'unknown or unsupported input mode' - - modes = mode_list[key] - - return PIL.Image.fromstring( - modes[1], # mode - (input.width, input.height), # size tuple - input.imageData, # data - "raw", - modes[0], # raw mode - input.widthStep, # stride - orientation # orientation - ) - - - ########################################################################### - def PIL2Ipl(input): - """Converts a PIL image to the OpenCV/IPL CvMat data format. - - Supported input image formats are: - RGB - L - F - """ - - if not (isinstance(input, PIL.Image.Image)): - raise TypeError, 'Must be called with PIL.Image.Image!' - - # mode dictionary: - # (pil_mode : (ipl_depth, ipl_channels) - mode_list = { - "RGB" : (cv.IPL_DEPTH_8U, 3), - "L" : (cv.IPL_DEPTH_8U, 1), - "F" : (cv.IPL_DEPTH_32F, 1) - } - - if not mode_list.has_key(input.mode): - raise ValueError, 'unknown or unsupported input mode' - - result = cv.cvCreateImage( - cv.cvSize(input.size[0], input.size[1]), # size - mode_list[input.mode][0], # depth - mode_list[input.mode][1] # channels - ) - - # set imageData - result.imageData = input.tostring() - return result - -except ImportError: - pass - - -############################################################################# -############################################################################# - -try: - - import numpy - - - ########################################################################### - def NumPy2Ipl(input): - """Converts a numpy array to the OpenCV/IPL CvMat data format. - - Supported input array layouts: - 2 dimensions of numpy.uint8 - 3 dimensions of numpy.uint8 - 2 dimensions of numpy.float32 - 2 dimensions of numpy.float64 - """ - - if not isinstance(input, numpy.ndarray): - raise TypeError, 'Must be called with numpy.ndarray!' - - # Check the number of dimensions of the input array - ndim = input.ndim - if not ndim in (2, 3): - raise ValueError, 'Only 2D-arrays and 3D-arrays are supported!' - - # Get the number of channels - if ndim == 2: - channels = 1 - else: - channels = input.shape[2] - - # Get the image depth - if input.dtype == numpy.uint8: - depth = cv.IPL_DEPTH_8U - elif input.dtype == numpy.float32: - depth = cv.IPL_DEPTH_32F - elif input.dtype == numpy.float64: - depth = cv.IPL_DEPTH_64F - - # supported modes list: [(channels, dtype), ...] - modes_list = [(1, numpy.uint8), (3, numpy.uint8), (1, numpy.float32), (1, numpy.float64)] - - # Check if the input array layout is supported - if not (channels, input.dtype) in modes_list: - raise ValueError, 'Unknown or unsupported input mode' - - result = cv.cvCreateImage( - cv.cvSize(input.shape[1], input.shape[0]), # size - depth, # depth - channels # channels - ) - - # set imageData - result.imageData = input.tostring() - - return result - - - ########################################################################### - def Ipl2NumPy(input): - """Converts an OpenCV/IPL image to a numpy array. - - Supported input image formats are - IPL_DEPTH_8U x 1 channel - IPL_DEPTH_8U x 3 channels - IPL_DEPTH_32F x 1 channel - IPL_DEPTH_32F x 2 channels - IPL_DEPTH_32S x 1 channel - IPL_DEPTH_64F x 1 channel - IPL_DEPTH_64F x 2 channels - """ - - if not isinstance(input, cv.CvMat): - raise TypeError, 'must be called with a cv.CvMat!' - - # data type dictionary: - # (channels, depth) : numpy dtype - ipl2dtype = { - (1, cv.IPL_DEPTH_8U) : numpy.uint8, - (3, cv.IPL_DEPTH_8U) : numpy.uint8, - (1, cv.IPL_DEPTH_32F) : numpy.float32, - (2, cv.IPL_DEPTH_32F) : numpy.float32, - (1, cv.IPL_DEPTH_32S) : numpy.int32, - (1, cv.IPL_DEPTH_64F) : numpy.float64, - (2, cv.IPL_DEPTH_64F) : numpy.float64 - } - - key = (input.nChannels, input.depth) - if not ipl2dtype.has_key(key): - raise ValueError, 'unknown or unsupported input mode' - - # Get the numpy array and reshape it correctly - # ATTENTION: flipped dimensions width/height on 2007-11-15 - if input.nChannels == 1: - array_1d = numpy.fromstring(input.imageData, dtype=ipl2dtype[key]) - return numpy.reshape(array_1d, (input.height, input.width)) - elif input.nChannels == 2: - array_1d = numpy.fromstring(input.imageData, dtype=ipl2dtype[key]) - return numpy.reshape(array_1d, (input.height, input.width, 2)) - elif input.nChannels == 3: - # Change the order of channels from BGR to RGB - rgb = cv.cvCreateImage(cv.cvSize(input.width, input.height), input.depth, 3) - cv.cvCvtColor(input, rgb, cv.CV_BGR2RGB) - array_1d = numpy.fromstring(rgb.imageData, dtype=ipl2dtype[key]) - return numpy.reshape(array_1d, (input.height, input.width, 3)) - -except ImportError: - pass - - -########################################################################### -########################################################################### - - -try: - - import PIL.Image - import numpy - - ########################################################################### - def PIL2NumPy(input): - """THIS METHOD IS DEPRECATED - - Converts a PIL image to a numpy array. - - Supported input image formats are: - RGB - L - F - """ - - if not (isinstance(input, PIL.Image.Image)): - raise TypeError, 'Must be called with PIL.Image.Image!' - - # modes dictionary: - # pil_mode : numpy dtype - modes_map = { - "RGB" : numpy.uint8, - "L" : numpy.uint8, - "F" : numpy.float32 - } - - if not modes_map.has_key(input.mode): - raise ValueError, 'Unknown or unsupported input mode!. Supported modes are RGB, L and F.' - - result_ro = numpy.asarray(input, dtype=modes_map[input.mode]) # Read-only array - return result_ro.copy() # Return a writeable array - - - ########################################################################### - def NumPy2PIL(input): - """THIS METHOD IS DEPRECATED - - Converts a numpy array to a PIL image. - - Supported input array layouts: - 2 dimensions of numpy.uint8 - 3 dimensions of numpy.uint8 - 2 dimensions of numpy.float32 - """ - - if not isinstance(input, numpy.ndarray): - raise TypeError, 'Must be called with numpy.ndarray!' - - # Check the number of dimensions of the input array - ndim = input.ndim - if not ndim in (2, 3): - raise ValueError, 'Only 2D-arrays and 3D-arrays are supported!' - - if ndim == 2: - channels = 1 - else: - channels = input.shape[2] - - # supported modes list: [(channels, dtype), ...] - modes_list = [(1, numpy.uint8), (3, numpy.uint8), (1, numpy.float32)] - - mode = (channels, input.dtype) - if not mode in modes_list: - raise ValueError, 'Unknown or unsupported input mode' - - return PIL.Image.fromarray(input) - -except ImportError: - pass diff --git a/interfaces/swig/python/cv.i b/interfaces/swig/python/cv.i deleted file mode 100644 index 1db000b9a..000000000 --- a/interfaces/swig/python/cv.i +++ /dev/null @@ -1,98 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University -%{ - #include "pyhelpers.h" - #include "pycvseq.hpp" - #include "error.h" -%} - - -// direct SWIG to generate python docstrings -%feature("autodoc", 1); - -// include python-specific files -%include "./nointpb.i" -%include "./pytypemaps.i" -%include "./cvshadow.i" - -// parse OpenCV headers -%include "../general/cv.i" - -// Accessors for the CvMat and IplImage data structure are defined here -%include "./cvarr.i" - -// Python sequence compatibility for CvSeq -%include "./cvseq.i" - - -%include "./imagedata.i" - -// We integrate OpenCV error handling into the Python exception mechanism -%include "./error.h" - - -// include some wrappers to manipulate CvSeq types -%include "./pycvseq.hpp" - -// aliases from #defines -%include "./cvaliases_autogen.i" -%include "./cvaliases.i" - -%pythoncode -%{ - -__doc__ = """ -OpenCV is the Intel Open CV library, an open source effort to provide -computer vision algorithms for standard PC hardware. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. -""" - -# this tells OpenCV not to call exit() on errors but throw a python exception instead -cvRedirectError(function_ptr_generator(), void_ptr_generator(), void_ptrptr_generator()) - -%} diff --git a/interfaces/swig/python/cv.py b/interfaces/swig/python/cv.py deleted file mode 100644 index e8b50d4e9..000000000 --- a/interfaces/swig/python/cv.py +++ /dev/null @@ -1,8627 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 1.3.40 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. -# This file is compatible with both classic and new-style classes. - -from sys import version_info -if version_info >= (2,6,0): - def swig_import_helper(): - from os.path import dirname - import imp - fp = None - try: - fp, pathname, description = imp.find_module('_cv', [dirname(__file__)]) - except ImportError: - import _cv - return _cv - if fp is not None: - try: - _mod = imp.load_module('_cv', fp, pathname, description) - finally: - fp.close() - return _mod - _cv = swig_import_helper() - del swig_import_helper -else: - import _cv -del version_info -try: - _swig_property = property -except NameError: - pass # Python < 2.2 doesn't have 'property'. -def _swig_setattr_nondynamic(self,class_type,name,value,static=1): - if (name == "thisown"): return self.this.own(value) - if (name == "this"): - if type(value).__name__ == 'SwigPyObject': - self.__dict__[name] = value - return - method = class_type.__swig_setmethods__.get(name,None) - if method: return method(self,value) - if (not static) or hasattr(self,name): - self.__dict__[name] = value - else: - raise AttributeError("You cannot add attributes to %s" % self) - -def _swig_setattr(self,class_type,name,value): - return _swig_setattr_nondynamic(self,class_type,name,value,0) - -def _swig_getattr(self,class_type,name): - if (name == "thisown"): return self.this.own() - method = class_type.__swig_getmethods__.get(name,None) - if method: return method(self) - raise AttributeError(name) - -def _swig_repr(self): - try: strthis = "proxy of " + self.this.__repr__() - except: strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - -try: - _object = object - _newclass = 1 -except AttributeError: - class _object : pass - _newclass = 0 - - -class CvRNG_Wrapper(_object): - """Proxy of C++ CvRNG_Wrapper class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvRNG_Wrapper, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvRNG_Wrapper, name) - __repr__ = _swig_repr - def __init__(self, *args): - """__init__(self, CvRNG val) -> CvRNG_Wrapper""" - this = _cv.new_CvRNG_Wrapper(*args) - try: self.this.append(this) - except: self.this = this - def ptr(self): - """ptr(self) -> CvRNG""" - return _cv.CvRNG_Wrapper_ptr(self) - - def ref(self): - """ref(self) -> CvRNG""" - return _cv.CvRNG_Wrapper_ref(self) - - def __eq__(self, *args): - """__eq__(self, CvRNG_Wrapper x) -> bool""" - return _cv.CvRNG_Wrapper___eq__(self, *args) - - def __ne__(self, *args): - """__ne__(self, CvRNG_Wrapper x) -> bool""" - return _cv.CvRNG_Wrapper___ne__(self, *args) - - __swig_destroy__ = _cv.delete_CvRNG_Wrapper - __del__ = lambda self : None; -CvRNG_Wrapper_swigregister = _cv.CvRNG_Wrapper_swigregister -CvRNG_Wrapper_swigregister(CvRNG_Wrapper) - -class CvSubdiv2DEdge_Wrapper(_object): - """Proxy of C++ CvSubdiv2DEdge_Wrapper class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSubdiv2DEdge_Wrapper, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSubdiv2DEdge_Wrapper, name) - __repr__ = _swig_repr - def __init__(self, *args): - """__init__(self, CvSubdiv2DEdge val) -> CvSubdiv2DEdge_Wrapper""" - this = _cv.new_CvSubdiv2DEdge_Wrapper(*args) - try: self.this.append(this) - except: self.this = this - def ptr(self): - """ptr(self) -> CvSubdiv2DEdge""" - return _cv.CvSubdiv2DEdge_Wrapper_ptr(self) - - def ref(self): - """ref(self) -> CvSubdiv2DEdge""" - return _cv.CvSubdiv2DEdge_Wrapper_ref(self) - - def __eq__(self, *args): - """__eq__(self, CvSubdiv2DEdge_Wrapper x) -> bool""" - return _cv.CvSubdiv2DEdge_Wrapper___eq__(self, *args) - - def __ne__(self, *args): - """__ne__(self, CvSubdiv2DEdge_Wrapper x) -> bool""" - return _cv.CvSubdiv2DEdge_Wrapper___ne__(self, *args) - - __swig_destroy__ = _cv.delete_CvSubdiv2DEdge_Wrapper - __del__ = lambda self : None; -CvSubdiv2DEdge_Wrapper_swigregister = _cv.CvSubdiv2DEdge_Wrapper_swigregister -CvSubdiv2DEdge_Wrapper_swigregister(CvSubdiv2DEdge_Wrapper) - -class SwigPyIterator(_object): - """Proxy of C++ swig::SwigPyIterator class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract") - __repr__ = _swig_repr - __swig_destroy__ = _cv.delete_SwigPyIterator - __del__ = lambda self : None; - def value(self): - """value(self) -> PyObject""" - return _cv.SwigPyIterator_value(self) - - def incr(self, n = 1): - """ - incr(self, size_t n = 1) -> SwigPyIterator - incr(self) -> SwigPyIterator - """ - return _cv.SwigPyIterator_incr(self, n) - - def decr(self, n = 1): - """ - decr(self, size_t n = 1) -> SwigPyIterator - decr(self) -> SwigPyIterator - """ - return _cv.SwigPyIterator_decr(self, n) - - def distance(self, *args): - """distance(self, SwigPyIterator x) -> ptrdiff_t""" - return _cv.SwigPyIterator_distance(self, *args) - - def equal(self, *args): - """equal(self, SwigPyIterator x) -> bool""" - return _cv.SwigPyIterator_equal(self, *args) - - def copy(self): - """copy(self) -> SwigPyIterator""" - return _cv.SwigPyIterator_copy(self) - - def next(self): - """next(self) -> PyObject""" - return _cv.SwigPyIterator_next(self) - - def __next__(self): - """__next__(self) -> PyObject""" - return _cv.SwigPyIterator___next__(self) - - def previous(self): - """previous(self) -> PyObject""" - return _cv.SwigPyIterator_previous(self) - - def advance(self, *args): - """advance(self, ptrdiff_t n) -> SwigPyIterator""" - return _cv.SwigPyIterator_advance(self, *args) - - def __eq__(self, *args): - """__eq__(self, SwigPyIterator x) -> bool""" - return _cv.SwigPyIterator___eq__(self, *args) - - def __ne__(self, *args): - """__ne__(self, SwigPyIterator x) -> bool""" - return _cv.SwigPyIterator___ne__(self, *args) - - def __iadd__(self, *args): - """__iadd__(self, ptrdiff_t n) -> SwigPyIterator""" - return _cv.SwigPyIterator___iadd__(self, *args) - - def __isub__(self, *args): - """__isub__(self, ptrdiff_t n) -> SwigPyIterator""" - return _cv.SwigPyIterator___isub__(self, *args) - - def __add__(self, *args): - """__add__(self, ptrdiff_t n) -> SwigPyIterator""" - return _cv.SwigPyIterator___add__(self, *args) - - def __sub__(self, *args): - """ - __sub__(self, ptrdiff_t n) -> SwigPyIterator - __sub__(self, SwigPyIterator x) -> ptrdiff_t - """ - return _cv.SwigPyIterator___sub__(self, *args) - - def __iter__(self): return self -SwigPyIterator_swigregister = _cv.SwigPyIterator_swigregister -SwigPyIterator_swigregister(SwigPyIterator) - -class FloatVector(_object): - """Proxy of C++ std::vector<(float)> class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, FloatVector, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, FloatVector, name) - __repr__ = _swig_repr - def iterator(self): - """iterator(self) -> SwigPyIterator""" - return _cv.FloatVector_iterator(self) - - def __iter__(self): return self.iterator() - def __nonzero__(self): - """__nonzero__(self) -> bool""" - return _cv.FloatVector___nonzero__(self) - - def __bool__(self): - """__bool__(self) -> bool""" - return _cv.FloatVector___bool__(self) - - def __len__(self): - """__len__(self) -> size_type""" - return _cv.FloatVector___len__(self) - - def pop(self): - """pop(self) -> value_type""" - return _cv.FloatVector_pop(self) - - def __getslice__(self, *args): - """__getslice__(self, difference_type i, difference_type j) -> FloatVector""" - return _cv.FloatVector___getslice__(self, *args) - - def __setslice__(self, *args): - """__setslice__(self, difference_type i, difference_type j, FloatVector v)""" - return _cv.FloatVector___setslice__(self, *args) - - def __delslice__(self, *args): - """__delslice__(self, difference_type i, difference_type j)""" - return _cv.FloatVector___delslice__(self, *args) - - def __delitem__(self, *args): - """ - __delitem__(self, difference_type i) - __delitem__(self, PySliceObject slice) - """ - return _cv.FloatVector___delitem__(self, *args) - - def __getitem__(self, *args): - """ - __getitem__(self, PySliceObject slice) -> FloatVector - __getitem__(self, difference_type i) -> value_type - """ - return _cv.FloatVector___getitem__(self, *args) - - def __setitem__(self, *args): - """ - __setitem__(self, PySliceObject slice, FloatVector v) - __setitem__(self, difference_type i, value_type x) - """ - return _cv.FloatVector___setitem__(self, *args) - - def append(self, *args): - """append(self, value_type x)""" - return _cv.FloatVector_append(self, *args) - - def empty(self): - """empty(self) -> bool""" - return _cv.FloatVector_empty(self) - - def size(self): - """size(self) -> size_type""" - return _cv.FloatVector_size(self) - - def clear(self): - """clear(self)""" - return _cv.FloatVector_clear(self) - - def swap(self, *args): - """swap(self, FloatVector v)""" - return _cv.FloatVector_swap(self, *args) - - def get_allocator(self): - """get_allocator(self) -> allocator_type""" - return _cv.FloatVector_get_allocator(self) - - def begin(self): - """begin(self) -> const_iterator""" - return _cv.FloatVector_begin(self) - - def end(self): - """end(self) -> const_iterator""" - return _cv.FloatVector_end(self) - - def rbegin(self): - """rbegin(self) -> const_reverse_iterator""" - return _cv.FloatVector_rbegin(self) - - def rend(self): - """rend(self) -> const_reverse_iterator""" - return _cv.FloatVector_rend(self) - - def pop_back(self): - """pop_back(self)""" - return _cv.FloatVector_pop_back(self) - - def erase(self, *args): - """ - erase(self, iterator pos) -> iterator - erase(self, iterator first, iterator last) -> iterator - """ - return _cv.FloatVector_erase(self, *args) - - def __init__(self, *args): - """ - __init__(self) -> FloatVector - __init__(self, FloatVector arg0) -> FloatVector - __init__(self, size_type size) -> FloatVector - __init__(self, size_type size, value_type value) -> FloatVector - """ - this = _cv.new_FloatVector(*args) - try: self.this.append(this) - except: self.this = this - def push_back(self, *args): - """push_back(self, value_type x)""" - return _cv.FloatVector_push_back(self, *args) - - def front(self): - """front(self) -> value_type""" - return _cv.FloatVector_front(self) - - def back(self): - """back(self) -> value_type""" - return _cv.FloatVector_back(self) - - def assign(self, *args): - """assign(self, size_type n, value_type x)""" - return _cv.FloatVector_assign(self, *args) - - def resize(self, *args): - """ - resize(self, size_type new_size) - resize(self, size_type new_size, value_type x) - """ - return _cv.FloatVector_resize(self, *args) - - def insert(self, *args): - """ - insert(self, iterator pos, value_type x) -> iterator - insert(self, iterator pos, size_type n, value_type x) - """ - return _cv.FloatVector_insert(self, *args) - - def reserve(self, *args): - """reserve(self, size_type n)""" - return _cv.FloatVector_reserve(self, *args) - - def capacity(self): - """capacity(self) -> size_type""" - return _cv.FloatVector_capacity(self) - - __swig_destroy__ = _cv.delete_FloatVector - __del__ = lambda self : None; -FloatVector_swigregister = _cv.FloatVector_swigregister -FloatVector_swigregister(FloatVector) - -class CvPointVector(_object): - """Proxy of C++ std::vector<(CvPoint)> class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPointVector, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPointVector, name) - __repr__ = _swig_repr - def iterator(self): - """iterator(self) -> SwigPyIterator""" - return _cv.CvPointVector_iterator(self) - - def __iter__(self): return self.iterator() - def __nonzero__(self): - """__nonzero__(self) -> bool""" - return _cv.CvPointVector___nonzero__(self) - - def __bool__(self): - """__bool__(self) -> bool""" - return _cv.CvPointVector___bool__(self) - - def __len__(self): - """__len__(self) -> size_type""" - return _cv.CvPointVector___len__(self) - - def pop(self): - """pop(self) -> value_type""" - return _cv.CvPointVector_pop(self) - - def __getslice__(self, *args): - """__getslice__(self, difference_type i, difference_type j) -> CvPointVector""" - return _cv.CvPointVector___getslice__(self, *args) - - def __setslice__(self, *args): - """__setslice__(self, difference_type i, difference_type j, CvPointVector v)""" - return _cv.CvPointVector___setslice__(self, *args) - - def __delslice__(self, *args): - """__delslice__(self, difference_type i, difference_type j)""" - return _cv.CvPointVector___delslice__(self, *args) - - def __delitem__(self, *args): - """ - __delitem__(self, difference_type i) - __delitem__(self, PySliceObject slice) - """ - return _cv.CvPointVector___delitem__(self, *args) - - def __getitem__(self, *args): - """ - __getitem__(self, PySliceObject slice) -> CvPointVector - __getitem__(self, difference_type i) -> value_type - """ - return _cv.CvPointVector___getitem__(self, *args) - - def __setitem__(self, *args): - """ - __setitem__(self, PySliceObject slice, CvPointVector v) - __setitem__(self, difference_type i, value_type x) - """ - return _cv.CvPointVector___setitem__(self, *args) - - def append(self, *args): - """append(self, value_type x)""" - return _cv.CvPointVector_append(self, *args) - - def empty(self): - """empty(self) -> bool""" - return _cv.CvPointVector_empty(self) - - def size(self): - """size(self) -> size_type""" - return _cv.CvPointVector_size(self) - - def clear(self): - """clear(self)""" - return _cv.CvPointVector_clear(self) - - def swap(self, *args): - """swap(self, CvPointVector v)""" - return _cv.CvPointVector_swap(self, *args) - - def get_allocator(self): - """get_allocator(self) -> allocator_type""" - return _cv.CvPointVector_get_allocator(self) - - def begin(self): - """begin(self) -> const_iterator""" - return _cv.CvPointVector_begin(self) - - def end(self): - """end(self) -> const_iterator""" - return _cv.CvPointVector_end(self) - - def rbegin(self): - """rbegin(self) -> const_reverse_iterator""" - return _cv.CvPointVector_rbegin(self) - - def rend(self): - """rend(self) -> const_reverse_iterator""" - return _cv.CvPointVector_rend(self) - - def pop_back(self): - """pop_back(self)""" - return _cv.CvPointVector_pop_back(self) - - def erase(self, *args): - """ - erase(self, iterator pos) -> iterator - erase(self, iterator first, iterator last) -> iterator - """ - return _cv.CvPointVector_erase(self, *args) - - def __init__(self, *args): - """ - __init__(self) -> CvPointVector - __init__(self, CvPointVector arg0) -> CvPointVector - __init__(self, size_type size) -> CvPointVector - __init__(self, size_type size, value_type value) -> CvPointVector - """ - this = _cv.new_CvPointVector(*args) - try: self.this.append(this) - except: self.this = this - def push_back(self, *args): - """push_back(self, value_type x)""" - return _cv.CvPointVector_push_back(self, *args) - - def front(self): - """front(self) -> value_type""" - return _cv.CvPointVector_front(self) - - def back(self): - """back(self) -> value_type""" - return _cv.CvPointVector_back(self) - - def assign(self, *args): - """assign(self, size_type n, value_type x)""" - return _cv.CvPointVector_assign(self, *args) - - def resize(self, *args): - """ - resize(self, size_type new_size) - resize(self, size_type new_size, value_type x) - """ - return _cv.CvPointVector_resize(self, *args) - - def insert(self, *args): - """ - insert(self, iterator pos, value_type x) -> iterator - insert(self, iterator pos, size_type n, value_type x) - """ - return _cv.CvPointVector_insert(self, *args) - - def reserve(self, *args): - """reserve(self, size_type n)""" - return _cv.CvPointVector_reserve(self, *args) - - def capacity(self): - """capacity(self) -> size_type""" - return _cv.CvPointVector_capacity(self) - - __swig_destroy__ = _cv.delete_CvPointVector - __del__ = lambda self : None; -CvPointVector_swigregister = _cv.CvPointVector_swigregister -CvPointVector_swigregister(CvPointVector) - - -def cvSegmentMotion(*args): - """ - cvSegmentMotion(CvArr mhi, CvArr seg_mask, CvMemStorage storage, double timestamp, - double seg_thresh) -> CvSeq_CvConnectedComp - """ - return _cv.cvSegmentMotion(*args) -def cvHoughCircles(*args): - seq = cvHoughCirclesUntyped( *args ) - return CvSeq_float_3.cast(seq) - -def cvPyrSegmentation(*args): - seq = cvPyrSegmentationUntyped( *args ) - return CvSeq_CvConnectedComp.cast(seq) - -def cvApproxChains(*args): - seq = cvApproxChainsUntyped( *args ) - return CvSeq_CvPoint.cast(seq) - -def cvContourFromContourTree(*args): - seq = cvContourFromContourTreeUntyped( *args ) - return CvSeq_CvPoint.cast(seq) - -def cvConvexityDefects(*args): - seq = cvConvexityDefectsUntyped( *args ) - return CvSeq_CvConvexityDefect.cast(seq) - -def cvFindContours( *args ): - count, seq = cvFindContoursUntyped( *args ) - return count, CvSeq_CvPoint.cast(seq) - -def cvHoughLines2( *args ): - seq = cvHoughLinesUntyped( *args ) - type = CV_SEQ_ELTYPE(seq) - if type == CV_32SC4: - return CvSeq_CvPoint_2.cast(seq) - return CvSeq_float_2.cast(seq) - -cvReleaseImage = _cv.delete_CvMat - -cvReleaseMat = _cv.delete_CvMat - -cvReleaseStructuringElement = _cv.delete_IplConvKernel - -cvReleaseConDensation = _cv.delete_CvConDensation - -cvReleaseKalman = _cv.delete_CvKalman - -cvReleaseHist = _cv.delete_CvHistogram - -cvReleaseHaarClassifierCascade = _cv.delete_CvHaarClassifierCascade - -cvReleaseImageHeader = _cv.delete_CvMat - -cvReleaseMatND = _cv.delete_CvMatND - -cvReleaseSparseMat = _cv.delete_CvSparseMat - -cvReleaseMemStorage = _cv.delete_CvMemStorage - -cvReleaseGraphScanner = _cv.delete_CvGraphScanner - - -def cvFree(*args): - """cvFree(void ptr)""" - return _cv.cvFree(*args) - -def CV_READ_CHAIN_POINT(*args): - """CV_READ_CHAIN_POINT(CvPoint _pt, CvChainPtReader reader)""" - return _cv.CV_READ_CHAIN_POINT(*args) - -def CV_MAT_ELEM_PTR(*args): - """CV_MAT_ELEM_PTR(CvMat mat, int row, int col) -> void""" - return _cv.CV_MAT_ELEM_PTR(*args) - -def CV_MAT_ELEM_PTR_FAST(*args): - """CV_MAT_ELEM_PTR_FAST(CvMat mat, int row, int col, int pix_size) -> void""" - return _cv.CV_MAT_ELEM_PTR_FAST(*args) - -def CV_NODE_VAL(*args): - """CV_NODE_VAL(CvSparseMat mat, CvSparseNode node) -> void""" - return _cv.CV_NODE_VAL(*args) - -def CV_NODE_IDX(*args): - """CV_NODE_IDX(CvSparseMat mat, CvSparseNode node) -> int""" - return _cv.CV_NODE_IDX(*args) - -def CV_SUBDIV2D_NEXT_EDGE(*args): - """CV_SUBDIV2D_NEXT_EDGE(CvSubdiv2DEdge edge) -> CvQuadEdge2D""" - return _cv.CV_SUBDIV2D_NEXT_EDGE(*args) - -def CV_SWAP(*args): - """CV_SWAP(int a, int b, int t)""" - return _cv.CV_SWAP(*args) - -def CV_IMIN(*args): - """CV_IMIN(int a, int b) -> int""" - return _cv.CV_IMIN(*args) - -def CV_IMAX(*args): - """CV_IMAX(int a, int b) -> int""" - return _cv.CV_IMAX(*args) - -def CV_IABS(*args): - """CV_IABS(int a) -> int""" - return _cv.CV_IABS(*args) - -def CV_CMP(*args): - """CV_CMP(int a, int b)""" - return _cv.CV_CMP(*args) - -def CV_SIGN(*args): - """CV_SIGN(int a)""" - return _cv.CV_SIGN(*args) - -def cvInvSqrt(*args): - """cvInvSqrt(double value)""" - return _cv.cvInvSqrt(*args) - -def cvSqrt(*args): - """cvSqrt(double value)""" - return _cv.cvSqrt(*args) - -def CV_IS_IMAGE_HDR(*args): - """CV_IS_IMAGE_HDR(CvArr img) -> int""" - return _cv.CV_IS_IMAGE_HDR(*args) - -def CV_IS_IMAGE(*args): - """CV_IS_IMAGE(CvArr img) -> int""" - return _cv.CV_IS_IMAGE(*args) - -def CV_MAT_DEPTH(*args): - """CV_MAT_DEPTH(int flags) -> int""" - return _cv.CV_MAT_DEPTH(*args) - -def CV_MAKETYPE(*args): - """CV_MAKETYPE(int depth, int cn) -> int""" - return _cv.CV_MAKETYPE(*args) - -def CV_8UC(*args): - """CV_8UC(int n) -> int""" - return _cv.CV_8UC(*args) - -def CV_8SC(*args): - """CV_8SC(int n) -> int""" - return _cv.CV_8SC(*args) - -def CV_16UC(*args): - """CV_16UC(int n) -> int""" - return _cv.CV_16UC(*args) - -def CV_16SC(*args): - """CV_16SC(int n) -> int""" - return _cv.CV_16SC(*args) - -def CV_32SC(*args): - """CV_32SC(int n) -> int""" - return _cv.CV_32SC(*args) - -def CV_32FC(*args): - """CV_32FC(int n) -> int""" - return _cv.CV_32FC(*args) - -def CV_64FC(*args): - """CV_64FC(int n) -> int""" - return _cv.CV_64FC(*args) - -def CV_MAT_CN(*args): - """CV_MAT_CN(int flags) -> int""" - return _cv.CV_MAT_CN(*args) - -def CV_MAT_TYPE(*args): - """CV_MAT_TYPE(int flags) -> int""" - return _cv.CV_MAT_TYPE(*args) - -def CV_IS_MAT_CONT(*args): - """CV_IS_MAT_CONT(int flags) -> int""" - return _cv.CV_IS_MAT_CONT(*args) - -def CV_IS_TEMP_MAT(*args): - """CV_IS_TEMP_MAT(int flags) -> int""" - return _cv.CV_IS_TEMP_MAT(*args) - -def CV_IS_MAT_HDR(*args): - """CV_IS_MAT_HDR(CvMat mat) -> int""" - return _cv.CV_IS_MAT_HDR(*args) - -def CV_IS_MAT(*args): - """CV_IS_MAT(CvMat mat) -> int""" - return _cv.CV_IS_MAT(*args) - -def CV_IS_MASK_ARR(*args): - """CV_IS_MASK_ARR(CvMat mat) -> int""" - return _cv.CV_IS_MASK_ARR(*args) - -def CV_ARE_TYPES_EQ(*args): - """CV_ARE_TYPES_EQ(CvMat mat1, CvMat mat2) -> int""" - return _cv.CV_ARE_TYPES_EQ(*args) - -def CV_ARE_CNS_EQ(*args): - """CV_ARE_CNS_EQ(CvMat mat1, CvMat mat2) -> int""" - return _cv.CV_ARE_CNS_EQ(*args) - -def CV_ARE_DEPTHS_EQ(*args): - """CV_ARE_DEPTHS_EQ(CvMat mat1, CvMat mat2) -> int""" - return _cv.CV_ARE_DEPTHS_EQ(*args) - -def CV_ARE_SIZES_EQ(*args): - """CV_ARE_SIZES_EQ(CvMat mat1, CvMat mat2) -> int""" - return _cv.CV_ARE_SIZES_EQ(*args) - -def CV_IS_MAT_CONST(*args): - """CV_IS_MAT_CONST(CvMat mat) -> int""" - return _cv.CV_IS_MAT_CONST(*args) - -def CV_ELEM_SIZE1(*args): - """CV_ELEM_SIZE1(int type) -> int""" - return _cv.CV_ELEM_SIZE1(*args) - -def CV_ELEM_SIZE(*args): - """CV_ELEM_SIZE(int type) -> int""" - return _cv.CV_ELEM_SIZE(*args) - -def CV_IS_MATND_HDR(*args): - """CV_IS_MATND_HDR(CvMat mat) -> int""" - return _cv.CV_IS_MATND_HDR(*args) - -def CV_IS_MATND(*args): - """CV_IS_MATND(CvMat mat) -> int""" - return _cv.CV_IS_MATND(*args) - -def CV_IS_SPARSE_MAT_HDR(*args): - """CV_IS_SPARSE_MAT_HDR(CvMat mat) -> int""" - return _cv.CV_IS_SPARSE_MAT_HDR(*args) - -def CV_IS_SPARSE_MAT(*args): - """CV_IS_SPARSE_MAT(CvMat mat) -> int""" - return _cv.CV_IS_SPARSE_MAT(*args) - -def CV_IS_HIST(*args): - """CV_IS_HIST(CvHistogram hist) -> int""" - return _cv.CV_IS_HIST(*args) - -def CV_IS_UNIFORM_HIST(*args): - """CV_IS_UNIFORM_HIST(CvHistogram hist) -> int""" - return _cv.CV_IS_UNIFORM_HIST(*args) - -def CV_IS_SPARSE_HIST(*args): - """CV_IS_SPARSE_HIST(CvHistogram hist) -> int""" - return _cv.CV_IS_SPARSE_HIST(*args) - -def CV_HIST_HAS_RANGES(*args): - """CV_HIST_HAS_RANGES(CvHistogram hist) -> int""" - return _cv.CV_HIST_HAS_RANGES(*args) - -def CV_IS_STORAGE(*args): - """CV_IS_STORAGE(CvMemStorage storage) -> int""" - return _cv.CV_IS_STORAGE(*args) - -def CV_IS_SET_ELEM(*args): - """CV_IS_SET_ELEM(void ptr) -> int""" - return _cv.CV_IS_SET_ELEM(*args) - -def CV_IS_SEQ(*args): - """CV_IS_SEQ(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ(*args) - -def CV_IS_SET(*args): - """CV_IS_SET(CvSet set) -> int""" - return _cv.CV_IS_SET(*args) - -def CV_SEQ_ELTYPE(*args): - """CV_SEQ_ELTYPE(CvSeq seq) -> int""" - return _cv.CV_SEQ_ELTYPE(*args) - -def CV_SEQ_KIND(*args): - """CV_SEQ_KIND(CvSeq seq) -> int""" - return _cv.CV_SEQ_KIND(*args) - -def CV_IS_SEQ_INDEX(*args): - """CV_IS_SEQ_INDEX(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_INDEX(*args) - -def CV_IS_SEQ_CURVE(*args): - """CV_IS_SEQ_CURVE(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_CURVE(*args) - -def CV_IS_SEQ_CLOSED(*args): - """CV_IS_SEQ_CLOSED(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_CLOSED(*args) - -def CV_IS_SEQ_CONVEX(*args): - """CV_IS_SEQ_CONVEX(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_CONVEX(*args) - -def CV_IS_SEQ_HOLE(*args): - """CV_IS_SEQ_HOLE(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_HOLE(*args) - -def CV_IS_SEQ_SIMPLE(*args): - """CV_IS_SEQ_SIMPLE(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_SIMPLE(*args) - -def CV_IS_SEQ_POINT_SET(*args): - """CV_IS_SEQ_POINT_SET(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_POINT_SET(*args) - -def CV_IS_SEQ_POINT_SUBSET(*args): - """CV_IS_SEQ_POINT_SUBSET(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_POINT_SUBSET(*args) - -def CV_IS_SEQ_POLYLINE(*args): - """CV_IS_SEQ_POLYLINE(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_POLYLINE(*args) - -def CV_IS_SEQ_POLYGON(*args): - """CV_IS_SEQ_POLYGON(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_POLYGON(*args) - -def CV_IS_SEQ_CHAIN(*args): - """CV_IS_SEQ_CHAIN(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_CHAIN(*args) - -def CV_IS_SEQ_CONTOUR(*args): - """CV_IS_SEQ_CONTOUR(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_CONTOUR(*args) - -def CV_IS_SEQ_CHAIN_CONTOUR(*args): - """CV_IS_SEQ_CHAIN_CONTOUR(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_CHAIN_CONTOUR(*args) - -def CV_IS_SEQ_POLYGON_TREE(*args): - """CV_IS_SEQ_POLYGON_TREE(CvSeq seq) -> int""" - return _cv.CV_IS_SEQ_POLYGON_TREE(*args) - -def CV_IS_GRAPH(*args): - """CV_IS_GRAPH(CvSeq seq) -> int""" - return _cv.CV_IS_GRAPH(*args) - -def CV_IS_GRAPH_ORIENTED(*args): - """CV_IS_GRAPH_ORIENTED(CvSeq seq) -> int""" - return _cv.CV_IS_GRAPH_ORIENTED(*args) - -def CV_IS_SUBDIV2D(*args): - """CV_IS_SUBDIV2D(CvSeq seq) -> int""" - return _cv.CV_IS_SUBDIV2D(*args) - -def CV_WRITE_SEQ_ELEM_VAR(*args): - """CV_WRITE_SEQ_ELEM_VAR(void elem_ptr, CvSeqWriter writer)""" - return _cv.CV_WRITE_SEQ_ELEM_VAR(*args) - -def CV_WRITE_SEQ_ELEM(*args): - """CV_WRITE_SEQ_ELEM(CvPoint elem, CvSeqWriter writer)""" - return _cv.CV_WRITE_SEQ_ELEM(*args) - -def CV_NEXT_SEQ_ELEM(*args): - """CV_NEXT_SEQ_ELEM(int elem_size, CvSeqReader reader)""" - return _cv.CV_NEXT_SEQ_ELEM(*args) - -def CV_PREV_SEQ_ELEM(*args): - """CV_PREV_SEQ_ELEM(int elem_size, CvSeqReader reader)""" - return _cv.CV_PREV_SEQ_ELEM(*args) - -def CV_READ_SEQ_ELEM(*args): - """CV_READ_SEQ_ELEM(CvPoint elem, CvSeqReader reader)""" - return _cv.CV_READ_SEQ_ELEM(*args) - -def CV_REV_READ_SEQ_ELEM(*args): - """CV_REV_READ_SEQ_ELEM(CvPoint elem, CvSeqReader reader)""" - return _cv.CV_REV_READ_SEQ_ELEM(*args) - -def CV_CURRENT_POINT(*args): - """CV_CURRENT_POINT(CvSeqReader reader) -> CvPoint""" - return _cv.CV_CURRENT_POINT(*args) - -def CV_PREV_POINT(*args): - """CV_PREV_POINT(CvSeqReader reader) -> CvPoint""" - return _cv.CV_PREV_POINT(*args) - -def CV_READ_EDGE(*args): - """CV_READ_EDGE(CvPoint pt1, CvPoint pt2, CvSeqReader reader)""" - return _cv.CV_READ_EDGE(*args) - -def CV_NEXT_GRAPH_EDGE(*args): - """CV_NEXT_GRAPH_EDGE(CvGraphEdge edge, CvGraphVtx vertex) -> CvGraphEdge""" - return _cv.CV_NEXT_GRAPH_EDGE(*args) - -def CV_NODE_TYPE(*args): - """CV_NODE_TYPE(int flags) -> int""" - return _cv.CV_NODE_TYPE(*args) - -def CV_NODE_IS_INT(*args): - """CV_NODE_IS_INT(int flags) -> int""" - return _cv.CV_NODE_IS_INT(*args) - -def CV_NODE_IS_REAL(*args): - """CV_NODE_IS_REAL(int flags) -> int""" - return _cv.CV_NODE_IS_REAL(*args) - -def CV_NODE_IS_STRING(*args): - """CV_NODE_IS_STRING(int flags) -> int""" - return _cv.CV_NODE_IS_STRING(*args) - -def CV_NODE_IS_SEQ(*args): - """CV_NODE_IS_SEQ(int flags) -> int""" - return _cv.CV_NODE_IS_SEQ(*args) - -def CV_NODE_IS_MAP(*args): - """CV_NODE_IS_MAP(int flags) -> int""" - return _cv.CV_NODE_IS_MAP(*args) - -def CV_NODE_IS_COLLECTION(*args): - """CV_NODE_IS_COLLECTION(int flags) -> int""" - return _cv.CV_NODE_IS_COLLECTION(*args) - -def CV_NODE_IS_FLOW(*args): - """CV_NODE_IS_FLOW(int flags) -> int""" - return _cv.CV_NODE_IS_FLOW(*args) - -def CV_NODE_IS_EMPTY(*args): - """CV_NODE_IS_EMPTY(int flags) -> int""" - return _cv.CV_NODE_IS_EMPTY(*args) - -def CV_NODE_IS_USER(*args): - """CV_NODE_IS_USER(int flags) -> int""" - return _cv.CV_NODE_IS_USER(*args) - -def CV_NODE_HAS_NAME(*args): - """CV_NODE_HAS_NAME(int flags) -> int""" - return _cv.CV_NODE_HAS_NAME(*args) - -def CV_NODE_SEQ_IS_SIMPLE(*args): - """CV_NODE_SEQ_IS_SIMPLE(CvSeq seq) -> int""" - return _cv.CV_NODE_SEQ_IS_SIMPLE(*args) - -def cvReshapeND(*args): - """cvReshapeND(CvArr arr, int new_cn, int new_dims, int new_sizes)""" - return _cv.cvReshapeND(*args) - -def cvConvert(*args): - """cvConvert(CvArr src, CvArr dst)""" - return _cv.cvConvert(*args) - -def cvAXPY(*args): - """cvAXPY(CvArr A, double real_scalar, CvArr B, CvArr C)""" - return _cv.cvAXPY(*args) - -def cvAbs(*args): - """cvAbs(CvArr src, CvArr dst)""" - return _cv.cvAbs(*args) - -def cvMatMulAdd(*args): - """cvMatMulAdd(CvArr src1, CvArr src2, CvArr src3, CvArr dst)""" - return _cv.cvMatMulAdd(*args) - -def cvMatMul(*args): - """cvMatMul(CvArr src1, CvArr src2, CvArr dst)""" - return _cv.cvMatMul(*args) - -def cvGetGraphVtx(*args): - """cvGetGraphVtx(CvGraph graph, int idx)""" - return _cv.cvGetGraphVtx(*args) - -def cvGraphVtxIdx(*args): - """cvGraphVtxIdx(CvGraph graph, CvGraphVtx vtx) -> int""" - return _cv.cvGraphVtxIdx(*args) - -def cvGraphEdgeIdx(*args): - """cvGraphEdgeIdx(CvGraph graph, CvGraphEdge edge) -> int""" - return _cv.cvGraphEdgeIdx(*args) - -def cvGraphGetVtxCount(*args): - """cvGraphGetVtxCount(CvGraph graph) -> int""" - return _cv.cvGraphGetVtxCount(*args) - -def cvGraphGetEdgeCount(*args): - """cvGraphGetEdgeCount(CvGraph graph) -> int""" - return _cv.cvGraphGetEdgeCount(*args) - -def CV_IS_GRAPH_VERTEX_VISITED(*args): - """CV_IS_GRAPH_VERTEX_VISITED(CvGraphVtx vtx) -> int""" - return _cv.CV_IS_GRAPH_VERTEX_VISITED(*args) - -def CV_IS_GRAPH_EDGE_VISITED(*args): - """CV_IS_GRAPH_EDGE_VISITED(CvGraphEdge edge) -> int""" - return _cv.CV_IS_GRAPH_EDGE_VISITED(*args) - -def CV_RGB(*args): - """CV_RGB(double r, double g, int b) -> CvScalar""" - return _cv.CV_RGB(*args) - -def CV_NEXT_LINE_POINT(*args): - """CV_NEXT_LINE_POINT(CvLineIterator line_iterator)""" - return _cv.CV_NEXT_LINE_POINT(*args) - -def CV_INIT_3X3_DELTAS(*args): - """CV_INIT_3X3_DELTAS(double deltas, int step, int nch)""" - return _cv.CV_INIT_3X3_DELTAS(*args) - -def CV_IS_HAAR_CLASSIFIER(*args): - """CV_IS_HAAR_CLASSIFIER(void haar) -> int""" - return _cv.CV_IS_HAAR_CLASSIFIER(*args) - -def cvContourPerimeter(*args): - """cvContourPerimeter(CvSeq contour) -> double""" - return _cv.cvContourPerimeter(*args) - -def cvCalcBackProject(*args): - """cvCalcBackProject( image, CvArr dst, CvHistogram hist)""" - return _cv.cvCalcBackProject(*args) - -def cvCalcBackProjectPatch(*args): - """ - cvCalcBackProjectPatch( image, CvArr dst, CvSize range, CvHistogram hist, - int method, double factor) - """ - return _cv.cvCalcBackProjectPatch(*args) -sizeof_CvContour = _cv.sizeof_CvContour -sizeof_CvPoint = _cv.sizeof_CvPoint -sizeof_CvSeq = _cv.sizeof_CvSeq - -def cvCreateImage(*args): - """cvCreateImage(CvSize size, int depth, int channels) -> CvMat""" - return _cv.cvCreateImage(*args) - -def cvCloneImage(*args): - """cvCloneImage(CvMat mat) -> CvMat""" - return _cv.cvCloneImage(*args) -CV_AUTOSTEP = _cv.CV_AUTOSTEP -CV_MAX_ARR = _cv.CV_MAX_ARR -CV_NO_DEPTH_CHECK = _cv.CV_NO_DEPTH_CHECK -CV_NO_CN_CHECK = _cv.CV_NO_CN_CHECK -CV_NO_SIZE_CHECK = _cv.CV_NO_SIZE_CHECK -CV_CMP_EQ = _cv.CV_CMP_EQ -CV_CMP_GT = _cv.CV_CMP_GT -CV_CMP_GE = _cv.CV_CMP_GE -CV_CMP_LT = _cv.CV_CMP_LT -CV_CMP_LE = _cv.CV_CMP_LE -CV_CMP_NE = _cv.CV_CMP_NE -CV_CHECK_RANGE = _cv.CV_CHECK_RANGE -CV_CHECK_QUIET = _cv.CV_CHECK_QUIET -CV_RAND_UNI = _cv.CV_RAND_UNI -CV_RAND_NORMAL = _cv.CV_RAND_NORMAL -CV_SORT_EVERY_ROW = _cv.CV_SORT_EVERY_ROW -CV_SORT_EVERY_COLUMN = _cv.CV_SORT_EVERY_COLUMN -CV_SORT_ASCENDING = _cv.CV_SORT_ASCENDING -CV_SORT_DESCENDING = _cv.CV_SORT_DESCENDING -CV_GEMM_A_T = _cv.CV_GEMM_A_T -CV_GEMM_B_T = _cv.CV_GEMM_B_T -CV_GEMM_C_T = _cv.CV_GEMM_C_T -CV_SVD_MODIFY_A = _cv.CV_SVD_MODIFY_A -CV_SVD_U_T = _cv.CV_SVD_U_T -CV_SVD_V_T = _cv.CV_SVD_V_T -CV_LU = _cv.CV_LU -CV_SVD = _cv.CV_SVD -CV_SVD_SYM = _cv.CV_SVD_SYM -CV_CHOLESKY = _cv.CV_CHOLESKY -CV_QR = _cv.CV_QR -CV_NORMAL = _cv.CV_NORMAL -CV_COVAR_SCRAMBLED = _cv.CV_COVAR_SCRAMBLED -CV_COVAR_NORMAL = _cv.CV_COVAR_NORMAL -CV_COVAR_USE_AVG = _cv.CV_COVAR_USE_AVG -CV_COVAR_SCALE = _cv.CV_COVAR_SCALE -CV_COVAR_ROWS = _cv.CV_COVAR_ROWS -CV_COVAR_COLS = _cv.CV_COVAR_COLS -CV_PCA_DATA_AS_ROW = _cv.CV_PCA_DATA_AS_ROW -CV_PCA_DATA_AS_COL = _cv.CV_PCA_DATA_AS_COL -CV_PCA_USE_AVG = _cv.CV_PCA_USE_AVG -CV_C = _cv.CV_C -CV_L1 = _cv.CV_L1 -CV_L2 = _cv.CV_L2 -CV_NORM_MASK = _cv.CV_NORM_MASK -CV_RELATIVE = _cv.CV_RELATIVE -CV_DIFF = _cv.CV_DIFF -CV_MINMAX = _cv.CV_MINMAX -CV_DIFF_C = _cv.CV_DIFF_C -CV_DIFF_L1 = _cv.CV_DIFF_L1 -CV_DIFF_L2 = _cv.CV_DIFF_L2 -CV_RELATIVE_C = _cv.CV_RELATIVE_C -CV_RELATIVE_L1 = _cv.CV_RELATIVE_L1 -CV_RELATIVE_L2 = _cv.CV_RELATIVE_L2 -CV_REDUCE_SUM = _cv.CV_REDUCE_SUM -CV_REDUCE_AVG = _cv.CV_REDUCE_AVG -CV_REDUCE_MAX = _cv.CV_REDUCE_MAX -CV_REDUCE_MIN = _cv.CV_REDUCE_MIN -CV_DXT_FORWARD = _cv.CV_DXT_FORWARD -CV_DXT_INVERSE = _cv.CV_DXT_INVERSE -CV_DXT_SCALE = _cv.CV_DXT_SCALE -CV_DXT_INV_SCALE = _cv.CV_DXT_INV_SCALE -CV_DXT_INVERSE_SCALE = _cv.CV_DXT_INVERSE_SCALE -CV_DXT_ROWS = _cv.CV_DXT_ROWS -CV_DXT_MUL_CONJ = _cv.CV_DXT_MUL_CONJ -CV_FRONT = _cv.CV_FRONT -CV_BACK = _cv.CV_BACK -CV_GRAPH_VERTEX = _cv.CV_GRAPH_VERTEX -CV_GRAPH_TREE_EDGE = _cv.CV_GRAPH_TREE_EDGE -CV_GRAPH_BACK_EDGE = _cv.CV_GRAPH_BACK_EDGE -CV_GRAPH_FORWARD_EDGE = _cv.CV_GRAPH_FORWARD_EDGE -CV_GRAPH_CROSS_EDGE = _cv.CV_GRAPH_CROSS_EDGE -CV_GRAPH_ANY_EDGE = _cv.CV_GRAPH_ANY_EDGE -CV_GRAPH_NEW_TREE = _cv.CV_GRAPH_NEW_TREE -CV_GRAPH_BACKTRACKING = _cv.CV_GRAPH_BACKTRACKING -CV_GRAPH_OVER = _cv.CV_GRAPH_OVER -CV_GRAPH_ALL_ITEMS = _cv.CV_GRAPH_ALL_ITEMS -CV_GRAPH_ITEM_VISITED_FLAG = _cv.CV_GRAPH_ITEM_VISITED_FLAG -CV_GRAPH_SEARCH_TREE_NODE_FLAG = _cv.CV_GRAPH_SEARCH_TREE_NODE_FLAG -CV_GRAPH_FORWARD_EDGE_FLAG = _cv.CV_GRAPH_FORWARD_EDGE_FLAG -CV_FILLED = _cv.CV_FILLED -CV_AA = _cv.CV_AA -CV_FONT_HERSHEY_SIMPLEX = _cv.CV_FONT_HERSHEY_SIMPLEX -CV_FONT_HERSHEY_PLAIN = _cv.CV_FONT_HERSHEY_PLAIN -CV_FONT_HERSHEY_DUPLEX = _cv.CV_FONT_HERSHEY_DUPLEX -CV_FONT_HERSHEY_COMPLEX = _cv.CV_FONT_HERSHEY_COMPLEX -CV_FONT_HERSHEY_TRIPLEX = _cv.CV_FONT_HERSHEY_TRIPLEX -CV_FONT_HERSHEY_COMPLEX_SMALL = _cv.CV_FONT_HERSHEY_COMPLEX_SMALL -CV_FONT_HERSHEY_SCRIPT_SIMPLEX = _cv.CV_FONT_HERSHEY_SCRIPT_SIMPLEX -CV_FONT_HERSHEY_SCRIPT_COMPLEX = _cv.CV_FONT_HERSHEY_SCRIPT_COMPLEX -CV_FONT_ITALIC = _cv.CV_FONT_ITALIC -CV_FONT_VECTOR0 = _cv.CV_FONT_VECTOR0 -CV_KMEANS_USE_INITIAL_LABELS = _cv.CV_KMEANS_USE_INITIAL_LABELS -CV_ErrModeLeaf = _cv.CV_ErrModeLeaf -CV_ErrModeParent = _cv.CV_ErrModeParent -CV_ErrModeSilent = _cv.CV_ErrModeSilent -CV_MAJOR_VERSION = _cv.CV_MAJOR_VERSION -CV_MINOR_VERSION = _cv.CV_MINOR_VERSION -CV_SUBMINOR_VERSION = _cv.CV_SUBMINOR_VERSION -CV_PI = _cv.CV_PI -CV_LOG2 = _cv.CV_LOG2 -IPL_DEPTH_SIGN = _cv.IPL_DEPTH_SIGN -IPL_DEPTH_1U = _cv.IPL_DEPTH_1U -IPL_DEPTH_8U = _cv.IPL_DEPTH_8U -IPL_DEPTH_16U = _cv.IPL_DEPTH_16U -IPL_DEPTH_32F = _cv.IPL_DEPTH_32F -IPL_DEPTH_8S = _cv.IPL_DEPTH_8S -IPL_DEPTH_16S = _cv.IPL_DEPTH_16S -IPL_DEPTH_32S = _cv.IPL_DEPTH_32S -IPL_DATA_ORDER_PIXEL = _cv.IPL_DATA_ORDER_PIXEL -IPL_DATA_ORDER_PLANE = _cv.IPL_DATA_ORDER_PLANE -IPL_ORIGIN_TL = _cv.IPL_ORIGIN_TL -IPL_ORIGIN_BL = _cv.IPL_ORIGIN_BL -IPL_ALIGN_4BYTES = _cv.IPL_ALIGN_4BYTES -IPL_ALIGN_8BYTES = _cv.IPL_ALIGN_8BYTES -IPL_ALIGN_16BYTES = _cv.IPL_ALIGN_16BYTES -IPL_ALIGN_32BYTES = _cv.IPL_ALIGN_32BYTES -IPL_ALIGN_DWORD = _cv.IPL_ALIGN_DWORD -IPL_ALIGN_QWORD = _cv.IPL_ALIGN_QWORD -IPL_BORDER_CONSTANT = _cv.IPL_BORDER_CONSTANT -IPL_BORDER_REPLICATE = _cv.IPL_BORDER_REPLICATE -IPL_BORDER_REFLECT = _cv.IPL_BORDER_REFLECT -IPL_BORDER_WRAP = _cv.IPL_BORDER_WRAP -IPL_IMAGE_HEADER = _cv.IPL_IMAGE_HEADER -IPL_IMAGE_DATA = _cv.IPL_IMAGE_DATA -IPL_IMAGE_ROI = _cv.IPL_IMAGE_ROI -IPL_BORDER_REFLECT_101 = _cv.IPL_BORDER_REFLECT_101 -CV_TYPE_NAME_IMAGE = _cv.CV_TYPE_NAME_IMAGE -IPL_DEPTH_64F = _cv.IPL_DEPTH_64F -CV_CN_MAX = _cv.CV_CN_MAX -CV_CN_SHIFT = _cv.CV_CN_SHIFT -CV_DEPTH_MAX = _cv.CV_DEPTH_MAX -CV_8U = _cv.CV_8U -CV_8S = _cv.CV_8S -CV_16U = _cv.CV_16U -CV_16S = _cv.CV_16S -CV_32S = _cv.CV_32S -CV_32F = _cv.CV_32F -CV_64F = _cv.CV_64F -CV_USRTYPE1 = _cv.CV_USRTYPE1 -CV_MAT_DEPTH_MASK = _cv.CV_MAT_DEPTH_MASK -CV_8UC1 = _cv.CV_8UC1 -CV_8UC2 = _cv.CV_8UC2 -CV_8UC3 = _cv.CV_8UC3 -CV_8UC4 = _cv.CV_8UC4 -CV_8SC1 = _cv.CV_8SC1 -CV_8SC2 = _cv.CV_8SC2 -CV_8SC3 = _cv.CV_8SC3 -CV_8SC4 = _cv.CV_8SC4 -CV_16UC1 = _cv.CV_16UC1 -CV_16UC2 = _cv.CV_16UC2 -CV_16UC3 = _cv.CV_16UC3 -CV_16UC4 = _cv.CV_16UC4 -CV_16SC1 = _cv.CV_16SC1 -CV_16SC2 = _cv.CV_16SC2 -CV_16SC3 = _cv.CV_16SC3 -CV_16SC4 = _cv.CV_16SC4 -CV_32SC1 = _cv.CV_32SC1 -CV_32SC2 = _cv.CV_32SC2 -CV_32SC3 = _cv.CV_32SC3 -CV_32SC4 = _cv.CV_32SC4 -CV_32FC1 = _cv.CV_32FC1 -CV_32FC2 = _cv.CV_32FC2 -CV_32FC3 = _cv.CV_32FC3 -CV_32FC4 = _cv.CV_32FC4 -CV_64FC1 = _cv.CV_64FC1 -CV_64FC2 = _cv.CV_64FC2 -CV_64FC3 = _cv.CV_64FC3 -CV_64FC4 = _cv.CV_64FC4 -CV_AUTO_STEP = _cv.CV_AUTO_STEP -CV_MAT_CN_MASK = _cv.CV_MAT_CN_MASK -CV_MAT_TYPE_MASK = _cv.CV_MAT_TYPE_MASK -CV_MAT_CONT_FLAG_SHIFT = _cv.CV_MAT_CONT_FLAG_SHIFT -CV_MAT_CONT_FLAG = _cv.CV_MAT_CONT_FLAG -CV_MAT_TEMP_FLAG_SHIFT = _cv.CV_MAT_TEMP_FLAG_SHIFT -CV_MAT_TEMP_FLAG = _cv.CV_MAT_TEMP_FLAG -CV_MAGIC_MASK = _cv.CV_MAGIC_MASK -CV_MAT_MAGIC_VAL = _cv.CV_MAT_MAGIC_VAL -CV_TYPE_NAME_MAT = _cv.CV_TYPE_NAME_MAT -CV_MATND_MAGIC_VAL = _cv.CV_MATND_MAGIC_VAL -CV_TYPE_NAME_MATND = _cv.CV_TYPE_NAME_MATND -CV_MAX_DIM = _cv.CV_MAX_DIM -CV_MAX_DIM_HEAP = _cv.CV_MAX_DIM_HEAP -CV_SPARSE_MAT_MAGIC_VAL = _cv.CV_SPARSE_MAT_MAGIC_VAL -CV_TYPE_NAME_SPARSE_MAT = _cv.CV_TYPE_NAME_SPARSE_MAT -CV_HIST_MAGIC_VAL = _cv.CV_HIST_MAGIC_VAL -CV_HIST_UNIFORM_FLAG = _cv.CV_HIST_UNIFORM_FLAG -CV_HIST_RANGES_FLAG = _cv.CV_HIST_RANGES_FLAG -CV_HIST_ARRAY = _cv.CV_HIST_ARRAY -CV_HIST_SPARSE = _cv.CV_HIST_SPARSE -CV_HIST_TREE = _cv.CV_HIST_TREE -CV_HIST_UNIFORM = _cv.CV_HIST_UNIFORM -CV_TERMCRIT_ITER = _cv.CV_TERMCRIT_ITER -CV_TERMCRIT_NUMBER = _cv.CV_TERMCRIT_NUMBER -CV_TERMCRIT_EPS = _cv.CV_TERMCRIT_EPS -CV_WHOLE_SEQ_END_INDEX = _cv.CV_WHOLE_SEQ_END_INDEX -CV_STORAGE_MAGIC_VAL = _cv.CV_STORAGE_MAGIC_VAL -CV_TYPE_NAME_SEQ = _cv.CV_TYPE_NAME_SEQ -CV_TYPE_NAME_SEQ_TREE = _cv.CV_TYPE_NAME_SEQ_TREE -CV_SET_ELEM_IDX_MASK = _cv.CV_SET_ELEM_IDX_MASK -CV_TYPE_NAME_GRAPH = _cv.CV_TYPE_NAME_GRAPH -CV_SEQ_MAGIC_VAL = _cv.CV_SEQ_MAGIC_VAL -CV_SET_MAGIC_VAL = _cv.CV_SET_MAGIC_VAL -CV_SEQ_ELTYPE_BITS = _cv.CV_SEQ_ELTYPE_BITS -CV_SEQ_ELTYPE_MASK = _cv.CV_SEQ_ELTYPE_MASK -CV_SEQ_ELTYPE_POINT = _cv.CV_SEQ_ELTYPE_POINT -CV_SEQ_ELTYPE_CODE = _cv.CV_SEQ_ELTYPE_CODE -CV_SEQ_ELTYPE_GENERIC = _cv.CV_SEQ_ELTYPE_GENERIC -CV_SEQ_ELTYPE_PTR = _cv.CV_SEQ_ELTYPE_PTR -CV_SEQ_ELTYPE_PPOINT = _cv.CV_SEQ_ELTYPE_PPOINT -CV_SEQ_ELTYPE_INDEX = _cv.CV_SEQ_ELTYPE_INDEX -CV_SEQ_ELTYPE_GRAPH_EDGE = _cv.CV_SEQ_ELTYPE_GRAPH_EDGE -CV_SEQ_ELTYPE_GRAPH_VERTEX = _cv.CV_SEQ_ELTYPE_GRAPH_VERTEX -CV_SEQ_ELTYPE_TRIAN_ATR = _cv.CV_SEQ_ELTYPE_TRIAN_ATR -CV_SEQ_ELTYPE_CONNECTED_COMP = _cv.CV_SEQ_ELTYPE_CONNECTED_COMP -CV_SEQ_ELTYPE_POINT3D = _cv.CV_SEQ_ELTYPE_POINT3D -CV_SEQ_KIND_BITS = _cv.CV_SEQ_KIND_BITS -CV_SEQ_KIND_MASK = _cv.CV_SEQ_KIND_MASK -CV_SEQ_KIND_GENERIC = _cv.CV_SEQ_KIND_GENERIC -CV_SEQ_KIND_CURVE = _cv.CV_SEQ_KIND_CURVE -CV_SEQ_KIND_BIN_TREE = _cv.CV_SEQ_KIND_BIN_TREE -CV_SEQ_KIND_GRAPH = _cv.CV_SEQ_KIND_GRAPH -CV_SEQ_KIND_SUBDIV2D = _cv.CV_SEQ_KIND_SUBDIV2D -CV_SEQ_FLAG_SHIFT = _cv.CV_SEQ_FLAG_SHIFT -CV_SEQ_FLAG_CLOSED = _cv.CV_SEQ_FLAG_CLOSED -CV_SEQ_FLAG_SIMPLE = _cv.CV_SEQ_FLAG_SIMPLE -CV_SEQ_FLAG_CONVEX = _cv.CV_SEQ_FLAG_CONVEX -CV_SEQ_FLAG_HOLE = _cv.CV_SEQ_FLAG_HOLE -CV_GRAPH_FLAG_ORIENTED = _cv.CV_GRAPH_FLAG_ORIENTED -CV_GRAPH = _cv.CV_GRAPH -CV_ORIENTED_GRAPH = _cv.CV_ORIENTED_GRAPH -CV_SEQ_POINT_SET = _cv.CV_SEQ_POINT_SET -CV_SEQ_POINT3D_SET = _cv.CV_SEQ_POINT3D_SET -CV_SEQ_POLYLINE = _cv.CV_SEQ_POLYLINE -CV_SEQ_POLYGON = _cv.CV_SEQ_POLYGON -CV_SEQ_CONTOUR = _cv.CV_SEQ_CONTOUR -CV_SEQ_SIMPLE_POLYGON = _cv.CV_SEQ_SIMPLE_POLYGON -CV_SEQ_CHAIN = _cv.CV_SEQ_CHAIN -CV_SEQ_CHAIN_CONTOUR = _cv.CV_SEQ_CHAIN_CONTOUR -CV_SEQ_POLYGON_TREE = _cv.CV_SEQ_POLYGON_TREE -CV_SEQ_CONNECTED_COMP = _cv.CV_SEQ_CONNECTED_COMP -CV_SEQ_INDEX = _cv.CV_SEQ_INDEX -CV_STORAGE_READ = _cv.CV_STORAGE_READ -CV_STORAGE_WRITE = _cv.CV_STORAGE_WRITE -CV_STORAGE_WRITE_TEXT = _cv.CV_STORAGE_WRITE_TEXT -CV_STORAGE_WRITE_BINARY = _cv.CV_STORAGE_WRITE_BINARY -CV_STORAGE_APPEND = _cv.CV_STORAGE_APPEND -CV_NODE_NONE = _cv.CV_NODE_NONE -CV_NODE_INT = _cv.CV_NODE_INT -CV_NODE_INTEGER = _cv.CV_NODE_INTEGER -CV_NODE_REAL = _cv.CV_NODE_REAL -CV_NODE_FLOAT = _cv.CV_NODE_FLOAT -CV_NODE_STR = _cv.CV_NODE_STR -CV_NODE_STRING = _cv.CV_NODE_STRING -CV_NODE_REF = _cv.CV_NODE_REF -CV_NODE_SEQ = _cv.CV_NODE_SEQ -CV_NODE_MAP = _cv.CV_NODE_MAP -CV_NODE_TYPE_MASK = _cv.CV_NODE_TYPE_MASK -CV_NODE_FLOW = _cv.CV_NODE_FLOW -CV_NODE_USER = _cv.CV_NODE_USER -CV_NODE_EMPTY = _cv.CV_NODE_EMPTY -CV_NODE_NAMED = _cv.CV_NODE_NAMED -CV_NODE_SEQ_SIMPLE = _cv.CV_NODE_SEQ_SIMPLE -CV_StsOk = _cv.CV_StsOk -CV_StsBackTrace = _cv.CV_StsBackTrace -CV_StsError = _cv.CV_StsError -CV_StsInternal = _cv.CV_StsInternal -CV_StsNoMem = _cv.CV_StsNoMem -CV_StsBadArg = _cv.CV_StsBadArg -CV_StsBadFunc = _cv.CV_StsBadFunc -CV_StsNoConv = _cv.CV_StsNoConv -CV_StsAutoTrace = _cv.CV_StsAutoTrace -CV_HeaderIsNull = _cv.CV_HeaderIsNull -CV_BadImageSize = _cv.CV_BadImageSize -CV_BadOffset = _cv.CV_BadOffset -CV_BadDataPtr = _cv.CV_BadDataPtr -CV_BadStep = _cv.CV_BadStep -CV_BadModelOrChSeq = _cv.CV_BadModelOrChSeq -CV_BadNumChannels = _cv.CV_BadNumChannels -CV_BadNumChannel1U = _cv.CV_BadNumChannel1U -CV_BadDepth = _cv.CV_BadDepth -CV_BadAlphaChannel = _cv.CV_BadAlphaChannel -CV_BadOrder = _cv.CV_BadOrder -CV_BadOrigin = _cv.CV_BadOrigin -CV_BadAlign = _cv.CV_BadAlign -CV_BadCallBack = _cv.CV_BadCallBack -CV_BadTileSize = _cv.CV_BadTileSize -CV_BadCOI = _cv.CV_BadCOI -CV_BadROISize = _cv.CV_BadROISize -CV_MaskIsTiled = _cv.CV_MaskIsTiled -CV_StsNullPtr = _cv.CV_StsNullPtr -CV_StsVecLengthErr = _cv.CV_StsVecLengthErr -CV_StsFilterStructContentErr = _cv.CV_StsFilterStructContentErr -CV_StsKernelStructContentErr = _cv.CV_StsKernelStructContentErr -CV_StsFilterOffsetErr = _cv.CV_StsFilterOffsetErr -CV_StsBadSize = _cv.CV_StsBadSize -CV_StsDivByZero = _cv.CV_StsDivByZero -CV_StsInplaceNotSupported = _cv.CV_StsInplaceNotSupported -CV_StsObjectNotFound = _cv.CV_StsObjectNotFound -CV_StsUnmatchedFormats = _cv.CV_StsUnmatchedFormats -CV_StsBadFlag = _cv.CV_StsBadFlag -CV_StsBadPoint = _cv.CV_StsBadPoint -CV_StsBadMask = _cv.CV_StsBadMask -CV_StsUnmatchedSizes = _cv.CV_StsUnmatchedSizes -CV_StsUnsupportedFormat = _cv.CV_StsUnsupportedFormat -CV_StsOutOfRange = _cv.CV_StsOutOfRange -CV_StsParseError = _cv.CV_StsParseError -CV_StsNotImplemented = _cv.CV_StsNotImplemented -CV_StsBadMemBlock = _cv.CV_StsBadMemBlock -CV_StsAssert = _cv.CV_StsAssert -CV_BLUR_NO_SCALE = _cv.CV_BLUR_NO_SCALE -CV_BLUR = _cv.CV_BLUR -CV_GAUSSIAN = _cv.CV_GAUSSIAN -CV_MEDIAN = _cv.CV_MEDIAN -CV_BILATERAL = _cv.CV_BILATERAL -CV_INPAINT_NS = _cv.CV_INPAINT_NS -CV_INPAINT_TELEA = _cv.CV_INPAINT_TELEA -CV_SCHARR = _cv.CV_SCHARR -CV_MAX_SOBEL_KSIZE = _cv.CV_MAX_SOBEL_KSIZE -CV_BGR2BGRA = _cv.CV_BGR2BGRA -CV_RGB2RGBA = _cv.CV_RGB2RGBA -CV_BGRA2BGR = _cv.CV_BGRA2BGR -CV_RGBA2RGB = _cv.CV_RGBA2RGB -CV_BGR2RGBA = _cv.CV_BGR2RGBA -CV_RGB2BGRA = _cv.CV_RGB2BGRA -CV_RGBA2BGR = _cv.CV_RGBA2BGR -CV_BGRA2RGB = _cv.CV_BGRA2RGB -CV_BGR2RGB = _cv.CV_BGR2RGB -CV_RGB2BGR = _cv.CV_RGB2BGR -CV_BGRA2RGBA = _cv.CV_BGRA2RGBA -CV_RGBA2BGRA = _cv.CV_RGBA2BGRA -CV_BGR2GRAY = _cv.CV_BGR2GRAY -CV_RGB2GRAY = _cv.CV_RGB2GRAY -CV_GRAY2BGR = _cv.CV_GRAY2BGR -CV_GRAY2RGB = _cv.CV_GRAY2RGB -CV_GRAY2BGRA = _cv.CV_GRAY2BGRA -CV_GRAY2RGBA = _cv.CV_GRAY2RGBA -CV_BGRA2GRAY = _cv.CV_BGRA2GRAY -CV_RGBA2GRAY = _cv.CV_RGBA2GRAY -CV_BGR2BGR565 = _cv.CV_BGR2BGR565 -CV_RGB2BGR565 = _cv.CV_RGB2BGR565 -CV_BGR5652BGR = _cv.CV_BGR5652BGR -CV_BGR5652RGB = _cv.CV_BGR5652RGB -CV_BGRA2BGR565 = _cv.CV_BGRA2BGR565 -CV_RGBA2BGR565 = _cv.CV_RGBA2BGR565 -CV_BGR5652BGRA = _cv.CV_BGR5652BGRA -CV_BGR5652RGBA = _cv.CV_BGR5652RGBA -CV_GRAY2BGR565 = _cv.CV_GRAY2BGR565 -CV_BGR5652GRAY = _cv.CV_BGR5652GRAY -CV_BGR2BGR555 = _cv.CV_BGR2BGR555 -CV_RGB2BGR555 = _cv.CV_RGB2BGR555 -CV_BGR5552BGR = _cv.CV_BGR5552BGR -CV_BGR5552RGB = _cv.CV_BGR5552RGB -CV_BGRA2BGR555 = _cv.CV_BGRA2BGR555 -CV_RGBA2BGR555 = _cv.CV_RGBA2BGR555 -CV_BGR5552BGRA = _cv.CV_BGR5552BGRA -CV_BGR5552RGBA = _cv.CV_BGR5552RGBA -CV_GRAY2BGR555 = _cv.CV_GRAY2BGR555 -CV_BGR5552GRAY = _cv.CV_BGR5552GRAY -CV_BGR2XYZ = _cv.CV_BGR2XYZ -CV_RGB2XYZ = _cv.CV_RGB2XYZ -CV_XYZ2BGR = _cv.CV_XYZ2BGR -CV_XYZ2RGB = _cv.CV_XYZ2RGB -CV_BGR2YCrCb = _cv.CV_BGR2YCrCb -CV_RGB2YCrCb = _cv.CV_RGB2YCrCb -CV_YCrCb2BGR = _cv.CV_YCrCb2BGR -CV_YCrCb2RGB = _cv.CV_YCrCb2RGB -CV_BGR2HSV = _cv.CV_BGR2HSV -CV_RGB2HSV = _cv.CV_RGB2HSV -CV_BGR2Lab = _cv.CV_BGR2Lab -CV_RGB2Lab = _cv.CV_RGB2Lab -CV_BayerBG2BGR = _cv.CV_BayerBG2BGR -CV_BayerGB2BGR = _cv.CV_BayerGB2BGR -CV_BayerRG2BGR = _cv.CV_BayerRG2BGR -CV_BayerGR2BGR = _cv.CV_BayerGR2BGR -CV_BayerBG2RGB = _cv.CV_BayerBG2RGB -CV_BayerGB2RGB = _cv.CV_BayerGB2RGB -CV_BayerRG2RGB = _cv.CV_BayerRG2RGB -CV_BayerGR2RGB = _cv.CV_BayerGR2RGB -CV_BGR2Luv = _cv.CV_BGR2Luv -CV_RGB2Luv = _cv.CV_RGB2Luv -CV_BGR2HLS = _cv.CV_BGR2HLS -CV_RGB2HLS = _cv.CV_RGB2HLS -CV_HSV2BGR = _cv.CV_HSV2BGR -CV_HSV2RGB = _cv.CV_HSV2RGB -CV_Lab2BGR = _cv.CV_Lab2BGR -CV_Lab2RGB = _cv.CV_Lab2RGB -CV_Luv2BGR = _cv.CV_Luv2BGR -CV_Luv2RGB = _cv.CV_Luv2RGB -CV_HLS2BGR = _cv.CV_HLS2BGR -CV_HLS2RGB = _cv.CV_HLS2RGB -CV_COLORCVT_MAX = _cv.CV_COLORCVT_MAX -CV_INTER_NN = _cv.CV_INTER_NN -CV_INTER_LINEAR = _cv.CV_INTER_LINEAR -CV_INTER_CUBIC = _cv.CV_INTER_CUBIC -CV_INTER_AREA = _cv.CV_INTER_AREA -CV_WARP_FILL_OUTLIERS = _cv.CV_WARP_FILL_OUTLIERS -CV_WARP_INVERSE_MAP = _cv.CV_WARP_INVERSE_MAP -CV_SHAPE_RECT = _cv.CV_SHAPE_RECT -CV_SHAPE_CROSS = _cv.CV_SHAPE_CROSS -CV_SHAPE_ELLIPSE = _cv.CV_SHAPE_ELLIPSE -CV_SHAPE_CUSTOM = _cv.CV_SHAPE_CUSTOM -CV_MOP_OPEN = _cv.CV_MOP_OPEN -CV_MOP_CLOSE = _cv.CV_MOP_CLOSE -CV_MOP_GRADIENT = _cv.CV_MOP_GRADIENT -CV_MOP_TOPHAT = _cv.CV_MOP_TOPHAT -CV_MOP_BLACKHAT = _cv.CV_MOP_BLACKHAT -CV_TM_SQDIFF = _cv.CV_TM_SQDIFF -CV_TM_SQDIFF_NORMED = _cv.CV_TM_SQDIFF_NORMED -CV_TM_CCORR = _cv.CV_TM_CCORR -CV_TM_CCORR_NORMED = _cv.CV_TM_CCORR_NORMED -CV_TM_CCOEFF = _cv.CV_TM_CCOEFF -CV_TM_CCOEFF_NORMED = _cv.CV_TM_CCOEFF_NORMED -CV_LKFLOW_PYR_A_READY = _cv.CV_LKFLOW_PYR_A_READY -CV_LKFLOW_PYR_B_READY = _cv.CV_LKFLOW_PYR_B_READY -CV_LKFLOW_INITIAL_GUESSES = _cv.CV_LKFLOW_INITIAL_GUESSES -CV_LKFLOW_GET_MIN_EIGENVALS = _cv.CV_LKFLOW_GET_MIN_EIGENVALS -CV_POLY_APPROX_DP = _cv.CV_POLY_APPROX_DP -CV_DOMINANT_IPAN = _cv.CV_DOMINANT_IPAN -CV_CONTOURS_MATCH_I1 = _cv.CV_CONTOURS_MATCH_I1 -CV_CONTOURS_MATCH_I2 = _cv.CV_CONTOURS_MATCH_I2 -CV_CONTOURS_MATCH_I3 = _cv.CV_CONTOURS_MATCH_I3 -CV_CONTOUR_TREES_MATCH_I1 = _cv.CV_CONTOUR_TREES_MATCH_I1 -CV_CLOCKWISE = _cv.CV_CLOCKWISE -CV_COUNTER_CLOCKWISE = _cv.CV_COUNTER_CLOCKWISE -CV_COMP_CORREL = _cv.CV_COMP_CORREL -CV_COMP_CHISQR = _cv.CV_COMP_CHISQR -CV_COMP_INTERSECT = _cv.CV_COMP_INTERSECT -CV_COMP_BHATTACHARYYA = _cv.CV_COMP_BHATTACHARYYA -CV_VALUE = _cv.CV_VALUE -CV_ARRAY = _cv.CV_ARRAY -CV_DIST_MASK_3 = _cv.CV_DIST_MASK_3 -CV_DIST_MASK_5 = _cv.CV_DIST_MASK_5 -CV_DIST_MASK_PRECISE = _cv.CV_DIST_MASK_PRECISE -CV_THRESH_BINARY = _cv.CV_THRESH_BINARY -CV_THRESH_BINARY_INV = _cv.CV_THRESH_BINARY_INV -CV_THRESH_TRUNC = _cv.CV_THRESH_TRUNC -CV_THRESH_TOZERO = _cv.CV_THRESH_TOZERO -CV_THRESH_TOZERO_INV = _cv.CV_THRESH_TOZERO_INV -CV_THRESH_MASK = _cv.CV_THRESH_MASK -CV_THRESH_OTSU = _cv.CV_THRESH_OTSU -CV_ADAPTIVE_THRESH_MEAN_C = _cv.CV_ADAPTIVE_THRESH_MEAN_C -CV_ADAPTIVE_THRESH_GAUSSIAN_C = _cv.CV_ADAPTIVE_THRESH_GAUSSIAN_C -CV_FLOODFILL_FIXED_RANGE = _cv.CV_FLOODFILL_FIXED_RANGE -CV_FLOODFILL_MASK_ONLY = _cv.CV_FLOODFILL_MASK_ONLY -CV_CANNY_L2_GRADIENT = _cv.CV_CANNY_L2_GRADIENT -CV_HOUGH_STANDARD = _cv.CV_HOUGH_STANDARD -CV_HOUGH_PROBABILISTIC = _cv.CV_HOUGH_PROBABILISTIC -CV_HOUGH_MULTI_SCALE = _cv.CV_HOUGH_MULTI_SCALE -CV_HOUGH_GRADIENT = _cv.CV_HOUGH_GRADIENT -CV_HAAR_DO_CANNY_PRUNING = _cv.CV_HAAR_DO_CANNY_PRUNING -CV_HAAR_SCALE_IMAGE = _cv.CV_HAAR_SCALE_IMAGE -CV_HAAR_FIND_BIGGEST_OBJECT = _cv.CV_HAAR_FIND_BIGGEST_OBJECT -CV_HAAR_DO_ROUGH_SEARCH = _cv.CV_HAAR_DO_ROUGH_SEARCH -CV_LMEDS = _cv.CV_LMEDS -CV_RANSAC = _cv.CV_RANSAC -CV_CALIB_CB_ADAPTIVE_THRESH = _cv.CV_CALIB_CB_ADAPTIVE_THRESH -CV_CALIB_CB_NORMALIZE_IMAGE = _cv.CV_CALIB_CB_NORMALIZE_IMAGE -CV_CALIB_CB_FILTER_QUADS = _cv.CV_CALIB_CB_FILTER_QUADS -CV_CALIB_USE_INTRINSIC_GUESS = _cv.CV_CALIB_USE_INTRINSIC_GUESS -CV_CALIB_FIX_ASPECT_RATIO = _cv.CV_CALIB_FIX_ASPECT_RATIO -CV_CALIB_FIX_PRINCIPAL_POINT = _cv.CV_CALIB_FIX_PRINCIPAL_POINT -CV_CALIB_ZERO_TANGENT_DIST = _cv.CV_CALIB_ZERO_TANGENT_DIST -CV_CALIB_FIX_FOCAL_LENGTH = _cv.CV_CALIB_FIX_FOCAL_LENGTH -CV_CALIB_FIX_K1 = _cv.CV_CALIB_FIX_K1 -CV_CALIB_FIX_K2 = _cv.CV_CALIB_FIX_K2 -CV_CALIB_FIX_K3 = _cv.CV_CALIB_FIX_K3 -CV_CALIB_FIX_INTRINSIC = _cv.CV_CALIB_FIX_INTRINSIC -CV_CALIB_SAME_FOCAL_LENGTH = _cv.CV_CALIB_SAME_FOCAL_LENGTH -CV_CALIB_ZERO_DISPARITY = _cv.CV_CALIB_ZERO_DISPARITY -CV_FM_7POINT = _cv.CV_FM_7POINT -CV_FM_8POINT = _cv.CV_FM_8POINT -CV_FM_LMEDS_ONLY = _cv.CV_FM_LMEDS_ONLY -CV_FM_RANSAC_ONLY = _cv.CV_FM_RANSAC_ONLY -CV_FM_LMEDS = _cv.CV_FM_LMEDS -CV_FM_RANSAC = _cv.CV_FM_RANSAC -CV_STEREO_BM_NORMALIZED_RESPONSE = _cv.CV_STEREO_BM_NORMALIZED_RESPONSE -CV_STEREO_BM_BASIC = _cv.CV_STEREO_BM_BASIC -CV_STEREO_BM_FISH_EYE = _cv.CV_STEREO_BM_FISH_EYE -CV_STEREO_BM_NARROW = _cv.CV_STEREO_BM_NARROW -CV_RETR_EXTERNAL = _cv.CV_RETR_EXTERNAL -CV_RETR_LIST = _cv.CV_RETR_LIST -CV_RETR_CCOMP = _cv.CV_RETR_CCOMP -CV_RETR_TREE = _cv.CV_RETR_TREE -CV_CHAIN_CODE = _cv.CV_CHAIN_CODE -CV_CHAIN_APPROX_NONE = _cv.CV_CHAIN_APPROX_NONE -CV_CHAIN_APPROX_SIMPLE = _cv.CV_CHAIN_APPROX_SIMPLE -CV_CHAIN_APPROX_TC89_L1 = _cv.CV_CHAIN_APPROX_TC89_L1 -CV_CHAIN_APPROX_TC89_KCOS = _cv.CV_CHAIN_APPROX_TC89_KCOS -CV_LINK_RUNS = _cv.CV_LINK_RUNS -CV_SUBDIV2D_VIRTUAL_POINT_FLAG = _cv.CV_SUBDIV2D_VIRTUAL_POINT_FLAG -CV_DIST_USER = _cv.CV_DIST_USER -CV_DIST_L1 = _cv.CV_DIST_L1 -CV_DIST_L2 = _cv.CV_DIST_L2 -CV_DIST_C = _cv.CV_DIST_C -CV_DIST_L12 = _cv.CV_DIST_L12 -CV_DIST_FAIR = _cv.CV_DIST_FAIR -CV_DIST_WELSCH = _cv.CV_DIST_WELSCH -CV_DIST_HUBER = _cv.CV_DIST_HUBER -CV_HAAR_MAGIC_VAL = _cv.CV_HAAR_MAGIC_VAL -CV_TYPE_NAME_HAAR = _cv.CV_TYPE_NAME_HAAR -CV_HAAR_FEATURE_MAX = _cv.CV_HAAR_FEATURE_MAX -class Cv32suf(_object): - """Proxy of C++ Cv32suf class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, Cv32suf, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, Cv32suf, name) - __repr__ = _swig_repr - __swig_setmethods__["i"] = _cv.Cv32suf_i_set - __swig_getmethods__["i"] = _cv.Cv32suf_i_get - if _newclass:i = _swig_property(_cv.Cv32suf_i_get, _cv.Cv32suf_i_set) - __swig_setmethods__["u"] = _cv.Cv32suf_u_set - __swig_getmethods__["u"] = _cv.Cv32suf_u_get - if _newclass:u = _swig_property(_cv.Cv32suf_u_get, _cv.Cv32suf_u_set) - __swig_setmethods__["f"] = _cv.Cv32suf_f_set - __swig_getmethods__["f"] = _cv.Cv32suf_f_get - if _newclass:f = _swig_property(_cv.Cv32suf_f_get, _cv.Cv32suf_f_set) - def __init__(self): - """__init__(self) -> Cv32suf""" - this = _cv.new_Cv32suf() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_Cv32suf - __del__ = lambda self : None; -Cv32suf_swigregister = _cv.Cv32suf_swigregister -Cv32suf_swigregister(Cv32suf) - -def cvCvtSeqToArray(*args): - """ - cvCvtSeqToArray(CvSeq seq, CvArr elements, CvSlice slice = CV_WHOLE_SEQ) -> CvArr - cvCvtSeqToArray(CvSeq seq, CvArr elements) -> CvArr - """ - return _cv.cvCvtSeqToArray(*args) - -def cvHaarDetectObjects(*args): - """ - cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, - double scale_factor = 1.1, int min_neighbors = 3, - int flags = 0, CvSize min_size = cvSize(0,0)) -> CvSeq_CvRect - cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, - double scale_factor = 1.1, int min_neighbors = 3, - int flags = 0) -> CvSeq_CvRect - cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, - double scale_factor = 1.1, int min_neighbors = 3) -> CvSeq_CvRect - cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage, - double scale_factor = 1.1) -> CvSeq_CvRect - cvHaarDetectObjects(CvArr image, CvHaarClassifierCascade cascade, CvMemStorage storage) -> CvSeq_CvRect - """ - return _cv.cvHaarDetectObjects(*args) - -def cvApproxPoly(*args): - """ - cvApproxPoly(void src_seq, int header_size, CvMemStorage storage, - int method, double parameter, int parameter2 = 0) -> CvSeq_CvPoint - cvApproxPoly(void src_seq, int header_size, CvMemStorage storage, - int method, double parameter) -> CvSeq_CvPoint - """ - return _cv.cvApproxPoly(*args) - -def cvConvexHull2(*args): - """ - cvConvexHull2(CvArr points, int orientation = CV_CLOCKWISE, int return_points = 0) -> CvMat - cvConvexHull2(CvArr points, int orientation = CV_CLOCKWISE) -> CvMat - cvConvexHull2(CvArr points) -> CvMat - """ - return _cv.cvConvexHull2(*args) - -def cvSnakeImage(*args): - """ - cvSnakeImage(CvMat image, CvPointVector points, FloatVector alpha, - FloatVector beta, FloatVector gamma, CvSize win, - CvTermCriteria criteria, int calc_gradient = 1) -> CvPointVector - cvSnakeImage(CvMat image, CvPointVector points, FloatVector alpha, - FloatVector beta, FloatVector gamma, CvSize win, - CvTermCriteria criteria) -> CvPointVector - """ - return _cv.cvSnakeImage(*args) - -class Cv64suf(_object): - """Proxy of C++ Cv64suf class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, Cv64suf, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, Cv64suf, name) - __repr__ = _swig_repr - __swig_setmethods__["i"] = _cv.Cv64suf_i_set - __swig_getmethods__["i"] = _cv.Cv64suf_i_get - if _newclass:i = _swig_property(_cv.Cv64suf_i_get, _cv.Cv64suf_i_set) - __swig_setmethods__["u"] = _cv.Cv64suf_u_set - __swig_getmethods__["u"] = _cv.Cv64suf_u_get - if _newclass:u = _swig_property(_cv.Cv64suf_u_get, _cv.Cv64suf_u_set) - __swig_setmethods__["f"] = _cv.Cv64suf_f_set - __swig_getmethods__["f"] = _cv.Cv64suf_f_get - if _newclass:f = _swig_property(_cv.Cv64suf_f_get, _cv.Cv64suf_f_set) - def __init__(self): - """__init__(self) -> Cv64suf""" - this = _cv.new_Cv64suf() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_Cv64suf - __del__ = lambda self : None; -Cv64suf_swigregister = _cv.Cv64suf_swigregister -Cv64suf_swigregister(Cv64suf) - - -def cvRound(*args): - """cvRound(double value) -> int""" - return _cv.cvRound(*args) - -def cvFloor(*args): - """cvFloor(double value) -> int""" - return _cv.cvFloor(*args) - -def cvCeil(*args): - """cvCeil(double value) -> int""" - return _cv.cvCeil(*args) - -def cvIsNaN(*args): - """cvIsNaN(double value) -> int""" - return _cv.cvIsNaN(*args) - -def cvIsInf(*args): - """cvIsInf(double value) -> int""" - return _cv.cvIsInf(*args) - -def cvRandInt(*args): - """cvRandInt(CvRNG rng) -> unsigned int""" - return _cv.cvRandInt(*args) - -def cvRandReal(*args): - """cvRandReal(CvRNG rng) -> double""" - return _cv.cvRandReal(*args) -class IplImage(_object): - """Proxy of C++ IplImage class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, IplImage, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, IplImage, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["ID"] = _cv.IplImage_ID_set - __swig_getmethods__["ID"] = _cv.IplImage_ID_get - if _newclass:ID = _swig_property(_cv.IplImage_ID_get, _cv.IplImage_ID_set) - __swig_setmethods__["nChannels"] = _cv.IplImage_nChannels_set - __swig_getmethods__["nChannels"] = _cv.IplImage_nChannels_get - if _newclass:nChannels = _swig_property(_cv.IplImage_nChannels_get, _cv.IplImage_nChannels_set) - __swig_setmethods__["depth"] = _cv.IplImage_depth_set - __swig_getmethods__["depth"] = _cv.IplImage_depth_get - if _newclass:depth = _swig_property(_cv.IplImage_depth_get, _cv.IplImage_depth_set) - __swig_setmethods__["dataOrder"] = _cv.IplImage_dataOrder_set - __swig_getmethods__["dataOrder"] = _cv.IplImage_dataOrder_get - if _newclass:dataOrder = _swig_property(_cv.IplImage_dataOrder_get, _cv.IplImage_dataOrder_set) - __swig_setmethods__["origin"] = _cv.IplImage_origin_set - __swig_getmethods__["origin"] = _cv.IplImage_origin_get - if _newclass:origin = _swig_property(_cv.IplImage_origin_get, _cv.IplImage_origin_set) - __swig_setmethods__["align"] = _cv.IplImage_align_set - __swig_getmethods__["align"] = _cv.IplImage_align_get - if _newclass:align = _swig_property(_cv.IplImage_align_get, _cv.IplImage_align_set) - __swig_setmethods__["width"] = _cv.IplImage_width_set - __swig_getmethods__["width"] = _cv.IplImage_width_get - if _newclass:width = _swig_property(_cv.IplImage_width_get, _cv.IplImage_width_set) - __swig_setmethods__["height"] = _cv.IplImage_height_set - __swig_getmethods__["height"] = _cv.IplImage_height_get - if _newclass:height = _swig_property(_cv.IplImage_height_get, _cv.IplImage_height_set) - __swig_setmethods__["roi"] = _cv.IplImage_roi_set - __swig_getmethods__["roi"] = _cv.IplImage_roi_get - if _newclass:roi = _swig_property(_cv.IplImage_roi_get, _cv.IplImage_roi_set) - __swig_setmethods__["imageSize"] = _cv.IplImage_imageSize_set - __swig_getmethods__["imageSize"] = _cv.IplImage_imageSize_get - if _newclass:imageSize = _swig_property(_cv.IplImage_imageSize_get, _cv.IplImage_imageSize_set) - __swig_setmethods__["widthStep"] = _cv.IplImage_widthStep_set - __swig_getmethods__["widthStep"] = _cv.IplImage_widthStep_get - if _newclass:widthStep = _swig_property(_cv.IplImage_widthStep_get, _cv.IplImage_widthStep_set) - __swig_destroy__ = _cv.delete_IplImage - __del__ = lambda self : None; - def __add__(self, *args): - """ - __add__(self, CvArr src) - __add__(self, CvScalar val) - """ - return _cv.IplImage___add__(self, *args) - - def __iadd__(self, *args): - """ - __iadd__(self, CvArr src) - __iadd__(self, CvScalar val) - """ - return _cv.IplImage___iadd__(self, *args) - - def __xor__(self, *args): - """ - __xor__(self, CvArr src) - __xor__(self, CvScalar val) - """ - return _cv.IplImage___xor__(self, *args) - - def __ixor__(self, *args): - """ - __ixor__(self, CvArr src) - __ixor__(self, CvScalar val) - """ - return _cv.IplImage___ixor__(self, *args) - - def __sub__(self, *args): - """ - __sub__(self, CvArr src) - __sub__(self, CvScalar val) - """ - return _cv.IplImage___sub__(self, *args) - - def __isub__(self, *args): - """ - __isub__(self, CvArr src) - __isub__(self, CvScalar val) - """ - return _cv.IplImage___isub__(self, *args) - - def __or__(self, *args): - """ - __or__(self, CvArr src) - __or__(self, CvScalar val) - """ - return _cv.IplImage___or__(self, *args) - - def __ior__(self, *args): - """ - __ior__(self, CvArr src) - __ior__(self, CvScalar val) - """ - return _cv.IplImage___ior__(self, *args) - - def __and__(self, *args): - """ - __and__(self, CvArr src) - __and__(self, CvScalar val) - """ - return _cv.IplImage___and__(self, *args) - - def __iand__(self, *args): - """ - __iand__(self, CvArr src) - __iand__(self, CvScalar val) - """ - return _cv.IplImage___iand__(self, *args) - - def __ge__(self, *args): - """ - __ge__(self, CvArr src) - __ge__(self, double val) - """ - return _cv.IplImage___ge__(self, *args) - - def __eq__(self, *args): - """ - __eq__(self, CvArr src) - __eq__(self, double val) - """ - return _cv.IplImage___eq__(self, *args) - - def __le__(self, *args): - """ - __le__(self, CvArr src) - __le__(self, double val) - """ - return _cv.IplImage___le__(self, *args) - - def __ne__(self, *args): - """ - __ne__(self, CvArr src) - __ne__(self, double val) - """ - return _cv.IplImage___ne__(self, *args) - - def __lt__(self, *args): - """ - __lt__(self, CvArr src) - __lt__(self, double val) - """ - return _cv.IplImage___lt__(self, *args) - - def __gt__(self, *args): - """ - __gt__(self, CvArr src) - __gt__(self, double val) - """ - return _cv.IplImage___gt__(self, *args) - - def __mul__(self, *args): - """ - __mul__(self, CvArr src) - __mul__(self, double val) - """ - return _cv.IplImage___mul__(self, *args) - - def __imul__(self, *args): - """ - __imul__(self, CvArr src) - __imul__(self, double val) - """ - return _cv.IplImage___imul__(self, *args) - - def __div__(self, *args): - """ - __div__(self, CvArr src) - __div__(self, double val) - """ - return _cv.IplImage___div__(self, *args) - - def __idiv__(self, *args): - """ - __idiv__(self, CvArr src) - __idiv__(self, double val) - """ - return _cv.IplImage___idiv__(self, *args) - - def __rdiv__(self, *args): - """__rdiv__(self, CvArr arg)""" - return _cv.IplImage___rdiv__(self, *args) - - def __radd__(self, *args): - """ - __radd__(self, CvArr arg) - __radd__(self, CvScalar arg) - __radd__(self, double arg) - """ - return _cv.IplImage___radd__(self, *args) - - def __rsub__(self, *args): - """ - __rsub__(self, CvArr arg) - __rsub__(self, CvScalar arg) - __rsub__(self, double arg) - """ - return _cv.IplImage___rsub__(self, *args) - - def __rmul__(self, *args): - """ - __rmul__(self, CvArr arg) - __rmul__(self, double arg) - """ - return _cv.IplImage___rmul__(self, *args) - - def __ror__(self, *args): - """ - __ror__(self, CvScalar arg) - __ror__(self, double arg) - """ - return _cv.IplImage___ror__(self, *args) - - def __rand__(self, *args): - """ - __rand__(self, CvScalar arg) - __rand__(self, double arg) - """ - return _cv.IplImage___rand__(self, *args) - - def __rxor__(self, *args): - """ - __rxor__(self, CvScalar arg) - __rxor__(self, double arg) - """ - return _cv.IplImage___rxor__(self, *args) - - def __req__(self, *args): - """__req__(self, double arg)""" - return _cv.IplImage___req__(self, *args) - - def __rgt__(self, *args): - """__rgt__(self, double arg)""" - return _cv.IplImage___rgt__(self, *args) - - def __rge__(self, *args): - """__rge__(self, double arg)""" - return _cv.IplImage___rge__(self, *args) - - def __rlt__(self, *args): - """__rlt__(self, double arg)""" - return _cv.IplImage___rlt__(self, *args) - - def __rle__(self, *args): - """__rle__(self, double arg)""" - return _cv.IplImage___rle__(self, *args) - - def __rne__(self, *args): - """__rne__(self, double arg)""" - return _cv.IplImage___rne__(self, *args) - - def __pow__(self, *args): - """__pow__(self, double arg)""" - return _cv.IplImage___pow__(self, *args) - - def __str__(self): - """__str__(self) -> char""" - return _cv.IplImage___str__(self) - - def __setitem__(self, *args): - """ - __setitem__(self, PyObject object, double val) - __setitem__(self, PyObject object, CvPoint val) - __setitem__(self, PyObject object, CvPoint2D32f val) - __setitem__(self, PyObject object, CvScalar val) - __setitem__(self, PyObject object, CvArr arr) - """ - return _cv.IplImage___setitem__(self, *args) - - def __getitem__(self, *args): - """__getitem__(self, PyObject object) -> PyObject""" - return _cv.IplImage___getitem__(self, *args) - -IplImage_swigregister = _cv.IplImage_swigregister -IplImage_swigregister(IplImage) - -def cvRNG(*args): - """ - cvRNG(int64 seed = -1) -> CvRNG - cvRNG() -> CvRNG - """ - return _cv.cvRNG(*args) - -class IplROI(_object): - """Proxy of C++ IplROI class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, IplROI, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, IplROI, name) - __repr__ = _swig_repr - __swig_setmethods__["coi"] = _cv.IplROI_coi_set - __swig_getmethods__["coi"] = _cv.IplROI_coi_get - if _newclass:coi = _swig_property(_cv.IplROI_coi_get, _cv.IplROI_coi_set) - __swig_setmethods__["xOffset"] = _cv.IplROI_xOffset_set - __swig_getmethods__["xOffset"] = _cv.IplROI_xOffset_get - if _newclass:xOffset = _swig_property(_cv.IplROI_xOffset_get, _cv.IplROI_xOffset_set) - __swig_setmethods__["yOffset"] = _cv.IplROI_yOffset_set - __swig_getmethods__["yOffset"] = _cv.IplROI_yOffset_get - if _newclass:yOffset = _swig_property(_cv.IplROI_yOffset_get, _cv.IplROI_yOffset_set) - __swig_setmethods__["width"] = _cv.IplROI_width_set - __swig_getmethods__["width"] = _cv.IplROI_width_get - if _newclass:width = _swig_property(_cv.IplROI_width_get, _cv.IplROI_width_set) - __swig_setmethods__["height"] = _cv.IplROI_height_set - __swig_getmethods__["height"] = _cv.IplROI_height_get - if _newclass:height = _swig_property(_cv.IplROI_height_get, _cv.IplROI_height_set) - def __init__(self): - """__init__(self) -> IplROI""" - this = _cv.new_IplROI() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_IplROI - __del__ = lambda self : None; -IplROI_swigregister = _cv.IplROI_swigregister -IplROI_swigregister(IplROI) - -class IplConvKernel(_object): - """Proxy of C++ IplConvKernel class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, IplConvKernel, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, IplConvKernel, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["nCols"] = _cv.IplConvKernel_nCols_set - __swig_getmethods__["nCols"] = _cv.IplConvKernel_nCols_get - if _newclass:nCols = _swig_property(_cv.IplConvKernel_nCols_get, _cv.IplConvKernel_nCols_set) - __swig_setmethods__["nRows"] = _cv.IplConvKernel_nRows_set - __swig_getmethods__["nRows"] = _cv.IplConvKernel_nRows_get - if _newclass:nRows = _swig_property(_cv.IplConvKernel_nRows_get, _cv.IplConvKernel_nRows_set) - __swig_setmethods__["anchorX"] = _cv.IplConvKernel_anchorX_set - __swig_getmethods__["anchorX"] = _cv.IplConvKernel_anchorX_get - if _newclass:anchorX = _swig_property(_cv.IplConvKernel_anchorX_get, _cv.IplConvKernel_anchorX_set) - __swig_setmethods__["anchorY"] = _cv.IplConvKernel_anchorY_set - __swig_getmethods__["anchorY"] = _cv.IplConvKernel_anchorY_get - if _newclass:anchorY = _swig_property(_cv.IplConvKernel_anchorY_get, _cv.IplConvKernel_anchorY_set) - __swig_setmethods__["values"] = _cv.IplConvKernel_values_set - __swig_getmethods__["values"] = _cv.IplConvKernel_values_get - if _newclass:values = _swig_property(_cv.IplConvKernel_values_get, _cv.IplConvKernel_values_set) - __swig_setmethods__["nShiftR"] = _cv.IplConvKernel_nShiftR_set - __swig_getmethods__["nShiftR"] = _cv.IplConvKernel_nShiftR_get - if _newclass:nShiftR = _swig_property(_cv.IplConvKernel_nShiftR_get, _cv.IplConvKernel_nShiftR_set) - __swig_destroy__ = _cv.delete_IplConvKernel - __del__ = lambda self : None; -IplConvKernel_swigregister = _cv.IplConvKernel_swigregister -IplConvKernel_swigregister(IplConvKernel) - -class IplConvKernelFP(_object): - """Proxy of C++ IplConvKernelFP class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, IplConvKernelFP, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, IplConvKernelFP, name) - __repr__ = _swig_repr - __swig_setmethods__["nCols"] = _cv.IplConvKernelFP_nCols_set - __swig_getmethods__["nCols"] = _cv.IplConvKernelFP_nCols_get - if _newclass:nCols = _swig_property(_cv.IplConvKernelFP_nCols_get, _cv.IplConvKernelFP_nCols_set) - __swig_setmethods__["nRows"] = _cv.IplConvKernelFP_nRows_set - __swig_getmethods__["nRows"] = _cv.IplConvKernelFP_nRows_get - if _newclass:nRows = _swig_property(_cv.IplConvKernelFP_nRows_get, _cv.IplConvKernelFP_nRows_set) - __swig_setmethods__["anchorX"] = _cv.IplConvKernelFP_anchorX_set - __swig_getmethods__["anchorX"] = _cv.IplConvKernelFP_anchorX_get - if _newclass:anchorX = _swig_property(_cv.IplConvKernelFP_anchorX_get, _cv.IplConvKernelFP_anchorX_set) - __swig_setmethods__["anchorY"] = _cv.IplConvKernelFP_anchorY_set - __swig_getmethods__["anchorY"] = _cv.IplConvKernelFP_anchorY_get - if _newclass:anchorY = _swig_property(_cv.IplConvKernelFP_anchorY_get, _cv.IplConvKernelFP_anchorY_set) - __swig_setmethods__["values"] = _cv.IplConvKernelFP_values_set - __swig_getmethods__["values"] = _cv.IplConvKernelFP_values_get - if _newclass:values = _swig_property(_cv.IplConvKernelFP_values_get, _cv.IplConvKernelFP_values_set) - def __init__(self): - """__init__(self) -> IplConvKernelFP""" - this = _cv.new_IplConvKernelFP() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_IplConvKernelFP - __del__ = lambda self : None; -IplConvKernelFP_swigregister = _cv.IplConvKernelFP_swigregister -IplConvKernelFP_swigregister(IplConvKernelFP) - -class CvMat(_object): - """Proxy of C++ CvMat class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMat, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMat, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["type"] = _cv.CvMat_type_set - __swig_getmethods__["type"] = _cv.CvMat_type_get - if _newclass:type = _swig_property(_cv.CvMat_type_get, _cv.CvMat_type_set) - __swig_setmethods__["step"] = _cv.CvMat_step_set - __swig_getmethods__["step"] = _cv.CvMat_step_get - if _newclass:step = _swig_property(_cv.CvMat_step_get, _cv.CvMat_step_set) - __swig_setmethods__["refcount"] = _cv.CvMat_refcount_set - __swig_getmethods__["refcount"] = _cv.CvMat_refcount_get - if _newclass:refcount = _swig_property(_cv.CvMat_refcount_get, _cv.CvMat_refcount_set) - __swig_setmethods__["hdr_refcount"] = _cv.CvMat_hdr_refcount_set - __swig_getmethods__["hdr_refcount"] = _cv.CvMat_hdr_refcount_get - if _newclass:hdr_refcount = _swig_property(_cv.CvMat_hdr_refcount_get, _cv.CvMat_hdr_refcount_set) - __swig_getmethods__["data"] = _cv.CvMat_data_get - if _newclass:data = _swig_property(_cv.CvMat_data_get) - __swig_destroy__ = _cv.delete_CvMat - __del__ = lambda self : None; - __swig_setmethods__["depth"] = _cv.CvMat_depth_set - __swig_getmethods__["depth"] = _cv.CvMat_depth_get - if _newclass:depth = _swig_property(_cv.CvMat_depth_get, _cv.CvMat_depth_set) - __swig_setmethods__["nChannels"] = _cv.CvMat_nChannels_set - __swig_getmethods__["nChannels"] = _cv.CvMat_nChannels_get - if _newclass:nChannels = _swig_property(_cv.CvMat_nChannels_get, _cv.CvMat_nChannels_set) - __swig_setmethods__["dataOrder"] = _cv.CvMat_dataOrder_set - __swig_getmethods__["dataOrder"] = _cv.CvMat_dataOrder_get - if _newclass:dataOrder = _swig_property(_cv.CvMat_dataOrder_get, _cv.CvMat_dataOrder_set) - __swig_setmethods__["origin"] = _cv.CvMat_origin_set - __swig_getmethods__["origin"] = _cv.CvMat_origin_get - if _newclass:origin = _swig_property(_cv.CvMat_origin_get, _cv.CvMat_origin_set) - __swig_setmethods__["width"] = _cv.CvMat_width_set - __swig_getmethods__["width"] = _cv.CvMat_width_get - if _newclass:width = _swig_property(_cv.CvMat_width_get, _cv.CvMat_width_set) - __swig_setmethods__["height"] = _cv.CvMat_height_set - __swig_getmethods__["height"] = _cv.CvMat_height_get - if _newclass:height = _swig_property(_cv.CvMat_height_get, _cv.CvMat_height_set) - __swig_setmethods__["imageSize"] = _cv.CvMat_imageSize_set - __swig_getmethods__["imageSize"] = _cv.CvMat_imageSize_get - if _newclass:imageSize = _swig_property(_cv.CvMat_imageSize_get, _cv.CvMat_imageSize_set) - __swig_setmethods__["widthStep"] = _cv.CvMat_widthStep_set - __swig_getmethods__["widthStep"] = _cv.CvMat_widthStep_get - if _newclass:widthStep = _swig_property(_cv.CvMat_widthStep_get, _cv.CvMat_widthStep_set) - __swig_setmethods__["rows"] = _cv.CvMat_rows_set - __swig_getmethods__["rows"] = _cv.CvMat_rows_get - if _newclass:rows = _swig_property(_cv.CvMat_rows_get, _cv.CvMat_rows_set) - __swig_setmethods__["cols"] = _cv.CvMat_cols_set - __swig_getmethods__["cols"] = _cv.CvMat_cols_get - if _newclass:cols = _swig_property(_cv.CvMat_cols_get, _cv.CvMat_cols_set) - def __add__(self, *args): - """ - __add__(self, CvArr src) -> CvMat - __add__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___add__(self, *args) - - def __iadd__(self, *args): - """ - __iadd__(self, CvArr src) -> CvMat - __iadd__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___iadd__(self, *args) - - def __xor__(self, *args): - """ - __xor__(self, CvArr src) -> CvMat - __xor__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___xor__(self, *args) - - def __ixor__(self, *args): - """ - __ixor__(self, CvArr src) -> CvMat - __ixor__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___ixor__(self, *args) - - def __sub__(self, *args): - """ - __sub__(self, CvArr src) -> CvMat - __sub__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___sub__(self, *args) - - def __isub__(self, *args): - """ - __isub__(self, CvArr src) -> CvMat - __isub__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___isub__(self, *args) - - def __or__(self, *args): - """ - __or__(self, CvArr src) -> CvMat - __or__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___or__(self, *args) - - def __ior__(self, *args): - """ - __ior__(self, CvArr src) -> CvMat - __ior__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___ior__(self, *args) - - def __and__(self, *args): - """ - __and__(self, CvArr src) -> CvMat - __and__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___and__(self, *args) - - def __iand__(self, *args): - """ - __iand__(self, CvArr src) -> CvMat - __iand__(self, CvScalar val) -> CvMat - """ - return _cv.CvMat___iand__(self, *args) - - def __ge__(self, *args): - """ - __ge__(self, CvArr src) -> CvMat - __ge__(self, double val) -> CvMat - """ - return _cv.CvMat___ge__(self, *args) - - def __eq__(self, *args): - """ - __eq__(self, CvArr src) -> CvMat - __eq__(self, double val) -> CvMat - """ - return _cv.CvMat___eq__(self, *args) - - def __le__(self, *args): - """ - __le__(self, CvArr src) -> CvMat - __le__(self, double val) -> CvMat - """ - return _cv.CvMat___le__(self, *args) - - def __ne__(self, *args): - """ - __ne__(self, CvArr src) -> CvMat - __ne__(self, double val) -> CvMat - """ - return _cv.CvMat___ne__(self, *args) - - def __lt__(self, *args): - """ - __lt__(self, CvArr src) -> CvMat - __lt__(self, double val) -> CvMat - """ - return _cv.CvMat___lt__(self, *args) - - def __gt__(self, *args): - """ - __gt__(self, CvArr src) -> CvMat - __gt__(self, double val) -> CvMat - """ - return _cv.CvMat___gt__(self, *args) - - def __mul__(self, *args): - """ - __mul__(self, CvArr src) -> CvMat - __mul__(self, double val) -> CvMat - """ - return _cv.CvMat___mul__(self, *args) - - def __imul__(self, *args): - """ - __imul__(self, CvArr src) -> CvMat - __imul__(self, double val) -> CvMat - """ - return _cv.CvMat___imul__(self, *args) - - def __div__(self, *args): - """ - __div__(self, CvArr src) -> CvMat - __div__(self, double val) -> CvMat - """ - return _cv.CvMat___div__(self, *args) - - def __idiv__(self, *args): - """ - __idiv__(self, CvArr src) -> CvMat - __idiv__(self, double val) -> CvMat - """ - return _cv.CvMat___idiv__(self, *args) - - def __radd__(self, *args): - """ - __radd__(self, CvArr arg) -> CvMat - __radd__(self, CvScalar arg) -> CvMat - __radd__(self, double arg) -> CvMat - """ - return _cv.CvMat___radd__(self, *args) - - def __rsub__(self, *args): - """ - __rsub__(self, CvArr arg) -> CvMat - __rsub__(self, CvScalar arg) -> CvMat - __rsub__(self, double arg) -> CvMat - """ - return _cv.CvMat___rsub__(self, *args) - - def __rmul__(self, *args): - """ - __rmul__(self, CvArr arg) -> CvMat - __rmul__(self, double arg) -> CvMat - """ - return _cv.CvMat___rmul__(self, *args) - - def __ror__(self, *args): - """ - __ror__(self, CvScalar arg) -> CvMat - __ror__(self, double arg) -> CvMat - """ - return _cv.CvMat___ror__(self, *args) - - def __rand__(self, *args): - """ - __rand__(self, CvScalar arg) -> CvMat - __rand__(self, double arg) -> CvMat - """ - return _cv.CvMat___rand__(self, *args) - - def __rxor__(self, *args): - """ - __rxor__(self, CvScalar arg) -> CvMat - __rxor__(self, double arg) -> CvMat - """ - return _cv.CvMat___rxor__(self, *args) - - def __req__(self, *args): - """__req__(self, double arg) -> CvMat""" - return _cv.CvMat___req__(self, *args) - - def __rgt__(self, *args): - """__rgt__(self, double arg) -> CvMat""" - return _cv.CvMat___rgt__(self, *args) - - def __rge__(self, *args): - """__rge__(self, double arg) -> CvMat""" - return _cv.CvMat___rge__(self, *args) - - def __rlt__(self, *args): - """__rlt__(self, double arg) -> CvMat""" - return _cv.CvMat___rlt__(self, *args) - - def __rle__(self, *args): - """__rle__(self, double arg) -> CvMat""" - return _cv.CvMat___rle__(self, *args) - - def __rne__(self, *args): - """__rne__(self, double arg) -> CvMat""" - return _cv.CvMat___rne__(self, *args) - - def __rdiv__(self, *args): - """ - __rdiv__(self, CvArr arg) -> CvMat - __rdiv__(self, double arg) -> CvMat - """ - return _cv.CvMat___rdiv__(self, *args) - - def __pow__(self, *args): - """__pow__(self, double arg) -> CvMat""" - return _cv.CvMat___pow__(self, *args) - - def __str__(self): - """__str__(self) -> char""" - return _cv.CvMat___str__(self) - - def __setitem__(self, *args): - """ - __setitem__(self, PyObject object, double val) - __setitem__(self, PyObject object, CvPoint val) - __setitem__(self, PyObject object, CvPoint2D32f val) - __setitem__(self, PyObject object, CvScalar val) - __setitem__(self, PyObject object, CvArr arr) - """ - return _cv.CvMat___setitem__(self, *args) - - def __getitem__(self, *args): - """__getitem__(self, PyObject object) -> PyObject""" - return _cv.CvMat___getitem__(self, *args) - - def __invert__(self): - """__invert__(self) -> CvMat""" - return _cv.CvMat___invert__(self) - - def __iter__(self): - """ - generator function iterating through rows in matrix or elements in vector - """ - if self.rows==1: - return self.colrange() - return self.rowrange() - - def rowrange(self): - """ - generator function iterating along rows in matrix - """ - for i in range(self.rows): - yield self[i] - - def colrange(self): - """ - generator function iterating along columns in matrix - """ - for i in range(self.cols): - yield self[:,i] - - # if arg is None, python still calls our operator overloads - # but we want - # if mat != None - # if mat == None - # to do the right thing -- so redefine __ne__ and __eq__ - - def __eq__(self, arg): - """ - __eq__(self, None) - __eq__(self, CvArr src) - __eq__(self, double val) - """ - - if not arg: - return False - return _cv.CvMat___eq__(self, arg) - def __ne__(self, arg): - """ - __ne__(self, None) - __ne__(self, CvArr src) - __ne__(self, double val) - """ - - if not arg: - return True - return _cv.CvMat___ne__(self, arg) - - def __get_array_interface__ (self): - """Compose numpy array interface - - Via the numpy array interface, OpenCV data structures can be directly passed to numpy - methods without copying / converting. This tremendously speeds up mixing code from - OpenCV and numpy. - - See: http://numpy.scipy.org/array_interface.shtml - - @author Mark Asbach - @date 2009-01-07 - """ - - if self.depth == IPL_DEPTH_8U: - typestr = '|u1' - bytes_per_pixel = 1 - elif self.depth == IPL_DEPTH_8S: - typestr = '|i1' - bytes_per_pixel = 1 - elif self.depth == IPL_DEPTH_16U: - typestr = '|u2' - bytes_per_pixel = 2 - elif self.depth == IPL_DEPTH_16S: - typestr = '|i2' - bytes_per_pixel = 2 - elif self.depth == IPL_DEPTH_32S: - typestr = '|i4' - bytes_per_pixel = 4 - elif self.depth == IPL_DEPTH_32F: - typestr = '|f4' - bytes_per_pixel = 4 - elif self.depth == IPL_DEPTH_64F: - typestr = '|f8' - bytes_per_pixel = 8 - else: - raise TypeError("unknown resp. unhandled OpenCV image/matrix format") - - if self.nChannels == 1: - # monochrome image, matrix with a single channel - return {'shape': (self.height, self.width), - 'typestr': typestr, - 'version': 3, - - 'data': (int (self.data.ptr), False), - 'strides': (int (self.widthStep), int (bytes_per_pixel))} - else: - # color image, image with alpha, matrix with multiple channels - return {'shape': (self.height, self.width, self.nChannels), - 'typestr': typestr, - 'version': 3, - - 'data': (int (self.data.ptr), False), - 'strides': (int (self.widthStep), int (self.nChannels * bytes_per_pixel), int (bytes_per_pixel))} - - __array_interface__ = property (__get_array_interface__, doc = "numpy array interface description") - - - __swig_setmethods__["imageData"] = _cv.CvMat_imageData_set - __swig_getmethods__["imageData"] = _cv.CvMat_imageData_get - if _newclass:imageData = _swig_property(_cv.CvMat_imageData_get, _cv.CvMat_imageData_set) -CvMat_swigregister = _cv.CvMat_swigregister -CvMat_swigregister(CvMat) - -class CvMat_data(_object): - """Proxy of C++ CvMat_data class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMat_data, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMat_data, name) - __repr__ = _swig_repr - __swig_setmethods__["ptr"] = _cv.CvMat_data_ptr_set - __swig_getmethods__["ptr"] = _cv.CvMat_data_ptr_get - if _newclass:ptr = _swig_property(_cv.CvMat_data_ptr_get, _cv.CvMat_data_ptr_set) - __swig_setmethods__["s"] = _cv.CvMat_data_s_set - __swig_getmethods__["s"] = _cv.CvMat_data_s_get - if _newclass:s = _swig_property(_cv.CvMat_data_s_get, _cv.CvMat_data_s_set) - __swig_setmethods__["i"] = _cv.CvMat_data_i_set - __swig_getmethods__["i"] = _cv.CvMat_data_i_get - if _newclass:i = _swig_property(_cv.CvMat_data_i_get, _cv.CvMat_data_i_set) - __swig_setmethods__["fl"] = _cv.CvMat_data_fl_set - __swig_getmethods__["fl"] = _cv.CvMat_data_fl_get - if _newclass:fl = _swig_property(_cv.CvMat_data_fl_get, _cv.CvMat_data_fl_set) - __swig_setmethods__["db"] = _cv.CvMat_data_db_set - __swig_getmethods__["db"] = _cv.CvMat_data_db_get - if _newclass:db = _swig_property(_cv.CvMat_data_db_get, _cv.CvMat_data_db_set) - def __init__(self): - """__init__(self) -> CvMat_data""" - this = _cv.new_CvMat_data() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMat_data - __del__ = lambda self : None; -CvMat_data_swigregister = _cv.CvMat_data_swigregister -CvMat_data_swigregister(CvMat_data) - - -def cvmGet(*args): - """cvmGet(CvMat mat, int row, int col) -> double""" - return _cv.cvmGet(*args) - -def cvmSet(*args): - """cvmSet(CvMat mat, int row, int col, double value)""" - return _cv.cvmSet(*args) - -def cvIplDepth(*args): - """cvIplDepth(int type) -> int""" - return _cv.cvIplDepth(*args) -class CvMatND(_object): - """Proxy of C++ CvMatND class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMatND, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMatND, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["type"] = _cv.CvMatND_type_set - __swig_getmethods__["type"] = _cv.CvMatND_type_get - if _newclass:type = _swig_property(_cv.CvMatND_type_get, _cv.CvMatND_type_set) - __swig_setmethods__["dims"] = _cv.CvMatND_dims_set - __swig_getmethods__["dims"] = _cv.CvMatND_dims_get - if _newclass:dims = _swig_property(_cv.CvMatND_dims_get, _cv.CvMatND_dims_set) - __swig_setmethods__["refcount"] = _cv.CvMatND_refcount_set - __swig_getmethods__["refcount"] = _cv.CvMatND_refcount_get - if _newclass:refcount = _swig_property(_cv.CvMatND_refcount_get, _cv.CvMatND_refcount_set) - __swig_setmethods__["hdr_refcount"] = _cv.CvMatND_hdr_refcount_set - __swig_getmethods__["hdr_refcount"] = _cv.CvMatND_hdr_refcount_get - if _newclass:hdr_refcount = _swig_property(_cv.CvMatND_hdr_refcount_get, _cv.CvMatND_hdr_refcount_set) - __swig_getmethods__["dim"] = _cv.CvMatND_dim_get - if _newclass:dim = _swig_property(_cv.CvMatND_dim_get) - __swig_getmethods__["data"] = _cv.CvMatND_data_get - if _newclass:data = _swig_property(_cv.CvMatND_data_get) - __swig_destroy__ = _cv.delete_CvMatND - __del__ = lambda self : None; -CvMatND_swigregister = _cv.CvMatND_swigregister -CvMatND_swigregister(CvMatND) - -def cvMat(*args): - """ - cvMat(int rows, int cols, int type, void data = None) -> CvMat - cvMat(int rows, int cols, int type) -> CvMat - """ - return _cv.cvMat(*args) - -class CvMatND_dim(_object): - """Proxy of C++ CvMatND_dim class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMatND_dim, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMatND_dim, name) - __repr__ = _swig_repr - __swig_setmethods__["size"] = _cv.CvMatND_dim_size_set - __swig_getmethods__["size"] = _cv.CvMatND_dim_size_get - if _newclass:size = _swig_property(_cv.CvMatND_dim_size_get, _cv.CvMatND_dim_size_set) - __swig_setmethods__["step"] = _cv.CvMatND_dim_step_set - __swig_getmethods__["step"] = _cv.CvMatND_dim_step_get - if _newclass:step = _swig_property(_cv.CvMatND_dim_step_get, _cv.CvMatND_dim_step_set) - def __init__(self): - """__init__(self) -> CvMatND_dim""" - this = _cv.new_CvMatND_dim() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMatND_dim - __del__ = lambda self : None; -CvMatND_dim_swigregister = _cv.CvMatND_dim_swigregister -CvMatND_dim_swigregister(CvMatND_dim) - -class CvMatND_data(_object): - """Proxy of C++ CvMatND_data class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMatND_data, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMatND_data, name) - __repr__ = _swig_repr - __swig_setmethods__["ptr"] = _cv.CvMatND_data_ptr_set - __swig_getmethods__["ptr"] = _cv.CvMatND_data_ptr_get - if _newclass:ptr = _swig_property(_cv.CvMatND_data_ptr_get, _cv.CvMatND_data_ptr_set) - __swig_setmethods__["fl"] = _cv.CvMatND_data_fl_set - __swig_getmethods__["fl"] = _cv.CvMatND_data_fl_get - if _newclass:fl = _swig_property(_cv.CvMatND_data_fl_get, _cv.CvMatND_data_fl_set) - __swig_setmethods__["db"] = _cv.CvMatND_data_db_set - __swig_getmethods__["db"] = _cv.CvMatND_data_db_get - if _newclass:db = _swig_property(_cv.CvMatND_data_db_get, _cv.CvMatND_data_db_set) - __swig_setmethods__["i"] = _cv.CvMatND_data_i_set - __swig_getmethods__["i"] = _cv.CvMatND_data_i_get - if _newclass:i = _swig_property(_cv.CvMatND_data_i_get, _cv.CvMatND_data_i_set) - __swig_setmethods__["s"] = _cv.CvMatND_data_s_set - __swig_getmethods__["s"] = _cv.CvMatND_data_s_get - if _newclass:s = _swig_property(_cv.CvMatND_data_s_get, _cv.CvMatND_data_s_set) - def __init__(self): - """__init__(self) -> CvMatND_data""" - this = _cv.new_CvMatND_data() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMatND_data - __del__ = lambda self : None; -CvMatND_data_swigregister = _cv.CvMatND_data_swigregister -CvMatND_data_swigregister(CvMatND_data) - -class CvSparseMat(_object): - """Proxy of C++ CvSparseMat class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSparseMat, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSparseMat, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["type"] = _cv.CvSparseMat_type_set - __swig_getmethods__["type"] = _cv.CvSparseMat_type_get - if _newclass:type = _swig_property(_cv.CvSparseMat_type_get, _cv.CvSparseMat_type_set) - __swig_setmethods__["dims"] = _cv.CvSparseMat_dims_set - __swig_getmethods__["dims"] = _cv.CvSparseMat_dims_get - if _newclass:dims = _swig_property(_cv.CvSparseMat_dims_get, _cv.CvSparseMat_dims_set) - __swig_setmethods__["refcount"] = _cv.CvSparseMat_refcount_set - __swig_getmethods__["refcount"] = _cv.CvSparseMat_refcount_get - if _newclass:refcount = _swig_property(_cv.CvSparseMat_refcount_get, _cv.CvSparseMat_refcount_set) - __swig_setmethods__["hdr_refcount"] = _cv.CvSparseMat_hdr_refcount_set - __swig_getmethods__["hdr_refcount"] = _cv.CvSparseMat_hdr_refcount_get - if _newclass:hdr_refcount = _swig_property(_cv.CvSparseMat_hdr_refcount_get, _cv.CvSparseMat_hdr_refcount_set) - __swig_setmethods__["heap"] = _cv.CvSparseMat_heap_set - __swig_getmethods__["heap"] = _cv.CvSparseMat_heap_get - if _newclass:heap = _swig_property(_cv.CvSparseMat_heap_get, _cv.CvSparseMat_heap_set) - __swig_setmethods__["hashtable"] = _cv.CvSparseMat_hashtable_set - __swig_getmethods__["hashtable"] = _cv.CvSparseMat_hashtable_get - if _newclass:hashtable = _swig_property(_cv.CvSparseMat_hashtable_get, _cv.CvSparseMat_hashtable_set) - __swig_setmethods__["hashsize"] = _cv.CvSparseMat_hashsize_set - __swig_getmethods__["hashsize"] = _cv.CvSparseMat_hashsize_get - if _newclass:hashsize = _swig_property(_cv.CvSparseMat_hashsize_get, _cv.CvSparseMat_hashsize_set) - __swig_setmethods__["valoffset"] = _cv.CvSparseMat_valoffset_set - __swig_getmethods__["valoffset"] = _cv.CvSparseMat_valoffset_get - if _newclass:valoffset = _swig_property(_cv.CvSparseMat_valoffset_get, _cv.CvSparseMat_valoffset_set) - __swig_setmethods__["idxoffset"] = _cv.CvSparseMat_idxoffset_set - __swig_getmethods__["idxoffset"] = _cv.CvSparseMat_idxoffset_get - if _newclass:idxoffset = _swig_property(_cv.CvSparseMat_idxoffset_get, _cv.CvSparseMat_idxoffset_set) - __swig_setmethods__["size"] = _cv.CvSparseMat_size_set - __swig_getmethods__["size"] = _cv.CvSparseMat_size_get - if _newclass:size = _swig_property(_cv.CvSparseMat_size_get, _cv.CvSparseMat_size_set) - __swig_destroy__ = _cv.delete_CvSparseMat - __del__ = lambda self : None; -CvSparseMat_swigregister = _cv.CvSparseMat_swigregister -CvSparseMat_swigregister(CvSparseMat) - -class CvSparseNode(_object): - """Proxy of C++ CvSparseNode class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSparseNode, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSparseNode, name) - __repr__ = _swig_repr - __swig_setmethods__["hashval"] = _cv.CvSparseNode_hashval_set - __swig_getmethods__["hashval"] = _cv.CvSparseNode_hashval_get - if _newclass:hashval = _swig_property(_cv.CvSparseNode_hashval_get, _cv.CvSparseNode_hashval_set) - __swig_setmethods__["next"] = _cv.CvSparseNode_next_set - __swig_getmethods__["next"] = _cv.CvSparseNode_next_get - if _newclass:next = _swig_property(_cv.CvSparseNode_next_get, _cv.CvSparseNode_next_set) - def __init__(self): - """__init__(self) -> CvSparseNode""" - this = _cv.new_CvSparseNode() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSparseNode - __del__ = lambda self : None; -CvSparseNode_swigregister = _cv.CvSparseNode_swigregister -CvSparseNode_swigregister(CvSparseNode) - -class CvSparseMatIterator(_object): - """Proxy of C++ CvSparseMatIterator class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSparseMatIterator, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSparseMatIterator, name) - __repr__ = _swig_repr - __swig_setmethods__["mat"] = _cv.CvSparseMatIterator_mat_set - __swig_getmethods__["mat"] = _cv.CvSparseMatIterator_mat_get - if _newclass:mat = _swig_property(_cv.CvSparseMatIterator_mat_get, _cv.CvSparseMatIterator_mat_set) - __swig_setmethods__["node"] = _cv.CvSparseMatIterator_node_set - __swig_getmethods__["node"] = _cv.CvSparseMatIterator_node_get - if _newclass:node = _swig_property(_cv.CvSparseMatIterator_node_get, _cv.CvSparseMatIterator_node_set) - __swig_setmethods__["curidx"] = _cv.CvSparseMatIterator_curidx_set - __swig_getmethods__["curidx"] = _cv.CvSparseMatIterator_curidx_get - if _newclass:curidx = _swig_property(_cv.CvSparseMatIterator_curidx_get, _cv.CvSparseMatIterator_curidx_set) - def __init__(self): - """__init__(self) -> CvSparseMatIterator""" - this = _cv.new_CvSparseMatIterator() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSparseMatIterator - __del__ = lambda self : None; -CvSparseMatIterator_swigregister = _cv.CvSparseMatIterator_swigregister -CvSparseMatIterator_swigregister(CvSparseMatIterator) - -class CvHistogram(_object): - """Proxy of C++ CvHistogram class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHistogram, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHistogram, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["type"] = _cv.CvHistogram_type_set - __swig_getmethods__["type"] = _cv.CvHistogram_type_get - if _newclass:type = _swig_property(_cv.CvHistogram_type_get, _cv.CvHistogram_type_set) - __swig_setmethods__["bins"] = _cv.CvHistogram_bins_set - __swig_getmethods__["bins"] = _cv.CvHistogram_bins_get - if _newclass:bins = _swig_property(_cv.CvHistogram_bins_get, _cv.CvHistogram_bins_set) - __swig_setmethods__["thresh"] = _cv.CvHistogram_thresh_set - __swig_getmethods__["thresh"] = _cv.CvHistogram_thresh_get - if _newclass:thresh = _swig_property(_cv.CvHistogram_thresh_get, _cv.CvHistogram_thresh_set) - __swig_setmethods__["thresh2"] = _cv.CvHistogram_thresh2_set - __swig_getmethods__["thresh2"] = _cv.CvHistogram_thresh2_get - if _newclass:thresh2 = _swig_property(_cv.CvHistogram_thresh2_get, _cv.CvHistogram_thresh2_set) - __swig_setmethods__["mat"] = _cv.CvHistogram_mat_set - __swig_getmethods__["mat"] = _cv.CvHistogram_mat_get - if _newclass:mat = _swig_property(_cv.CvHistogram_mat_get, _cv.CvHistogram_mat_set) - __swig_destroy__ = _cv.delete_CvHistogram - __del__ = lambda self : None; -CvHistogram_swigregister = _cv.CvHistogram_swigregister -CvHistogram_swigregister(CvHistogram) - -class CvRect(_object): - """Proxy of C++ CvRect class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvRect, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvRect, name) - __repr__ = _swig_repr - __swig_setmethods__["x"] = _cv.CvRect_x_set - __swig_getmethods__["x"] = _cv.CvRect_x_get - if _newclass:x = _swig_property(_cv.CvRect_x_get, _cv.CvRect_x_set) - __swig_setmethods__["y"] = _cv.CvRect_y_set - __swig_getmethods__["y"] = _cv.CvRect_y_get - if _newclass:y = _swig_property(_cv.CvRect_y_get, _cv.CvRect_y_set) - __swig_setmethods__["width"] = _cv.CvRect_width_set - __swig_getmethods__["width"] = _cv.CvRect_width_get - if _newclass:width = _swig_property(_cv.CvRect_width_get, _cv.CvRect_width_set) - __swig_setmethods__["height"] = _cv.CvRect_height_set - __swig_getmethods__["height"] = _cv.CvRect_height_get - if _newclass:height = _swig_property(_cv.CvRect_height_get, _cv.CvRect_height_set) - def __init__(self): - """__init__(self) -> CvRect""" - this = _cv.new_CvRect() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvRect - __del__ = lambda self : None; -CvRect_swigregister = _cv.CvRect_swigregister -CvRect_swigregister(CvRect) - - -def cvRect(*args): - """cvRect(int x, int y, int width, int height) -> CvRect""" - return _cv.cvRect(*args) - -def cvRectToROI(*args): - """cvRectToROI(CvRect rect, int coi)""" - return _cv.cvRectToROI(*args) - -def cvROIToRect(*args): - """cvROIToRect( roi) -> CvRect""" - return _cv.cvROIToRect(*args) -class CvTermCriteria(_object): - """Proxy of C++ CvTermCriteria class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTermCriteria, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTermCriteria, name) - __repr__ = _swig_repr - __swig_setmethods__["type"] = _cv.CvTermCriteria_type_set - __swig_getmethods__["type"] = _cv.CvTermCriteria_type_get - if _newclass:type = _swig_property(_cv.CvTermCriteria_type_get, _cv.CvTermCriteria_type_set) - __swig_setmethods__["max_iter"] = _cv.CvTermCriteria_max_iter_set - __swig_getmethods__["max_iter"] = _cv.CvTermCriteria_max_iter_get - if _newclass:max_iter = _swig_property(_cv.CvTermCriteria_max_iter_get, _cv.CvTermCriteria_max_iter_set) - __swig_setmethods__["epsilon"] = _cv.CvTermCriteria_epsilon_set - __swig_getmethods__["epsilon"] = _cv.CvTermCriteria_epsilon_get - if _newclass:epsilon = _swig_property(_cv.CvTermCriteria_epsilon_get, _cv.CvTermCriteria_epsilon_set) - def __init__(self): - """__init__(self) -> CvTermCriteria""" - this = _cv.new_CvTermCriteria() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvTermCriteria - __del__ = lambda self : None; -CvTermCriteria_swigregister = _cv.CvTermCriteria_swigregister -CvTermCriteria_swigregister(CvTermCriteria) - - -def cvTermCriteria(*args): - """cvTermCriteria(int type, int max_iter, double epsilon) -> CvTermCriteria""" - return _cv.cvTermCriteria(*args) -class CvPoint(_object): - """Proxy of C++ CvPoint class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPoint, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPoint, name) - __swig_setmethods__["x"] = _cv.CvPoint_x_set - __swig_getmethods__["x"] = _cv.CvPoint_x_get - if _newclass:x = _swig_property(_cv.CvPoint_x_get, _cv.CvPoint_x_set) - __swig_setmethods__["y"] = _cv.CvPoint_y_set - __swig_getmethods__["y"] = _cv.CvPoint_y_get - if _newclass:y = _swig_property(_cv.CvPoint_y_get, _cv.CvPoint_y_set) - def __str__(self): - """__str__(self) -> char""" - return _cv.CvPoint___str__(self) - - def __repr__(self): - """__repr__(self) -> char""" - return _cv.CvPoint___repr__(self) - - def __init__(self): - """__init__(self) -> CvPoint""" - this = _cv.new_CvPoint() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvPoint - __del__ = lambda self : None; -CvPoint_swigregister = _cv.CvPoint_swigregister -CvPoint_swigregister(CvPoint) - - -def cvPoint(*args): - """cvPoint(int x, int y) -> CvPoint""" - return _cv.cvPoint(*args) -class CvPoint2D32f(_object): - """Proxy of C++ CvPoint2D32f class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPoint2D32f, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPoint2D32f, name) - __swig_setmethods__["x"] = _cv.CvPoint2D32f_x_set - __swig_getmethods__["x"] = _cv.CvPoint2D32f_x_get - if _newclass:x = _swig_property(_cv.CvPoint2D32f_x_get, _cv.CvPoint2D32f_x_set) - __swig_setmethods__["y"] = _cv.CvPoint2D32f_y_set - __swig_getmethods__["y"] = _cv.CvPoint2D32f_y_get - if _newclass:y = _swig_property(_cv.CvPoint2D32f_y_get, _cv.CvPoint2D32f_y_set) - def __str__(self): - """__str__(self) -> char""" - return _cv.CvPoint2D32f___str__(self) - - def __repr__(self): - """__repr__(self) -> char""" - return _cv.CvPoint2D32f___repr__(self) - - def __init__(self): - """__init__(self) -> CvPoint2D32f""" - this = _cv.new_CvPoint2D32f() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvPoint2D32f - __del__ = lambda self : None; -CvPoint2D32f_swigregister = _cv.CvPoint2D32f_swigregister -CvPoint2D32f_swigregister(CvPoint2D32f) - - -def cvPoint2D32f(*args): - """cvPoint2D32f(double x, double y) -> CvPoint2D32f""" - return _cv.cvPoint2D32f(*args) - -def cvPointTo32f(*args): - """cvPointTo32f(CvPoint point) -> CvPoint2D32f""" - return _cv.cvPointTo32f(*args) - -def cvPointFrom32f(*args): - """cvPointFrom32f(CvPoint2D32f point) -> CvPoint""" - return _cv.cvPointFrom32f(*args) -class CvPoint3D32f(_object): - """Proxy of C++ CvPoint3D32f class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPoint3D32f, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPoint3D32f, name) - __repr__ = _swig_repr - __swig_setmethods__["x"] = _cv.CvPoint3D32f_x_set - __swig_getmethods__["x"] = _cv.CvPoint3D32f_x_get - if _newclass:x = _swig_property(_cv.CvPoint3D32f_x_get, _cv.CvPoint3D32f_x_set) - __swig_setmethods__["y"] = _cv.CvPoint3D32f_y_set - __swig_getmethods__["y"] = _cv.CvPoint3D32f_y_get - if _newclass:y = _swig_property(_cv.CvPoint3D32f_y_get, _cv.CvPoint3D32f_y_set) - __swig_setmethods__["z"] = _cv.CvPoint3D32f_z_set - __swig_getmethods__["z"] = _cv.CvPoint3D32f_z_get - if _newclass:z = _swig_property(_cv.CvPoint3D32f_z_get, _cv.CvPoint3D32f_z_set) - def __init__(self): - """__init__(self) -> CvPoint3D32f""" - this = _cv.new_CvPoint3D32f() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvPoint3D32f - __del__ = lambda self : None; -CvPoint3D32f_swigregister = _cv.CvPoint3D32f_swigregister -CvPoint3D32f_swigregister(CvPoint3D32f) - - -def cvPoint3D32f(*args): - """cvPoint3D32f(double x, double y, double z) -> CvPoint3D32f""" - return _cv.cvPoint3D32f(*args) -class CvPoint2D64f(_object): - """Proxy of C++ CvPoint2D64f class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPoint2D64f, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPoint2D64f, name) - __repr__ = _swig_repr - __swig_setmethods__["x"] = _cv.CvPoint2D64f_x_set - __swig_getmethods__["x"] = _cv.CvPoint2D64f_x_get - if _newclass:x = _swig_property(_cv.CvPoint2D64f_x_get, _cv.CvPoint2D64f_x_set) - __swig_setmethods__["y"] = _cv.CvPoint2D64f_y_set - __swig_getmethods__["y"] = _cv.CvPoint2D64f_y_get - if _newclass:y = _swig_property(_cv.CvPoint2D64f_y_get, _cv.CvPoint2D64f_y_set) - def __init__(self): - """__init__(self) -> CvPoint2D64f""" - this = _cv.new_CvPoint2D64f() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvPoint2D64f - __del__ = lambda self : None; -CvPoint2D64f_swigregister = _cv.CvPoint2D64f_swigregister -CvPoint2D64f_swigregister(CvPoint2D64f) - - -def cvPoint2D64f(*args): - """cvPoint2D64f(double x, double y) -> CvPoint2D64f""" - return _cv.cvPoint2D64f(*args) -class CvPoint3D64f(_object): - """Proxy of C++ CvPoint3D64f class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPoint3D64f, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPoint3D64f, name) - __repr__ = _swig_repr - __swig_setmethods__["x"] = _cv.CvPoint3D64f_x_set - __swig_getmethods__["x"] = _cv.CvPoint3D64f_x_get - if _newclass:x = _swig_property(_cv.CvPoint3D64f_x_get, _cv.CvPoint3D64f_x_set) - __swig_setmethods__["y"] = _cv.CvPoint3D64f_y_set - __swig_getmethods__["y"] = _cv.CvPoint3D64f_y_get - if _newclass:y = _swig_property(_cv.CvPoint3D64f_y_get, _cv.CvPoint3D64f_y_set) - __swig_setmethods__["z"] = _cv.CvPoint3D64f_z_set - __swig_getmethods__["z"] = _cv.CvPoint3D64f_z_get - if _newclass:z = _swig_property(_cv.CvPoint3D64f_z_get, _cv.CvPoint3D64f_z_set) - def __init__(self): - """__init__(self) -> CvPoint3D64f""" - this = _cv.new_CvPoint3D64f() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvPoint3D64f - __del__ = lambda self : None; -CvPoint3D64f_swigregister = _cv.CvPoint3D64f_swigregister -CvPoint3D64f_swigregister(CvPoint3D64f) - - -def cvPoint3D64f(*args): - """cvPoint3D64f(double x, double y, double z) -> CvPoint3D64f""" - return _cv.cvPoint3D64f(*args) -class CvSize(_object): - """Proxy of C++ CvSize class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSize, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSize, name) - __repr__ = _swig_repr - __swig_setmethods__["width"] = _cv.CvSize_width_set - __swig_getmethods__["width"] = _cv.CvSize_width_get - if _newclass:width = _swig_property(_cv.CvSize_width_get, _cv.CvSize_width_set) - __swig_setmethods__["height"] = _cv.CvSize_height_set - __swig_getmethods__["height"] = _cv.CvSize_height_get - if _newclass:height = _swig_property(_cv.CvSize_height_get, _cv.CvSize_height_set) - def __init__(self): - """__init__(self) -> CvSize""" - this = _cv.new_CvSize() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSize - __del__ = lambda self : None; -CvSize_swigregister = _cv.CvSize_swigregister -CvSize_swigregister(CvSize) - - -def cvSize(*args): - """cvSize(int width, int height) -> CvSize""" - return _cv.cvSize(*args) -class CvSize2D32f(_object): - """Proxy of C++ CvSize2D32f class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSize2D32f, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSize2D32f, name) - __repr__ = _swig_repr - __swig_setmethods__["width"] = _cv.CvSize2D32f_width_set - __swig_getmethods__["width"] = _cv.CvSize2D32f_width_get - if _newclass:width = _swig_property(_cv.CvSize2D32f_width_get, _cv.CvSize2D32f_width_set) - __swig_setmethods__["height"] = _cv.CvSize2D32f_height_set - __swig_getmethods__["height"] = _cv.CvSize2D32f_height_get - if _newclass:height = _swig_property(_cv.CvSize2D32f_height_get, _cv.CvSize2D32f_height_set) - def __init__(self): - """__init__(self) -> CvSize2D32f""" - this = _cv.new_CvSize2D32f() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSize2D32f - __del__ = lambda self : None; -CvSize2D32f_swigregister = _cv.CvSize2D32f_swigregister -CvSize2D32f_swigregister(CvSize2D32f) - - -def cvSize2D32f(*args): - """cvSize2D32f(double width, double height) -> CvSize2D32f""" - return _cv.cvSize2D32f(*args) -class CvBox2D(_object): - """Proxy of C++ CvBox2D class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvBox2D, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvBox2D, name) - __repr__ = _swig_repr - __swig_setmethods__["center"] = _cv.CvBox2D_center_set - __swig_getmethods__["center"] = _cv.CvBox2D_center_get - if _newclass:center = _swig_property(_cv.CvBox2D_center_get, _cv.CvBox2D_center_set) - __swig_setmethods__["size"] = _cv.CvBox2D_size_set - __swig_getmethods__["size"] = _cv.CvBox2D_size_get - if _newclass:size = _swig_property(_cv.CvBox2D_size_get, _cv.CvBox2D_size_set) - __swig_setmethods__["angle"] = _cv.CvBox2D_angle_set - __swig_getmethods__["angle"] = _cv.CvBox2D_angle_get - if _newclass:angle = _swig_property(_cv.CvBox2D_angle_get, _cv.CvBox2D_angle_set) - def __init__(self): - """__init__(self) -> CvBox2D""" - this = _cv.new_CvBox2D() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvBox2D - __del__ = lambda self : None; -CvBox2D_swigregister = _cv.CvBox2D_swigregister -CvBox2D_swigregister(CvBox2D) - -class CvLineIterator(_object): - """Proxy of C++ CvLineIterator class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvLineIterator, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvLineIterator, name) - __repr__ = _swig_repr - __swig_setmethods__["ptr"] = _cv.CvLineIterator_ptr_set - __swig_getmethods__["ptr"] = _cv.CvLineIterator_ptr_get - if _newclass:ptr = _swig_property(_cv.CvLineIterator_ptr_get, _cv.CvLineIterator_ptr_set) - __swig_setmethods__["err"] = _cv.CvLineIterator_err_set - __swig_getmethods__["err"] = _cv.CvLineIterator_err_get - if _newclass:err = _swig_property(_cv.CvLineIterator_err_get, _cv.CvLineIterator_err_set) - __swig_setmethods__["plus_delta"] = _cv.CvLineIterator_plus_delta_set - __swig_getmethods__["plus_delta"] = _cv.CvLineIterator_plus_delta_get - if _newclass:plus_delta = _swig_property(_cv.CvLineIterator_plus_delta_get, _cv.CvLineIterator_plus_delta_set) - __swig_setmethods__["minus_delta"] = _cv.CvLineIterator_minus_delta_set - __swig_getmethods__["minus_delta"] = _cv.CvLineIterator_minus_delta_get - if _newclass:minus_delta = _swig_property(_cv.CvLineIterator_minus_delta_get, _cv.CvLineIterator_minus_delta_set) - __swig_setmethods__["plus_step"] = _cv.CvLineIterator_plus_step_set - __swig_getmethods__["plus_step"] = _cv.CvLineIterator_plus_step_get - if _newclass:plus_step = _swig_property(_cv.CvLineIterator_plus_step_get, _cv.CvLineIterator_plus_step_set) - __swig_setmethods__["minus_step"] = _cv.CvLineIterator_minus_step_set - __swig_getmethods__["minus_step"] = _cv.CvLineIterator_minus_step_get - if _newclass:minus_step = _swig_property(_cv.CvLineIterator_minus_step_get, _cv.CvLineIterator_minus_step_set) - def __init__(self): - """__init__(self) -> CvLineIterator""" - this = _cv.new_CvLineIterator() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvLineIterator - __del__ = lambda self : None; -CvLineIterator_swigregister = _cv.CvLineIterator_swigregister -CvLineIterator_swigregister(CvLineIterator) - -class CvSlice(_object): - """Proxy of C++ CvSlice class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSlice, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSlice, name) - __repr__ = _swig_repr - __swig_setmethods__["start_index"] = _cv.CvSlice_start_index_set - __swig_getmethods__["start_index"] = _cv.CvSlice_start_index_get - if _newclass:start_index = _swig_property(_cv.CvSlice_start_index_get, _cv.CvSlice_start_index_set) - __swig_setmethods__["end_index"] = _cv.CvSlice_end_index_set - __swig_getmethods__["end_index"] = _cv.CvSlice_end_index_get - if _newclass:end_index = _swig_property(_cv.CvSlice_end_index_get, _cv.CvSlice_end_index_set) - def __init__(self): - """__init__(self) -> CvSlice""" - this = _cv.new_CvSlice() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSlice - __del__ = lambda self : None; -CvSlice_swigregister = _cv.CvSlice_swigregister -CvSlice_swigregister(CvSlice) - - -def cvSlice(*args): - """cvSlice(int start, int end) -> CvSlice""" - return _cv.cvSlice(*args) -class CvScalar(_object): - """Proxy of C++ CvScalar class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvScalar, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvScalar, name) - __swig_setmethods__["val"] = _cv.CvScalar_val_set - __swig_getmethods__["val"] = _cv.CvScalar_val_get - if _newclass:val = _swig_property(_cv.CvScalar_val_get, _cv.CvScalar_val_set) - def __str__(self): - """__str__(self) -> char""" - return _cv.CvScalar___str__(self) - - def __repr__(self): - """__repr__(self) -> char""" - return _cv.CvScalar___repr__(self) - - def __getitem__(self, *args): - """__getitem__(self, int index) -> double""" - return _cv.CvScalar___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int index, double value)""" - return _cv.CvScalar___setitem__(self, *args) - - def __init__(self): - """__init__(self) -> CvScalar""" - this = _cv.new_CvScalar() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvScalar - __del__ = lambda self : None; -CvScalar_swigregister = _cv.CvScalar_swigregister -CvScalar_swigregister(CvScalar) - - -def cvRealScalar(*args): - """cvRealScalar(double val0) -> CvScalar""" - return _cv.cvRealScalar(*args) - -def cvScalarAll(*args): - """cvScalarAll(double val0123) -> CvScalar""" - return _cv.cvScalarAll(*args) -class CvMemBlock(_object): - """Proxy of C++ CvMemBlock class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMemBlock, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMemBlock, name) - __repr__ = _swig_repr - __swig_setmethods__["prev"] = _cv.CvMemBlock_prev_set - __swig_getmethods__["prev"] = _cv.CvMemBlock_prev_get - if _newclass:prev = _swig_property(_cv.CvMemBlock_prev_get, _cv.CvMemBlock_prev_set) - __swig_setmethods__["next"] = _cv.CvMemBlock_next_set - __swig_getmethods__["next"] = _cv.CvMemBlock_next_get - if _newclass:next = _swig_property(_cv.CvMemBlock_next_get, _cv.CvMemBlock_next_set) - def __init__(self): - """__init__(self) -> CvMemBlock""" - this = _cv.new_CvMemBlock() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMemBlock - __del__ = lambda self : None; -CvMemBlock_swigregister = _cv.CvMemBlock_swigregister -CvMemBlock_swigregister(CvMemBlock) - -def cvScalar(*args): - """ - cvScalar(double val0, double val1 = 0, double val2 = 0, double val3 = 0) -> CvScalar - cvScalar(double val0, double val1 = 0, double val2 = 0) -> CvScalar - cvScalar(double val0, double val1 = 0) -> CvScalar - cvScalar(double val0) -> CvScalar - """ - return _cv.cvScalar(*args) - -class CvMemStorage(_object): - """Proxy of C++ CvMemStorage class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMemStorage, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMemStorage, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["signature"] = _cv.CvMemStorage_signature_set - __swig_getmethods__["signature"] = _cv.CvMemStorage_signature_get - if _newclass:signature = _swig_property(_cv.CvMemStorage_signature_get, _cv.CvMemStorage_signature_set) - __swig_setmethods__["bottom"] = _cv.CvMemStorage_bottom_set - __swig_getmethods__["bottom"] = _cv.CvMemStorage_bottom_get - if _newclass:bottom = _swig_property(_cv.CvMemStorage_bottom_get, _cv.CvMemStorage_bottom_set) - __swig_setmethods__["top"] = _cv.CvMemStorage_top_set - __swig_getmethods__["top"] = _cv.CvMemStorage_top_get - if _newclass:top = _swig_property(_cv.CvMemStorage_top_get, _cv.CvMemStorage_top_set) - __swig_setmethods__["parent"] = _cv.CvMemStorage_parent_set - __swig_getmethods__["parent"] = _cv.CvMemStorage_parent_get - if _newclass:parent = _swig_property(_cv.CvMemStorage_parent_get, _cv.CvMemStorage_parent_set) - __swig_setmethods__["block_size"] = _cv.CvMemStorage_block_size_set - __swig_getmethods__["block_size"] = _cv.CvMemStorage_block_size_get - if _newclass:block_size = _swig_property(_cv.CvMemStorage_block_size_get, _cv.CvMemStorage_block_size_set) - __swig_setmethods__["free_space"] = _cv.CvMemStorage_free_space_set - __swig_getmethods__["free_space"] = _cv.CvMemStorage_free_space_get - if _newclass:free_space = _swig_property(_cv.CvMemStorage_free_space_get, _cv.CvMemStorage_free_space_set) - __swig_destroy__ = _cv.delete_CvMemStorage - __del__ = lambda self : None; -CvMemStorage_swigregister = _cv.CvMemStorage_swigregister -CvMemStorage_swigregister(CvMemStorage) - -class CvMemStoragePos(_object): - """Proxy of C++ CvMemStoragePos class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMemStoragePos, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMemStoragePos, name) - __repr__ = _swig_repr - __swig_setmethods__["top"] = _cv.CvMemStoragePos_top_set - __swig_getmethods__["top"] = _cv.CvMemStoragePos_top_get - if _newclass:top = _swig_property(_cv.CvMemStoragePos_top_get, _cv.CvMemStoragePos_top_set) - __swig_setmethods__["free_space"] = _cv.CvMemStoragePos_free_space_set - __swig_getmethods__["free_space"] = _cv.CvMemStoragePos_free_space_get - if _newclass:free_space = _swig_property(_cv.CvMemStoragePos_free_space_get, _cv.CvMemStoragePos_free_space_set) - def __init__(self): - """__init__(self) -> CvMemStoragePos""" - this = _cv.new_CvMemStoragePos() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMemStoragePos - __del__ = lambda self : None; -CvMemStoragePos_swigregister = _cv.CvMemStoragePos_swigregister -CvMemStoragePos_swigregister(CvMemStoragePos) - -class CvSeqBlock(_object): - """Proxy of C++ CvSeqBlock class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeqBlock, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSeqBlock, name) - __repr__ = _swig_repr - __swig_setmethods__["prev"] = _cv.CvSeqBlock_prev_set - __swig_getmethods__["prev"] = _cv.CvSeqBlock_prev_get - if _newclass:prev = _swig_property(_cv.CvSeqBlock_prev_get, _cv.CvSeqBlock_prev_set) - __swig_setmethods__["next"] = _cv.CvSeqBlock_next_set - __swig_getmethods__["next"] = _cv.CvSeqBlock_next_get - if _newclass:next = _swig_property(_cv.CvSeqBlock_next_get, _cv.CvSeqBlock_next_set) - __swig_setmethods__["start_index"] = _cv.CvSeqBlock_start_index_set - __swig_getmethods__["start_index"] = _cv.CvSeqBlock_start_index_get - if _newclass:start_index = _swig_property(_cv.CvSeqBlock_start_index_get, _cv.CvSeqBlock_start_index_set) - __swig_setmethods__["count"] = _cv.CvSeqBlock_count_set - __swig_getmethods__["count"] = _cv.CvSeqBlock_count_get - if _newclass:count = _swig_property(_cv.CvSeqBlock_count_get, _cv.CvSeqBlock_count_set) - __swig_setmethods__["data"] = _cv.CvSeqBlock_data_set - __swig_getmethods__["data"] = _cv.CvSeqBlock_data_get - if _newclass:data = _swig_property(_cv.CvSeqBlock_data_get, _cv.CvSeqBlock_data_set) - def __init__(self): - """__init__(self) -> CvSeqBlock""" - this = _cv.new_CvSeqBlock() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeqBlock - __del__ = lambda self : None; -CvSeqBlock_swigregister = _cv.CvSeqBlock_swigregister -CvSeqBlock_swigregister(CvSeqBlock) - -class CvSeq(_object): - """Proxy of C++ CvSeq class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvSeq_flags_set - __swig_getmethods__["flags"] = _cv.CvSeq_flags_get - if _newclass:flags = _swig_property(_cv.CvSeq_flags_get, _cv.CvSeq_flags_set) - __swig_setmethods__["header_size"] = _cv.CvSeq_header_size_set - __swig_getmethods__["header_size"] = _cv.CvSeq_header_size_get - if _newclass:header_size = _swig_property(_cv.CvSeq_header_size_get, _cv.CvSeq_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvSeq_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvSeq_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvSeq_h_prev_get, _cv.CvSeq_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvSeq_h_next_set - __swig_getmethods__["h_next"] = _cv.CvSeq_h_next_get - if _newclass:h_next = _swig_property(_cv.CvSeq_h_next_get, _cv.CvSeq_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvSeq_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvSeq_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvSeq_v_prev_get, _cv.CvSeq_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvSeq_v_next_set - __swig_getmethods__["v_next"] = _cv.CvSeq_v_next_get - if _newclass:v_next = _swig_property(_cv.CvSeq_v_next_get, _cv.CvSeq_v_next_set) - __swig_setmethods__["total"] = _cv.CvSeq_total_set - __swig_getmethods__["total"] = _cv.CvSeq_total_get - if _newclass:total = _swig_property(_cv.CvSeq_total_get, _cv.CvSeq_total_set) - __swig_setmethods__["elem_size"] = _cv.CvSeq_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvSeq_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvSeq_elem_size_get, _cv.CvSeq_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvSeq_block_max_set - __swig_getmethods__["block_max"] = _cv.CvSeq_block_max_get - if _newclass:block_max = _swig_property(_cv.CvSeq_block_max_get, _cv.CvSeq_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvSeq_ptr_set - __swig_getmethods__["ptr"] = _cv.CvSeq_ptr_get - if _newclass:ptr = _swig_property(_cv.CvSeq_ptr_get, _cv.CvSeq_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvSeq_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvSeq_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvSeq_delta_elems_get, _cv.CvSeq_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvSeq_storage_set - __swig_getmethods__["storage"] = _cv.CvSeq_storage_get - if _newclass:storage = _swig_property(_cv.CvSeq_storage_get, _cv.CvSeq_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvSeq_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvSeq_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvSeq_free_blocks_get, _cv.CvSeq_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvSeq_first_set - __swig_getmethods__["first"] = _cv.CvSeq_first_get - if _newclass:first = _swig_property(_cv.CvSeq_first_get, _cv.CvSeq_first_set) - def __iter__(self): - """ - generator function iterating elements in the sequence - """ - for i in range(self.total): - yield self[i] - - def vrange(self): - """ - generator function iterating along v_next - """ - s = self - t = type(self) - while s: - yield s - s = t.cast(s.v_next) - - def hrange(self): - """ - generator function iterating along h_next - """ - s = self - t = type(self) - while s: - yield s - s = t.cast(s.h_next) - - def __init__(self): - """__init__(self) -> CvSeq""" - this = _cv.new_CvSeq() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq - __del__ = lambda self : None; -CvSeq_swigregister = _cv.CvSeq_swigregister -CvSeq_swigregister(CvSeq) - -class CvSetElem(_object): - """Proxy of C++ CvSetElem class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSetElem, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSetElem, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvSetElem_flags_set - __swig_getmethods__["flags"] = _cv.CvSetElem_flags_get - if _newclass:flags = _swig_property(_cv.CvSetElem_flags_get, _cv.CvSetElem_flags_set) - __swig_setmethods__["next_free"] = _cv.CvSetElem_next_free_set - __swig_getmethods__["next_free"] = _cv.CvSetElem_next_free_get - if _newclass:next_free = _swig_property(_cv.CvSetElem_next_free_get, _cv.CvSetElem_next_free_set) - def __init__(self): - """__init__(self) -> CvSetElem""" - this = _cv.new_CvSetElem() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSetElem - __del__ = lambda self : None; -CvSetElem_swigregister = _cv.CvSetElem_swigregister -CvSetElem_swigregister(CvSetElem) - -class CvSet(_object): - """Proxy of C++ CvSet class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSet, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSet, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvSet_flags_set - __swig_getmethods__["flags"] = _cv.CvSet_flags_get - if _newclass:flags = _swig_property(_cv.CvSet_flags_get, _cv.CvSet_flags_set) - __swig_setmethods__["header_size"] = _cv.CvSet_header_size_set - __swig_getmethods__["header_size"] = _cv.CvSet_header_size_get - if _newclass:header_size = _swig_property(_cv.CvSet_header_size_get, _cv.CvSet_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvSet_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvSet_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvSet_h_prev_get, _cv.CvSet_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvSet_h_next_set - __swig_getmethods__["h_next"] = _cv.CvSet_h_next_get - if _newclass:h_next = _swig_property(_cv.CvSet_h_next_get, _cv.CvSet_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvSet_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvSet_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvSet_v_prev_get, _cv.CvSet_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvSet_v_next_set - __swig_getmethods__["v_next"] = _cv.CvSet_v_next_get - if _newclass:v_next = _swig_property(_cv.CvSet_v_next_get, _cv.CvSet_v_next_set) - __swig_setmethods__["total"] = _cv.CvSet_total_set - __swig_getmethods__["total"] = _cv.CvSet_total_get - if _newclass:total = _swig_property(_cv.CvSet_total_get, _cv.CvSet_total_set) - __swig_setmethods__["elem_size"] = _cv.CvSet_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvSet_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvSet_elem_size_get, _cv.CvSet_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvSet_block_max_set - __swig_getmethods__["block_max"] = _cv.CvSet_block_max_get - if _newclass:block_max = _swig_property(_cv.CvSet_block_max_get, _cv.CvSet_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvSet_ptr_set - __swig_getmethods__["ptr"] = _cv.CvSet_ptr_get - if _newclass:ptr = _swig_property(_cv.CvSet_ptr_get, _cv.CvSet_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvSet_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvSet_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvSet_delta_elems_get, _cv.CvSet_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvSet_storage_set - __swig_getmethods__["storage"] = _cv.CvSet_storage_get - if _newclass:storage = _swig_property(_cv.CvSet_storage_get, _cv.CvSet_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvSet_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvSet_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvSet_free_blocks_get, _cv.CvSet_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvSet_first_set - __swig_getmethods__["first"] = _cv.CvSet_first_get - if _newclass:first = _swig_property(_cv.CvSet_first_get, _cv.CvSet_first_set) - __swig_setmethods__["free_elems"] = _cv.CvSet_free_elems_set - __swig_getmethods__["free_elems"] = _cv.CvSet_free_elems_get - if _newclass:free_elems = _swig_property(_cv.CvSet_free_elems_get, _cv.CvSet_free_elems_set) - __swig_setmethods__["active_count"] = _cv.CvSet_active_count_set - __swig_getmethods__["active_count"] = _cv.CvSet_active_count_get - if _newclass:active_count = _swig_property(_cv.CvSet_active_count_get, _cv.CvSet_active_count_set) - def __init__(self): - """__init__(self) -> CvSet""" - this = _cv.new_CvSet() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSet - __del__ = lambda self : None; -CvSet_swigregister = _cv.CvSet_swigregister -CvSet_swigregister(CvSet) - -class CvGraphEdge(_object): - """Proxy of C++ CvGraphEdge class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvGraphEdge, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvGraphEdge, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvGraphEdge_flags_set - __swig_getmethods__["flags"] = _cv.CvGraphEdge_flags_get - if _newclass:flags = _swig_property(_cv.CvGraphEdge_flags_get, _cv.CvGraphEdge_flags_set) - __swig_setmethods__["weight"] = _cv.CvGraphEdge_weight_set - __swig_getmethods__["weight"] = _cv.CvGraphEdge_weight_get - if _newclass:weight = _swig_property(_cv.CvGraphEdge_weight_get, _cv.CvGraphEdge_weight_set) - __swig_setmethods__["next"] = _cv.CvGraphEdge_next_set - __swig_getmethods__["next"] = _cv.CvGraphEdge_next_get - if _newclass:next = _swig_property(_cv.CvGraphEdge_next_get, _cv.CvGraphEdge_next_set) - __swig_setmethods__["vtx"] = _cv.CvGraphEdge_vtx_set - __swig_getmethods__["vtx"] = _cv.CvGraphEdge_vtx_get - if _newclass:vtx = _swig_property(_cv.CvGraphEdge_vtx_get, _cv.CvGraphEdge_vtx_set) - def __init__(self): - """__init__(self) -> CvGraphEdge""" - this = _cv.new_CvGraphEdge() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvGraphEdge - __del__ = lambda self : None; -CvGraphEdge_swigregister = _cv.CvGraphEdge_swigregister -CvGraphEdge_swigregister(CvGraphEdge) - -class CvGraphVtx(_object): - """Proxy of C++ CvGraphVtx class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvGraphVtx, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvGraphVtx, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvGraphVtx_flags_set - __swig_getmethods__["flags"] = _cv.CvGraphVtx_flags_get - if _newclass:flags = _swig_property(_cv.CvGraphVtx_flags_get, _cv.CvGraphVtx_flags_set) - __swig_setmethods__["first"] = _cv.CvGraphVtx_first_set - __swig_getmethods__["first"] = _cv.CvGraphVtx_first_get - if _newclass:first = _swig_property(_cv.CvGraphVtx_first_get, _cv.CvGraphVtx_first_set) - def __init__(self): - """__init__(self) -> CvGraphVtx""" - this = _cv.new_CvGraphVtx() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvGraphVtx - __del__ = lambda self : None; -CvGraphVtx_swigregister = _cv.CvGraphVtx_swigregister -CvGraphVtx_swigregister(CvGraphVtx) - -class CvGraphVtx2D(_object): - """Proxy of C++ CvGraphVtx2D class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvGraphVtx2D, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvGraphVtx2D, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvGraphVtx2D_flags_set - __swig_getmethods__["flags"] = _cv.CvGraphVtx2D_flags_get - if _newclass:flags = _swig_property(_cv.CvGraphVtx2D_flags_get, _cv.CvGraphVtx2D_flags_set) - __swig_setmethods__["first"] = _cv.CvGraphVtx2D_first_set - __swig_getmethods__["first"] = _cv.CvGraphVtx2D_first_get - if _newclass:first = _swig_property(_cv.CvGraphVtx2D_first_get, _cv.CvGraphVtx2D_first_set) - __swig_setmethods__["ptr"] = _cv.CvGraphVtx2D_ptr_set - __swig_getmethods__["ptr"] = _cv.CvGraphVtx2D_ptr_get - if _newclass:ptr = _swig_property(_cv.CvGraphVtx2D_ptr_get, _cv.CvGraphVtx2D_ptr_set) - def __init__(self): - """__init__(self) -> CvGraphVtx2D""" - this = _cv.new_CvGraphVtx2D() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvGraphVtx2D - __del__ = lambda self : None; -CvGraphVtx2D_swigregister = _cv.CvGraphVtx2D_swigregister -CvGraphVtx2D_swigregister(CvGraphVtx2D) - -class CvGraph(_object): - """Proxy of C++ CvGraph class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvGraph, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvGraph, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvGraph_flags_set - __swig_getmethods__["flags"] = _cv.CvGraph_flags_get - if _newclass:flags = _swig_property(_cv.CvGraph_flags_get, _cv.CvGraph_flags_set) - __swig_setmethods__["header_size"] = _cv.CvGraph_header_size_set - __swig_getmethods__["header_size"] = _cv.CvGraph_header_size_get - if _newclass:header_size = _swig_property(_cv.CvGraph_header_size_get, _cv.CvGraph_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvGraph_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvGraph_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvGraph_h_prev_get, _cv.CvGraph_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvGraph_h_next_set - __swig_getmethods__["h_next"] = _cv.CvGraph_h_next_get - if _newclass:h_next = _swig_property(_cv.CvGraph_h_next_get, _cv.CvGraph_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvGraph_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvGraph_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvGraph_v_prev_get, _cv.CvGraph_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvGraph_v_next_set - __swig_getmethods__["v_next"] = _cv.CvGraph_v_next_get - if _newclass:v_next = _swig_property(_cv.CvGraph_v_next_get, _cv.CvGraph_v_next_set) - __swig_setmethods__["total"] = _cv.CvGraph_total_set - __swig_getmethods__["total"] = _cv.CvGraph_total_get - if _newclass:total = _swig_property(_cv.CvGraph_total_get, _cv.CvGraph_total_set) - __swig_setmethods__["elem_size"] = _cv.CvGraph_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvGraph_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvGraph_elem_size_get, _cv.CvGraph_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvGraph_block_max_set - __swig_getmethods__["block_max"] = _cv.CvGraph_block_max_get - if _newclass:block_max = _swig_property(_cv.CvGraph_block_max_get, _cv.CvGraph_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvGraph_ptr_set - __swig_getmethods__["ptr"] = _cv.CvGraph_ptr_get - if _newclass:ptr = _swig_property(_cv.CvGraph_ptr_get, _cv.CvGraph_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvGraph_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvGraph_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvGraph_delta_elems_get, _cv.CvGraph_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvGraph_storage_set - __swig_getmethods__["storage"] = _cv.CvGraph_storage_get - if _newclass:storage = _swig_property(_cv.CvGraph_storage_get, _cv.CvGraph_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvGraph_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvGraph_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvGraph_free_blocks_get, _cv.CvGraph_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvGraph_first_set - __swig_getmethods__["first"] = _cv.CvGraph_first_get - if _newclass:first = _swig_property(_cv.CvGraph_first_get, _cv.CvGraph_first_set) - __swig_setmethods__["free_elems"] = _cv.CvGraph_free_elems_set - __swig_getmethods__["free_elems"] = _cv.CvGraph_free_elems_get - if _newclass:free_elems = _swig_property(_cv.CvGraph_free_elems_get, _cv.CvGraph_free_elems_set) - __swig_setmethods__["active_count"] = _cv.CvGraph_active_count_set - __swig_getmethods__["active_count"] = _cv.CvGraph_active_count_get - if _newclass:active_count = _swig_property(_cv.CvGraph_active_count_get, _cv.CvGraph_active_count_set) - __swig_setmethods__["edges"] = _cv.CvGraph_edges_set - __swig_getmethods__["edges"] = _cv.CvGraph_edges_get - if _newclass:edges = _swig_property(_cv.CvGraph_edges_get, _cv.CvGraph_edges_set) - def __init__(self): - """__init__(self) -> CvGraph""" - this = _cv.new_CvGraph() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvGraph - __del__ = lambda self : None; -CvGraph_swigregister = _cv.CvGraph_swigregister -CvGraph_swigregister(CvGraph) - -class CvChain(_object): - """Proxy of C++ CvChain class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvChain, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvChain, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvChain_flags_set - __swig_getmethods__["flags"] = _cv.CvChain_flags_get - if _newclass:flags = _swig_property(_cv.CvChain_flags_get, _cv.CvChain_flags_set) - __swig_setmethods__["header_size"] = _cv.CvChain_header_size_set - __swig_getmethods__["header_size"] = _cv.CvChain_header_size_get - if _newclass:header_size = _swig_property(_cv.CvChain_header_size_get, _cv.CvChain_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvChain_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvChain_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvChain_h_prev_get, _cv.CvChain_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvChain_h_next_set - __swig_getmethods__["h_next"] = _cv.CvChain_h_next_get - if _newclass:h_next = _swig_property(_cv.CvChain_h_next_get, _cv.CvChain_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvChain_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvChain_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvChain_v_prev_get, _cv.CvChain_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvChain_v_next_set - __swig_getmethods__["v_next"] = _cv.CvChain_v_next_get - if _newclass:v_next = _swig_property(_cv.CvChain_v_next_get, _cv.CvChain_v_next_set) - __swig_setmethods__["total"] = _cv.CvChain_total_set - __swig_getmethods__["total"] = _cv.CvChain_total_get - if _newclass:total = _swig_property(_cv.CvChain_total_get, _cv.CvChain_total_set) - __swig_setmethods__["elem_size"] = _cv.CvChain_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvChain_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvChain_elem_size_get, _cv.CvChain_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvChain_block_max_set - __swig_getmethods__["block_max"] = _cv.CvChain_block_max_get - if _newclass:block_max = _swig_property(_cv.CvChain_block_max_get, _cv.CvChain_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvChain_ptr_set - __swig_getmethods__["ptr"] = _cv.CvChain_ptr_get - if _newclass:ptr = _swig_property(_cv.CvChain_ptr_get, _cv.CvChain_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvChain_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvChain_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvChain_delta_elems_get, _cv.CvChain_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvChain_storage_set - __swig_getmethods__["storage"] = _cv.CvChain_storage_get - if _newclass:storage = _swig_property(_cv.CvChain_storage_get, _cv.CvChain_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvChain_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvChain_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvChain_free_blocks_get, _cv.CvChain_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvChain_first_set - __swig_getmethods__["first"] = _cv.CvChain_first_get - if _newclass:first = _swig_property(_cv.CvChain_first_get, _cv.CvChain_first_set) - __swig_setmethods__["origin"] = _cv.CvChain_origin_set - __swig_getmethods__["origin"] = _cv.CvChain_origin_get - if _newclass:origin = _swig_property(_cv.CvChain_origin_get, _cv.CvChain_origin_set) - def __init__(self): - """__init__(self) -> CvChain""" - this = _cv.new_CvChain() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvChain - __del__ = lambda self : None; -CvChain_swigregister = _cv.CvChain_swigregister -CvChain_swigregister(CvChain) - -class CvContour(_object): - """Proxy of C++ CvContour class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvContour, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvContour, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvContour_flags_set - __swig_getmethods__["flags"] = _cv.CvContour_flags_get - if _newclass:flags = _swig_property(_cv.CvContour_flags_get, _cv.CvContour_flags_set) - __swig_setmethods__["header_size"] = _cv.CvContour_header_size_set - __swig_getmethods__["header_size"] = _cv.CvContour_header_size_get - if _newclass:header_size = _swig_property(_cv.CvContour_header_size_get, _cv.CvContour_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvContour_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvContour_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvContour_h_prev_get, _cv.CvContour_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvContour_h_next_set - __swig_getmethods__["h_next"] = _cv.CvContour_h_next_get - if _newclass:h_next = _swig_property(_cv.CvContour_h_next_get, _cv.CvContour_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvContour_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvContour_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvContour_v_prev_get, _cv.CvContour_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvContour_v_next_set - __swig_getmethods__["v_next"] = _cv.CvContour_v_next_get - if _newclass:v_next = _swig_property(_cv.CvContour_v_next_get, _cv.CvContour_v_next_set) - __swig_setmethods__["total"] = _cv.CvContour_total_set - __swig_getmethods__["total"] = _cv.CvContour_total_get - if _newclass:total = _swig_property(_cv.CvContour_total_get, _cv.CvContour_total_set) - __swig_setmethods__["elem_size"] = _cv.CvContour_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvContour_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvContour_elem_size_get, _cv.CvContour_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvContour_block_max_set - __swig_getmethods__["block_max"] = _cv.CvContour_block_max_get - if _newclass:block_max = _swig_property(_cv.CvContour_block_max_get, _cv.CvContour_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvContour_ptr_set - __swig_getmethods__["ptr"] = _cv.CvContour_ptr_get - if _newclass:ptr = _swig_property(_cv.CvContour_ptr_get, _cv.CvContour_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvContour_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvContour_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvContour_delta_elems_get, _cv.CvContour_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvContour_storage_set - __swig_getmethods__["storage"] = _cv.CvContour_storage_get - if _newclass:storage = _swig_property(_cv.CvContour_storage_get, _cv.CvContour_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvContour_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvContour_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvContour_free_blocks_get, _cv.CvContour_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvContour_first_set - __swig_getmethods__["first"] = _cv.CvContour_first_get - if _newclass:first = _swig_property(_cv.CvContour_first_get, _cv.CvContour_first_set) - __swig_setmethods__["rect"] = _cv.CvContour_rect_set - __swig_getmethods__["rect"] = _cv.CvContour_rect_get - if _newclass:rect = _swig_property(_cv.CvContour_rect_get, _cv.CvContour_rect_set) - __swig_setmethods__["color"] = _cv.CvContour_color_set - __swig_getmethods__["color"] = _cv.CvContour_color_get - if _newclass:color = _swig_property(_cv.CvContour_color_get, _cv.CvContour_color_set) - __swig_setmethods__["reserved"] = _cv.CvContour_reserved_set - __swig_getmethods__["reserved"] = _cv.CvContour_reserved_get - if _newclass:reserved = _swig_property(_cv.CvContour_reserved_get, _cv.CvContour_reserved_set) - def __init__(self): - """__init__(self) -> CvContour""" - this = _cv.new_CvContour() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvContour - __del__ = lambda self : None; -CvContour_swigregister = _cv.CvContour_swigregister -CvContour_swigregister(CvContour) - -class CvSeqWriter(_object): - """Proxy of C++ CvSeqWriter class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeqWriter, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSeqWriter, name) - __repr__ = _swig_repr - __swig_setmethods__["header_size"] = _cv.CvSeqWriter_header_size_set - __swig_getmethods__["header_size"] = _cv.CvSeqWriter_header_size_get - if _newclass:header_size = _swig_property(_cv.CvSeqWriter_header_size_get, _cv.CvSeqWriter_header_size_set) - __swig_setmethods__["seq"] = _cv.CvSeqWriter_seq_set - __swig_getmethods__["seq"] = _cv.CvSeqWriter_seq_get - if _newclass:seq = _swig_property(_cv.CvSeqWriter_seq_get, _cv.CvSeqWriter_seq_set) - __swig_setmethods__["block"] = _cv.CvSeqWriter_block_set - __swig_getmethods__["block"] = _cv.CvSeqWriter_block_get - if _newclass:block = _swig_property(_cv.CvSeqWriter_block_get, _cv.CvSeqWriter_block_set) - __swig_setmethods__["ptr"] = _cv.CvSeqWriter_ptr_set - __swig_getmethods__["ptr"] = _cv.CvSeqWriter_ptr_get - if _newclass:ptr = _swig_property(_cv.CvSeqWriter_ptr_get, _cv.CvSeqWriter_ptr_set) - __swig_setmethods__["block_min"] = _cv.CvSeqWriter_block_min_set - __swig_getmethods__["block_min"] = _cv.CvSeqWriter_block_min_get - if _newclass:block_min = _swig_property(_cv.CvSeqWriter_block_min_get, _cv.CvSeqWriter_block_min_set) - __swig_setmethods__["block_max"] = _cv.CvSeqWriter_block_max_set - __swig_getmethods__["block_max"] = _cv.CvSeqWriter_block_max_get - if _newclass:block_max = _swig_property(_cv.CvSeqWriter_block_max_get, _cv.CvSeqWriter_block_max_set) - def __init__(self): - """__init__(self) -> CvSeqWriter""" - this = _cv.new_CvSeqWriter() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeqWriter - __del__ = lambda self : None; -CvSeqWriter_swigregister = _cv.CvSeqWriter_swigregister -CvSeqWriter_swigregister(CvSeqWriter) - -class CvSeqReader(_object): - """Proxy of C++ CvSeqReader class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeqReader, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSeqReader, name) - __repr__ = _swig_repr - __swig_setmethods__["header_size"] = _cv.CvSeqReader_header_size_set - __swig_getmethods__["header_size"] = _cv.CvSeqReader_header_size_get - if _newclass:header_size = _swig_property(_cv.CvSeqReader_header_size_get, _cv.CvSeqReader_header_size_set) - __swig_setmethods__["seq"] = _cv.CvSeqReader_seq_set - __swig_getmethods__["seq"] = _cv.CvSeqReader_seq_get - if _newclass:seq = _swig_property(_cv.CvSeqReader_seq_get, _cv.CvSeqReader_seq_set) - __swig_setmethods__["block"] = _cv.CvSeqReader_block_set - __swig_getmethods__["block"] = _cv.CvSeqReader_block_get - if _newclass:block = _swig_property(_cv.CvSeqReader_block_get, _cv.CvSeqReader_block_set) - __swig_setmethods__["ptr"] = _cv.CvSeqReader_ptr_set - __swig_getmethods__["ptr"] = _cv.CvSeqReader_ptr_get - if _newclass:ptr = _swig_property(_cv.CvSeqReader_ptr_get, _cv.CvSeqReader_ptr_set) - __swig_setmethods__["block_min"] = _cv.CvSeqReader_block_min_set - __swig_getmethods__["block_min"] = _cv.CvSeqReader_block_min_get - if _newclass:block_min = _swig_property(_cv.CvSeqReader_block_min_get, _cv.CvSeqReader_block_min_set) - __swig_setmethods__["block_max"] = _cv.CvSeqReader_block_max_set - __swig_getmethods__["block_max"] = _cv.CvSeqReader_block_max_get - if _newclass:block_max = _swig_property(_cv.CvSeqReader_block_max_get, _cv.CvSeqReader_block_max_set) - __swig_setmethods__["delta_index"] = _cv.CvSeqReader_delta_index_set - __swig_getmethods__["delta_index"] = _cv.CvSeqReader_delta_index_get - if _newclass:delta_index = _swig_property(_cv.CvSeqReader_delta_index_get, _cv.CvSeqReader_delta_index_set) - __swig_setmethods__["prev_elem"] = _cv.CvSeqReader_prev_elem_set - __swig_getmethods__["prev_elem"] = _cv.CvSeqReader_prev_elem_get - if _newclass:prev_elem = _swig_property(_cv.CvSeqReader_prev_elem_get, _cv.CvSeqReader_prev_elem_set) - def __init__(self): - """__init__(self) -> CvSeqReader""" - this = _cv.new_CvSeqReader() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeqReader - __del__ = lambda self : None; -CvSeqReader_swigregister = _cv.CvSeqReader_swigregister -CvSeqReader_swigregister(CvSeqReader) - -class CvAttrList(_object): - """Proxy of C++ CvAttrList class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvAttrList, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvAttrList, name) - __repr__ = _swig_repr - __swig_setmethods__["attr"] = _cv.CvAttrList_attr_set - __swig_getmethods__["attr"] = _cv.CvAttrList_attr_get - if _newclass:attr = _swig_property(_cv.CvAttrList_attr_get, _cv.CvAttrList_attr_set) - __swig_setmethods__["next"] = _cv.CvAttrList_next_set - __swig_getmethods__["next"] = _cv.CvAttrList_next_get - if _newclass:next = _swig_property(_cv.CvAttrList_next_get, _cv.CvAttrList_next_set) - def __init__(self): - """__init__(self) -> CvAttrList""" - this = _cv.new_CvAttrList() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvAttrList - __del__ = lambda self : None; -CvAttrList_swigregister = _cv.CvAttrList_swigregister -CvAttrList_swigregister(CvAttrList) - -class CvString(_object): - """Proxy of C++ CvString class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvString, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvString, name) - __repr__ = _swig_repr - __swig_setmethods__["len"] = _cv.CvString_len_set - __swig_getmethods__["len"] = _cv.CvString_len_get - if _newclass:len = _swig_property(_cv.CvString_len_get, _cv.CvString_len_set) - __swig_setmethods__["ptr"] = _cv.CvString_ptr_set - __swig_getmethods__["ptr"] = _cv.CvString_ptr_get - if _newclass:ptr = _swig_property(_cv.CvString_ptr_get, _cv.CvString_ptr_set) - def __init__(self): - """__init__(self) -> CvString""" - this = _cv.new_CvString() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvString - __del__ = lambda self : None; -CvString_swigregister = _cv.CvString_swigregister -CvString_swigregister(CvString) - -def cvAttrList(attr = None, next = None): - """ - cvAttrList(char attr = None, CvAttrList next = None) -> CvAttrList - cvAttrList(char attr = None) -> CvAttrList - cvAttrList() -> CvAttrList - """ - return _cv.cvAttrList(attr, next) - -class CvStringHashNode(_object): - """Proxy of C++ CvStringHashNode class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvStringHashNode, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvStringHashNode, name) - __repr__ = _swig_repr - __swig_setmethods__["hashval"] = _cv.CvStringHashNode_hashval_set - __swig_getmethods__["hashval"] = _cv.CvStringHashNode_hashval_get - if _newclass:hashval = _swig_property(_cv.CvStringHashNode_hashval_get, _cv.CvStringHashNode_hashval_set) - __swig_setmethods__["str"] = _cv.CvStringHashNode_str_set - __swig_getmethods__["str"] = _cv.CvStringHashNode_str_get - if _newclass:str = _swig_property(_cv.CvStringHashNode_str_get, _cv.CvStringHashNode_str_set) - __swig_setmethods__["next"] = _cv.CvStringHashNode_next_set - __swig_getmethods__["next"] = _cv.CvStringHashNode_next_get - if _newclass:next = _swig_property(_cv.CvStringHashNode_next_get, _cv.CvStringHashNode_next_set) - def __init__(self): - """__init__(self) -> CvStringHashNode""" - this = _cv.new_CvStringHashNode() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvStringHashNode - __del__ = lambda self : None; -CvStringHashNode_swigregister = _cv.CvStringHashNode_swigregister -CvStringHashNode_swigregister(CvStringHashNode) - -class CvFileNode(_object): - """Proxy of C++ CvFileNode class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvFileNode, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvFileNode, name) - __repr__ = _swig_repr - __swig_setmethods__["tag"] = _cv.CvFileNode_tag_set - __swig_getmethods__["tag"] = _cv.CvFileNode_tag_get - if _newclass:tag = _swig_property(_cv.CvFileNode_tag_get, _cv.CvFileNode_tag_set) - __swig_setmethods__["info"] = _cv.CvFileNode_info_set - __swig_getmethods__["info"] = _cv.CvFileNode_info_get - if _newclass:info = _swig_property(_cv.CvFileNode_info_get, _cv.CvFileNode_info_set) - __swig_getmethods__["data"] = _cv.CvFileNode_data_get - if _newclass:data = _swig_property(_cv.CvFileNode_data_get) - def __init__(self): - """__init__(self) -> CvFileNode""" - this = _cv.new_CvFileNode() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvFileNode - __del__ = lambda self : None; -CvFileNode_swigregister = _cv.CvFileNode_swigregister -CvFileNode_swigregister(CvFileNode) - -class CvFileNode_data(_object): - """Proxy of C++ CvFileNode_data class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvFileNode_data, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvFileNode_data, name) - __repr__ = _swig_repr - __swig_setmethods__["f"] = _cv.CvFileNode_data_f_set - __swig_getmethods__["f"] = _cv.CvFileNode_data_f_get - if _newclass:f = _swig_property(_cv.CvFileNode_data_f_get, _cv.CvFileNode_data_f_set) - __swig_setmethods__["i"] = _cv.CvFileNode_data_i_set - __swig_getmethods__["i"] = _cv.CvFileNode_data_i_get - if _newclass:i = _swig_property(_cv.CvFileNode_data_i_get, _cv.CvFileNode_data_i_set) - __swig_setmethods__["str"] = _cv.CvFileNode_data_str_set - __swig_getmethods__["str"] = _cv.CvFileNode_data_str_get - if _newclass:str = _swig_property(_cv.CvFileNode_data_str_get, _cv.CvFileNode_data_str_set) - __swig_setmethods__["seq"] = _cv.CvFileNode_data_seq_set - __swig_getmethods__["seq"] = _cv.CvFileNode_data_seq_get - if _newclass:seq = _swig_property(_cv.CvFileNode_data_seq_get, _cv.CvFileNode_data_seq_set) - __swig_setmethods__["map"] = _cv.CvFileNode_data_map_set - __swig_getmethods__["map"] = _cv.CvFileNode_data_map_get - if _newclass:map = _swig_property(_cv.CvFileNode_data_map_get, _cv.CvFileNode_data_map_set) - def __init__(self): - """__init__(self) -> CvFileNode_data""" - this = _cv.new_CvFileNode_data() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvFileNode_data - __del__ = lambda self : None; -CvFileNode_data_swigregister = _cv.CvFileNode_data_swigregister -CvFileNode_data_swigregister(CvFileNode_data) - -class CvTypeInfo(_object): - """Proxy of C++ CvTypeInfo class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTypeInfo, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTypeInfo, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvTypeInfo_flags_set - __swig_getmethods__["flags"] = _cv.CvTypeInfo_flags_get - if _newclass:flags = _swig_property(_cv.CvTypeInfo_flags_get, _cv.CvTypeInfo_flags_set) - __swig_setmethods__["header_size"] = _cv.CvTypeInfo_header_size_set - __swig_getmethods__["header_size"] = _cv.CvTypeInfo_header_size_get - if _newclass:header_size = _swig_property(_cv.CvTypeInfo_header_size_get, _cv.CvTypeInfo_header_size_set) - __swig_setmethods__["prev"] = _cv.CvTypeInfo_prev_set - __swig_getmethods__["prev"] = _cv.CvTypeInfo_prev_get - if _newclass:prev = _swig_property(_cv.CvTypeInfo_prev_get, _cv.CvTypeInfo_prev_set) - __swig_setmethods__["next"] = _cv.CvTypeInfo_next_set - __swig_getmethods__["next"] = _cv.CvTypeInfo_next_get - if _newclass:next = _swig_property(_cv.CvTypeInfo_next_get, _cv.CvTypeInfo_next_set) - __swig_setmethods__["type_name"] = _cv.CvTypeInfo_type_name_set - __swig_getmethods__["type_name"] = _cv.CvTypeInfo_type_name_get - if _newclass:type_name = _swig_property(_cv.CvTypeInfo_type_name_get, _cv.CvTypeInfo_type_name_set) - __swig_setmethods__["is_instance"] = _cv.CvTypeInfo_is_instance_set - __swig_getmethods__["is_instance"] = _cv.CvTypeInfo_is_instance_get - if _newclass:is_instance = _swig_property(_cv.CvTypeInfo_is_instance_get, _cv.CvTypeInfo_is_instance_set) - __swig_setmethods__["release"] = _cv.CvTypeInfo_release_set - __swig_getmethods__["release"] = _cv.CvTypeInfo_release_get - if _newclass:release = _swig_property(_cv.CvTypeInfo_release_get, _cv.CvTypeInfo_release_set) - __swig_setmethods__["read"] = _cv.CvTypeInfo_read_set - __swig_getmethods__["read"] = _cv.CvTypeInfo_read_get - if _newclass:read = _swig_property(_cv.CvTypeInfo_read_get, _cv.CvTypeInfo_read_set) - __swig_setmethods__["write"] = _cv.CvTypeInfo_write_set - __swig_getmethods__["write"] = _cv.CvTypeInfo_write_get - if _newclass:write = _swig_property(_cv.CvTypeInfo_write_get, _cv.CvTypeInfo_write_set) - __swig_setmethods__["clone"] = _cv.CvTypeInfo_clone_set - __swig_getmethods__["clone"] = _cv.CvTypeInfo_clone_get - if _newclass:clone = _swig_property(_cv.CvTypeInfo_clone_get, _cv.CvTypeInfo_clone_set) - def __init__(self): - """__init__(self) -> CvTypeInfo""" - this = _cv.new_CvTypeInfo() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvTypeInfo - __del__ = lambda self : None; -CvTypeInfo_swigregister = _cv.CvTypeInfo_swigregister -CvTypeInfo_swigregister(CvTypeInfo) - -class CvPluginFuncInfo(_object): - """Proxy of C++ CvPluginFuncInfo class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPluginFuncInfo, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPluginFuncInfo, name) - __repr__ = _swig_repr - __swig_setmethods__["func_addr"] = _cv.CvPluginFuncInfo_func_addr_set - __swig_getmethods__["func_addr"] = _cv.CvPluginFuncInfo_func_addr_get - if _newclass:func_addr = _swig_property(_cv.CvPluginFuncInfo_func_addr_get, _cv.CvPluginFuncInfo_func_addr_set) - __swig_setmethods__["default_func_addr"] = _cv.CvPluginFuncInfo_default_func_addr_set - __swig_getmethods__["default_func_addr"] = _cv.CvPluginFuncInfo_default_func_addr_get - if _newclass:default_func_addr = _swig_property(_cv.CvPluginFuncInfo_default_func_addr_get, _cv.CvPluginFuncInfo_default_func_addr_set) - __swig_setmethods__["func_names"] = _cv.CvPluginFuncInfo_func_names_set - __swig_getmethods__["func_names"] = _cv.CvPluginFuncInfo_func_names_get - if _newclass:func_names = _swig_property(_cv.CvPluginFuncInfo_func_names_get, _cv.CvPluginFuncInfo_func_names_set) - __swig_setmethods__["search_modules"] = _cv.CvPluginFuncInfo_search_modules_set - __swig_getmethods__["search_modules"] = _cv.CvPluginFuncInfo_search_modules_get - if _newclass:search_modules = _swig_property(_cv.CvPluginFuncInfo_search_modules_get, _cv.CvPluginFuncInfo_search_modules_set) - __swig_setmethods__["loaded_from"] = _cv.CvPluginFuncInfo_loaded_from_set - __swig_getmethods__["loaded_from"] = _cv.CvPluginFuncInfo_loaded_from_get - if _newclass:loaded_from = _swig_property(_cv.CvPluginFuncInfo_loaded_from_get, _cv.CvPluginFuncInfo_loaded_from_set) - def __init__(self): - """__init__(self) -> CvPluginFuncInfo""" - this = _cv.new_CvPluginFuncInfo() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvPluginFuncInfo - __del__ = lambda self : None; -CvPluginFuncInfo_swigregister = _cv.CvPluginFuncInfo_swigregister -CvPluginFuncInfo_swigregister(CvPluginFuncInfo) - -class CvModuleInfo(_object): - """Proxy of C++ CvModuleInfo class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvModuleInfo, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvModuleInfo, name) - __repr__ = _swig_repr - __swig_setmethods__["next"] = _cv.CvModuleInfo_next_set - __swig_getmethods__["next"] = _cv.CvModuleInfo_next_get - if _newclass:next = _swig_property(_cv.CvModuleInfo_next_get, _cv.CvModuleInfo_next_set) - __swig_setmethods__["name"] = _cv.CvModuleInfo_name_set - __swig_getmethods__["name"] = _cv.CvModuleInfo_name_get - if _newclass:name = _swig_property(_cv.CvModuleInfo_name_get, _cv.CvModuleInfo_name_set) - __swig_setmethods__["version"] = _cv.CvModuleInfo_version_set - __swig_getmethods__["version"] = _cv.CvModuleInfo_version_get - if _newclass:version = _swig_property(_cv.CvModuleInfo_version_get, _cv.CvModuleInfo_version_set) - __swig_setmethods__["func_tab"] = _cv.CvModuleInfo_func_tab_set - __swig_getmethods__["func_tab"] = _cv.CvModuleInfo_func_tab_get - if _newclass:func_tab = _swig_property(_cv.CvModuleInfo_func_tab_get, _cv.CvModuleInfo_func_tab_set) - def __init__(self): - """__init__(self) -> CvModuleInfo""" - this = _cv.new_CvModuleInfo() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvModuleInfo - __del__ = lambda self : None; -CvModuleInfo_swigregister = _cv.CvModuleInfo_swigregister -CvModuleInfo_swigregister(CvModuleInfo) - - -def cvAlloc(*args): - """cvAlloc(size_t size) -> void""" - return _cv.cvAlloc(*args) - -def cvFree_(*args): - """cvFree_(void ptr)""" - return _cv.cvFree_(*args) - -def cvResetImageROI(*args): - """cvResetImageROI( image)""" - return _cv.cvResetImageROI(*args) - -def cvCreateMatHeader(*args): - """cvCreateMatHeader(int rows, int cols, int type) -> CvMat""" - return _cv.cvCreateMatHeader(*args) - -def cvInitMatHeader(*args): - """ - cvInitMatHeader(CvMat mat, int rows, int cols, int type, void data = None, - int step = 0x7fffffff) -> CvMat - """ - return _cv.cvInitMatHeader(*args) - -def cvCreateMat(*args): - """cvCreateMat(int rows, int cols, int type) -> CvMat""" - return _cv.cvCreateMat(*args) - -def cvDecRefData(*args): - """cvDecRefData(CvArr arr)""" - return _cv.cvDecRefData(*args) - -def cvIncRefData(*args): - """cvIncRefData(CvArr arr) -> int""" - return _cv.cvIncRefData(*args) - -def cvCloneMat(*args): - """cvCloneMat(CvMat mat) -> CvMat""" - return _cv.cvCloneMat(*args) - -def cvGetSubRect(*args): - """cvGetSubRect(CvArr arr, CvRect rect) -> CvMat""" - return _cv.cvGetSubRect(*args) - -def cvGetRows(*args): - """cvGetRows(CvArr arr, int start_row, int end_row, int delta_row = 1) -> CvMat""" - return _cv.cvGetRows(*args) - -def cvGetRow(*args): - """cvGetRow(CvArr arr, int row) -> CvMat""" - return _cv.cvGetRow(*args) - -def cvGetCols(*args): - """cvGetCols(CvArr arr, int start_col, int end_col) -> CvMat""" - return _cv.cvGetCols(*args) - -def cvGetCol(*args): - """cvGetCol(CvArr arr, int col) -> CvMat""" - return _cv.cvGetCol(*args) - -def cvGetDiag(*args): - """cvGetDiag(CvArr arr, int diag = 0) -> CvMat""" - return _cv.cvGetDiag(*args) - -def cvScalarToRawData(*args): - """cvScalarToRawData(CvScalar scalar, void data, int type, int extend_to_12 = 0)""" - return _cv.cvScalarToRawData(*args) - -def cvRawDataToScalar(*args): - """cvRawDataToScalar(void data, int type, CvScalar scalar)""" - return _cv.cvRawDataToScalar(*args) - -def cvCreateMatNDHeader(*args): - """cvCreateMatNDHeader(int dims, int type) -> CvMatND""" - return _cv.cvCreateMatNDHeader(*args) - -def cvCreateMatND(*args): - """cvCreateMatND(int dims, int type) -> CvMatND""" - return _cv.cvCreateMatND(*args) - -def cvInitMatNDHeader(*args): - """cvInitMatNDHeader(CvMatND mat, int dims, int type, void data = None) -> CvMatND""" - return _cv.cvInitMatNDHeader(*args) - -def cvCloneMatND(*args): - """cvCloneMatND(CvMatND mat) -> CvMatND""" - return _cv.cvCloneMatND(*args) - -def cvCreateSparseMat(*args): - """cvCreateSparseMat(int dims, int type) -> CvSparseMat""" - return _cv.cvCreateSparseMat(*args) - -def cvCloneSparseMat(*args): - """cvCloneSparseMat(CvSparseMat mat) -> CvSparseMat""" - return _cv.cvCloneSparseMat(*args) - -def cvInitSparseMatIterator(*args): - """cvInitSparseMatIterator(CvSparseMat mat, CvSparseMatIterator mat_iterator) -> CvSparseNode""" - return _cv.cvInitSparseMatIterator(*args) - -def cvGetNextSparseNode(*args): - """cvGetNextSparseNode(CvSparseMatIterator mat_iterator) -> CvSparseNode""" - return _cv.cvGetNextSparseNode(*args) -class CvNArrayIterator(_object): - """Proxy of C++ CvNArrayIterator class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvNArrayIterator, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvNArrayIterator, name) - __repr__ = _swig_repr - __swig_setmethods__["count"] = _cv.CvNArrayIterator_count_set - __swig_getmethods__["count"] = _cv.CvNArrayIterator_count_get - if _newclass:count = _swig_property(_cv.CvNArrayIterator_count_get, _cv.CvNArrayIterator_count_set) - __swig_setmethods__["dims"] = _cv.CvNArrayIterator_dims_set - __swig_getmethods__["dims"] = _cv.CvNArrayIterator_dims_get - if _newclass:dims = _swig_property(_cv.CvNArrayIterator_dims_get, _cv.CvNArrayIterator_dims_set) - __swig_setmethods__["size"] = _cv.CvNArrayIterator_size_set - __swig_getmethods__["size"] = _cv.CvNArrayIterator_size_get - if _newclass:size = _swig_property(_cv.CvNArrayIterator_size_get, _cv.CvNArrayIterator_size_set) - __swig_setmethods__["ptr"] = _cv.CvNArrayIterator_ptr_set - __swig_getmethods__["ptr"] = _cv.CvNArrayIterator_ptr_get - if _newclass:ptr = _swig_property(_cv.CvNArrayIterator_ptr_get, _cv.CvNArrayIterator_ptr_set) - __swig_setmethods__["stack"] = _cv.CvNArrayIterator_stack_set - __swig_getmethods__["stack"] = _cv.CvNArrayIterator_stack_get - if _newclass:stack = _swig_property(_cv.CvNArrayIterator_stack_get, _cv.CvNArrayIterator_stack_set) - __swig_setmethods__["hdr"] = _cv.CvNArrayIterator_hdr_set - __swig_getmethods__["hdr"] = _cv.CvNArrayIterator_hdr_get - if _newclass:hdr = _swig_property(_cv.CvNArrayIterator_hdr_get, _cv.CvNArrayIterator_hdr_set) - def __init__(self): - """__init__(self) -> CvNArrayIterator""" - this = _cv.new_CvNArrayIterator() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvNArrayIterator - __del__ = lambda self : None; -CvNArrayIterator_swigregister = _cv.CvNArrayIterator_swigregister -CvNArrayIterator_swigregister(CvNArrayIterator) - - -def cvInitNArrayIterator(*args): - """ - cvInitNArrayIterator(int count, CvArr arrs, CvArr mask, CvMatND stubs, CvNArrayIterator array_iterator, - int flags = 0) -> int - """ - return _cv.cvInitNArrayIterator(*args) - -def cvNextNArraySlice(*args): - """cvNextNArraySlice(CvNArrayIterator array_iterator) -> int""" - return _cv.cvNextNArraySlice(*args) - -def cvGetElemType(*args): - """cvGetElemType(CvArr arr) -> int""" - return _cv.cvGetElemType(*args) - -def cvGetDims(*args): - """cvGetDims(CvArr arr) -> int""" - return _cv.cvGetDims(*args) - -def cvGetDimSize(*args): - """cvGetDimSize(CvArr arr, int index) -> int""" - return _cv.cvGetDimSize(*args) - -def cvPtr1D(*args): - """cvPtr1D(CvArr arr, int idx0, int type = None) -> uchar""" - return _cv.cvPtr1D(*args) - -def cvPtr2D(*args): - """cvPtr2D(CvArr arr, int idx0, int idx1, int type = None) -> uchar""" - return _cv.cvPtr2D(*args) - -def cvPtr3D(*args): - """cvPtr3D(CvArr arr, int idx0, int idx1, int idx2, int type = None) -> uchar""" - return _cv.cvPtr3D(*args) - -def cvPtrND(*args): - """ - cvPtrND(CvArr arr, int idx, int type = None, int create_node = 1, - unsigned int precalc_hashval = None) -> uchar - """ - return _cv.cvPtrND(*args) - -def cvGet1D(*args): - """cvGet1D(CvArr arr, int idx0) -> CvScalar""" - return _cv.cvGet1D(*args) - -def cvGet2D(*args): - """cvGet2D(CvArr arr, int idx0, int idx1) -> CvScalar""" - return _cv.cvGet2D(*args) - -def cvGet3D(*args): - """cvGet3D(CvArr arr, int idx0, int idx1, int idx2) -> CvScalar""" - return _cv.cvGet3D(*args) - -def cvGetND(*args): - """cvGetND(CvArr arr, int idx) -> CvScalar""" - return _cv.cvGetND(*args) - -def cvGetReal1D(*args): - """cvGetReal1D(CvArr arr, int idx0) -> double""" - return _cv.cvGetReal1D(*args) - -def cvGetReal2D(*args): - """cvGetReal2D(CvArr arr, int idx0, int idx1) -> double""" - return _cv.cvGetReal2D(*args) - -def cvGetReal3D(*args): - """cvGetReal3D(CvArr arr, int idx0, int idx1, int idx2) -> double""" - return _cv.cvGetReal3D(*args) - -def cvGetRealND(*args): - """cvGetRealND(CvArr arr, int idx) -> double""" - return _cv.cvGetRealND(*args) - -def cvSet1D(*args): - """cvSet1D(CvArr arr, int idx0, CvScalar value)""" - return _cv.cvSet1D(*args) - -def cvSet2D(*args): - """cvSet2D(CvArr arr, int idx0, int idx1, CvScalar value)""" - return _cv.cvSet2D(*args) - -def cvSet3D(*args): - """cvSet3D(CvArr arr, int idx0, int idx1, int idx2, CvScalar value)""" - return _cv.cvSet3D(*args) - -def cvSetND(*args): - """cvSetND(CvArr arr, int idx, CvScalar value)""" - return _cv.cvSetND(*args) - -def cvSetReal1D(*args): - """cvSetReal1D(CvArr arr, int idx0, double value)""" - return _cv.cvSetReal1D(*args) - -def cvSetReal2D(*args): - """cvSetReal2D(CvArr arr, int idx0, int idx1, double value)""" - return _cv.cvSetReal2D(*args) - -def cvSetReal3D(*args): - """cvSetReal3D(CvArr arr, int idx0, int idx1, int idx2, double value)""" - return _cv.cvSetReal3D(*args) - -def cvSetRealND(*args): - """cvSetRealND(CvArr arr, int idx, double value)""" - return _cv.cvSetRealND(*args) - -def cvClearND(*args): - """cvClearND(CvArr arr, int idx)""" - return _cv.cvClearND(*args) - -def cvGetMat(*args): - """cvGetMat(CvArr arr, int coi = None, int allowND = 0) -> CvMat""" - return _cv.cvGetMat(*args) - -def cvReshapeMatND(*args): - """ - cvReshapeMatND(CvArr arr, int sizeof_header, CvArr header, int new_cn, - int new_dims, int new_sizes) -> CvArr - """ - return _cv.cvReshapeMatND(*args) - -def cvReshape(*args): - """cvReshape(CvArr arr, int new_cn, int new_rows = 0) -> CvMat""" - return _cv.cvReshape(*args) - -def cvRepeat(*args): - """cvRepeat(CvArr src, CvArr dst)""" - return _cv.cvRepeat(*args) - -def cvCreateData(*args): - """cvCreateData(CvArr arr)""" - return _cv.cvCreateData(*args) - -def cvReleaseData(*args): - """cvReleaseData(CvArr arr)""" - return _cv.cvReleaseData(*args) - -def cvSetData(*args): - """cvSetData(CvArr arr, void data, int step)""" - return _cv.cvSetData(*args) - -def cvGetRawData(*args): - """cvGetRawData(CvArr arr, uchar data, int step = None, CvSize roi_size = None)""" - return _cv.cvGetRawData(*args) - -def cvGetSize(*args): - """cvGetSize(CvArr arr) -> CvSize""" - return _cv.cvGetSize(*args) - -def cvCopy(*args): - """cvCopy(CvArr src, CvArr dst, CvArr mask = None)""" - return _cv.cvCopy(*args) - -def cvSet(*args): - """cvSet(CvArr arr, CvScalar value, CvArr mask = None)""" - return _cv.cvSet(*args) - -def cvSetZero(*args): - """cvSetZero(CvArr arr)""" - return _cv.cvSetZero(*args) - -def cvSplit(*args): - """cvSplit(CvArr src, CvArr dst0, CvArr dst1, CvArr dst2, CvArr dst3)""" - return _cv.cvSplit(*args) - -def cvMerge(*args): - """cvMerge(CvArr src0, CvArr src1, CvArr src2, CvArr src3, CvArr dst)""" - return _cv.cvMerge(*args) - -def cvMixChannels(*args): - """ - cvMixChannels(CvArr src, int src_count, CvArr dst, int dst_count, - int from_to, int pair_count) - """ - return _cv.cvMixChannels(*args) - -def cvConvertScale(*args): - """cvConvertScale(CvArr src, CvArr dst, double scale = 1, double shift = 0)""" - return _cv.cvConvertScale(*args) - -def cvConvertScaleAbs(*args): - """cvConvertScaleAbs(CvArr src, CvArr dst, double scale = 1, double shift = 0)""" - return _cv.cvConvertScaleAbs(*args) - -def cvCheckTermCriteria(*args): - """cvCheckTermCriteria(CvTermCriteria criteria, double default_eps, int default_max_iters) -> CvTermCriteria""" - return _cv.cvCheckTermCriteria(*args) - -def cvAdd(*args): - """cvAdd(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)""" - return _cv.cvAdd(*args) - -def cvAddS(*args): - """cvAddS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)""" - return _cv.cvAddS(*args) - -def cvSub(*args): - """cvSub(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)""" - return _cv.cvSub(*args) - -def cvSubS(*args): - """cvSubS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)""" - return _cv.cvSubS(*args) - -def cvSubRS(*args): - """cvSubRS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)""" - return _cv.cvSubRS(*args) - -def cvMul(*args): - """cvMul(CvArr src1, CvArr src2, CvArr dst, double scale = 1)""" - return _cv.cvMul(*args) - -def cvDiv(*args): - """cvDiv(CvArr src1, CvArr src2, CvArr dst, double scale = 1)""" - return _cv.cvDiv(*args) - -def cvScaleAdd(*args): - """cvScaleAdd(CvArr src1, CvScalar scale, CvArr src2, CvArr dst)""" - return _cv.cvScaleAdd(*args) - -def cvAddWeighted(*args): - """ - cvAddWeighted(CvArr src1, double alpha, CvArr src2, double beta, - double gamma, CvArr dst) - """ - return _cv.cvAddWeighted(*args) - -def cvDotProduct(*args): - """cvDotProduct(CvArr src1, CvArr src2) -> double""" - return _cv.cvDotProduct(*args) - -def cvAnd(*args): - """cvAnd(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)""" - return _cv.cvAnd(*args) - -def cvAndS(*args): - """cvAndS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)""" - return _cv.cvAndS(*args) - -def cvOr(*args): - """cvOr(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)""" - return _cv.cvOr(*args) - -def cvOrS(*args): - """cvOrS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)""" - return _cv.cvOrS(*args) - -def cvXor(*args): - """cvXor(CvArr src1, CvArr src2, CvArr dst, CvArr mask = None)""" - return _cv.cvXor(*args) - -def cvXorS(*args): - """cvXorS(CvArr src, CvScalar value, CvArr dst, CvArr mask = None)""" - return _cv.cvXorS(*args) - -def cvNot(*args): - """cvNot(CvArr src, CvArr dst)""" - return _cv.cvNot(*args) - -def cvInRange(*args): - """cvInRange(CvArr src, CvArr lower, CvArr upper, CvArr dst)""" - return _cv.cvInRange(*args) - -def cvInRangeS(*args): - """cvInRangeS(CvArr src, CvScalar lower, CvScalar upper, CvArr dst)""" - return _cv.cvInRangeS(*args) - -def cvCmp(*args): - """cvCmp(CvArr src1, CvArr src2, CvArr dst, int cmp_op)""" - return _cv.cvCmp(*args) - -def cvCmpS(*args): - """cvCmpS(CvArr src, double value, CvArr dst, int cmp_op)""" - return _cv.cvCmpS(*args) - -def cvMin(*args): - """cvMin(CvArr src1, CvArr src2, CvArr dst)""" - return _cv.cvMin(*args) - -def cvMax(*args): - """cvMax(CvArr src1, CvArr src2, CvArr dst)""" - return _cv.cvMax(*args) - -def cvMinS(*args): - """cvMinS(CvArr src, double value, CvArr dst)""" - return _cv.cvMinS(*args) - -def cvMaxS(*args): - """cvMaxS(CvArr src, double value, CvArr dst)""" - return _cv.cvMaxS(*args) - -def cvAbsDiff(*args): - """cvAbsDiff(CvArr src1, CvArr src2, CvArr dst)""" - return _cv.cvAbsDiff(*args) - -def cvAbsDiffS(*args): - """cvAbsDiffS(CvArr src, CvArr dst, CvScalar value)""" - return _cv.cvAbsDiffS(*args) - -def cvCartToPolar(*args): - """ - cvCartToPolar(CvArr x, CvArr y, CvArr magnitude, CvArr angle = None, - int angle_in_degrees = 0) - """ - return _cv.cvCartToPolar(*args) - -def cvPolarToCart(*args): - """cvPolarToCart(CvArr magnitude, CvArr angle, CvArr x, CvArr y, int angle_in_degrees = 0)""" - return _cv.cvPolarToCart(*args) - -def cvPow(*args): - """cvPow(CvArr src, CvArr dst, double power)""" - return _cv.cvPow(*args) - -def cvExp(*args): - """cvExp(CvArr src, CvArr dst)""" - return _cv.cvExp(*args) - -def cvLog(*args): - """cvLog(CvArr src, CvArr dst)""" - return _cv.cvLog(*args) - -def cvFastArctan(*args): - """cvFastArctan(float y, float x) -> float""" - return _cv.cvFastArctan(*args) - -def cvCbrt(*args): - """cvCbrt(float value) -> float""" - return _cv.cvCbrt(*args) - -def cvCheckArr(*args): - """cvCheckArr(CvArr arr, int flags = 0, double min_val = 0, double max_val = 0) -> int""" - return _cv.cvCheckArr(*args) - -def cvRandArr(*args): - """ - cvRandArr(CvRNG rng, CvArr arr, int dist_type, CvScalar param1, - CvScalar param2) - """ - return _cv.cvRandArr(*args) - -def cvRandShuffle(*args): - """cvRandShuffle(CvArr mat, CvRNG rng, double iter_factor = 1.)""" - return _cv.cvRandShuffle(*args) - -def cvSort(*args): - """cvSort(CvArr src, CvArr dst = None, CvArr idxmat = None, int flags = 0)""" - return _cv.cvSort(*args) - -def cvSolveCubic(*args): - """cvSolveCubic(CvMat coeffs) -> int""" - return _cv.cvSolveCubic(*args) - -def cvSolvePoly(*args): - """cvSolvePoly(CvMat coeffs, int maxiter = 20, int fig = 100)""" - return _cv.cvSolvePoly(*args) - -def cvCrossProduct(*args): - """cvCrossProduct(CvArr src1, CvArr src2, CvArr dst)""" - return _cv.cvCrossProduct(*args) - -def cvGEMM(*args): - """ - cvGEMM(CvArr src1, CvArr src2, double alpha, CvArr src3, double beta, - CvArr dst, int tABC = 0) - """ - return _cv.cvGEMM(*args) - -def cvTransform(*args): - """cvTransform(CvArr src, CvArr dst, CvMat transmat, CvMat shiftvec = None)""" - return _cv.cvTransform(*args) - -def cvPerspectiveTransform(*args): - """cvPerspectiveTransform(CvArr src, CvArr dst, CvMat mat)""" - return _cv.cvPerspectiveTransform(*args) - -def cvMulTransposed(*args): - """ - cvMulTransposed(CvArr src, CvArr dst, int order, CvArr delta = None, - double scale = 1.) - """ - return _cv.cvMulTransposed(*args) - -def cvTranspose(*args): - """cvTranspose(CvArr src, CvArr dst)""" - return _cv.cvTranspose(*args) - -def cvCompleteSymm(*args): - """cvCompleteSymm(CvMat matrix, int LtoR = 0)""" - return _cv.cvCompleteSymm(*args) - -def cvFlip(*args): - """cvFlip(CvArr src, CvArr dst = None, int flip_mode = 0)""" - return _cv.cvFlip(*args) - -def cvSVD(*args): - """cvSVD(CvArr A, CvArr W, CvArr U = None, CvArr V = None, int flags = 0)""" - return _cv.cvSVD(*args) - -def cvSVBkSb(*args): - """cvSVBkSb(CvArr W, CvArr U, CvArr V, CvArr B, CvArr X, int flags)""" - return _cv.cvSVBkSb(*args) - -def cvInvert(*args): - """cvInvert(CvArr src, CvArr dst, int method = 0) -> double""" - return _cv.cvInvert(*args) - -def cvSolve(*args): - """cvSolve(CvArr src1, CvArr src2, CvArr dst, int method = 0) -> int""" - return _cv.cvSolve(*args) - -def cvDet(*args): - """cvDet(CvArr mat) -> double""" - return _cv.cvDet(*args) - -def cvTrace(*args): - """cvTrace(CvArr mat) -> CvScalar""" - return _cv.cvTrace(*args) - -def cvEigenVV(*args): - """ - cvEigenVV(CvArr mat, CvArr evects, CvArr evals, double eps = 0, - int lowindex = -1, int highindex = -1) - """ - return _cv.cvEigenVV(*args) - -def cvSetIdentity(*args): - """cvSetIdentity(CvArr mat, CvScalar value = cvRealScalar(1))""" - return _cv.cvSetIdentity(*args) - -def cvRange(*args): - """cvRange(CvArr mat, double start, double end) -> CvArr""" - return _cv.cvRange(*args) - -def cvCalcCovarMatrix(*args): - """cvCalcCovarMatrix(CvArr vects, int count, CvArr cov_mat, CvArr avg, int flags)""" - return _cv.cvCalcCovarMatrix(*args) - -def cvCalcPCA(*args): - """ - cvCalcPCA(CvArr data, CvArr mean, CvArr eigenvals, CvArr eigenvects, - int flags) - """ - return _cv.cvCalcPCA(*args) - -def cvProjectPCA(*args): - """cvProjectPCA(CvArr data, CvArr mean, CvArr eigenvects, CvArr result)""" - return _cv.cvProjectPCA(*args) - -def cvBackProjectPCA(*args): - """cvBackProjectPCA(CvArr proj, CvArr mean, CvArr eigenvects, CvArr result)""" - return _cv.cvBackProjectPCA(*args) - -def cvMahalanobis(*args): - """cvMahalanobis(CvArr vec1, CvArr vec2, CvArr mat) -> double""" - return _cv.cvMahalanobis(*args) - -def cvSum(*args): - """cvSum(CvArr arr) -> CvScalar""" - return _cv.cvSum(*args) - -def cvCountNonZero(*args): - """cvCountNonZero(CvArr arr) -> int""" - return _cv.cvCountNonZero(*args) - -def cvAvg(*args): - """cvAvg(CvArr arr, CvArr mask = None) -> CvScalar""" - return _cv.cvAvg(*args) - -def cvAvgSdv(*args): - """cvAvgSdv(CvArr arr, CvScalar mean, CvScalar std_dev, CvArr mask = None)""" - return _cv.cvAvgSdv(*args) - -def cvMinMaxLoc(*args): - """cvMinMaxLoc(CvArr arr, CvArr mask = None)""" - return _cv.cvMinMaxLoc(*args) - -def cvNorm(*args): - """cvNorm(CvArr arr1, CvArr arr2 = None, int norm_type = 4, CvArr mask = None) -> double""" - return _cv.cvNorm(*args) - -def cvNormalize(*args): - """ - cvNormalize(CvArr src, CvArr dst, double a = 1., double b = 0., - int norm_type = 4, CvArr mask = None) - """ - return _cv.cvNormalize(*args) - -def cvReduce(*args): - """cvReduce(CvArr src, CvArr dst, int dim = -1, int op = 0)""" - return _cv.cvReduce(*args) - -def cvDFT(*args): - """cvDFT(CvArr src, CvArr dst, int flags, int nonzero_rows = 0)""" - return _cv.cvDFT(*args) - -def cvMulSpectrums(*args): - """cvMulSpectrums(CvArr src1, CvArr src2, CvArr dst, int flags)""" - return _cv.cvMulSpectrums(*args) - -def cvGetOptimalDFTSize(*args): - """cvGetOptimalDFTSize(int size0) -> int""" - return _cv.cvGetOptimalDFTSize(*args) - -def cvDCT(*args): - """cvDCT(CvArr src, CvArr dst, int flags)""" - return _cv.cvDCT(*args) - -def cvSliceLength(*args): - """cvSliceLength(CvSlice slice, CvSeq seq) -> int""" - return _cv.cvSliceLength(*args) - -def cvCreateMemStorage(block_size = 0): - """cvCreateMemStorage(int block_size = 0) -> CvMemStorage""" - return _cv.cvCreateMemStorage(block_size) - -def cvCreateChildMemStorage(*args): - """cvCreateChildMemStorage(CvMemStorage parent) -> CvMemStorage""" - return _cv.cvCreateChildMemStorage(*args) - -def cvClearMemStorage(*args): - """cvClearMemStorage(CvMemStorage storage)""" - return _cv.cvClearMemStorage(*args) - -def cvSaveMemStoragePos(*args): - """cvSaveMemStoragePos(CvMemStorage storage, CvMemStoragePos pos)""" - return _cv.cvSaveMemStoragePos(*args) - -def cvRestoreMemStoragePos(*args): - """cvRestoreMemStoragePos(CvMemStorage storage, CvMemStoragePos pos)""" - return _cv.cvRestoreMemStoragePos(*args) - -def cvMemStorageAlloc(*args): - """cvMemStorageAlloc(CvMemStorage storage, size_t size) -> void""" - return _cv.cvMemStorageAlloc(*args) - -def cvMemStorageAllocString(*args): - """cvMemStorageAllocString(CvMemStorage storage, char ptr, int len = -1) -> CvString""" - return _cv.cvMemStorageAllocString(*args) - -def cvCreateSeq(*args): - """cvCreateSeq(int seq_flags, int header_size, int elem_size, CvMemStorage storage) -> CvSeq""" - return _cv.cvCreateSeq(*args) - -def cvSetSeqBlockSize(*args): - """cvSetSeqBlockSize(CvSeq seq, int delta_elems)""" - return _cv.cvSetSeqBlockSize(*args) - -def cvSeqPush(*args): - """cvSeqPush(CvSeq seq, void element = None) -> schar""" - return _cv.cvSeqPush(*args) - -def cvSeqPushFront(*args): - """cvSeqPushFront(CvSeq seq, void element = None) -> schar""" - return _cv.cvSeqPushFront(*args) - -def cvSeqPop(*args): - """cvSeqPop(CvSeq seq, void element = None)""" - return _cv.cvSeqPop(*args) - -def cvSeqPopFront(*args): - """cvSeqPopFront(CvSeq seq, void element = None)""" - return _cv.cvSeqPopFront(*args) - -def cvSeqPushMulti(*args): - """cvSeqPushMulti(CvSeq seq, void elements, int count, int in_front = 0)""" - return _cv.cvSeqPushMulti(*args) - -def cvSeqPopMulti(*args): - """cvSeqPopMulti(CvSeq seq, void elements, int count, int in_front = 0)""" - return _cv.cvSeqPopMulti(*args) - -def cvSeqInsert(*args): - """cvSeqInsert(CvSeq seq, int before_index, void element = None) -> schar""" - return _cv.cvSeqInsert(*args) - -def cvSeqRemove(*args): - """cvSeqRemove(CvSeq seq, int index)""" - return _cv.cvSeqRemove(*args) - -def cvClearSeq(*args): - """cvClearSeq(CvSeq seq)""" - return _cv.cvClearSeq(*args) - -def cvGetSeqElem(*args): - """cvGetSeqElem(CvSeq seq, int index) -> schar""" - return _cv.cvGetSeqElem(*args) - -def cvSeqElemIdx(*args): - """cvSeqElemIdx(CvSeq seq, void element, CvSeqBlock block = None) -> int""" - return _cv.cvSeqElemIdx(*args) - -def cvStartAppendToSeq(*args): - """cvStartAppendToSeq(CvSeq seq, CvSeqWriter writer)""" - return _cv.cvStartAppendToSeq(*args) - -def cvStartWriteSeq(*args): - """ - cvStartWriteSeq(int seq_flags, int header_size, int elem_size, CvMemStorage storage, - CvSeqWriter writer) - """ - return _cv.cvStartWriteSeq(*args) - -def cvEndWriteSeq(*args): - """cvEndWriteSeq(CvSeqWriter writer) -> CvSeq""" - return _cv.cvEndWriteSeq(*args) - -def cvFlushSeqWriter(*args): - """cvFlushSeqWriter(CvSeqWriter writer)""" - return _cv.cvFlushSeqWriter(*args) - -def cvStartReadSeq(*args): - """cvStartReadSeq(CvSeq seq, CvSeqReader reader, int reverse = 0)""" - return _cv.cvStartReadSeq(*args) - -def cvGetSeqReaderPos(*args): - """cvGetSeqReaderPos(CvSeqReader reader) -> int""" - return _cv.cvGetSeqReaderPos(*args) - -def cvSetSeqReaderPos(*args): - """cvSetSeqReaderPos(CvSeqReader reader, int index, int is_relative = 0)""" - return _cv.cvSetSeqReaderPos(*args) - -def cvMakeSeqHeaderForArray(*args): - """ - cvMakeSeqHeaderForArray(int seq_type, int header_size, int elem_size, void elements, - int total, CvSeq seq, CvSeqBlock block) -> CvSeq - """ - return _cv.cvMakeSeqHeaderForArray(*args) - -def cvSeqSlice(*args): - """ - cvSeqSlice(CvSeq seq, CvSlice slice, CvMemStorage storage = None, - int copy_data = 0) -> CvSeq - """ - return _cv.cvSeqSlice(*args) - -def cvCloneSeq(*args): - """cvCloneSeq(CvSeq seq, CvMemStorage storage = None) -> CvSeq""" - return _cv.cvCloneSeq(*args) - -def cvSeqRemoveSlice(*args): - """cvSeqRemoveSlice(CvSeq seq, CvSlice slice)""" - return _cv.cvSeqRemoveSlice(*args) - -def cvSeqInsertSlice(*args): - """cvSeqInsertSlice(CvSeq seq, int before_index, CvArr from_arr)""" - return _cv.cvSeqInsertSlice(*args) - -def cvSeqSort(*args): - """cvSeqSort(CvSeq seq, CvCmpFunc func, void userdata = None)""" - return _cv.cvSeqSort(*args) - -def cvSeqSearch(*args): - """ - cvSeqSearch(CvSeq seq, void elem, CvCmpFunc func, int is_sorted, - int elem_idx, void userdata = None) -> schar - """ - return _cv.cvSeqSearch(*args) - -def cvSeqInvert(*args): - """cvSeqInvert(CvSeq seq)""" - return _cv.cvSeqInvert(*args) - -def cvSeqPartition(*args): - """ - cvSeqPartition(CvSeq seq, CvMemStorage storage, CvSeq labels, CvCmpFunc is_equal, - void userdata) -> int - """ - return _cv.cvSeqPartition(*args) - -def cvChangeSeqBlock(*args): - """cvChangeSeqBlock(void reader, int direction)""" - return _cv.cvChangeSeqBlock(*args) - -def cvCreateSeqBlock(*args): - """cvCreateSeqBlock(CvSeqWriter writer)""" - return _cv.cvCreateSeqBlock(*args) - -def cvCreateSet(*args): - """cvCreateSet(int set_flags, int header_size, int elem_size, CvMemStorage storage) -> CvSet""" - return _cv.cvCreateSet(*args) - -def cvSetAdd(*args): - """cvSetAdd(CvSet set_header, CvSetElem elem = None, CvSetElem inserted_elem = None) -> int""" - return _cv.cvSetAdd(*args) - -def cvSetNew(*args): - """cvSetNew(CvSet set_header) -> CvSetElem""" - return _cv.cvSetNew(*args) - -def cvSetRemoveByPtr(*args): - """cvSetRemoveByPtr(CvSet set_header, void elem)""" - return _cv.cvSetRemoveByPtr(*args) - -def cvSetRemove(*args): - """cvSetRemove(CvSet set_header, int index)""" - return _cv.cvSetRemove(*args) - -def cvGetSetElem(*args): - """cvGetSetElem(CvSet set_header, int index) -> CvSetElem""" - return _cv.cvGetSetElem(*args) - -def cvClearSet(*args): - """cvClearSet(CvSet set_header)""" - return _cv.cvClearSet(*args) - -def cvCreateGraph(*args): - """ - cvCreateGraph(int graph_flags, int header_size, int vtx_size, int edge_size, - CvMemStorage storage) -> CvGraph - """ - return _cv.cvCreateGraph(*args) - -def cvGraphAddVtx(*args): - """cvGraphAddVtx(CvGraph graph, CvGraphVtx vtx = None, CvGraphVtx inserted_vtx = None) -> int""" - return _cv.cvGraphAddVtx(*args) - -def cvGraphRemoveVtx(*args): - """cvGraphRemoveVtx(CvGraph graph, int index) -> int""" - return _cv.cvGraphRemoveVtx(*args) - -def cvGraphRemoveVtxByPtr(*args): - """cvGraphRemoveVtxByPtr(CvGraph graph, CvGraphVtx vtx) -> int""" - return _cv.cvGraphRemoveVtxByPtr(*args) - -def cvGraphAddEdge(*args): - """ - cvGraphAddEdge(CvGraph graph, int start_idx, int end_idx, CvGraphEdge edge = None, - CvGraphEdge inserted_edge = None) -> int - """ - return _cv.cvGraphAddEdge(*args) - -def cvGraphAddEdgeByPtr(*args): - """ - cvGraphAddEdgeByPtr(CvGraph graph, CvGraphVtx start_vtx, CvGraphVtx end_vtx, - CvGraphEdge edge = None, CvGraphEdge inserted_edge = None) -> int - """ - return _cv.cvGraphAddEdgeByPtr(*args) - -def cvGraphRemoveEdge(*args): - """cvGraphRemoveEdge(CvGraph graph, int start_idx, int end_idx)""" - return _cv.cvGraphRemoveEdge(*args) - -def cvGraphRemoveEdgeByPtr(*args): - """cvGraphRemoveEdgeByPtr(CvGraph graph, CvGraphVtx start_vtx, CvGraphVtx end_vtx)""" - return _cv.cvGraphRemoveEdgeByPtr(*args) - -def cvFindGraphEdge(*args): - """cvFindGraphEdge(CvGraph graph, int start_idx, int end_idx) -> CvGraphEdge""" - return _cv.cvFindGraphEdge(*args) - -def cvFindGraphEdgeByPtr(*args): - """cvFindGraphEdgeByPtr(CvGraph graph, CvGraphVtx start_vtx, CvGraphVtx end_vtx) -> CvGraphEdge""" - return _cv.cvFindGraphEdgeByPtr(*args) - -def cvClearGraph(*args): - """cvClearGraph(CvGraph graph)""" - return _cv.cvClearGraph(*args) - -def cvGraphVtxDegree(*args): - """cvGraphVtxDegree(CvGraph graph, int vtx_idx) -> int""" - return _cv.cvGraphVtxDegree(*args) - -def cvGraphVtxDegreeByPtr(*args): - """cvGraphVtxDegreeByPtr(CvGraph graph, CvGraphVtx vtx) -> int""" - return _cv.cvGraphVtxDegreeByPtr(*args) -class CvGraphScanner(_object): - """Proxy of C++ CvGraphScanner class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvGraphScanner, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvGraphScanner, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["vtx"] = _cv.CvGraphScanner_vtx_set - __swig_getmethods__["vtx"] = _cv.CvGraphScanner_vtx_get - if _newclass:vtx = _swig_property(_cv.CvGraphScanner_vtx_get, _cv.CvGraphScanner_vtx_set) - __swig_setmethods__["dst"] = _cv.CvGraphScanner_dst_set - __swig_getmethods__["dst"] = _cv.CvGraphScanner_dst_get - if _newclass:dst = _swig_property(_cv.CvGraphScanner_dst_get, _cv.CvGraphScanner_dst_set) - __swig_setmethods__["edge"] = _cv.CvGraphScanner_edge_set - __swig_getmethods__["edge"] = _cv.CvGraphScanner_edge_get - if _newclass:edge = _swig_property(_cv.CvGraphScanner_edge_get, _cv.CvGraphScanner_edge_set) - __swig_setmethods__["graph"] = _cv.CvGraphScanner_graph_set - __swig_getmethods__["graph"] = _cv.CvGraphScanner_graph_get - if _newclass:graph = _swig_property(_cv.CvGraphScanner_graph_get, _cv.CvGraphScanner_graph_set) - __swig_setmethods__["stack"] = _cv.CvGraphScanner_stack_set - __swig_getmethods__["stack"] = _cv.CvGraphScanner_stack_get - if _newclass:stack = _swig_property(_cv.CvGraphScanner_stack_get, _cv.CvGraphScanner_stack_set) - __swig_setmethods__["index"] = _cv.CvGraphScanner_index_set - __swig_getmethods__["index"] = _cv.CvGraphScanner_index_get - if _newclass:index = _swig_property(_cv.CvGraphScanner_index_get, _cv.CvGraphScanner_index_set) - __swig_setmethods__["mask"] = _cv.CvGraphScanner_mask_set - __swig_getmethods__["mask"] = _cv.CvGraphScanner_mask_get - if _newclass:mask = _swig_property(_cv.CvGraphScanner_mask_get, _cv.CvGraphScanner_mask_set) - __swig_destroy__ = _cv.delete_CvGraphScanner - __del__ = lambda self : None; -CvGraphScanner_swigregister = _cv.CvGraphScanner_swigregister -CvGraphScanner_swigregister(CvGraphScanner) - - -def cvCreateGraphScanner(*args): - """cvCreateGraphScanner(CvGraph graph, CvGraphVtx vtx = None, int mask = -1) -> CvGraphScanner""" - return _cv.cvCreateGraphScanner(*args) - -def cvNextGraphItem(*args): - """cvNextGraphItem(CvGraphScanner scanner) -> int""" - return _cv.cvNextGraphItem(*args) - -def cvCloneGraph(*args): - """cvCloneGraph(CvGraph graph, CvMemStorage storage) -> CvGraph""" - return _cv.cvCloneGraph(*args) - -def cvLine(*args): - """ - cvLine(CvArr img, CvPoint pt1, CvPoint pt2, CvScalar color, - int thickness = 1, int line_type = 8, int shift = 0) - """ - return _cv.cvLine(*args) - -def cvRectangle(*args): - """ - cvRectangle(CvArr img, CvPoint pt1, CvPoint pt2, CvScalar color, - int thickness = 1, int line_type = 8, int shift = 0) - """ - return _cv.cvRectangle(*args) - -def cvCircle(*args): - """ - cvCircle(CvArr img, CvPoint center, int radius, CvScalar color, - int thickness = 1, int line_type = 8, int shift = 0) - """ - return _cv.cvCircle(*args) - -def cvEllipse(*args): - """ - cvEllipse(CvArr img, CvPoint center, CvSize axes, double angle, - double start_angle, double end_angle, CvScalar color, - int thickness = 1, int line_type = 8, - int shift = 0) - """ - return _cv.cvEllipse(*args) - -def cvEllipseBox(*args): - """ - cvEllipseBox(CvArr img, CvBox2D box, CvScalar color, int thickness = 1, - int line_type = 8, int shift = 0) - """ - return _cv.cvEllipseBox(*args) - -def cvFillConvexPoly(*args): - """ - cvFillConvexPoly(CvArr img, CvPoint pts, int npts, CvScalar color, int line_type = 8, - int shift = 0) - """ - return _cv.cvFillConvexPoly(*args) - -def cvFillPoly(*args): - """ - cvFillPoly(CvArr img, CvPoint pts, int npts, int contours, CvScalar color, - int line_type = 8, int shift = 0) - """ - return _cv.cvFillPoly(*args) - -def cvPolyLine(*args): - """ - cvPolyLine(CvArr img, CvPoint pts, int npts, int contours, int is_closed, - CvScalar color, int thickness = 1, - int line_type = 8, int shift = 0) - """ - return _cv.cvPolyLine(*args) - -def cvClipLine(*args): - """cvClipLine(CvSize img_size, CvPoint pt1, CvPoint pt2) -> int""" - return _cv.cvClipLine(*args) - -def cvInitLineIterator(*args): - """ - cvInitLineIterator(CvArr image, CvPoint pt1, CvPoint pt2, CvLineIterator line_iterator, - int connectivity = 8, int left_to_right = 0) -> int - """ - return _cv.cvInitLineIterator(*args) -class CvFont(_object): - """Proxy of C++ CvFont class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvFont, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvFont, name) - __repr__ = _swig_repr - __swig_setmethods__["font_face"] = _cv.CvFont_font_face_set - __swig_getmethods__["font_face"] = _cv.CvFont_font_face_get - if _newclass:font_face = _swig_property(_cv.CvFont_font_face_get, _cv.CvFont_font_face_set) - __swig_setmethods__["ascii"] = _cv.CvFont_ascii_set - __swig_getmethods__["ascii"] = _cv.CvFont_ascii_get - if _newclass:ascii = _swig_property(_cv.CvFont_ascii_get, _cv.CvFont_ascii_set) - __swig_setmethods__["greek"] = _cv.CvFont_greek_set - __swig_getmethods__["greek"] = _cv.CvFont_greek_get - if _newclass:greek = _swig_property(_cv.CvFont_greek_get, _cv.CvFont_greek_set) - __swig_setmethods__["cyrillic"] = _cv.CvFont_cyrillic_set - __swig_getmethods__["cyrillic"] = _cv.CvFont_cyrillic_get - if _newclass:cyrillic = _swig_property(_cv.CvFont_cyrillic_get, _cv.CvFont_cyrillic_set) - __swig_setmethods__["hscale"] = _cv.CvFont_hscale_set - __swig_getmethods__["hscale"] = _cv.CvFont_hscale_get - if _newclass:hscale = _swig_property(_cv.CvFont_hscale_get, _cv.CvFont_hscale_set) - __swig_setmethods__["vscale"] = _cv.CvFont_vscale_set - __swig_getmethods__["vscale"] = _cv.CvFont_vscale_get - if _newclass:vscale = _swig_property(_cv.CvFont_vscale_get, _cv.CvFont_vscale_set) - __swig_setmethods__["shear"] = _cv.CvFont_shear_set - __swig_getmethods__["shear"] = _cv.CvFont_shear_get - if _newclass:shear = _swig_property(_cv.CvFont_shear_get, _cv.CvFont_shear_set) - __swig_setmethods__["thickness"] = _cv.CvFont_thickness_set - __swig_getmethods__["thickness"] = _cv.CvFont_thickness_get - if _newclass:thickness = _swig_property(_cv.CvFont_thickness_get, _cv.CvFont_thickness_set) - __swig_setmethods__["dx"] = _cv.CvFont_dx_set - __swig_getmethods__["dx"] = _cv.CvFont_dx_get - if _newclass:dx = _swig_property(_cv.CvFont_dx_get, _cv.CvFont_dx_set) - __swig_setmethods__["line_type"] = _cv.CvFont_line_type_set - __swig_getmethods__["line_type"] = _cv.CvFont_line_type_get - if _newclass:line_type = _swig_property(_cv.CvFont_line_type_get, _cv.CvFont_line_type_set) - def __init__(self): - """__init__(self) -> CvFont""" - this = _cv.new_CvFont() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvFont - __del__ = lambda self : None; -CvFont_swigregister = _cv.CvFont_swigregister -CvFont_swigregister(CvFont) - - -def cvInitFont(*args): - """ - cvInitFont(CvFont font, double hscale, double vscale, double shear = 0, - int thickness = 1, int line_type = 8) - """ - return _cv.cvInitFont(*args) - -def cvFont(*args): - """cvFont(double scale, int thickness = 1) -> CvFont""" - return _cv.cvFont(*args) - -def cvPutText(*args): - """cvPutText(CvArr img, char text, CvPoint org, CvFont font, CvScalar color)""" - return _cv.cvPutText(*args) - -def cvGetTextSize(*args): - """cvGetTextSize(char text_string, CvFont font)""" - return _cv.cvGetTextSize(*args) - -def cvColorToScalar(*args): - """cvColorToScalar(double packed_color, int arrtype) -> CvScalar""" - return _cv.cvColorToScalar(*args) - -def cvEllipse2Poly(*args): - """ - cvEllipse2Poly(CvPoint center, CvSize axes, int angle, int arc_start, - int arc_end, CvPoint pts, int delta) -> int - """ - return _cv.cvEllipse2Poly(*args) - -def cvDrawContours(*args): - """ - cvDrawContours(CvArr img, CvSeq contour, CvScalar external_color, - CvScalar hole_color, int max_level, int thickness = 1, - int line_type = 8, CvPoint offset = cvPoint(0,0)) - """ - return _cv.cvDrawContours(*args) - -def cvLUT(*args): - """cvLUT(CvArr src, CvArr dst, CvArr lut)""" - return _cv.cvLUT(*args) -class CvTreeNodeIterator(_object): - """Proxy of C++ CvTreeNodeIterator class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTreeNodeIterator, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTreeNodeIterator, name) - __repr__ = _swig_repr - __swig_setmethods__["node"] = _cv.CvTreeNodeIterator_node_set - __swig_getmethods__["node"] = _cv.CvTreeNodeIterator_node_get - if _newclass:node = _swig_property(_cv.CvTreeNodeIterator_node_get, _cv.CvTreeNodeIterator_node_set) - __swig_setmethods__["level"] = _cv.CvTreeNodeIterator_level_set - __swig_getmethods__["level"] = _cv.CvTreeNodeIterator_level_get - if _newclass:level = _swig_property(_cv.CvTreeNodeIterator_level_get, _cv.CvTreeNodeIterator_level_set) - __swig_setmethods__["max_level"] = _cv.CvTreeNodeIterator_max_level_set - __swig_getmethods__["max_level"] = _cv.CvTreeNodeIterator_max_level_get - if _newclass:max_level = _swig_property(_cv.CvTreeNodeIterator_max_level_get, _cv.CvTreeNodeIterator_max_level_set) - def __init__(self): - """__init__(self) -> CvTreeNodeIterator""" - this = _cv.new_CvTreeNodeIterator() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvTreeNodeIterator - __del__ = lambda self : None; -CvTreeNodeIterator_swigregister = _cv.CvTreeNodeIterator_swigregister -CvTreeNodeIterator_swigregister(CvTreeNodeIterator) - - -def cvInitTreeNodeIterator(*args): - """cvInitTreeNodeIterator(CvTreeNodeIterator tree_iterator, void first, int max_level)""" - return _cv.cvInitTreeNodeIterator(*args) - -def cvNextTreeNode(*args): - """cvNextTreeNode(CvTreeNodeIterator tree_iterator) -> void""" - return _cv.cvNextTreeNode(*args) - -def cvPrevTreeNode(*args): - """cvPrevTreeNode(CvTreeNodeIterator tree_iterator) -> void""" - return _cv.cvPrevTreeNode(*args) - -def cvInsertNodeIntoTree(*args): - """cvInsertNodeIntoTree(void node, void parent, void frame)""" - return _cv.cvInsertNodeIntoTree(*args) - -def cvRemoveNodeFromTree(*args): - """cvRemoveNodeFromTree(void node, void frame)""" - return _cv.cvRemoveNodeFromTree(*args) - -def cvTreeToNodeSeq(*args): - """cvTreeToNodeSeq(void first, int header_size, CvMemStorage storage) -> CvSeq""" - return _cv.cvTreeToNodeSeq(*args) - -def cvKMeans2(*args): - """ - cvKMeans2(CvArr samples, int cluster_count, CvArr labels, CvTermCriteria termcrit, - int attempts = 1, CvRNG rng = None, - int flags = 0, CvArr _centers = None, - double compactness = None) -> int - """ - return _cv.cvKMeans2(*args) - -def cvRegisterModule(*args): - """cvRegisterModule(CvModuleInfo module_info) -> int""" - return _cv.cvRegisterModule(*args) - -def cvUseOptimized(*args): - """cvUseOptimized(int on_off) -> int""" - return _cv.cvUseOptimized(*args) - -def cvGetModuleInfo(*args): - """cvGetModuleInfo(char module_name, char version, char loaded_addon_plugins)""" - return _cv.cvGetModuleInfo(*args) - -def cvGetErrStatus(): - """cvGetErrStatus() -> int""" - return _cv.cvGetErrStatus() - -def cvSetErrStatus(*args): - """cvSetErrStatus(int status)""" - return _cv.cvSetErrStatus(*args) - -def cvGetErrMode(): - """cvGetErrMode() -> int""" - return _cv.cvGetErrMode() - -def cvSetErrMode(*args): - """cvSetErrMode(int mode) -> int""" - return _cv.cvSetErrMode(*args) - -def cvError(*args): - """ - cvError(int status, char func_name, char err_msg, char file_name, - int line) - """ - return _cv.cvError(*args) - -def cvErrorStr(*args): - """cvErrorStr(int status) -> char""" - return _cv.cvErrorStr(*args) - -def cvGetErrInfo(*args): - """ - cvGetErrInfo(char errcode_desc, char description, char filename, - int line) -> int - """ - return _cv.cvGetErrInfo(*args) - -def cvErrorFromIppStatus(*args): - """cvErrorFromIppStatus(int ipp_status) -> int""" - return _cv.cvErrorFromIppStatus(*args) - -def cvRedirectError(*args): - """ - cvRedirectError(CvErrorCallback error_handler, void userdata = None, - void prev_userdata = None) -> CvErrorCallback - """ - return _cv.cvRedirectError(*args) - -def cvNulDevReport(*args): - """ - cvNulDevReport(int status, char func_name, char err_msg, char file_name, - int line, void userdata) -> int - """ - return _cv.cvNulDevReport(*args) - -def cvStdErrReport(*args): - """ - cvStdErrReport(int status, char func_name, char err_msg, char file_name, - int line, void userdata) -> int - """ - return _cv.cvStdErrReport(*args) - -def cvGuiBoxReport(*args): - """ - cvGuiBoxReport(int status, char func_name, char err_msg, char file_name, - int line, void userdata) -> int - """ - return _cv.cvGuiBoxReport(*args) - -def cvSetMemoryManager(alloc_func = None, free_func = None, userdata = None): - """ - cvSetMemoryManager(CvAllocFunc alloc_func = None, CvFreeFunc free_func = None, - void userdata = None) - """ - return _cv.cvSetMemoryManager(alloc_func, free_func, userdata) - -def cvSetIPLAllocators(*args): - """ - cvSetIPLAllocators(Cv_iplCreateImageHeader create_header, Cv_iplAllocateImageData allocate_data, - Cv_iplDeallocate deallocate, - Cv_iplCreateROI create_roi, Cv_iplCloneImage clone_image) - """ - return _cv.cvSetIPLAllocators(*args) - -def cvOpenFileStorage(*args): - """cvOpenFileStorage(char filename, CvMemStorage memstorage, int flags) -> CvFileStorage""" - return _cv.cvOpenFileStorage(*args) - -def cvReleaseFileStorage(*args): - """cvReleaseFileStorage(CvFileStorage fs)""" - return _cv.cvReleaseFileStorage(*args) - -def cvAttrValue(*args): - """cvAttrValue(CvAttrList attr, char attr_name) -> char""" - return _cv.cvAttrValue(*args) - -def cvStartWriteStruct(*args): - """ - cvStartWriteStruct(CvFileStorage fs, char name, int struct_flags, char type_name = None, - CvAttrList attributes = cvAttrList()) - """ - return _cv.cvStartWriteStruct(*args) - -def cvEndWriteStruct(*args): - """cvEndWriteStruct(CvFileStorage fs)""" - return _cv.cvEndWriteStruct(*args) - -def cvWriteInt(*args): - """cvWriteInt(CvFileStorage fs, char name, int value)""" - return _cv.cvWriteInt(*args) - -def cvWriteReal(*args): - """cvWriteReal(CvFileStorage fs, char name, double value)""" - return _cv.cvWriteReal(*args) - -def cvWriteString(*args): - """cvWriteString(CvFileStorage fs, char name, char str, int quote = 0)""" - return _cv.cvWriteString(*args) - -def cvWriteComment(*args): - """cvWriteComment(CvFileStorage fs, char comment, int eol_comment)""" - return _cv.cvWriteComment(*args) - -def cvWrite(*args): - """cvWrite(CvFileStorage fs, char name, void ptr, CvAttrList attributes = cvAttrList())""" - return _cv.cvWrite(*args) - -def cvStartNextStream(*args): - """cvStartNextStream(CvFileStorage fs)""" - return _cv.cvStartNextStream(*args) - -def cvWriteRawData(*args): - """cvWriteRawData(CvFileStorage fs, void src, int len, char dt)""" - return _cv.cvWriteRawData(*args) - -def cvGetHashedKey(*args): - """cvGetHashedKey(CvFileStorage fs, char name, int len = -1, int create_missing = 0) -> CvStringHashNode""" - return _cv.cvGetHashedKey(*args) - -def cvGetRootFileNode(*args): - """cvGetRootFileNode(CvFileStorage fs, int stream_index = 0) -> CvFileNode""" - return _cv.cvGetRootFileNode(*args) - -def cvGetFileNode(*args): - """ - cvGetFileNode(CvFileStorage fs, CvFileNode map, CvStringHashNode key, - int create_missing = 0) -> CvFileNode - """ - return _cv.cvGetFileNode(*args) - -def cvGetFileNodeByName(*args): - """cvGetFileNodeByName(CvFileStorage fs, CvFileNode map, char name) -> CvFileNode""" - return _cv.cvGetFileNodeByName(*args) - -def cvReadInt(*args): - """cvReadInt(CvFileNode node, int default_value = 0) -> int""" - return _cv.cvReadInt(*args) - -def cvReadIntByName(*args): - """cvReadIntByName(CvFileStorage fs, CvFileNode map, char name, int default_value = 0) -> int""" - return _cv.cvReadIntByName(*args) - -def cvReadReal(*args): - """cvReadReal(CvFileNode node, double default_value = 0.) -> double""" - return _cv.cvReadReal(*args) - -def cvReadRealByName(*args): - """cvReadRealByName(CvFileStorage fs, CvFileNode map, char name, double default_value = 0.) -> double""" - return _cv.cvReadRealByName(*args) - -def cvReadString(*args): - """cvReadString(CvFileNode node, char default_value = None) -> char""" - return _cv.cvReadString(*args) - -def cvReadStringByName(*args): - """cvReadStringByName(CvFileStorage fs, CvFileNode map, char name, char default_value = None) -> char""" - return _cv.cvReadStringByName(*args) - -def cvRead(*args): - """cvRead(CvFileStorage fs, CvFileNode node, CvAttrList attributes = None) -> void""" - return _cv.cvRead(*args) - -def cvReadByName(*args): - """cvReadByName(CvFileStorage fs, CvFileNode map, char name, CvAttrList attributes = None) -> void""" - return _cv.cvReadByName(*args) - -def cvStartReadRawData(*args): - """cvStartReadRawData(CvFileStorage fs, CvFileNode src, CvSeqReader reader)""" - return _cv.cvStartReadRawData(*args) - -def cvReadRawDataSlice(*args): - """ - cvReadRawDataSlice(CvFileStorage fs, CvSeqReader reader, int count, void dst, - char dt) - """ - return _cv.cvReadRawDataSlice(*args) - -def cvReadRawData(*args): - """cvReadRawData(CvFileStorage fs, CvFileNode src, void dst, char dt)""" - return _cv.cvReadRawData(*args) - -def cvWriteFileNode(*args): - """ - cvWriteFileNode(CvFileStorage fs, char new_node_name, CvFileNode node, - int embed) - """ - return _cv.cvWriteFileNode(*args) - -def cvGetFileNodeName(*args): - """cvGetFileNodeName(CvFileNode node) -> char""" - return _cv.cvGetFileNodeName(*args) - -def cvRegisterType(*args): - """cvRegisterType(CvTypeInfo info)""" - return _cv.cvRegisterType(*args) - -def cvUnregisterType(*args): - """cvUnregisterType(char type_name)""" - return _cv.cvUnregisterType(*args) - -def cvFirstType(): - """cvFirstType() -> CvTypeInfo""" - return _cv.cvFirstType() - -def cvFindType(*args): - """cvFindType(char type_name) -> CvTypeInfo""" - return _cv.cvFindType(*args) - -def cvTypeOf(*args): - """cvTypeOf(void struct_ptr) -> CvTypeInfo""" - return _cv.cvTypeOf(*args) - -def cvClone(*args): - """cvClone(void struct_ptr) -> void""" - return _cv.cvClone(*args) - -def cvSave(*args): - """ - cvSave(char filename, void struct_ptr, char name = None, char comment = None, - CvAttrList attributes = cvAttrList()) - """ - return _cv.cvSave(*args) - -def cvLoad(*args): - """ - cvLoad(char filename, CvMemStorage memstorage = None, char name = None, - char real_name = None) -> void - """ - return _cv.cvLoad(*args) - -def cvGetTickCount(): - """cvGetTickCount() -> int64""" - return _cv.cvGetTickCount() - -def cvGetTickFrequency(): - """cvGetTickFrequency() -> double""" - return _cv.cvGetTickFrequency() - -def cvGetNumThreads(): - """cvGetNumThreads() -> int""" - return _cv.cvGetNumThreads() - -def cvSetNumThreads(threads = 0): - """cvSetNumThreads(int threads = 0)""" - return _cv.cvSetNumThreads(threads) - -def cvGetThreadNum(): - """cvGetThreadNum() -> int""" - return _cv.cvGetThreadNum() - -def cvSetImageIOFunctions(*args): - """ - cvSetImageIOFunctions(CvLoadImageFunc _load_image, CvLoadImageMFunc _load_image_m, - CvSaveImageFunc _save_image, CvShowImageFunc _show_image) -> int - """ - return _cv.cvSetImageIOFunctions(*args) -class CvImage(_object): - """Proxy of C++ CvImage class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvImage, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvImage, name) - __repr__ = _swig_repr - def __init__(self, *args): - """ - __init__(self) -> CvImage - __init__(self, CvSize size, int depth, int channels) -> CvImage - __init__(self, img) -> CvImage - __init__(self, CvImage img) -> CvImage - __init__(self, char filename, char imgname = None, int color = -1) -> CvImage - __init__(self, char filename, char imgname = None) -> CvImage - __init__(self, char filename) -> CvImage - __init__(self, CvFileStorage fs, char mapname, char imgname) -> CvImage - __init__(self, CvFileStorage fs, char seqname, int idx) -> CvImage - """ - this = _cv.new_CvImage(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvImage - __del__ = lambda self : None; - def clone(self): - """clone(self) -> CvImage""" - return _cv.CvImage_clone(self) - - def create(self, *args): - """create(self, CvSize size, int depth, int channels)""" - return _cv.CvImage_create(self, *args) - - def release(self): - """release(self)""" - return _cv.CvImage_release(self) - - def clear(self): - """clear(self)""" - return _cv.CvImage_clear(self) - - def attach(self, *args): - """ - attach(self, img, bool use_refcount = True) - attach(self, img) - """ - return _cv.CvImage_attach(self, *args) - - def detach(self): - """detach(self)""" - return _cv.CvImage_detach(self) - - def load(self, *args): - """ - load(self, char filename, char imgname = None, int color = -1) -> bool - load(self, char filename, char imgname = None) -> bool - load(self, char filename) -> bool - """ - return _cv.CvImage_load(self, *args) - - def read(self, *args): - """ - read(self, CvFileStorage fs, char mapname, char imgname) -> bool - read(self, CvFileStorage fs, char seqname, int idx) -> bool - """ - return _cv.CvImage_read(self, *args) - - def save(self, *args): - """ - save(self, char filename, char imgname, int params = None) - save(self, char filename, char imgname) - """ - return _cv.CvImage_save(self, *args) - - def write(self, *args): - """write(self, CvFileStorage fs, char imgname)""" - return _cv.CvImage_write(self, *args) - - def show(self, *args): - """show(self, char window_name)""" - return _cv.CvImage_show(self, *args) - - def is_valid(self): - """is_valid(self) -> bool""" - return _cv.CvImage_is_valid(self) - - def width(self): - """width(self) -> int""" - return _cv.CvImage_width(self) - - def height(self): - """height(self) -> int""" - return _cv.CvImage_height(self) - - def size(self): - """size(self) -> CvSize""" - return _cv.CvImage_size(self) - - def roi_size(self): - """roi_size(self) -> CvSize""" - return _cv.CvImage_roi_size(self) - - def roi(self): - """roi(self) -> CvRect""" - return _cv.CvImage_roi(self) - - def coi(self): - """coi(self) -> int""" - return _cv.CvImage_coi(self) - - def set_roi(self, *args): - """set_roi(self, CvRect roi)""" - return _cv.CvImage_set_roi(self, *args) - - def reset_roi(self): - """reset_roi(self)""" - return _cv.CvImage_reset_roi(self) - - def set_coi(self, *args): - """set_coi(self, int coi)""" - return _cv.CvImage_set_coi(self, *args) - - def depth(self): - """depth(self) -> int""" - return _cv.CvImage_depth(self) - - def channels(self): - """channels(self) -> int""" - return _cv.CvImage_channels(self) - - def pix_size(self): - """pix_size(self) -> int""" - return _cv.CvImage_pix_size(self) - - def data(self, *args): - """ - data(self) -> uchar - data(self) -> uchar - """ - return _cv.CvImage_data(self, *args) - - def step(self): - """step(self) -> int""" - return _cv.CvImage_step(self) - - def origin(self): - """origin(self) -> int""" - return _cv.CvImage_origin(self) - - def roi_row(self, *args): - """ - roi_row(self, int y) -> uchar - roi_row(self, int y) -> uchar - """ - return _cv.CvImage_roi_row(self, *args) - - def asIplImage(self): - """asIplImage(self)""" - return _cv.CvImage_asIplImage(self) - -CvImage_swigregister = _cv.CvImage_swigregister -CvImage_swigregister(CvImage) - -class CvMatrix(_object): - """Proxy of C++ CvMatrix class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMatrix, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMatrix, name) - __repr__ = _swig_repr - def __init__(self, *args): - """ - __init__(self) -> CvMatrix - __init__(self, int rows, int cols, int type) -> CvMatrix - __init__(self, int rows, int cols, int type, CvMat hdr, void data = None, - int step = 0x7fffffff) -> CvMatrix - __init__(self, int rows, int cols, int type, CvMat hdr, void data = None) -> CvMatrix - __init__(self, int rows, int cols, int type, CvMat hdr) -> CvMatrix - __init__(self, int rows, int cols, int type, CvMemStorage storage, - bool alloc_data = True) -> CvMatrix - __init__(self, int rows, int cols, int type, CvMemStorage storage) -> CvMatrix - __init__(self, int rows, int cols, int type, void data, int step = 0x7fffffff) -> CvMatrix - __init__(self, int rows, int cols, int type, void data) -> CvMatrix - __init__(self, CvMat m) -> CvMatrix - __init__(self, CvMatrix m) -> CvMatrix - __init__(self, char filename, char matname = None, int color = -1) -> CvMatrix - __init__(self, char filename, char matname = None) -> CvMatrix - __init__(self, char filename) -> CvMatrix - __init__(self, CvFileStorage fs, char mapname, char matname) -> CvMatrix - __init__(self, CvFileStorage fs, char seqname, int idx) -> CvMatrix - """ - this = _cv.new_CvMatrix(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMatrix - __del__ = lambda self : None; - def clone(self): - """clone(self) -> CvMatrix""" - return _cv.CvMatrix_clone(self) - - def set(self, *args): - """set(self, CvMat m, bool add_ref)""" - return _cv.CvMatrix_set(self, *args) - - def create(self, *args): - """create(self, int rows, int cols, int type)""" - return _cv.CvMatrix_create(self, *args) - - def addref(self): - """addref(self)""" - return _cv.CvMatrix_addref(self) - - def release(self): - """release(self)""" - return _cv.CvMatrix_release(self) - - def clear(self): - """clear(self)""" - return _cv.CvMatrix_clear(self) - - def load(self, *args): - """ - load(self, char filename, char matname = None, int color = -1) -> bool - load(self, char filename, char matname = None) -> bool - load(self, char filename) -> bool - """ - return _cv.CvMatrix_load(self, *args) - - def read(self, *args): - """ - read(self, CvFileStorage fs, char mapname, char matname) -> bool - read(self, CvFileStorage fs, char seqname, int idx) -> bool - """ - return _cv.CvMatrix_read(self, *args) - - def save(self, *args): - """ - save(self, char filename, char matname, int params = None) - save(self, char filename, char matname) - """ - return _cv.CvMatrix_save(self, *args) - - def write(self, *args): - """write(self, CvFileStorage fs, char matname)""" - return _cv.CvMatrix_write(self, *args) - - def show(self, *args): - """show(self, char window_name)""" - return _cv.CvMatrix_show(self, *args) - - def is_valid(self): - """is_valid(self) -> bool""" - return _cv.CvMatrix_is_valid(self) - - def rows(self): - """rows(self) -> int""" - return _cv.CvMatrix_rows(self) - - def cols(self): - """cols(self) -> int""" - return _cv.CvMatrix_cols(self) - - def size(self): - """size(self) -> CvSize""" - return _cv.CvMatrix_size(self) - - def type(self): - """type(self) -> int""" - return _cv.CvMatrix_type(self) - - def depth(self): - """depth(self) -> int""" - return _cv.CvMatrix_depth(self) - - def channels(self): - """channels(self) -> int""" - return _cv.CvMatrix_channels(self) - - def pix_size(self): - """pix_size(self) -> int""" - return _cv.CvMatrix_pix_size(self) - - def data(self, *args): - """ - data(self) -> uchar - data(self) -> uchar - """ - return _cv.CvMatrix_data(self, *args) - - def step(self): - """step(self) -> int""" - return _cv.CvMatrix_step(self) - - def set_data(self, *args): - """ - set_data(self, void data, int step = 0x7fffffff) - set_data(self, void data) - """ - return _cv.CvMatrix_set_data(self, *args) - - def row(self, *args): - """ - row(self, int i) -> uchar - row(self, int i) -> uchar - """ - return _cv.CvMatrix_row(self, *args) - - def asCvMat(self): - """asCvMat(self) -> CvMat""" - return _cv.CvMatrix_asCvMat(self) - -CvMatrix_swigregister = _cv.CvMatrix_swigregister -CvMatrix_swigregister(CvMatrix) - -class CvModule(_object): - """Proxy of C++ CvModule class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvModule, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvModule, name) - __repr__ = _swig_repr - def __init__(self, *args): - """__init__(self, CvModuleInfo _info) -> CvModule""" - this = _cv.new_CvModule(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvModule - __del__ = lambda self : None; - __swig_setmethods__["info"] = _cv.CvModule_info_set - __swig_getmethods__["info"] = _cv.CvModule_info_get - if _newclass:info = _swig_property(_cv.CvModule_info_get, _cv.CvModule_info_set) - __swig_setmethods__["first"] = _cv.CvModule_first_set - __swig_getmethods__["first"] = _cv.CvModule_first_get - if _newclass:first = _swig_property(_cv.CvModule_first_get, _cv.CvModule_first_set) - __swig_setmethods__["last"] = _cv.CvModule_last_set - __swig_getmethods__["last"] = _cv.CvModule_last_get - if _newclass:last = _swig_property(_cv.CvModule_last_get, _cv.CvModule_last_set) -CvModule_swigregister = _cv.CvModule_swigregister -CvModule_swigregister(CvModule) -cvar = _cv.cvar - -class CvType(_object): - """Proxy of C++ CvType class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvType, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvType, name) - __repr__ = _swig_repr - def __init__(self, *args): - """ - __init__(self, char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0, - CvReadFunc read = 0, CvWriteFunc write = 0, - CvCloneFunc clone = 0) -> CvType - __init__(self, char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0, - CvReadFunc read = 0, CvWriteFunc write = 0) -> CvType - __init__(self, char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0, - CvReadFunc read = 0) -> CvType - __init__(self, char type_name, CvIsInstanceFunc is_instance, CvReleaseFunc release = 0) -> CvType - __init__(self, char type_name, CvIsInstanceFunc is_instance) -> CvType - """ - this = _cv.new_CvType(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvType - __del__ = lambda self : None; - __swig_setmethods__["info"] = _cv.CvType_info_set - __swig_getmethods__["info"] = _cv.CvType_info_get - if _newclass:info = _swig_property(_cv.CvType_info_get, _cv.CvType_info_set) - __swig_setmethods__["first"] = _cv.CvType_first_set - __swig_getmethods__["first"] = _cv.CvType_first_get - if _newclass:first = _swig_property(_cv.CvType_first_get, _cv.CvType_first_set) - __swig_setmethods__["last"] = _cv.CvType_last_set - __swig_getmethods__["last"] = _cv.CvType_last_get - if _newclass:last = _swig_property(_cv.CvType_last_get, _cv.CvType_last_set) -CvType_swigregister = _cv.CvType_swigregister -CvType_swigregister(CvType) - -class CvMoments(_object): - """Proxy of C++ CvMoments class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMoments, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMoments, name) - __repr__ = _swig_repr - __swig_setmethods__["m00"] = _cv.CvMoments_m00_set - __swig_getmethods__["m00"] = _cv.CvMoments_m00_get - if _newclass:m00 = _swig_property(_cv.CvMoments_m00_get, _cv.CvMoments_m00_set) - __swig_setmethods__["m10"] = _cv.CvMoments_m10_set - __swig_getmethods__["m10"] = _cv.CvMoments_m10_get - if _newclass:m10 = _swig_property(_cv.CvMoments_m10_get, _cv.CvMoments_m10_set) - __swig_setmethods__["m01"] = _cv.CvMoments_m01_set - __swig_getmethods__["m01"] = _cv.CvMoments_m01_get - if _newclass:m01 = _swig_property(_cv.CvMoments_m01_get, _cv.CvMoments_m01_set) - __swig_setmethods__["m20"] = _cv.CvMoments_m20_set - __swig_getmethods__["m20"] = _cv.CvMoments_m20_get - if _newclass:m20 = _swig_property(_cv.CvMoments_m20_get, _cv.CvMoments_m20_set) - __swig_setmethods__["m11"] = _cv.CvMoments_m11_set - __swig_getmethods__["m11"] = _cv.CvMoments_m11_get - if _newclass:m11 = _swig_property(_cv.CvMoments_m11_get, _cv.CvMoments_m11_set) - __swig_setmethods__["m02"] = _cv.CvMoments_m02_set - __swig_getmethods__["m02"] = _cv.CvMoments_m02_get - if _newclass:m02 = _swig_property(_cv.CvMoments_m02_get, _cv.CvMoments_m02_set) - __swig_setmethods__["m30"] = _cv.CvMoments_m30_set - __swig_getmethods__["m30"] = _cv.CvMoments_m30_get - if _newclass:m30 = _swig_property(_cv.CvMoments_m30_get, _cv.CvMoments_m30_set) - __swig_setmethods__["m21"] = _cv.CvMoments_m21_set - __swig_getmethods__["m21"] = _cv.CvMoments_m21_get - if _newclass:m21 = _swig_property(_cv.CvMoments_m21_get, _cv.CvMoments_m21_set) - __swig_setmethods__["m12"] = _cv.CvMoments_m12_set - __swig_getmethods__["m12"] = _cv.CvMoments_m12_get - if _newclass:m12 = _swig_property(_cv.CvMoments_m12_get, _cv.CvMoments_m12_set) - __swig_setmethods__["m03"] = _cv.CvMoments_m03_set - __swig_getmethods__["m03"] = _cv.CvMoments_m03_get - if _newclass:m03 = _swig_property(_cv.CvMoments_m03_get, _cv.CvMoments_m03_set) - __swig_setmethods__["mu20"] = _cv.CvMoments_mu20_set - __swig_getmethods__["mu20"] = _cv.CvMoments_mu20_get - if _newclass:mu20 = _swig_property(_cv.CvMoments_mu20_get, _cv.CvMoments_mu20_set) - __swig_setmethods__["mu11"] = _cv.CvMoments_mu11_set - __swig_getmethods__["mu11"] = _cv.CvMoments_mu11_get - if _newclass:mu11 = _swig_property(_cv.CvMoments_mu11_get, _cv.CvMoments_mu11_set) - __swig_setmethods__["mu02"] = _cv.CvMoments_mu02_set - __swig_getmethods__["mu02"] = _cv.CvMoments_mu02_get - if _newclass:mu02 = _swig_property(_cv.CvMoments_mu02_get, _cv.CvMoments_mu02_set) - __swig_setmethods__["mu30"] = _cv.CvMoments_mu30_set - __swig_getmethods__["mu30"] = _cv.CvMoments_mu30_get - if _newclass:mu30 = _swig_property(_cv.CvMoments_mu30_get, _cv.CvMoments_mu30_set) - __swig_setmethods__["mu21"] = _cv.CvMoments_mu21_set - __swig_getmethods__["mu21"] = _cv.CvMoments_mu21_get - if _newclass:mu21 = _swig_property(_cv.CvMoments_mu21_get, _cv.CvMoments_mu21_set) - __swig_setmethods__["mu12"] = _cv.CvMoments_mu12_set - __swig_getmethods__["mu12"] = _cv.CvMoments_mu12_get - if _newclass:mu12 = _swig_property(_cv.CvMoments_mu12_get, _cv.CvMoments_mu12_set) - __swig_setmethods__["mu03"] = _cv.CvMoments_mu03_set - __swig_getmethods__["mu03"] = _cv.CvMoments_mu03_get - if _newclass:mu03 = _swig_property(_cv.CvMoments_mu03_get, _cv.CvMoments_mu03_set) - __swig_setmethods__["inv_sqrt_m00"] = _cv.CvMoments_inv_sqrt_m00_set - __swig_getmethods__["inv_sqrt_m00"] = _cv.CvMoments_inv_sqrt_m00_get - if _newclass:inv_sqrt_m00 = _swig_property(_cv.CvMoments_inv_sqrt_m00_get, _cv.CvMoments_inv_sqrt_m00_set) - def __init__(self): - """__init__(self) -> CvMoments""" - this = _cv.new_CvMoments() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMoments - __del__ = lambda self : None; -CvMoments_swigregister = _cv.CvMoments_swigregister -CvMoments_swigregister(CvMoments) - -class CvHuMoments(_object): - """Proxy of C++ CvHuMoments class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHuMoments, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHuMoments, name) - __repr__ = _swig_repr - __swig_setmethods__["hu1"] = _cv.CvHuMoments_hu1_set - __swig_getmethods__["hu1"] = _cv.CvHuMoments_hu1_get - if _newclass:hu1 = _swig_property(_cv.CvHuMoments_hu1_get, _cv.CvHuMoments_hu1_set) - __swig_setmethods__["hu2"] = _cv.CvHuMoments_hu2_set - __swig_getmethods__["hu2"] = _cv.CvHuMoments_hu2_get - if _newclass:hu2 = _swig_property(_cv.CvHuMoments_hu2_get, _cv.CvHuMoments_hu2_set) - __swig_setmethods__["hu3"] = _cv.CvHuMoments_hu3_set - __swig_getmethods__["hu3"] = _cv.CvHuMoments_hu3_get - if _newclass:hu3 = _swig_property(_cv.CvHuMoments_hu3_get, _cv.CvHuMoments_hu3_set) - __swig_setmethods__["hu4"] = _cv.CvHuMoments_hu4_set - __swig_getmethods__["hu4"] = _cv.CvHuMoments_hu4_get - if _newclass:hu4 = _swig_property(_cv.CvHuMoments_hu4_get, _cv.CvHuMoments_hu4_set) - __swig_setmethods__["hu5"] = _cv.CvHuMoments_hu5_set - __swig_getmethods__["hu5"] = _cv.CvHuMoments_hu5_get - if _newclass:hu5 = _swig_property(_cv.CvHuMoments_hu5_get, _cv.CvHuMoments_hu5_set) - __swig_setmethods__["hu6"] = _cv.CvHuMoments_hu6_set - __swig_getmethods__["hu6"] = _cv.CvHuMoments_hu6_get - if _newclass:hu6 = _swig_property(_cv.CvHuMoments_hu6_get, _cv.CvHuMoments_hu6_set) - __swig_setmethods__["hu7"] = _cv.CvHuMoments_hu7_set - __swig_getmethods__["hu7"] = _cv.CvHuMoments_hu7_get - if _newclass:hu7 = _swig_property(_cv.CvHuMoments_hu7_get, _cv.CvHuMoments_hu7_set) - def __init__(self): - """__init__(self) -> CvHuMoments""" - this = _cv.new_CvHuMoments() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvHuMoments - __del__ = lambda self : None; -CvHuMoments_swigregister = _cv.CvHuMoments_swigregister -CvHuMoments_swigregister(CvHuMoments) - -class CvConnectedComp(_object): - """Proxy of C++ CvConnectedComp class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvConnectedComp, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvConnectedComp, name) - __repr__ = _swig_repr - __swig_setmethods__["area"] = _cv.CvConnectedComp_area_set - __swig_getmethods__["area"] = _cv.CvConnectedComp_area_get - if _newclass:area = _swig_property(_cv.CvConnectedComp_area_get, _cv.CvConnectedComp_area_set) - __swig_setmethods__["value"] = _cv.CvConnectedComp_value_set - __swig_getmethods__["value"] = _cv.CvConnectedComp_value_get - if _newclass:value = _swig_property(_cv.CvConnectedComp_value_get, _cv.CvConnectedComp_value_set) - __swig_setmethods__["rect"] = _cv.CvConnectedComp_rect_set - __swig_getmethods__["rect"] = _cv.CvConnectedComp_rect_get - if _newclass:rect = _swig_property(_cv.CvConnectedComp_rect_get, _cv.CvConnectedComp_rect_set) - __swig_setmethods__["contour"] = _cv.CvConnectedComp_contour_set - __swig_getmethods__["contour"] = _cv.CvConnectedComp_contour_get - if _newclass:contour = _swig_property(_cv.CvConnectedComp_contour_get, _cv.CvConnectedComp_contour_set) - def __init__(self): - """__init__(self) -> CvConnectedComp""" - this = _cv.new_CvConnectedComp() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvConnectedComp - __del__ = lambda self : None; -CvConnectedComp_swigregister = _cv.CvConnectedComp_swigregister -CvConnectedComp_swigregister(CvConnectedComp) - -class CvChainPtReader(_object): - """Proxy of C++ CvChainPtReader class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvChainPtReader, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvChainPtReader, name) - __repr__ = _swig_repr - __swig_setmethods__["header_size"] = _cv.CvChainPtReader_header_size_set - __swig_getmethods__["header_size"] = _cv.CvChainPtReader_header_size_get - if _newclass:header_size = _swig_property(_cv.CvChainPtReader_header_size_get, _cv.CvChainPtReader_header_size_set) - __swig_setmethods__["seq"] = _cv.CvChainPtReader_seq_set - __swig_getmethods__["seq"] = _cv.CvChainPtReader_seq_get - if _newclass:seq = _swig_property(_cv.CvChainPtReader_seq_get, _cv.CvChainPtReader_seq_set) - __swig_setmethods__["block"] = _cv.CvChainPtReader_block_set - __swig_getmethods__["block"] = _cv.CvChainPtReader_block_get - if _newclass:block = _swig_property(_cv.CvChainPtReader_block_get, _cv.CvChainPtReader_block_set) - __swig_setmethods__["ptr"] = _cv.CvChainPtReader_ptr_set - __swig_getmethods__["ptr"] = _cv.CvChainPtReader_ptr_get - if _newclass:ptr = _swig_property(_cv.CvChainPtReader_ptr_get, _cv.CvChainPtReader_ptr_set) - __swig_setmethods__["block_min"] = _cv.CvChainPtReader_block_min_set - __swig_getmethods__["block_min"] = _cv.CvChainPtReader_block_min_get - if _newclass:block_min = _swig_property(_cv.CvChainPtReader_block_min_get, _cv.CvChainPtReader_block_min_set) - __swig_setmethods__["block_max"] = _cv.CvChainPtReader_block_max_set - __swig_getmethods__["block_max"] = _cv.CvChainPtReader_block_max_get - if _newclass:block_max = _swig_property(_cv.CvChainPtReader_block_max_get, _cv.CvChainPtReader_block_max_set) - __swig_setmethods__["delta_index"] = _cv.CvChainPtReader_delta_index_set - __swig_getmethods__["delta_index"] = _cv.CvChainPtReader_delta_index_get - if _newclass:delta_index = _swig_property(_cv.CvChainPtReader_delta_index_get, _cv.CvChainPtReader_delta_index_set) - __swig_setmethods__["prev_elem"] = _cv.CvChainPtReader_prev_elem_set - __swig_getmethods__["prev_elem"] = _cv.CvChainPtReader_prev_elem_get - if _newclass:prev_elem = _swig_property(_cv.CvChainPtReader_prev_elem_get, _cv.CvChainPtReader_prev_elem_set) - __swig_setmethods__["code"] = _cv.CvChainPtReader_code_set - __swig_getmethods__["code"] = _cv.CvChainPtReader_code_get - if _newclass:code = _swig_property(_cv.CvChainPtReader_code_get, _cv.CvChainPtReader_code_set) - __swig_setmethods__["pt"] = _cv.CvChainPtReader_pt_set - __swig_getmethods__["pt"] = _cv.CvChainPtReader_pt_get - if _newclass:pt = _swig_property(_cv.CvChainPtReader_pt_get, _cv.CvChainPtReader_pt_set) - __swig_setmethods__["deltas"] = _cv.CvChainPtReader_deltas_set - __swig_getmethods__["deltas"] = _cv.CvChainPtReader_deltas_get - if _newclass:deltas = _swig_property(_cv.CvChainPtReader_deltas_get, _cv.CvChainPtReader_deltas_set) - def __init__(self): - """__init__(self) -> CvChainPtReader""" - this = _cv.new_CvChainPtReader() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvChainPtReader - __del__ = lambda self : None; -CvChainPtReader_swigregister = _cv.CvChainPtReader_swigregister -CvChainPtReader_swigregister(CvChainPtReader) - -class CvContourTree(_object): - """Proxy of C++ CvContourTree class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvContourTree, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvContourTree, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvContourTree_flags_set - __swig_getmethods__["flags"] = _cv.CvContourTree_flags_get - if _newclass:flags = _swig_property(_cv.CvContourTree_flags_get, _cv.CvContourTree_flags_set) - __swig_setmethods__["header_size"] = _cv.CvContourTree_header_size_set - __swig_getmethods__["header_size"] = _cv.CvContourTree_header_size_get - if _newclass:header_size = _swig_property(_cv.CvContourTree_header_size_get, _cv.CvContourTree_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvContourTree_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvContourTree_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvContourTree_h_prev_get, _cv.CvContourTree_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvContourTree_h_next_set - __swig_getmethods__["h_next"] = _cv.CvContourTree_h_next_get - if _newclass:h_next = _swig_property(_cv.CvContourTree_h_next_get, _cv.CvContourTree_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvContourTree_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvContourTree_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvContourTree_v_prev_get, _cv.CvContourTree_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvContourTree_v_next_set - __swig_getmethods__["v_next"] = _cv.CvContourTree_v_next_get - if _newclass:v_next = _swig_property(_cv.CvContourTree_v_next_get, _cv.CvContourTree_v_next_set) - __swig_setmethods__["total"] = _cv.CvContourTree_total_set - __swig_getmethods__["total"] = _cv.CvContourTree_total_get - if _newclass:total = _swig_property(_cv.CvContourTree_total_get, _cv.CvContourTree_total_set) - __swig_setmethods__["elem_size"] = _cv.CvContourTree_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvContourTree_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvContourTree_elem_size_get, _cv.CvContourTree_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvContourTree_block_max_set - __swig_getmethods__["block_max"] = _cv.CvContourTree_block_max_get - if _newclass:block_max = _swig_property(_cv.CvContourTree_block_max_get, _cv.CvContourTree_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvContourTree_ptr_set - __swig_getmethods__["ptr"] = _cv.CvContourTree_ptr_get - if _newclass:ptr = _swig_property(_cv.CvContourTree_ptr_get, _cv.CvContourTree_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvContourTree_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvContourTree_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvContourTree_delta_elems_get, _cv.CvContourTree_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvContourTree_storage_set - __swig_getmethods__["storage"] = _cv.CvContourTree_storage_get - if _newclass:storage = _swig_property(_cv.CvContourTree_storage_get, _cv.CvContourTree_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvContourTree_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvContourTree_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvContourTree_free_blocks_get, _cv.CvContourTree_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvContourTree_first_set - __swig_getmethods__["first"] = _cv.CvContourTree_first_get - if _newclass:first = _swig_property(_cv.CvContourTree_first_get, _cv.CvContourTree_first_set) - __swig_setmethods__["p1"] = _cv.CvContourTree_p1_set - __swig_getmethods__["p1"] = _cv.CvContourTree_p1_get - if _newclass:p1 = _swig_property(_cv.CvContourTree_p1_get, _cv.CvContourTree_p1_set) - __swig_setmethods__["p2"] = _cv.CvContourTree_p2_set - __swig_getmethods__["p2"] = _cv.CvContourTree_p2_get - if _newclass:p2 = _swig_property(_cv.CvContourTree_p2_get, _cv.CvContourTree_p2_set) - def __init__(self): - """__init__(self) -> CvContourTree""" - this = _cv.new_CvContourTree() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvContourTree - __del__ = lambda self : None; -CvContourTree_swigregister = _cv.CvContourTree_swigregister -CvContourTree_swigregister(CvContourTree) - -class CvConvexityDefect(_object): - """Proxy of C++ CvConvexityDefect class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvConvexityDefect, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvConvexityDefect, name) - __repr__ = _swig_repr - __swig_setmethods__["start"] = _cv.CvConvexityDefect_start_set - __swig_getmethods__["start"] = _cv.CvConvexityDefect_start_get - if _newclass:start = _swig_property(_cv.CvConvexityDefect_start_get, _cv.CvConvexityDefect_start_set) - __swig_setmethods__["end"] = _cv.CvConvexityDefect_end_set - __swig_getmethods__["end"] = _cv.CvConvexityDefect_end_get - if _newclass:end = _swig_property(_cv.CvConvexityDefect_end_get, _cv.CvConvexityDefect_end_set) - __swig_setmethods__["depth_point"] = _cv.CvConvexityDefect_depth_point_set - __swig_getmethods__["depth_point"] = _cv.CvConvexityDefect_depth_point_get - if _newclass:depth_point = _swig_property(_cv.CvConvexityDefect_depth_point_get, _cv.CvConvexityDefect_depth_point_set) - __swig_setmethods__["depth"] = _cv.CvConvexityDefect_depth_set - __swig_getmethods__["depth"] = _cv.CvConvexityDefect_depth_get - if _newclass:depth = _swig_property(_cv.CvConvexityDefect_depth_get, _cv.CvConvexityDefect_depth_set) - def __init__(self): - """__init__(self) -> CvConvexityDefect""" - this = _cv.new_CvConvexityDefect() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvConvexityDefect - __del__ = lambda self : None; -CvConvexityDefect_swigregister = _cv.CvConvexityDefect_swigregister -CvConvexityDefect_swigregister(CvConvexityDefect) - -class CvQuadEdge2D(_object): - """Proxy of C++ CvQuadEdge2D class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvQuadEdge2D, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvQuadEdge2D, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvQuadEdge2D_flags_set - __swig_getmethods__["flags"] = _cv.CvQuadEdge2D_flags_get - if _newclass:flags = _swig_property(_cv.CvQuadEdge2D_flags_get, _cv.CvQuadEdge2D_flags_set) - __swig_setmethods__["pt"] = _cv.CvQuadEdge2D_pt_set - __swig_getmethods__["pt"] = _cv.CvQuadEdge2D_pt_get - if _newclass:pt = _swig_property(_cv.CvQuadEdge2D_pt_get, _cv.CvQuadEdge2D_pt_set) - __swig_setmethods__["next"] = _cv.CvQuadEdge2D_next_set - __swig_getmethods__["next"] = _cv.CvQuadEdge2D_next_get - if _newclass:next = _swig_property(_cv.CvQuadEdge2D_next_get, _cv.CvQuadEdge2D_next_set) - def __init__(self): - """__init__(self) -> CvQuadEdge2D""" - this = _cv.new_CvQuadEdge2D() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvQuadEdge2D - __del__ = lambda self : None; -CvQuadEdge2D_swigregister = _cv.CvQuadEdge2D_swigregister -CvQuadEdge2D_swigregister(CvQuadEdge2D) - -class CvSubdiv2DPoint(_object): - """Proxy of C++ CvSubdiv2DPoint class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSubdiv2DPoint, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSubdiv2DPoint, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvSubdiv2DPoint_flags_set - __swig_getmethods__["flags"] = _cv.CvSubdiv2DPoint_flags_get - if _newclass:flags = _swig_property(_cv.CvSubdiv2DPoint_flags_get, _cv.CvSubdiv2DPoint_flags_set) - __swig_setmethods__["first"] = _cv.CvSubdiv2DPoint_first_set - __swig_getmethods__["first"] = _cv.CvSubdiv2DPoint_first_get - if _newclass:first = _swig_property(_cv.CvSubdiv2DPoint_first_get, _cv.CvSubdiv2DPoint_first_set) - __swig_setmethods__["pt"] = _cv.CvSubdiv2DPoint_pt_set - __swig_getmethods__["pt"] = _cv.CvSubdiv2DPoint_pt_get - if _newclass:pt = _swig_property(_cv.CvSubdiv2DPoint_pt_get, _cv.CvSubdiv2DPoint_pt_set) - def __init__(self): - """__init__(self) -> CvSubdiv2DPoint""" - this = _cv.new_CvSubdiv2DPoint() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSubdiv2DPoint - __del__ = lambda self : None; -CvSubdiv2DPoint_swigregister = _cv.CvSubdiv2DPoint_swigregister -CvSubdiv2DPoint_swigregister(CvSubdiv2DPoint) - -class CvSubdiv2D(_object): - """Proxy of C++ CvSubdiv2D class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSubdiv2D, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSubdiv2D, name) - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvSubdiv2D_flags_set - __swig_getmethods__["flags"] = _cv.CvSubdiv2D_flags_get - if _newclass:flags = _swig_property(_cv.CvSubdiv2D_flags_get, _cv.CvSubdiv2D_flags_set) - __swig_setmethods__["header_size"] = _cv.CvSubdiv2D_header_size_set - __swig_getmethods__["header_size"] = _cv.CvSubdiv2D_header_size_get - if _newclass:header_size = _swig_property(_cv.CvSubdiv2D_header_size_get, _cv.CvSubdiv2D_header_size_set) - __swig_setmethods__["h_prev"] = _cv.CvSubdiv2D_h_prev_set - __swig_getmethods__["h_prev"] = _cv.CvSubdiv2D_h_prev_get - if _newclass:h_prev = _swig_property(_cv.CvSubdiv2D_h_prev_get, _cv.CvSubdiv2D_h_prev_set) - __swig_setmethods__["h_next"] = _cv.CvSubdiv2D_h_next_set - __swig_getmethods__["h_next"] = _cv.CvSubdiv2D_h_next_get - if _newclass:h_next = _swig_property(_cv.CvSubdiv2D_h_next_get, _cv.CvSubdiv2D_h_next_set) - __swig_setmethods__["v_prev"] = _cv.CvSubdiv2D_v_prev_set - __swig_getmethods__["v_prev"] = _cv.CvSubdiv2D_v_prev_get - if _newclass:v_prev = _swig_property(_cv.CvSubdiv2D_v_prev_get, _cv.CvSubdiv2D_v_prev_set) - __swig_setmethods__["v_next"] = _cv.CvSubdiv2D_v_next_set - __swig_getmethods__["v_next"] = _cv.CvSubdiv2D_v_next_get - if _newclass:v_next = _swig_property(_cv.CvSubdiv2D_v_next_get, _cv.CvSubdiv2D_v_next_set) - __swig_setmethods__["total"] = _cv.CvSubdiv2D_total_set - __swig_getmethods__["total"] = _cv.CvSubdiv2D_total_get - if _newclass:total = _swig_property(_cv.CvSubdiv2D_total_get, _cv.CvSubdiv2D_total_set) - __swig_setmethods__["elem_size"] = _cv.CvSubdiv2D_elem_size_set - __swig_getmethods__["elem_size"] = _cv.CvSubdiv2D_elem_size_get - if _newclass:elem_size = _swig_property(_cv.CvSubdiv2D_elem_size_get, _cv.CvSubdiv2D_elem_size_set) - __swig_setmethods__["block_max"] = _cv.CvSubdiv2D_block_max_set - __swig_getmethods__["block_max"] = _cv.CvSubdiv2D_block_max_get - if _newclass:block_max = _swig_property(_cv.CvSubdiv2D_block_max_get, _cv.CvSubdiv2D_block_max_set) - __swig_setmethods__["ptr"] = _cv.CvSubdiv2D_ptr_set - __swig_getmethods__["ptr"] = _cv.CvSubdiv2D_ptr_get - if _newclass:ptr = _swig_property(_cv.CvSubdiv2D_ptr_get, _cv.CvSubdiv2D_ptr_set) - __swig_setmethods__["delta_elems"] = _cv.CvSubdiv2D_delta_elems_set - __swig_getmethods__["delta_elems"] = _cv.CvSubdiv2D_delta_elems_get - if _newclass:delta_elems = _swig_property(_cv.CvSubdiv2D_delta_elems_get, _cv.CvSubdiv2D_delta_elems_set) - __swig_setmethods__["storage"] = _cv.CvSubdiv2D_storage_set - __swig_getmethods__["storage"] = _cv.CvSubdiv2D_storage_get - if _newclass:storage = _swig_property(_cv.CvSubdiv2D_storage_get, _cv.CvSubdiv2D_storage_set) - __swig_setmethods__["free_blocks"] = _cv.CvSubdiv2D_free_blocks_set - __swig_getmethods__["free_blocks"] = _cv.CvSubdiv2D_free_blocks_get - if _newclass:free_blocks = _swig_property(_cv.CvSubdiv2D_free_blocks_get, _cv.CvSubdiv2D_free_blocks_set) - __swig_setmethods__["first"] = _cv.CvSubdiv2D_first_set - __swig_getmethods__["first"] = _cv.CvSubdiv2D_first_get - if _newclass:first = _swig_property(_cv.CvSubdiv2D_first_get, _cv.CvSubdiv2D_first_set) - __swig_setmethods__["free_elems"] = _cv.CvSubdiv2D_free_elems_set - __swig_getmethods__["free_elems"] = _cv.CvSubdiv2D_free_elems_get - if _newclass:free_elems = _swig_property(_cv.CvSubdiv2D_free_elems_get, _cv.CvSubdiv2D_free_elems_set) - __swig_setmethods__["active_count"] = _cv.CvSubdiv2D_active_count_set - __swig_getmethods__["active_count"] = _cv.CvSubdiv2D_active_count_get - if _newclass:active_count = _swig_property(_cv.CvSubdiv2D_active_count_get, _cv.CvSubdiv2D_active_count_set) - __swig_setmethods__["quad_edges"] = _cv.CvSubdiv2D_quad_edges_set - __swig_getmethods__["quad_edges"] = _cv.CvSubdiv2D_quad_edges_get - if _newclass:quad_edges = _swig_property(_cv.CvSubdiv2D_quad_edges_get, _cv.CvSubdiv2D_quad_edges_set) - __swig_setmethods__["is_geometry_valid"] = _cv.CvSubdiv2D_is_geometry_valid_set - __swig_getmethods__["is_geometry_valid"] = _cv.CvSubdiv2D_is_geometry_valid_get - if _newclass:is_geometry_valid = _swig_property(_cv.CvSubdiv2D_is_geometry_valid_get, _cv.CvSubdiv2D_is_geometry_valid_set) - __swig_setmethods__["recent_edge"] = _cv.CvSubdiv2D_recent_edge_set - __swig_getmethods__["recent_edge"] = _cv.CvSubdiv2D_recent_edge_get - if _newclass:recent_edge = _swig_property(_cv.CvSubdiv2D_recent_edge_get, _cv.CvSubdiv2D_recent_edge_set) - __swig_setmethods__["topleft"] = _cv.CvSubdiv2D_topleft_set - __swig_getmethods__["topleft"] = _cv.CvSubdiv2D_topleft_get - if _newclass:topleft = _swig_property(_cv.CvSubdiv2D_topleft_get, _cv.CvSubdiv2D_topleft_set) - __swig_setmethods__["bottomright"] = _cv.CvSubdiv2D_bottomright_set - __swig_getmethods__["bottomright"] = _cv.CvSubdiv2D_bottomright_get - if _newclass:bottomright = _swig_property(_cv.CvSubdiv2D_bottomright_get, _cv.CvSubdiv2D_bottomright_set) - __swig_setmethods__["edges"] = _cv.CvSubdiv2D_edges_set - __swig_getmethods__["edges"] = _cv.CvSubdiv2D_edges_get - if _newclass:edges = _swig_property(_cv.CvSubdiv2D_edges_get, _cv.CvSubdiv2D_edges_set) - def typed_edges_get(self): - """typed_edges_get(self) -> CvSeq_CvQuadEdge2D""" - return _cv.CvSubdiv2D_typed_edges_get(self) - - def typed_edges_set(self, *args): - """typed_edges_set(self, CvSeq_CvQuadEdge2D arg0)""" - return _cv.CvSubdiv2D_typed_edges_set(self, *args) - - def __iter__(self): - s = CvSeq_QuadEdge2D.cast(self) - for i in range(s.total): - yield s[i] - - def __init__(self): - """__init__(self) -> CvSubdiv2D""" - this = _cv.new_CvSubdiv2D() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSubdiv2D - __del__ = lambda self : None; -CvSubdiv2D_swigregister = _cv.CvSubdiv2D_swigregister -CvSubdiv2D_swigregister(CvSubdiv2D) - -CV_PTLOC_ERROR = _cv.CV_PTLOC_ERROR -CV_PTLOC_OUTSIDE_RECT = _cv.CV_PTLOC_OUTSIDE_RECT -CV_PTLOC_INSIDE = _cv.CV_PTLOC_INSIDE -CV_PTLOC_VERTEX = _cv.CV_PTLOC_VERTEX -CV_PTLOC_ON_EDGE = _cv.CV_PTLOC_ON_EDGE -CV_NEXT_AROUND_ORG = _cv.CV_NEXT_AROUND_ORG -CV_NEXT_AROUND_DST = _cv.CV_NEXT_AROUND_DST -CV_PREV_AROUND_ORG = _cv.CV_PREV_AROUND_ORG -CV_PREV_AROUND_DST = _cv.CV_PREV_AROUND_DST -CV_NEXT_AROUND_LEFT = _cv.CV_NEXT_AROUND_LEFT -CV_NEXT_AROUND_RIGHT = _cv.CV_NEXT_AROUND_RIGHT -CV_PREV_AROUND_LEFT = _cv.CV_PREV_AROUND_LEFT -CV_PREV_AROUND_RIGHT = _cv.CV_PREV_AROUND_RIGHT -CV_GAUSSIAN_5x5 = _cv.CV_GAUSSIAN_5x5 -class CvMatrix3(_object): - """Proxy of C++ CvMatrix3 class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMatrix3, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMatrix3, name) - __repr__ = _swig_repr - __swig_setmethods__["m"] = _cv.CvMatrix3_m_set - __swig_getmethods__["m"] = _cv.CvMatrix3_m_get - if _newclass:m = _swig_property(_cv.CvMatrix3_m_get, _cv.CvMatrix3_m_set) - def __init__(self): - """__init__(self) -> CvMatrix3""" - this = _cv.new_CvMatrix3() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMatrix3 - __del__ = lambda self : None; -CvMatrix3_swigregister = _cv.CvMatrix3_swigregister -CvMatrix3_swigregister(CvMatrix3) - -class CvConDensation(_object): - """Proxy of C++ CvConDensation class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvConDensation, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvConDensation, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["MP"] = _cv.CvConDensation_MP_set - __swig_getmethods__["MP"] = _cv.CvConDensation_MP_get - if _newclass:MP = _swig_property(_cv.CvConDensation_MP_get, _cv.CvConDensation_MP_set) - __swig_setmethods__["DP"] = _cv.CvConDensation_DP_set - __swig_getmethods__["DP"] = _cv.CvConDensation_DP_get - if _newclass:DP = _swig_property(_cv.CvConDensation_DP_get, _cv.CvConDensation_DP_set) - __swig_setmethods__["DynamMatr"] = _cv.CvConDensation_DynamMatr_set - __swig_getmethods__["DynamMatr"] = _cv.CvConDensation_DynamMatr_get - if _newclass:DynamMatr = _swig_property(_cv.CvConDensation_DynamMatr_get, _cv.CvConDensation_DynamMatr_set) - __swig_setmethods__["State"] = _cv.CvConDensation_State_set - __swig_getmethods__["State"] = _cv.CvConDensation_State_get - if _newclass:State = _swig_property(_cv.CvConDensation_State_get, _cv.CvConDensation_State_set) - __swig_setmethods__["SamplesNum"] = _cv.CvConDensation_SamplesNum_set - __swig_getmethods__["SamplesNum"] = _cv.CvConDensation_SamplesNum_get - if _newclass:SamplesNum = _swig_property(_cv.CvConDensation_SamplesNum_get, _cv.CvConDensation_SamplesNum_set) - __swig_setmethods__["flSamples"] = _cv.CvConDensation_flSamples_set - __swig_getmethods__["flSamples"] = _cv.CvConDensation_flSamples_get - if _newclass:flSamples = _swig_property(_cv.CvConDensation_flSamples_get, _cv.CvConDensation_flSamples_set) - __swig_setmethods__["flNewSamples"] = _cv.CvConDensation_flNewSamples_set - __swig_getmethods__["flNewSamples"] = _cv.CvConDensation_flNewSamples_get - if _newclass:flNewSamples = _swig_property(_cv.CvConDensation_flNewSamples_get, _cv.CvConDensation_flNewSamples_set) - __swig_setmethods__["flConfidence"] = _cv.CvConDensation_flConfidence_set - __swig_getmethods__["flConfidence"] = _cv.CvConDensation_flConfidence_get - if _newclass:flConfidence = _swig_property(_cv.CvConDensation_flConfidence_get, _cv.CvConDensation_flConfidence_set) - __swig_setmethods__["flCumulative"] = _cv.CvConDensation_flCumulative_set - __swig_getmethods__["flCumulative"] = _cv.CvConDensation_flCumulative_get - if _newclass:flCumulative = _swig_property(_cv.CvConDensation_flCumulative_get, _cv.CvConDensation_flCumulative_set) - __swig_setmethods__["Temp"] = _cv.CvConDensation_Temp_set - __swig_getmethods__["Temp"] = _cv.CvConDensation_Temp_get - if _newclass:Temp = _swig_property(_cv.CvConDensation_Temp_get, _cv.CvConDensation_Temp_set) - __swig_setmethods__["RandomSample"] = _cv.CvConDensation_RandomSample_set - __swig_getmethods__["RandomSample"] = _cv.CvConDensation_RandomSample_get - if _newclass:RandomSample = _swig_property(_cv.CvConDensation_RandomSample_get, _cv.CvConDensation_RandomSample_set) - __swig_setmethods__["RandS"] = _cv.CvConDensation_RandS_set - __swig_getmethods__["RandS"] = _cv.CvConDensation_RandS_get - if _newclass:RandS = _swig_property(_cv.CvConDensation_RandS_get, _cv.CvConDensation_RandS_set) - __swig_destroy__ = _cv.delete_CvConDensation - __del__ = lambda self : None; -CvConDensation_swigregister = _cv.CvConDensation_swigregister -CvConDensation_swigregister(CvConDensation) - -class CvKalman(_object): - """Proxy of C++ CvKalman class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvKalman, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvKalman, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["MP"] = _cv.CvKalman_MP_set - __swig_getmethods__["MP"] = _cv.CvKalman_MP_get - if _newclass:MP = _swig_property(_cv.CvKalman_MP_get, _cv.CvKalman_MP_set) - __swig_setmethods__["DP"] = _cv.CvKalman_DP_set - __swig_getmethods__["DP"] = _cv.CvKalman_DP_get - if _newclass:DP = _swig_property(_cv.CvKalman_DP_get, _cv.CvKalman_DP_set) - __swig_setmethods__["CP"] = _cv.CvKalman_CP_set - __swig_getmethods__["CP"] = _cv.CvKalman_CP_get - if _newclass:CP = _swig_property(_cv.CvKalman_CP_get, _cv.CvKalman_CP_set) - __swig_setmethods__["PosterState"] = _cv.CvKalman_PosterState_set - __swig_getmethods__["PosterState"] = _cv.CvKalman_PosterState_get - if _newclass:PosterState = _swig_property(_cv.CvKalman_PosterState_get, _cv.CvKalman_PosterState_set) - __swig_setmethods__["PriorState"] = _cv.CvKalman_PriorState_set - __swig_getmethods__["PriorState"] = _cv.CvKalman_PriorState_get - if _newclass:PriorState = _swig_property(_cv.CvKalman_PriorState_get, _cv.CvKalman_PriorState_set) - __swig_setmethods__["DynamMatr"] = _cv.CvKalman_DynamMatr_set - __swig_getmethods__["DynamMatr"] = _cv.CvKalman_DynamMatr_get - if _newclass:DynamMatr = _swig_property(_cv.CvKalman_DynamMatr_get, _cv.CvKalman_DynamMatr_set) - __swig_setmethods__["MeasurementMatr"] = _cv.CvKalman_MeasurementMatr_set - __swig_getmethods__["MeasurementMatr"] = _cv.CvKalman_MeasurementMatr_get - if _newclass:MeasurementMatr = _swig_property(_cv.CvKalman_MeasurementMatr_get, _cv.CvKalman_MeasurementMatr_set) - __swig_setmethods__["MNCovariance"] = _cv.CvKalman_MNCovariance_set - __swig_getmethods__["MNCovariance"] = _cv.CvKalman_MNCovariance_get - if _newclass:MNCovariance = _swig_property(_cv.CvKalman_MNCovariance_get, _cv.CvKalman_MNCovariance_set) - __swig_setmethods__["PNCovariance"] = _cv.CvKalman_PNCovariance_set - __swig_getmethods__["PNCovariance"] = _cv.CvKalman_PNCovariance_get - if _newclass:PNCovariance = _swig_property(_cv.CvKalman_PNCovariance_get, _cv.CvKalman_PNCovariance_set) - __swig_setmethods__["KalmGainMatr"] = _cv.CvKalman_KalmGainMatr_set - __swig_getmethods__["KalmGainMatr"] = _cv.CvKalman_KalmGainMatr_get - if _newclass:KalmGainMatr = _swig_property(_cv.CvKalman_KalmGainMatr_get, _cv.CvKalman_KalmGainMatr_set) - __swig_setmethods__["PriorErrorCovariance"] = _cv.CvKalman_PriorErrorCovariance_set - __swig_getmethods__["PriorErrorCovariance"] = _cv.CvKalman_PriorErrorCovariance_get - if _newclass:PriorErrorCovariance = _swig_property(_cv.CvKalman_PriorErrorCovariance_get, _cv.CvKalman_PriorErrorCovariance_set) - __swig_setmethods__["PosterErrorCovariance"] = _cv.CvKalman_PosterErrorCovariance_set - __swig_getmethods__["PosterErrorCovariance"] = _cv.CvKalman_PosterErrorCovariance_get - if _newclass:PosterErrorCovariance = _swig_property(_cv.CvKalman_PosterErrorCovariance_get, _cv.CvKalman_PosterErrorCovariance_set) - __swig_setmethods__["Temp1"] = _cv.CvKalman_Temp1_set - __swig_getmethods__["Temp1"] = _cv.CvKalman_Temp1_get - if _newclass:Temp1 = _swig_property(_cv.CvKalman_Temp1_get, _cv.CvKalman_Temp1_set) - __swig_setmethods__["Temp2"] = _cv.CvKalman_Temp2_set - __swig_getmethods__["Temp2"] = _cv.CvKalman_Temp2_get - if _newclass:Temp2 = _swig_property(_cv.CvKalman_Temp2_get, _cv.CvKalman_Temp2_set) - __swig_setmethods__["state_pre"] = _cv.CvKalman_state_pre_set - __swig_getmethods__["state_pre"] = _cv.CvKalman_state_pre_get - if _newclass:state_pre = _swig_property(_cv.CvKalman_state_pre_get, _cv.CvKalman_state_pre_set) - __swig_setmethods__["state_post"] = _cv.CvKalman_state_post_set - __swig_getmethods__["state_post"] = _cv.CvKalman_state_post_get - if _newclass:state_post = _swig_property(_cv.CvKalman_state_post_get, _cv.CvKalman_state_post_set) - __swig_setmethods__["transition_matrix"] = _cv.CvKalman_transition_matrix_set - __swig_getmethods__["transition_matrix"] = _cv.CvKalman_transition_matrix_get - if _newclass:transition_matrix = _swig_property(_cv.CvKalman_transition_matrix_get, _cv.CvKalman_transition_matrix_set) - __swig_setmethods__["control_matrix"] = _cv.CvKalman_control_matrix_set - __swig_getmethods__["control_matrix"] = _cv.CvKalman_control_matrix_get - if _newclass:control_matrix = _swig_property(_cv.CvKalman_control_matrix_get, _cv.CvKalman_control_matrix_set) - __swig_setmethods__["measurement_matrix"] = _cv.CvKalman_measurement_matrix_set - __swig_getmethods__["measurement_matrix"] = _cv.CvKalman_measurement_matrix_get - if _newclass:measurement_matrix = _swig_property(_cv.CvKalman_measurement_matrix_get, _cv.CvKalman_measurement_matrix_set) - __swig_setmethods__["process_noise_cov"] = _cv.CvKalman_process_noise_cov_set - __swig_getmethods__["process_noise_cov"] = _cv.CvKalman_process_noise_cov_get - if _newclass:process_noise_cov = _swig_property(_cv.CvKalman_process_noise_cov_get, _cv.CvKalman_process_noise_cov_set) - __swig_setmethods__["measurement_noise_cov"] = _cv.CvKalman_measurement_noise_cov_set - __swig_getmethods__["measurement_noise_cov"] = _cv.CvKalman_measurement_noise_cov_get - if _newclass:measurement_noise_cov = _swig_property(_cv.CvKalman_measurement_noise_cov_get, _cv.CvKalman_measurement_noise_cov_set) - __swig_setmethods__["error_cov_pre"] = _cv.CvKalman_error_cov_pre_set - __swig_getmethods__["error_cov_pre"] = _cv.CvKalman_error_cov_pre_get - if _newclass:error_cov_pre = _swig_property(_cv.CvKalman_error_cov_pre_get, _cv.CvKalman_error_cov_pre_set) - __swig_setmethods__["gain"] = _cv.CvKalman_gain_set - __swig_getmethods__["gain"] = _cv.CvKalman_gain_get - if _newclass:gain = _swig_property(_cv.CvKalman_gain_get, _cv.CvKalman_gain_set) - __swig_setmethods__["error_cov_post"] = _cv.CvKalman_error_cov_post_set - __swig_getmethods__["error_cov_post"] = _cv.CvKalman_error_cov_post_get - if _newclass:error_cov_post = _swig_property(_cv.CvKalman_error_cov_post_get, _cv.CvKalman_error_cov_post_set) - __swig_setmethods__["temp1"] = _cv.CvKalman_temp1_set - __swig_getmethods__["temp1"] = _cv.CvKalman_temp1_get - if _newclass:temp1 = _swig_property(_cv.CvKalman_temp1_get, _cv.CvKalman_temp1_set) - __swig_setmethods__["temp2"] = _cv.CvKalman_temp2_set - __swig_getmethods__["temp2"] = _cv.CvKalman_temp2_get - if _newclass:temp2 = _swig_property(_cv.CvKalman_temp2_get, _cv.CvKalman_temp2_set) - __swig_setmethods__["temp3"] = _cv.CvKalman_temp3_set - __swig_getmethods__["temp3"] = _cv.CvKalman_temp3_get - if _newclass:temp3 = _swig_property(_cv.CvKalman_temp3_get, _cv.CvKalman_temp3_set) - __swig_setmethods__["temp4"] = _cv.CvKalman_temp4_set - __swig_getmethods__["temp4"] = _cv.CvKalman_temp4_get - if _newclass:temp4 = _swig_property(_cv.CvKalman_temp4_get, _cv.CvKalman_temp4_set) - __swig_setmethods__["temp5"] = _cv.CvKalman_temp5_set - __swig_getmethods__["temp5"] = _cv.CvKalman_temp5_get - if _newclass:temp5 = _swig_property(_cv.CvKalman_temp5_get, _cv.CvKalman_temp5_set) - __swig_destroy__ = _cv.delete_CvKalman - __del__ = lambda self : None; -CvKalman_swigregister = _cv.CvKalman_swigregister -CvKalman_swigregister(CvKalman) - -class CvHaarFeature(_object): - """Proxy of C++ CvHaarFeature class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHaarFeature, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHaarFeature, name) - __repr__ = _swig_repr - __swig_setmethods__["tilted"] = _cv.CvHaarFeature_tilted_set - __swig_getmethods__["tilted"] = _cv.CvHaarFeature_tilted_get - if _newclass:tilted = _swig_property(_cv.CvHaarFeature_tilted_get, _cv.CvHaarFeature_tilted_set) - __swig_getmethods__["rect"] = _cv.CvHaarFeature_rect_get - if _newclass:rect = _swig_property(_cv.CvHaarFeature_rect_get) - def __init__(self): - """__init__(self) -> CvHaarFeature""" - this = _cv.new_CvHaarFeature() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvHaarFeature - __del__ = lambda self : None; -CvHaarFeature_swigregister = _cv.CvHaarFeature_swigregister -CvHaarFeature_swigregister(CvHaarFeature) - -class CvHaarFeature_rect(_object): - """Proxy of C++ CvHaarFeature_rect class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHaarFeature_rect, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHaarFeature_rect, name) - __repr__ = _swig_repr - __swig_setmethods__["r"] = _cv.CvHaarFeature_rect_r_set - __swig_getmethods__["r"] = _cv.CvHaarFeature_rect_r_get - if _newclass:r = _swig_property(_cv.CvHaarFeature_rect_r_get, _cv.CvHaarFeature_rect_r_set) - __swig_setmethods__["weight"] = _cv.CvHaarFeature_rect_weight_set - __swig_getmethods__["weight"] = _cv.CvHaarFeature_rect_weight_get - if _newclass:weight = _swig_property(_cv.CvHaarFeature_rect_weight_get, _cv.CvHaarFeature_rect_weight_set) - def __init__(self): - """__init__(self) -> CvHaarFeature_rect""" - this = _cv.new_CvHaarFeature_rect() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvHaarFeature_rect - __del__ = lambda self : None; -CvHaarFeature_rect_swigregister = _cv.CvHaarFeature_rect_swigregister -CvHaarFeature_rect_swigregister(CvHaarFeature_rect) - -class CvHaarClassifier(_object): - """Proxy of C++ CvHaarClassifier class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHaarClassifier, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHaarClassifier, name) - __repr__ = _swig_repr - __swig_setmethods__["count"] = _cv.CvHaarClassifier_count_set - __swig_getmethods__["count"] = _cv.CvHaarClassifier_count_get - if _newclass:count = _swig_property(_cv.CvHaarClassifier_count_get, _cv.CvHaarClassifier_count_set) - __swig_setmethods__["haar_feature"] = _cv.CvHaarClassifier_haar_feature_set - __swig_getmethods__["haar_feature"] = _cv.CvHaarClassifier_haar_feature_get - if _newclass:haar_feature = _swig_property(_cv.CvHaarClassifier_haar_feature_get, _cv.CvHaarClassifier_haar_feature_set) - __swig_setmethods__["threshold"] = _cv.CvHaarClassifier_threshold_set - __swig_getmethods__["threshold"] = _cv.CvHaarClassifier_threshold_get - if _newclass:threshold = _swig_property(_cv.CvHaarClassifier_threshold_get, _cv.CvHaarClassifier_threshold_set) - __swig_setmethods__["left"] = _cv.CvHaarClassifier_left_set - __swig_getmethods__["left"] = _cv.CvHaarClassifier_left_get - if _newclass:left = _swig_property(_cv.CvHaarClassifier_left_get, _cv.CvHaarClassifier_left_set) - __swig_setmethods__["right"] = _cv.CvHaarClassifier_right_set - __swig_getmethods__["right"] = _cv.CvHaarClassifier_right_get - if _newclass:right = _swig_property(_cv.CvHaarClassifier_right_get, _cv.CvHaarClassifier_right_set) - __swig_setmethods__["alpha"] = _cv.CvHaarClassifier_alpha_set - __swig_getmethods__["alpha"] = _cv.CvHaarClassifier_alpha_get - if _newclass:alpha = _swig_property(_cv.CvHaarClassifier_alpha_get, _cv.CvHaarClassifier_alpha_set) - def __init__(self): - """__init__(self) -> CvHaarClassifier""" - this = _cv.new_CvHaarClassifier() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvHaarClassifier - __del__ = lambda self : None; -CvHaarClassifier_swigregister = _cv.CvHaarClassifier_swigregister -CvHaarClassifier_swigregister(CvHaarClassifier) - -class CvHaarStageClassifier(_object): - """Proxy of C++ CvHaarStageClassifier class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHaarStageClassifier, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHaarStageClassifier, name) - __repr__ = _swig_repr - __swig_setmethods__["count"] = _cv.CvHaarStageClassifier_count_set - __swig_getmethods__["count"] = _cv.CvHaarStageClassifier_count_get - if _newclass:count = _swig_property(_cv.CvHaarStageClassifier_count_get, _cv.CvHaarStageClassifier_count_set) - __swig_setmethods__["threshold"] = _cv.CvHaarStageClassifier_threshold_set - __swig_getmethods__["threshold"] = _cv.CvHaarStageClassifier_threshold_get - if _newclass:threshold = _swig_property(_cv.CvHaarStageClassifier_threshold_get, _cv.CvHaarStageClassifier_threshold_set) - __swig_setmethods__["classifier"] = _cv.CvHaarStageClassifier_classifier_set - __swig_getmethods__["classifier"] = _cv.CvHaarStageClassifier_classifier_get - if _newclass:classifier = _swig_property(_cv.CvHaarStageClassifier_classifier_get, _cv.CvHaarStageClassifier_classifier_set) - __swig_setmethods__["next"] = _cv.CvHaarStageClassifier_next_set - __swig_getmethods__["next"] = _cv.CvHaarStageClassifier_next_get - if _newclass:next = _swig_property(_cv.CvHaarStageClassifier_next_get, _cv.CvHaarStageClassifier_next_set) - __swig_setmethods__["child"] = _cv.CvHaarStageClassifier_child_set - __swig_getmethods__["child"] = _cv.CvHaarStageClassifier_child_get - if _newclass:child = _swig_property(_cv.CvHaarStageClassifier_child_get, _cv.CvHaarStageClassifier_child_set) - __swig_setmethods__["parent"] = _cv.CvHaarStageClassifier_parent_set - __swig_getmethods__["parent"] = _cv.CvHaarStageClassifier_parent_get - if _newclass:parent = _swig_property(_cv.CvHaarStageClassifier_parent_get, _cv.CvHaarStageClassifier_parent_set) - def __init__(self): - """__init__(self) -> CvHaarStageClassifier""" - this = _cv.new_CvHaarStageClassifier() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvHaarStageClassifier - __del__ = lambda self : None; -CvHaarStageClassifier_swigregister = _cv.CvHaarStageClassifier_swigregister -CvHaarStageClassifier_swigregister(CvHaarStageClassifier) - -class CvHaarClassifierCascade(_object): - """Proxy of C++ CvHaarClassifierCascade class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvHaarClassifierCascade, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvHaarClassifierCascade, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_setmethods__["flags"] = _cv.CvHaarClassifierCascade_flags_set - __swig_getmethods__["flags"] = _cv.CvHaarClassifierCascade_flags_get - if _newclass:flags = _swig_property(_cv.CvHaarClassifierCascade_flags_get, _cv.CvHaarClassifierCascade_flags_set) - __swig_setmethods__["count"] = _cv.CvHaarClassifierCascade_count_set - __swig_getmethods__["count"] = _cv.CvHaarClassifierCascade_count_get - if _newclass:count = _swig_property(_cv.CvHaarClassifierCascade_count_get, _cv.CvHaarClassifierCascade_count_set) - __swig_setmethods__["orig_window_size"] = _cv.CvHaarClassifierCascade_orig_window_size_set - __swig_getmethods__["orig_window_size"] = _cv.CvHaarClassifierCascade_orig_window_size_get - if _newclass:orig_window_size = _swig_property(_cv.CvHaarClassifierCascade_orig_window_size_get, _cv.CvHaarClassifierCascade_orig_window_size_set) - __swig_setmethods__["real_window_size"] = _cv.CvHaarClassifierCascade_real_window_size_set - __swig_getmethods__["real_window_size"] = _cv.CvHaarClassifierCascade_real_window_size_get - if _newclass:real_window_size = _swig_property(_cv.CvHaarClassifierCascade_real_window_size_get, _cv.CvHaarClassifierCascade_real_window_size_set) - __swig_setmethods__["scale"] = _cv.CvHaarClassifierCascade_scale_set - __swig_getmethods__["scale"] = _cv.CvHaarClassifierCascade_scale_get - if _newclass:scale = _swig_property(_cv.CvHaarClassifierCascade_scale_get, _cv.CvHaarClassifierCascade_scale_set) - __swig_setmethods__["stage_classifier"] = _cv.CvHaarClassifierCascade_stage_classifier_set - __swig_getmethods__["stage_classifier"] = _cv.CvHaarClassifierCascade_stage_classifier_get - if _newclass:stage_classifier = _swig_property(_cv.CvHaarClassifierCascade_stage_classifier_get, _cv.CvHaarClassifierCascade_stage_classifier_set) - __swig_setmethods__["hid_cascade"] = _cv.CvHaarClassifierCascade_hid_cascade_set - __swig_getmethods__["hid_cascade"] = _cv.CvHaarClassifierCascade_hid_cascade_get - if _newclass:hid_cascade = _swig_property(_cv.CvHaarClassifierCascade_hid_cascade_get, _cv.CvHaarClassifierCascade_hid_cascade_set) - __swig_destroy__ = _cv.delete_CvHaarClassifierCascade - __del__ = lambda self : None; -CvHaarClassifierCascade_swigregister = _cv.CvHaarClassifierCascade_swigregister -CvHaarClassifierCascade_swigregister(CvHaarClassifierCascade) - -class CvAvgComp(_object): - """Proxy of C++ CvAvgComp class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvAvgComp, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvAvgComp, name) - __repr__ = _swig_repr - __swig_setmethods__["rect"] = _cv.CvAvgComp_rect_set - __swig_getmethods__["rect"] = _cv.CvAvgComp_rect_get - if _newclass:rect = _swig_property(_cv.CvAvgComp_rect_get, _cv.CvAvgComp_rect_set) - __swig_setmethods__["neighbors"] = _cv.CvAvgComp_neighbors_set - __swig_getmethods__["neighbors"] = _cv.CvAvgComp_neighbors_get - if _newclass:neighbors = _swig_property(_cv.CvAvgComp_neighbors_get, _cv.CvAvgComp_neighbors_set) - def __init__(self): - """__init__(self) -> CvAvgComp""" - this = _cv.new_CvAvgComp() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvAvgComp - __del__ = lambda self : None; -CvAvgComp_swigregister = _cv.CvAvgComp_swigregister -CvAvgComp_swigregister(CvAvgComp) - - -def cvCopyMakeBorder(*args): - """ - cvCopyMakeBorder(CvArr src, CvArr dst, CvPoint offset, int bordertype, - CvScalar value = cvScalarAll(0)) - """ - return _cv.cvCopyMakeBorder(*args) - -def cvSmooth(*args): - """ - cvSmooth(CvArr src, CvArr dst, int smoothtype = 2, int size1 = 3, - int size2 = 0, double sigma1 = 0, double sigma2 = 0) - """ - return _cv.cvSmooth(*args) - -def cvFilter2D(*args): - """cvFilter2D(CvArr src, CvArr dst, CvMat kernel, CvPoint anchor = cvPoint(-1,-1))""" - return _cv.cvFilter2D(*args) - -def cvIntegral(*args): - """cvIntegral(CvArr image, CvArr sum, CvArr sqsum = None, CvArr tilted_sum = None)""" - return _cv.cvIntegral(*args) - -def cvPyrDown(*args): - """cvPyrDown(CvArr src, CvArr dst, int filter = CV_GAUSSIAN_5x5)""" - return _cv.cvPyrDown(*args) - -def cvPyrUp(*args): - """cvPyrUp(CvArr src, CvArr dst, int filter = CV_GAUSSIAN_5x5)""" - return _cv.cvPyrUp(*args) - -def cvCreatePyramid(*args): - """ - cvCreatePyramid(CvArr img, int extra_layers, double rate, CvSize layer_sizes = None, - CvArr bufarr = None, int calc = 1, - int filter = CV_GAUSSIAN_5x5) -> CvMat - """ - return _cv.cvCreatePyramid(*args) - -def cvReleasePyramid(*args): - """cvReleasePyramid(CvMat pyramid, int extra_layers)""" - return _cv.cvReleasePyramid(*args) - -def cvPyrSegmentationUntyped(*args): - """ - cvPyrSegmentationUntyped( src, dst, CvMemStorage storage, int level, double threshold1, - double threshold2) - """ - return _cv.cvPyrSegmentationUntyped(*args) - -def cvPyrMeanShiftFiltering(*args): - """ - cvPyrMeanShiftFiltering(CvArr src, CvArr dst, double sp, double sr, int max_level = 1, - CvTermCriteria termcrit = cvTermCriteria(1 +2,5,1)) - """ - return _cv.cvPyrMeanShiftFiltering(*args) - -def cvWatershed(*args): - """cvWatershed(CvArr image, CvArr markers)""" - return _cv.cvWatershed(*args) - -def cvInpaint(*args): - """ - cvInpaint(CvArr src, CvArr inpaint_mask, CvArr dst, double inpaintRange, - int flags) - """ - return _cv.cvInpaint(*args) - -def cvSobel(*args): - """cvSobel(CvArr src, CvArr dst, int xorder, int yorder, int aperture_size = 3)""" - return _cv.cvSobel(*args) - -def cvLaplace(*args): - """cvLaplace(CvArr src, CvArr dst, int aperture_size = 3)""" - return _cv.cvLaplace(*args) - -def cvCvtColor(*args): - """cvCvtColor(CvArr src, CvArr dst, int code)""" - return _cv.cvCvtColor(*args) - -def cvResize(*args): - """cvResize(CvArr src, CvArr dst, int interpolation = 1)""" - return _cv.cvResize(*args) - -def cvWarpAffine(*args): - """ - cvWarpAffine(CvArr src, CvArr dst, CvMat map_matrix, int flags = 1+8, - CvScalar fillval = cvScalarAll(0)) - """ - return _cv.cvWarpAffine(*args) - -def cvGetAffineTransform(*args): - """cvGetAffineTransform(CvPoint2D32f src, CvPoint2D32f dst, CvMat map_matrix) -> CvMat""" - return _cv.cvGetAffineTransform(*args) - -def cv2DRotationMatrix(*args): - """cv2DRotationMatrix(CvPoint2D32f center, double angle, double scale, CvMat map_matrix) -> CvMat""" - return _cv.cv2DRotationMatrix(*args) - -def cvWarpPerspective(*args): - """ - cvWarpPerspective(CvArr src, CvArr dst, CvMat map_matrix, int flags = 1+8, - CvScalar fillval = cvScalarAll(0)) - """ - return _cv.cvWarpPerspective(*args) - -def cvGetPerspectiveTransform(*args): - """cvGetPerspectiveTransform(CvPoint2D32f src, CvPoint2D32f dst, CvMat map_matrix) -> CvMat""" - return _cv.cvGetPerspectiveTransform(*args) - -def cvRemap(*args): - """ - cvRemap(CvArr src, CvArr dst, CvArr mapx, CvArr mapy, int flags = 1+8, - CvScalar fillval = cvScalarAll(0)) - """ - return _cv.cvRemap(*args) - -def cvConvertMaps(*args): - """cvConvertMaps(CvArr mapx, CvArr mapy, CvArr mapxy, CvArr mapalpha)""" - return _cv.cvConvertMaps(*args) - -def cvLogPolar(*args): - """ - cvLogPolar(CvArr src, CvArr dst, CvPoint2D32f center, double M, - int flags = 1+8) - """ - return _cv.cvLogPolar(*args) - -def cvLinearPolar(*args): - """ - cvLinearPolar(CvArr src, CvArr dst, CvPoint2D32f center, double maxRadius, - int flags = 1+8) - """ - return _cv.cvLinearPolar(*args) - -def cvCreateStructuringElementEx(*args): - """ - cvCreateStructuringElementEx(int cols, int rows, int anchor_x, int anchor_y, int shape, - int values = None) - """ - return _cv.cvCreateStructuringElementEx(*args) - -def cvErode(*args): - """cvErode(CvArr src, CvArr dst, element = None, int iterations = 1)""" - return _cv.cvErode(*args) - -def cvDilate(*args): - """cvDilate(CvArr src, CvArr dst, element = None, int iterations = 1)""" - return _cv.cvDilate(*args) - -def cvMorphologyEx(*args): - """ - cvMorphologyEx(CvArr src, CvArr dst, CvArr temp, element, int operation, - int iterations = 1) - """ - return _cv.cvMorphologyEx(*args) - -def cvMoments(*args): - """cvMoments(CvArr arr, CvMoments moments, int binary = 0)""" - return _cv.cvMoments(*args) - -def cvGetSpatialMoment(*args): - """cvGetSpatialMoment(CvMoments moments, int x_order, int y_order) -> double""" - return _cv.cvGetSpatialMoment(*args) - -def cvGetCentralMoment(*args): - """cvGetCentralMoment(CvMoments moments, int x_order, int y_order) -> double""" - return _cv.cvGetCentralMoment(*args) - -def cvGetNormalizedCentralMoment(*args): - """cvGetNormalizedCentralMoment(CvMoments moments, int x_order, int y_order) -> double""" - return _cv.cvGetNormalizedCentralMoment(*args) - -def cvGetHuMoments(*args): - """cvGetHuMoments(CvMoments moments, CvHuMoments hu_moments)""" - return _cv.cvGetHuMoments(*args) - -def cvSampleLine(*args): - """ - cvSampleLine(CvArr image, CvPoint pt1, CvPoint pt2, void buffer, - int connectivity = 8) -> int - """ - return _cv.cvSampleLine(*args) - -def cvGetRectSubPix(*args): - """cvGetRectSubPix(CvArr src, CvArr dst, CvPoint2D32f center)""" - return _cv.cvGetRectSubPix(*args) - -def cvGetQuadrangleSubPix(*args): - """cvGetQuadrangleSubPix(CvArr src, CvArr dst, CvMat map_matrix)""" - return _cv.cvGetQuadrangleSubPix(*args) - -def cvMatchTemplate(*args): - """cvMatchTemplate(CvArr image, CvArr templ, CvArr result, int method)""" - return _cv.cvMatchTemplate(*args) - -def cvCalcEMD2(*args): - """ - cvCalcEMD2(CvArr signature1, CvArr signature2, int distance_type, - CvDistanceFunction distance_func = None, - CvArr cost_matrix = None, CvArr flow = None, - float lower_bound = None, void userdata = None) -> float - """ - return _cv.cvCalcEMD2(*args) - -def cvFindContoursUntyped(*args): - """ - cvFindContoursUntyped(CvArr image, CvMemStorage storage, int header_size = sizeof(CvContour), - int mode = 1, int method = 2, - CvPoint offset = cvPoint(0,0)) -> int - """ - return _cv.cvFindContoursUntyped(*args) - -def cvStartFindContours(*args): - """ - cvStartFindContours(CvArr image, CvMemStorage storage, int header_size = sizeof(CvContour), - int mode = 1, int method = 2, - CvPoint offset = cvPoint(0,0)) -> CvContourScanner - """ - return _cv.cvStartFindContours(*args) - -def cvFindNextContour(*args): - """cvFindNextContour(CvContourScanner scanner) -> CvSeq""" - return _cv.cvFindNextContour(*args) - -def cvSubstituteContour(*args): - """cvSubstituteContour(CvContourScanner scanner, CvSeq new_contour)""" - return _cv.cvSubstituteContour(*args) - -def cvEndFindContours(*args): - """cvEndFindContours(CvContourScanner scanner) -> CvSeq""" - return _cv.cvEndFindContours(*args) - -def cvApproxChainsUntyped(*args): - """ - cvApproxChainsUntyped(CvSeq src_seq, CvMemStorage storage, int method = 2, - double parameter = 0, int minimal_perimeter = 0, - int recursive = 0) -> CvSeq - """ - return _cv.cvApproxChainsUntyped(*args) - -def cvStartReadChainPoints(*args): - """cvStartReadChainPoints(CvChain chain, CvChainPtReader reader)""" - return _cv.cvStartReadChainPoints(*args) - -def cvReadChainPoint(*args): - """cvReadChainPoint(CvChainPtReader reader) -> CvPoint""" - return _cv.cvReadChainPoint(*args) - -def cvCalcOpticalFlowLK(*args): - """ - cvCalcOpticalFlowLK(CvArr prev, CvArr curr, CvSize win_size, CvArr velx, - CvArr vely) - """ - return _cv.cvCalcOpticalFlowLK(*args) - -def cvCalcOpticalFlowBM(*args): - """ - cvCalcOpticalFlowBM(CvArr prev, CvArr curr, CvSize block_size, CvSize shift_size, - CvSize max_range, int use_previous, - CvArr velx, CvArr vely) - """ - return _cv.cvCalcOpticalFlowBM(*args) - -def cvCalcOpticalFlowHS(*args): - """ - cvCalcOpticalFlowHS(CvArr prev, CvArr curr, int use_previous, CvArr velx, - CvArr vely, double _lambda, CvTermCriteria criteria) - """ - return _cv.cvCalcOpticalFlowHS(*args) - -def cvCalcOpticalFlowPyrLK(*args): - """ - cvCalcOpticalFlowPyrLK(CvArr prev, CvArr curr, CvArr prev_pyr, CvArr curr_pyr, - CvPoint2D32f prev_features, CvPoint2D32f curr_features, - CvSize win_size, int level, char status, - float track_error, CvTermCriteria criteria, - int flags) - """ - return _cv.cvCalcOpticalFlowPyrLK(*args) - -def cvCalcAffineFlowPyrLK(*args): - """ - cvCalcAffineFlowPyrLK(CvArr prev, CvArr curr, CvArr prev_pyr, CvArr curr_pyr, - CvPoint2D32f prev_features, CvPoint2D32f curr_features, - float matrices, int count, CvSize win_size, - int level, char status, float track_error, - CvTermCriteria criteria, int flags) - """ - return _cv.cvCalcAffineFlowPyrLK(*args) - -def cvEstimateRigidTransform(*args): - """cvEstimateRigidTransform(CvArr A, CvArr B, CvMat M, int full_affine) -> int""" - return _cv.cvEstimateRigidTransform(*args) - -def cvUpdateMotionHistory(*args): - """cvUpdateMotionHistory(CvArr silhouette, CvArr mhi, double timestamp, double duration)""" - return _cv.cvUpdateMotionHistory(*args) - -def cvCalcMotionGradient(*args): - """ - cvCalcMotionGradient(CvArr mhi, CvArr mask, CvArr orientation, double delta1, - double delta2, int aperture_size = 3) - """ - return _cv.cvCalcMotionGradient(*args) - -def cvCalcGlobalOrientation(*args): - """ - cvCalcGlobalOrientation(CvArr orientation, CvArr mask, CvArr mhi, double timestamp, - double duration) -> double - """ - return _cv.cvCalcGlobalOrientation(*args) - -def cvAcc(*args): - """cvAcc(CvArr image, CvArr sum, CvArr mask = None)""" - return _cv.cvAcc(*args) - -def cvSquareAcc(*args): - """cvSquareAcc(CvArr image, CvArr sqsum, CvArr mask = None)""" - return _cv.cvSquareAcc(*args) - -def cvMultiplyAcc(*args): - """cvMultiplyAcc(CvArr image1, CvArr image2, CvArr acc, CvArr mask = None)""" - return _cv.cvMultiplyAcc(*args) - -def cvRunningAvg(*args): - """cvRunningAvg(CvArr image, CvArr acc, double alpha, CvArr mask = None)""" - return _cv.cvRunningAvg(*args) - -def cvCamShift(*args): - """ - cvCamShift(CvArr prob_image, CvRect window, CvTermCriteria criteria, - CvConnectedComp comp, CvBox2D box = None) -> int - """ - return _cv.cvCamShift(*args) - -def cvMeanShift(*args): - """ - cvMeanShift(CvArr prob_image, CvRect window, CvTermCriteria criteria, - CvConnectedComp comp) -> int - """ - return _cv.cvMeanShift(*args) - -def cvCreateConDensation(*args): - """cvCreateConDensation(int dynam_params, int measure_params, int sample_count) -> CvConDensation""" - return _cv.cvCreateConDensation(*args) - -def cvConDensUpdateByTime(*args): - """cvConDensUpdateByTime(CvConDensation condens)""" - return _cv.cvConDensUpdateByTime(*args) - -def cvConDensInitSampleSet(*args): - """cvConDensInitSampleSet(CvConDensation condens, CvMat lower_bound, CvMat upper_bound)""" - return _cv.cvConDensInitSampleSet(*args) - -def cvCreateKalman(*args): - """cvCreateKalman(int dynam_params, int measure_params, int control_params = 0) -> CvKalman""" - return _cv.cvCreateKalman(*args) - -def cvKalmanPredict(*args): - """cvKalmanPredict(CvKalman kalman, CvMat control = None) -> CvMat""" - return _cv.cvKalmanPredict(*args) - -def cvKalmanCorrect(*args): - """cvKalmanCorrect(CvKalman kalman, CvMat measurement) -> CvMat""" - return _cv.cvKalmanCorrect(*args) - -def cvInitSubdivDelaunay2D(*args): - """cvInitSubdivDelaunay2D(CvSubdiv2D subdiv, CvRect rect)""" - return _cv.cvInitSubdivDelaunay2D(*args) - -def cvCreateSubdiv2D(*args): - """ - cvCreateSubdiv2D(int subdiv_type, int header_size, int vtx_size, int quadedge_size, - CvMemStorage storage) -> CvSubdiv2D - """ - return _cv.cvCreateSubdiv2D(*args) - -def cvCreateSubdivDelaunay2D(*args): - """cvCreateSubdivDelaunay2D(CvRect rect, CvMemStorage storage) -> CvSubdiv2D""" - return _cv.cvCreateSubdivDelaunay2D(*args) - -def cvSubdivDelaunay2DInsert(*args): - """cvSubdivDelaunay2DInsert(CvSubdiv2D subdiv, CvPoint2D32f pt) -> CvSubdiv2DPoint""" - return _cv.cvSubdivDelaunay2DInsert(*args) - -def cvSubdiv2DLocate(*args): - """cvSubdiv2DLocate(CvSubdiv2D subdiv, CvPoint2D32f pt) -> CvSubdiv2DPointLocation""" - return _cv.cvSubdiv2DLocate(*args) - -def cvCalcSubdivVoronoi2D(*args): - """cvCalcSubdivVoronoi2D(CvSubdiv2D subdiv)""" - return _cv.cvCalcSubdivVoronoi2D(*args) - -def cvClearSubdivVoronoi2D(*args): - """cvClearSubdivVoronoi2D(CvSubdiv2D subdiv)""" - return _cv.cvClearSubdivVoronoi2D(*args) - -def cvFindNearestPoint2D(*args): - """cvFindNearestPoint2D(CvSubdiv2D subdiv, CvPoint2D32f pt) -> CvSubdiv2DPoint""" - return _cv.cvFindNearestPoint2D(*args) - -def cvSubdiv2DNextEdge(*args): - """cvSubdiv2DNextEdge(CvSubdiv2DEdge edge) -> CvSubdiv2DEdge""" - return _cv.cvSubdiv2DNextEdge(*args) - -def cvSubdiv2DRotateEdge(*args): - """cvSubdiv2DRotateEdge(CvSubdiv2DEdge edge, int rotate) -> CvSubdiv2DEdge""" - return _cv.cvSubdiv2DRotateEdge(*args) - -def cvSubdiv2DSymEdge(*args): - """cvSubdiv2DSymEdge(CvSubdiv2DEdge edge) -> CvSubdiv2DEdge""" - return _cv.cvSubdiv2DSymEdge(*args) - -def cvSubdiv2DGetEdge(*args): - """cvSubdiv2DGetEdge(CvSubdiv2DEdge edge, CvNextEdgeType type) -> CvSubdiv2DEdge""" - return _cv.cvSubdiv2DGetEdge(*args) - -def cvSubdiv2DEdgeOrg(*args): - """cvSubdiv2DEdgeOrg(CvSubdiv2DEdge edge) -> CvSubdiv2DPoint""" - return _cv.cvSubdiv2DEdgeOrg(*args) - -def cvSubdiv2DEdgeDst(*args): - """cvSubdiv2DEdgeDst(CvSubdiv2DEdge edge) -> CvSubdiv2DPoint""" - return _cv.cvSubdiv2DEdgeDst(*args) - -def cvTriangleArea(*args): - """cvTriangleArea(CvPoint2D32f a, CvPoint2D32f b, CvPoint2D32f c) -> double""" - return _cv.cvTriangleArea(*args) - -def cvFindDominantPoints(*args): - """ - cvFindDominantPoints(CvSeq contour, CvMemStorage storage, int method = 1, - double parameter1 = 0, double parameter2 = 0, - double parameter3 = 0, double parameter4 = 0) -> CvSeq - """ - return _cv.cvFindDominantPoints(*args) - -def cvArcLength(*args): - """ - cvArcLength(void curve, CvSlice slice = cvSlice(0, 0x3fffffff), - int is_closed = -1) -> double - """ - return _cv.cvArcLength(*args) - -def cvBoundingRect(*args): - """cvBoundingRect(CvArr points, int update = 0) -> CvRect""" - return _cv.cvBoundingRect(*args) - -def cvContourArea(*args): - """cvContourArea(CvArr contour, CvSlice slice = cvSlice(0, 0x3fffffff)) -> double""" - return _cv.cvContourArea(*args) - -def cvMinAreaRect2(*args): - """cvMinAreaRect2(CvArr points, CvMemStorage storage = None) -> CvBox2D""" - return _cv.cvMinAreaRect2(*args) - -def cvMinEnclosingCircle(*args): - """cvMinEnclosingCircle(CvArr points) -> int""" - return _cv.cvMinEnclosingCircle(*args) - -def cvMatchShapes(*args): - """cvMatchShapes(void object1, void object2, int method, double parameter = 0) -> double""" - return _cv.cvMatchShapes(*args) - -def cvCreateContourTree(*args): - """cvCreateContourTree(CvSeq contour, CvMemStorage storage, double threshold) -> CvContourTree""" - return _cv.cvCreateContourTree(*args) - -def cvContourFromContourTreeUntyped(*args): - """cvContourFromContourTreeUntyped(CvContourTree tree, CvMemStorage storage, CvTermCriteria criteria) -> CvSeq""" - return _cv.cvContourFromContourTreeUntyped(*args) - -def cvMatchContourTrees(*args): - """ - cvMatchContourTrees(CvContourTree tree1, CvContourTree tree2, int method, - double threshold) -> double - """ - return _cv.cvMatchContourTrees(*args) - -def cvCalcPGH(*args): - """cvCalcPGH(CvSeq contour, CvHistogram hist)""" - return _cv.cvCalcPGH(*args) - -def cvCheckContourConvexity(*args): - """cvCheckContourConvexity(CvArr contour) -> int""" - return _cv.cvCheckContourConvexity(*args) - -def cvConvexityDefectsUntyped(*args): - """cvConvexityDefectsUntyped(CvArr contour, CvArr convexhull, CvMemStorage storage = None) -> CvSeq""" - return _cv.cvConvexityDefectsUntyped(*args) - -def cvFitEllipse2(*args): - """cvFitEllipse2(CvArr points) -> CvBox2D""" - return _cv.cvFitEllipse2(*args) - -def cvMaxRect(*args): - """cvMaxRect(CvRect rect1, CvRect rect2) -> CvRect""" - return _cv.cvMaxRect(*args) - -def cvBoxPoints(*args): - """cvBoxPoints(CvBox2D box)""" - return _cv.cvBoxPoints(*args) - -def cvPointSeqFromMat(*args): - """ - cvPointSeqFromMat(int seq_kind, CvArr mat, CvContour contour_header, - CvSeqBlock block) -> CvSeq - """ - return _cv.cvPointSeqFromMat(*args) - -def cvPointPolygonTest(*args): - """cvPointPolygonTest(CvArr contour, CvPoint2D32f pt, int measure_dist) -> double""" - return _cv.cvPointPolygonTest(*args) - -def cvCreateHist(*args): - """cvCreateHist(int dims, int type, float ranges = None, int uniform = 1) -> CvHistogram""" - return _cv.cvCreateHist(*args) - -def cvSetHistBinRanges(*args): - """cvSetHistBinRanges(CvHistogram hist, float ranges, int uniform = 1)""" - return _cv.cvSetHistBinRanges(*args) - -def cvMakeHistHeaderForArray(*args): - """ - cvMakeHistHeaderForArray(int dims, CvHistogram hist, float data, float ranges = None, - int uniform = 1) -> CvHistogram - """ - return _cv.cvMakeHistHeaderForArray(*args) - -def cvClearHist(*args): - """cvClearHist(CvHistogram hist)""" - return _cv.cvClearHist(*args) - -def cvGetMinMaxHistValue(*args): - """cvGetMinMaxHistValue(CvHistogram hist)""" - return _cv.cvGetMinMaxHistValue(*args) - -def cvNormalizeHist(*args): - """cvNormalizeHist(CvHistogram hist, double factor)""" - return _cv.cvNormalizeHist(*args) - -def cvThreshHist(*args): - """cvThreshHist(CvHistogram hist, double threshold)""" - return _cv.cvThreshHist(*args) - -def cvCompareHist(*args): - """cvCompareHist(CvHistogram hist1, CvHistogram hist2, int method) -> double""" - return _cv.cvCompareHist(*args) - -def cvCopyHist(*args): - """cvCopyHist(CvHistogram src, CvHistogram dst)""" - return _cv.cvCopyHist(*args) - -def cvCalcBayesianProb(*args): - """cvCalcBayesianProb(CvHistogram src, int number, CvHistogram dst)""" - return _cv.cvCalcBayesianProb(*args) - -def cvCalcArrHist(*args): - """cvCalcArrHist(CvArr arr, CvHistogram hist, int accumulate = 0, CvArr mask = None)""" - return _cv.cvCalcArrHist(*args) - -def cvCalcHist(*args): - """cvCalcHist( image, CvHistogram hist, int accumulate = 0, CvArr mask = None)""" - return _cv.cvCalcHist(*args) - -def cvCalcArrBackProject(*args): - """cvCalcArrBackProject(CvArr image, CvArr dst, CvHistogram hist)""" - return _cv.cvCalcArrBackProject(*args) - -def cvCalcArrBackProjectPatch(*args): - """ - cvCalcArrBackProjectPatch(CvArr image, CvArr dst, CvSize range, CvHistogram hist, - int method, double factor) - """ - return _cv.cvCalcArrBackProjectPatch(*args) - -def cvCalcProbDensity(*args): - """ - cvCalcProbDensity(CvHistogram hist1, CvHistogram hist2, CvHistogram dst_hist, - double scale = 255) - """ - return _cv.cvCalcProbDensity(*args) - -def cvEqualizeHist(*args): - """cvEqualizeHist(CvArr src, CvArr dst)""" - return _cv.cvEqualizeHist(*args) - -def cvCalcImageHomography(*args): - """cvCalcImageHomography(float line, CvPoint3D32f center, float intrinsic, float homography)""" - return _cv.cvCalcImageHomography(*args) - -def cvDistTransform(*args): - """ - cvDistTransform(CvArr src, CvArr dst, int distance_type = 2, int mask_size = 3, - float mask = None, CvArr labels = None) - """ - return _cv.cvDistTransform(*args) - -def cvThreshold(*args): - """ - cvThreshold(CvArr src, CvArr dst, double threshold, double max_value, - int threshold_type) -> double - """ - return _cv.cvThreshold(*args) - -def cvAdaptiveThreshold(*args): - """ - cvAdaptiveThreshold(CvArr src, CvArr dst, double max_value, int adaptive_method = 0, - int threshold_type = 0, int block_size = 3, - double param1 = 5) - """ - return _cv.cvAdaptiveThreshold(*args) - -def cvFloodFill(*args): - """ - cvFloodFill(CvArr image, CvPoint seed_point, CvScalar new_val, - CvScalar lo_diff = cvScalarAll(0), CvScalar up_diff = cvScalarAll(0), - CvConnectedComp comp = None, - int flags = 4, CvArr mask = None) - """ - return _cv.cvFloodFill(*args) - -def cvCanny(*args): - """ - cvCanny(CvArr image, CvArr edges, double threshold1, double threshold2, - int aperture_size = 3) - """ - return _cv.cvCanny(*args) - -def cvPreCornerDetect(*args): - """cvPreCornerDetect(CvArr image, CvArr corners, int aperture_size = 3)""" - return _cv.cvPreCornerDetect(*args) - -def cvCornerEigenValsAndVecs(*args): - """cvCornerEigenValsAndVecs(CvArr image, CvArr eigenvv, int block_size, int aperture_size = 3)""" - return _cv.cvCornerEigenValsAndVecs(*args) - -def cvCornerMinEigenVal(*args): - """cvCornerMinEigenVal(CvArr image, CvArr eigenval, int block_size, int aperture_size = 3)""" - return _cv.cvCornerMinEigenVal(*args) - -def cvCornerHarris(*args): - """ - cvCornerHarris(CvArr image, CvArr harris_responce, int block_size, - int aperture_size = 3, double k = 0.04) - """ - return _cv.cvCornerHarris(*args) - -def cvFindCornerSubPix(*args): - """ - cvFindCornerSubPix(CvArr image, CvPoint2D32f corners, CvSize win, CvSize zero_zone, - CvTermCriteria criteria) - """ - return _cv.cvFindCornerSubPix(*args) - -def cvGoodFeaturesToTrack(*args): - """ - cvGoodFeaturesToTrack(CvArr image, CvArr eig_image, CvArr temp_image, CvPoint2D32f corners, - double quality_level, double min_distance, - CvArr mask = None, int block_size = 3, - int use_harris = 0, double k = 0.04) - """ - return _cv.cvGoodFeaturesToTrack(*args) - -def cvHoughLinesUntyped(*args): - """ - cvHoughLinesUntyped(CvArr image, void line_storage, int method, double rho, - double theta, int threshold, double param1 = 0, - double param2 = 0) -> CvSeq - """ - return _cv.cvHoughLinesUntyped(*args) - -def cvHoughCirclesUntyped(*args): - """ - cvHoughCirclesUntyped(CvArr image, void circle_storage, int method, double dp, - double min_dist, double param1 = 100, double param2 = 100, - int min_radius = 0, int max_radius = 0) -> CvSeq - """ - return _cv.cvHoughCirclesUntyped(*args) - -def cvFitLine(*args): - """ - cvFitLine(CvArr points, int dist_type, double param, double reps, - double aeps, float line) - """ - return _cv.cvFitLine(*args) - -def cvCreateKDTree(*args): - """cvCreateKDTree(CvMat desc) -> CvFeatureTree""" - return _cv.cvCreateKDTree(*args) - -def cvCreateSpillTree(*args): - """cvCreateSpillTree(CvMat raw_data, int naive = 50, double rho = .7, double tau = .1) -> CvFeatureTree""" - return _cv.cvCreateSpillTree(*args) - -def cvReleaseFeatureTree(*args): - """cvReleaseFeatureTree(CvFeatureTree tr)""" - return _cv.cvReleaseFeatureTree(*args) - -def cvFindFeatures(*args): - """ - cvFindFeatures(CvFeatureTree tr, CvMat query_points, CvMat indices, - int emax = 20) - """ - return _cv.cvFindFeatures(*args) - -def cvFindFeaturesBoxed(*args): - """ - cvFindFeaturesBoxed(CvFeatureTree tr, CvMat bounds_min, CvMat bounds_max, - CvMat out_indices) -> int - """ - return _cv.cvFindFeaturesBoxed(*args) - -def cvCreateLSH(*args): - """ - cvCreateLSH(CvLSHOperations ops, int d, int L = 10, int k = 10, - int type = (((6) &((1 << 3) -1)) +(((1) -1) << 3)), - double r = 4, int64 seed = -1) -> CvLSH - """ - return _cv.cvCreateLSH(*args) - -def cvCreateMemoryLSH(*args): - """ - cvCreateMemoryLSH(int d, int n, int L = 10, int k = 10, int type = (((6) &((1 << 3) -1)) +(((1) -1) << 3)), - double r = 4, - int64 seed = -1) -> CvLSH - """ - return _cv.cvCreateMemoryLSH(*args) - -def cvReleaseLSH(*args): - """cvReleaseLSH(CvLSH lsh)""" - return _cv.cvReleaseLSH(*args) - -def LSHSize(*args): - """LSHSize(CvLSH lsh) -> unsigned int""" - return _cv.LSHSize(*args) - -def cvLSHAdd(*args): - """cvLSHAdd(CvLSH lsh, CvMat data)""" - return _cv.cvLSHAdd(*args) - -def cvLSHRemove(*args): - """cvLSHRemove(CvLSH lsh, CvMat indices)""" - return _cv.cvLSHRemove(*args) - -def cvLSHQuery(*args): - """cvLSHQuery(CvLSH lsh, CvMat query_points, CvMat indices, int emax)""" - return _cv.cvLSHQuery(*args) -class CvSURFPoint(_object): - """Proxy of C++ CvSURFPoint class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSURFPoint, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSURFPoint, name) - __repr__ = _swig_repr - __swig_setmethods__["pt"] = _cv.CvSURFPoint_pt_set - __swig_getmethods__["pt"] = _cv.CvSURFPoint_pt_get - if _newclass:pt = _swig_property(_cv.CvSURFPoint_pt_get, _cv.CvSURFPoint_pt_set) - __swig_setmethods__["laplacian"] = _cv.CvSURFPoint_laplacian_set - __swig_getmethods__["laplacian"] = _cv.CvSURFPoint_laplacian_get - if _newclass:laplacian = _swig_property(_cv.CvSURFPoint_laplacian_get, _cv.CvSURFPoint_laplacian_set) - __swig_setmethods__["size"] = _cv.CvSURFPoint_size_set - __swig_getmethods__["size"] = _cv.CvSURFPoint_size_get - if _newclass:size = _swig_property(_cv.CvSURFPoint_size_get, _cv.CvSURFPoint_size_set) - __swig_setmethods__["dir"] = _cv.CvSURFPoint_dir_set - __swig_getmethods__["dir"] = _cv.CvSURFPoint_dir_get - if _newclass:dir = _swig_property(_cv.CvSURFPoint_dir_get, _cv.CvSURFPoint_dir_set) - __swig_setmethods__["hessian"] = _cv.CvSURFPoint_hessian_set - __swig_getmethods__["hessian"] = _cv.CvSURFPoint_hessian_get - if _newclass:hessian = _swig_property(_cv.CvSURFPoint_hessian_get, _cv.CvSURFPoint_hessian_set) - def __init__(self): - """__init__(self) -> CvSURFPoint""" - this = _cv.new_CvSURFPoint() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSURFPoint - __del__ = lambda self : None; -CvSURFPoint_swigregister = _cv.CvSURFPoint_swigregister -CvSURFPoint_swigregister(CvSURFPoint) - - -def cvSURFPoint(*args): - """ - cvSURFPoint(CvPoint2D32f pt, int laplacian, int size, float dir = 0, - float hessian = 0) -> CvSURFPoint - """ - return _cv.cvSURFPoint(*args) -class CvSURFParams(_object): - """Proxy of C++ CvSURFParams class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSURFParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSURFParams, name) - __repr__ = _swig_repr - __swig_setmethods__["extended"] = _cv.CvSURFParams_extended_set - __swig_getmethods__["extended"] = _cv.CvSURFParams_extended_get - if _newclass:extended = _swig_property(_cv.CvSURFParams_extended_get, _cv.CvSURFParams_extended_set) - __swig_setmethods__["hessianThreshold"] = _cv.CvSURFParams_hessianThreshold_set - __swig_getmethods__["hessianThreshold"] = _cv.CvSURFParams_hessianThreshold_get - if _newclass:hessianThreshold = _swig_property(_cv.CvSURFParams_hessianThreshold_get, _cv.CvSURFParams_hessianThreshold_set) - __swig_setmethods__["nOctaves"] = _cv.CvSURFParams_nOctaves_set - __swig_getmethods__["nOctaves"] = _cv.CvSURFParams_nOctaves_get - if _newclass:nOctaves = _swig_property(_cv.CvSURFParams_nOctaves_get, _cv.CvSURFParams_nOctaves_set) - __swig_setmethods__["nOctaveLayers"] = _cv.CvSURFParams_nOctaveLayers_set - __swig_getmethods__["nOctaveLayers"] = _cv.CvSURFParams_nOctaveLayers_get - if _newclass:nOctaveLayers = _swig_property(_cv.CvSURFParams_nOctaveLayers_get, _cv.CvSURFParams_nOctaveLayers_set) - def __init__(self): - """__init__(self) -> CvSURFParams""" - this = _cv.new_CvSURFParams() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSURFParams - __del__ = lambda self : None; -CvSURFParams_swigregister = _cv.CvSURFParams_swigregister -CvSURFParams_swigregister(CvSURFParams) - - -def cvSURFParams(*args): - """cvSURFParams(double hessianThreshold, int extended = 0) -> CvSURFParams""" - return _cv.cvSURFParams(*args) - -def cvExtractSURF(*args): - """cvExtractSURF(CvArr img, CvArr mask, CvSURFParams params, int useProvidedKeyPts = 0)""" - return _cv.cvExtractSURF(*args) -class CvMSERParams(_object): - """Proxy of C++ CvMSERParams class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMSERParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMSERParams, name) - __repr__ = _swig_repr - __swig_setmethods__["delta"] = _cv.CvMSERParams_delta_set - __swig_getmethods__["delta"] = _cv.CvMSERParams_delta_get - if _newclass:delta = _swig_property(_cv.CvMSERParams_delta_get, _cv.CvMSERParams_delta_set) - __swig_setmethods__["maxArea"] = _cv.CvMSERParams_maxArea_set - __swig_getmethods__["maxArea"] = _cv.CvMSERParams_maxArea_get - if _newclass:maxArea = _swig_property(_cv.CvMSERParams_maxArea_get, _cv.CvMSERParams_maxArea_set) - __swig_setmethods__["minArea"] = _cv.CvMSERParams_minArea_set - __swig_getmethods__["minArea"] = _cv.CvMSERParams_minArea_get - if _newclass:minArea = _swig_property(_cv.CvMSERParams_minArea_get, _cv.CvMSERParams_minArea_set) - __swig_setmethods__["maxVariation"] = _cv.CvMSERParams_maxVariation_set - __swig_getmethods__["maxVariation"] = _cv.CvMSERParams_maxVariation_get - if _newclass:maxVariation = _swig_property(_cv.CvMSERParams_maxVariation_get, _cv.CvMSERParams_maxVariation_set) - __swig_setmethods__["minDiversity"] = _cv.CvMSERParams_minDiversity_set - __swig_getmethods__["minDiversity"] = _cv.CvMSERParams_minDiversity_get - if _newclass:minDiversity = _swig_property(_cv.CvMSERParams_minDiversity_get, _cv.CvMSERParams_minDiversity_set) - __swig_setmethods__["maxEvolution"] = _cv.CvMSERParams_maxEvolution_set - __swig_getmethods__["maxEvolution"] = _cv.CvMSERParams_maxEvolution_get - if _newclass:maxEvolution = _swig_property(_cv.CvMSERParams_maxEvolution_get, _cv.CvMSERParams_maxEvolution_set) - __swig_setmethods__["areaThreshold"] = _cv.CvMSERParams_areaThreshold_set - __swig_getmethods__["areaThreshold"] = _cv.CvMSERParams_areaThreshold_get - if _newclass:areaThreshold = _swig_property(_cv.CvMSERParams_areaThreshold_get, _cv.CvMSERParams_areaThreshold_set) - __swig_setmethods__["minMargin"] = _cv.CvMSERParams_minMargin_set - __swig_getmethods__["minMargin"] = _cv.CvMSERParams_minMargin_get - if _newclass:minMargin = _swig_property(_cv.CvMSERParams_minMargin_get, _cv.CvMSERParams_minMargin_set) - __swig_setmethods__["edgeBlurSize"] = _cv.CvMSERParams_edgeBlurSize_set - __swig_getmethods__["edgeBlurSize"] = _cv.CvMSERParams_edgeBlurSize_get - if _newclass:edgeBlurSize = _swig_property(_cv.CvMSERParams_edgeBlurSize_get, _cv.CvMSERParams_edgeBlurSize_set) - def __init__(self): - """__init__(self) -> CvMSERParams""" - this = _cv.new_CvMSERParams() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvMSERParams - __del__ = lambda self : None; -CvMSERParams_swigregister = _cv.CvMSERParams_swigregister -CvMSERParams_swigregister(CvMSERParams) - - -def cvMSERParams(*args): - """ - cvMSERParams(int delta = 5, int min_area = 60, int max_area = 14400, - float max_variation = .25, float min_diversity = .2, - int max_evolution = 200, double area_threshold = 1.01, - double min_margin = .003, - int edge_blur_size = 5) -> CvMSERParams - """ - return _cv.cvMSERParams(*args) - -def cvExtractMSER(*args): - """ - cvExtractMSER(CvArr _img, CvArr _mask, CvSeq contours, CvMemStorage storage, - CvMSERParams params) - """ - return _cv.cvExtractMSER(*args) -class CvStarKeypoint(_object): - """Proxy of C++ CvStarKeypoint class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvStarKeypoint, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvStarKeypoint, name) - __repr__ = _swig_repr - __swig_setmethods__["pt"] = _cv.CvStarKeypoint_pt_set - __swig_getmethods__["pt"] = _cv.CvStarKeypoint_pt_get - if _newclass:pt = _swig_property(_cv.CvStarKeypoint_pt_get, _cv.CvStarKeypoint_pt_set) - __swig_setmethods__["size"] = _cv.CvStarKeypoint_size_set - __swig_getmethods__["size"] = _cv.CvStarKeypoint_size_get - if _newclass:size = _swig_property(_cv.CvStarKeypoint_size_get, _cv.CvStarKeypoint_size_set) - __swig_setmethods__["response"] = _cv.CvStarKeypoint_response_set - __swig_getmethods__["response"] = _cv.CvStarKeypoint_response_get - if _newclass:response = _swig_property(_cv.CvStarKeypoint_response_get, _cv.CvStarKeypoint_response_set) - def __init__(self): - """__init__(self) -> CvStarKeypoint""" - this = _cv.new_CvStarKeypoint() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvStarKeypoint - __del__ = lambda self : None; -CvStarKeypoint_swigregister = _cv.CvStarKeypoint_swigregister -CvStarKeypoint_swigregister(CvStarKeypoint) - - -def cvStarKeypoint(*args): - """cvStarKeypoint(CvPoint pt, int size, float response) -> CvStarKeypoint""" - return _cv.cvStarKeypoint(*args) -class CvStarDetectorParams(_object): - """Proxy of C++ CvStarDetectorParams class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvStarDetectorParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvStarDetectorParams, name) - __repr__ = _swig_repr - __swig_setmethods__["maxSize"] = _cv.CvStarDetectorParams_maxSize_set - __swig_getmethods__["maxSize"] = _cv.CvStarDetectorParams_maxSize_get - if _newclass:maxSize = _swig_property(_cv.CvStarDetectorParams_maxSize_get, _cv.CvStarDetectorParams_maxSize_set) - __swig_setmethods__["responseThreshold"] = _cv.CvStarDetectorParams_responseThreshold_set - __swig_getmethods__["responseThreshold"] = _cv.CvStarDetectorParams_responseThreshold_get - if _newclass:responseThreshold = _swig_property(_cv.CvStarDetectorParams_responseThreshold_get, _cv.CvStarDetectorParams_responseThreshold_set) - __swig_setmethods__["lineThresholdProjected"] = _cv.CvStarDetectorParams_lineThresholdProjected_set - __swig_getmethods__["lineThresholdProjected"] = _cv.CvStarDetectorParams_lineThresholdProjected_get - if _newclass:lineThresholdProjected = _swig_property(_cv.CvStarDetectorParams_lineThresholdProjected_get, _cv.CvStarDetectorParams_lineThresholdProjected_set) - __swig_setmethods__["lineThresholdBinarized"] = _cv.CvStarDetectorParams_lineThresholdBinarized_set - __swig_getmethods__["lineThresholdBinarized"] = _cv.CvStarDetectorParams_lineThresholdBinarized_get - if _newclass:lineThresholdBinarized = _swig_property(_cv.CvStarDetectorParams_lineThresholdBinarized_get, _cv.CvStarDetectorParams_lineThresholdBinarized_set) - __swig_setmethods__["suppressNonmaxSize"] = _cv.CvStarDetectorParams_suppressNonmaxSize_set - __swig_getmethods__["suppressNonmaxSize"] = _cv.CvStarDetectorParams_suppressNonmaxSize_get - if _newclass:suppressNonmaxSize = _swig_property(_cv.CvStarDetectorParams_suppressNonmaxSize_get, _cv.CvStarDetectorParams_suppressNonmaxSize_set) - def __init__(self): - """__init__(self) -> CvStarDetectorParams""" - this = _cv.new_CvStarDetectorParams() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvStarDetectorParams - __del__ = lambda self : None; -CvStarDetectorParams_swigregister = _cv.CvStarDetectorParams_swigregister -CvStarDetectorParams_swigregister(CvStarDetectorParams) - - -def cvStarDetectorParams(maxSize = 45, responseThreshold = 30, lineThresholdProjected = 10, - lineThresholdBinarized = 8, suppressNonmaxSize = 5): - """ - cvStarDetectorParams(int maxSize = 45, int responseThreshold = 30, int lineThresholdProjected = 10, - int lineThresholdBinarized = 8, - int suppressNonmaxSize = 5) -> CvStarDetectorParams - """ - return _cv.cvStarDetectorParams(maxSize, responseThreshold, lineThresholdProjected, - lineThresholdBinarized, suppressNonmaxSize) - -def cvGetStarKeypoints(*args): - """cvGetStarKeypoints(CvArr img, CvMemStorage storage, CvStarDetectorParams params = cvStarDetectorParams()) -> CvSeq""" - return _cv.cvGetStarKeypoints(*args) - -def cvLoadHaarClassifierCascade(*args): - """cvLoadHaarClassifierCascade(char directory, CvSize orig_window_size) -> CvHaarClassifierCascade""" - return _cv.cvLoadHaarClassifierCascade(*args) - -def cvSetImagesForHaarClassifierCascade(*args): - """ - cvSetImagesForHaarClassifierCascade(CvHaarClassifierCascade cascade, CvArr sum, CvArr sqsum, - CvArr tilted_sum, double scale) - """ - return _cv.cvSetImagesForHaarClassifierCascade(*args) - -def cvRunHaarClassifierCascade(*args): - """cvRunHaarClassifierCascade(CvHaarClassifierCascade cascade, CvPoint pt, int start_stage = 0) -> int""" - return _cv.cvRunHaarClassifierCascade(*args) - -def cvUndistort2(*args): - """cvUndistort2(CvArr src, CvArr dst, CvMat camera_matrix, CvMat distortion_coeffs)""" - return _cv.cvUndistort2(*args) - -def cvInitUndistortMap(*args): - """ - cvInitUndistortMap(CvMat camera_matrix, CvMat distortion_coeffs, CvArr mapx, - CvArr mapy) - """ - return _cv.cvInitUndistortMap(*args) - -def cvInitUndistortRectifyMap(*args): - """ - cvInitUndistortRectifyMap(CvMat camera_matrix, CvMat dist_coeffs, CvMat R, CvMat new_camera_matrix, - CvArr mapx, CvArr mapy) - """ - return _cv.cvInitUndistortRectifyMap(*args) - -def cvUndistortPoints(*args): - """ - cvUndistortPoints(CvMat src, CvMat dst, CvMat camera_matrix, CvMat dist_coeffs, - CvMat R = None, CvMat P = None) - """ - return _cv.cvUndistortPoints(*args) - -def cvRodrigues2(*args): - """cvRodrigues2(CvMat src, CvMat dst, CvMat jacobian = None) -> int""" - return _cv.cvRodrigues2(*args) - -def cvFindHomography(*args): - """ - cvFindHomography(CvMat src_points, CvMat dst_points, int method = 0, - double ransacReprojThreshold = 0, CvMat mask = None) -> int - """ - return _cv.cvFindHomography(*args) - -def cvRQDecomp3x3(*args): - """ - cvRQDecomp3x3(CvMat matrixM, CvMat matrixR, CvMat matrixQ, CvMat matrixQx = None, - CvMat matrixQy = None, CvMat matrixQz = None, - CvPoint3D64f eulerAngles = None) - """ - return _cv.cvRQDecomp3x3(*args) - -def cvDecomposeProjectionMatrix(*args): - """ - cvDecomposeProjectionMatrix(CvMat projMatr, CvMat calibMatr, CvMat rotMatr, CvMat posVect, - CvMat rotMatrX = None, CvMat rotMatrY = None, - CvMat rotMatrZ = None, CvPoint3D64f eulerAngles = None) - """ - return _cv.cvDecomposeProjectionMatrix(*args) - -def cvCalcMatMulDeriv(*args): - """cvCalcMatMulDeriv(CvMat A, CvMat B, CvMat dABdA, CvMat dABdB)""" - return _cv.cvCalcMatMulDeriv(*args) - -def cvComposeRT(*args): - """ - cvComposeRT(CvMat _rvec1, CvMat _tvec1, CvMat _rvec2, CvMat _tvec2, - CvMat _rvec3, CvMat _tvec3, CvMat dr3dr1 = None, - CvMat dr3dt1 = None, CvMat dr3dr2 = None, - CvMat dr3dt2 = None, CvMat dt3dr1 = None, - CvMat dt3dt1 = None, CvMat dt3dr2 = None, - CvMat dt3dt2 = None) - """ - return _cv.cvComposeRT(*args) - -def cvProjectPoints2(*args): - """ - cvProjectPoints2(CvMat object_points, CvMat rotation_vector, CvMat translation_vector, - CvMat camera_matrix, CvMat distortion_coeffs, - CvMat image_points, CvMat dpdrot = None, - CvMat dpdt = None, CvMat dpdf = None, - CvMat dpdc = None, CvMat dpddist = None, - double aspect_ratio = 0) - """ - return _cv.cvProjectPoints2(*args) - -def cvFindExtrinsicCameraParams2(*args): - """ - cvFindExtrinsicCameraParams2(CvMat object_points, CvMat image_points, CvMat camera_matrix, - CvMat distortion_coeffs, CvMat rotation_vector, - CvMat translation_vector, int use_extrinsic_guess = 0) - """ - return _cv.cvFindExtrinsicCameraParams2(*args) - -def cvInitIntrinsicParams2D(*args): - """ - cvInitIntrinsicParams2D(CvMat object_points, CvMat image_points, CvMat npoints, - CvSize image_size, CvMat camera_matrix, - double aspect_ratio = 1.) - """ - return _cv.cvInitIntrinsicParams2D(*args) - -def cvFindChessboardCorners(*args): - """cvFindChessboardCorners(void image, CvSize pattern_size, int flags = 1+2) -> int""" - return _cv.cvFindChessboardCorners(*args) - -def cvDrawChessboardCorners(*args): - """ - cvDrawChessboardCorners(CvArr image, CvSize pattern_size, CvPoint2D32f corners, - int pattern_was_found) - """ - return _cv.cvDrawChessboardCorners(*args) - -def cvCalibrateCamera2(*args): - """ - cvCalibrateCamera2(CvMat object_points, CvMat image_points, CvMat point_counts, - CvSize image_size, CvMat camera_matrix, - CvMat distortion_coeffs, CvMat rotation_vectors = None, - CvMat translation_vectors = None, - int flags = 0) - """ - return _cv.cvCalibrateCamera2(*args) - -def cvCalibrationMatrixValues(*args): - """ - cvCalibrationMatrixValues(CvMat camera_matrix, CvSize image_size, double aperture_width = 0, - double aperture_height = 0, double fovx = None, - double fovy = None, double focal_length = None, - CvPoint2D64f principal_point = None, - double pixel_aspect_ratio = None) - """ - return _cv.cvCalibrationMatrixValues(*args) - -def cvStereoCalibrate(*args): - """ - cvStereoCalibrate(CvMat object_points, CvMat image_points1, CvMat image_points2, - CvMat npoints, CvMat camera_matrix1, - CvMat dist_coeffs1, CvMat camera_matrix2, - CvMat dist_coeffs2, CvSize image_size, CvMat R, - CvMat T, CvMat E = None, CvMat F = None, - CvTermCriteria term_crit = cvTermCriteria( 1 +2,30,1e-6), - int flags = 256) - """ - return _cv.cvStereoCalibrate(*args) - -def cvStereoRectify(*args): - """ - cvStereoRectify(CvMat camera_matrix1, CvMat camera_matrix2, CvMat dist_coeffs1, - CvMat dist_coeffs2, CvSize image_size, - CvMat R, CvMat T, CvMat R1, CvMat R2, - CvMat P1, CvMat P2, CvMat Q = None, int flags = 1024) - """ - return _cv.cvStereoRectify(*args) - -def cvStereoRectifyUncalibrated(*args): - """ - cvStereoRectifyUncalibrated(CvMat points1, CvMat points2, CvMat F, CvSize img_size, - CvMat H1, CvMat H2, double threshold = 5) -> int - """ - return _cv.cvStereoRectifyUncalibrated(*args) - -def cvCreatePOSITObject(*args): - """cvCreatePOSITObject(CvPoint3D32f points, int point_count) -> CvPOSITObject""" - return _cv.cvCreatePOSITObject(*args) - -def cvPOSIT(*args): - """ - cvPOSIT(CvPOSITObject posit_object, CvPoint2D32f image_points, - double focal_length, CvTermCriteria criteria, - CvMatr32f rotation_matrix, CvVect32f translation_vector) - """ - return _cv.cvPOSIT(*args) - -def cvReleasePOSITObject(*args): - """cvReleasePOSITObject(CvPOSITObject posit_object)""" - return _cv.cvReleasePOSITObject(*args) - -def cvRANSACUpdateNumIters(*args): - """cvRANSACUpdateNumIters(double p, double err_prob, int model_points, int max_iters) -> int""" - return _cv.cvRANSACUpdateNumIters(*args) - -def cvConvertPointsHomogeneous(*args): - """cvConvertPointsHomogeneous(CvMat src, CvMat dst)""" - return _cv.cvConvertPointsHomogeneous(*args) - -def cvFindFundamentalMat(*args): - """ - cvFindFundamentalMat(CvMat points1, CvMat points2, CvMat fundamental_matrix, - int method = 8, double param1 = 3., double param2 = 0.99, - CvMat status = None) -> int - """ - return _cv.cvFindFundamentalMat(*args) - -def cvComputeCorrespondEpilines(*args): - """ - cvComputeCorrespondEpilines(CvMat points, int which_image, CvMat fundamental_matrix, - CvMat correspondent_lines) - """ - return _cv.cvComputeCorrespondEpilines(*args) - -def cvTriangulatePoints(*args): - """ - cvTriangulatePoints(CvMat projMatr1, CvMat projMatr2, CvMat projPoints1, - CvMat projPoints2, CvMat points4D) - """ - return _cv.cvTriangulatePoints(*args) - -def cvCorrectMatches(*args): - """ - cvCorrectMatches(CvMat F, CvMat points1, CvMat points2, CvMat new_points1, - CvMat new_points2) - """ - return _cv.cvCorrectMatches(*args) -class CvStereoBMState(_object): - """Proxy of C++ CvStereoBMState class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvStereoBMState, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvStereoBMState, name) - __repr__ = _swig_repr - __swig_setmethods__["preFilterType"] = _cv.CvStereoBMState_preFilterType_set - __swig_getmethods__["preFilterType"] = _cv.CvStereoBMState_preFilterType_get - if _newclass:preFilterType = _swig_property(_cv.CvStereoBMState_preFilterType_get, _cv.CvStereoBMState_preFilterType_set) - __swig_setmethods__["preFilterSize"] = _cv.CvStereoBMState_preFilterSize_set - __swig_getmethods__["preFilterSize"] = _cv.CvStereoBMState_preFilterSize_get - if _newclass:preFilterSize = _swig_property(_cv.CvStereoBMState_preFilterSize_get, _cv.CvStereoBMState_preFilterSize_set) - __swig_setmethods__["preFilterCap"] = _cv.CvStereoBMState_preFilterCap_set - __swig_getmethods__["preFilterCap"] = _cv.CvStereoBMState_preFilterCap_get - if _newclass:preFilterCap = _swig_property(_cv.CvStereoBMState_preFilterCap_get, _cv.CvStereoBMState_preFilterCap_set) - __swig_setmethods__["SADWindowSize"] = _cv.CvStereoBMState_SADWindowSize_set - __swig_getmethods__["SADWindowSize"] = _cv.CvStereoBMState_SADWindowSize_get - if _newclass:SADWindowSize = _swig_property(_cv.CvStereoBMState_SADWindowSize_get, _cv.CvStereoBMState_SADWindowSize_set) - __swig_setmethods__["minDisparity"] = _cv.CvStereoBMState_minDisparity_set - __swig_getmethods__["minDisparity"] = _cv.CvStereoBMState_minDisparity_get - if _newclass:minDisparity = _swig_property(_cv.CvStereoBMState_minDisparity_get, _cv.CvStereoBMState_minDisparity_set) - __swig_setmethods__["numberOfDisparities"] = _cv.CvStereoBMState_numberOfDisparities_set - __swig_getmethods__["numberOfDisparities"] = _cv.CvStereoBMState_numberOfDisparities_get - if _newclass:numberOfDisparities = _swig_property(_cv.CvStereoBMState_numberOfDisparities_get, _cv.CvStereoBMState_numberOfDisparities_set) - __swig_setmethods__["textureThreshold"] = _cv.CvStereoBMState_textureThreshold_set - __swig_getmethods__["textureThreshold"] = _cv.CvStereoBMState_textureThreshold_get - if _newclass:textureThreshold = _swig_property(_cv.CvStereoBMState_textureThreshold_get, _cv.CvStereoBMState_textureThreshold_set) - __swig_setmethods__["uniquenessRatio"] = _cv.CvStereoBMState_uniquenessRatio_set - __swig_getmethods__["uniquenessRatio"] = _cv.CvStereoBMState_uniquenessRatio_get - if _newclass:uniquenessRatio = _swig_property(_cv.CvStereoBMState_uniquenessRatio_get, _cv.CvStereoBMState_uniquenessRatio_set) - __swig_setmethods__["speckleWindowSize"] = _cv.CvStereoBMState_speckleWindowSize_set - __swig_getmethods__["speckleWindowSize"] = _cv.CvStereoBMState_speckleWindowSize_get - if _newclass:speckleWindowSize = _swig_property(_cv.CvStereoBMState_speckleWindowSize_get, _cv.CvStereoBMState_speckleWindowSize_set) - __swig_setmethods__["speckleRange"] = _cv.CvStereoBMState_speckleRange_set - __swig_getmethods__["speckleRange"] = _cv.CvStereoBMState_speckleRange_get - if _newclass:speckleRange = _swig_property(_cv.CvStereoBMState_speckleRange_get, _cv.CvStereoBMState_speckleRange_set) - __swig_setmethods__["trySmallerWindows"] = _cv.CvStereoBMState_trySmallerWindows_set - __swig_getmethods__["trySmallerWindows"] = _cv.CvStereoBMState_trySmallerWindows_get - if _newclass:trySmallerWindows = _swig_property(_cv.CvStereoBMState_trySmallerWindows_get, _cv.CvStereoBMState_trySmallerWindows_set) - __swig_setmethods__["preFilteredImg0"] = _cv.CvStereoBMState_preFilteredImg0_set - __swig_getmethods__["preFilteredImg0"] = _cv.CvStereoBMState_preFilteredImg0_get - if _newclass:preFilteredImg0 = _swig_property(_cv.CvStereoBMState_preFilteredImg0_get, _cv.CvStereoBMState_preFilteredImg0_set) - __swig_setmethods__["preFilteredImg1"] = _cv.CvStereoBMState_preFilteredImg1_set - __swig_getmethods__["preFilteredImg1"] = _cv.CvStereoBMState_preFilteredImg1_get - if _newclass:preFilteredImg1 = _swig_property(_cv.CvStereoBMState_preFilteredImg1_get, _cv.CvStereoBMState_preFilteredImg1_set) - __swig_setmethods__["slidingSumBuf"] = _cv.CvStereoBMState_slidingSumBuf_set - __swig_getmethods__["slidingSumBuf"] = _cv.CvStereoBMState_slidingSumBuf_get - if _newclass:slidingSumBuf = _swig_property(_cv.CvStereoBMState_slidingSumBuf_get, _cv.CvStereoBMState_slidingSumBuf_set) - __swig_setmethods__["dbmin"] = _cv.CvStereoBMState_dbmin_set - __swig_getmethods__["dbmin"] = _cv.CvStereoBMState_dbmin_get - if _newclass:dbmin = _swig_property(_cv.CvStereoBMState_dbmin_get, _cv.CvStereoBMState_dbmin_set) - __swig_setmethods__["dbmax"] = _cv.CvStereoBMState_dbmax_set - __swig_getmethods__["dbmax"] = _cv.CvStereoBMState_dbmax_get - if _newclass:dbmax = _swig_property(_cv.CvStereoBMState_dbmax_get, _cv.CvStereoBMState_dbmax_set) - def __init__(self): - """__init__(self) -> CvStereoBMState""" - this = _cv.new_CvStereoBMState() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvStereoBMState - __del__ = lambda self : None; -CvStereoBMState_swigregister = _cv.CvStereoBMState_swigregister -CvStereoBMState_swigregister(CvStereoBMState) - - -def cvCreateStereoBMState(preset = 0, numberOfDisparities = 0): - """cvCreateStereoBMState(int preset = 0, int numberOfDisparities = 0) -> CvStereoBMState""" - return _cv.cvCreateStereoBMState(preset, numberOfDisparities) - -def cvReleaseStereoBMState(*args): - """cvReleaseStereoBMState(CvStereoBMState state)""" - return _cv.cvReleaseStereoBMState(*args) - -def cvFindStereoCorrespondenceBM(*args): - """cvFindStereoCorrespondenceBM(CvArr left, CvArr right, CvArr disparity, CvStereoBMState state)""" - return _cv.cvFindStereoCorrespondenceBM(*args) -class CvStereoGCState(_object): - """Proxy of C++ CvStereoGCState class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvStereoGCState, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvStereoGCState, name) - __repr__ = _swig_repr - __swig_setmethods__["Ithreshold"] = _cv.CvStereoGCState_Ithreshold_set - __swig_getmethods__["Ithreshold"] = _cv.CvStereoGCState_Ithreshold_get - if _newclass:Ithreshold = _swig_property(_cv.CvStereoGCState_Ithreshold_get, _cv.CvStereoGCState_Ithreshold_set) - __swig_setmethods__["interactionRadius"] = _cv.CvStereoGCState_interactionRadius_set - __swig_getmethods__["interactionRadius"] = _cv.CvStereoGCState_interactionRadius_get - if _newclass:interactionRadius = _swig_property(_cv.CvStereoGCState_interactionRadius_get, _cv.CvStereoGCState_interactionRadius_set) - __swig_setmethods__["K"] = _cv.CvStereoGCState_K_set - __swig_getmethods__["K"] = _cv.CvStereoGCState_K_get - if _newclass:K = _swig_property(_cv.CvStereoGCState_K_get, _cv.CvStereoGCState_K_set) - __swig_setmethods__["_lambda"] = _cv.CvStereoGCState__lambda_set - __swig_getmethods__["_lambda"] = _cv.CvStereoGCState__lambda_get - if _newclass:_lambda = _swig_property(_cv.CvStereoGCState__lambda_get, _cv.CvStereoGCState__lambda_set) - __swig_setmethods__["lambda1"] = _cv.CvStereoGCState_lambda1_set - __swig_getmethods__["lambda1"] = _cv.CvStereoGCState_lambda1_get - if _newclass:lambda1 = _swig_property(_cv.CvStereoGCState_lambda1_get, _cv.CvStereoGCState_lambda1_set) - __swig_setmethods__["lambda2"] = _cv.CvStereoGCState_lambda2_set - __swig_getmethods__["lambda2"] = _cv.CvStereoGCState_lambda2_get - if _newclass:lambda2 = _swig_property(_cv.CvStereoGCState_lambda2_get, _cv.CvStereoGCState_lambda2_set) - __swig_setmethods__["occlusionCost"] = _cv.CvStereoGCState_occlusionCost_set - __swig_getmethods__["occlusionCost"] = _cv.CvStereoGCState_occlusionCost_get - if _newclass:occlusionCost = _swig_property(_cv.CvStereoGCState_occlusionCost_get, _cv.CvStereoGCState_occlusionCost_set) - __swig_setmethods__["minDisparity"] = _cv.CvStereoGCState_minDisparity_set - __swig_getmethods__["minDisparity"] = _cv.CvStereoGCState_minDisparity_get - if _newclass:minDisparity = _swig_property(_cv.CvStereoGCState_minDisparity_get, _cv.CvStereoGCState_minDisparity_set) - __swig_setmethods__["numberOfDisparities"] = _cv.CvStereoGCState_numberOfDisparities_set - __swig_getmethods__["numberOfDisparities"] = _cv.CvStereoGCState_numberOfDisparities_get - if _newclass:numberOfDisparities = _swig_property(_cv.CvStereoGCState_numberOfDisparities_get, _cv.CvStereoGCState_numberOfDisparities_set) - __swig_setmethods__["maxIters"] = _cv.CvStereoGCState_maxIters_set - __swig_getmethods__["maxIters"] = _cv.CvStereoGCState_maxIters_get - if _newclass:maxIters = _swig_property(_cv.CvStereoGCState_maxIters_get, _cv.CvStereoGCState_maxIters_set) - __swig_setmethods__["left"] = _cv.CvStereoGCState_left_set - __swig_getmethods__["left"] = _cv.CvStereoGCState_left_get - if _newclass:left = _swig_property(_cv.CvStereoGCState_left_get, _cv.CvStereoGCState_left_set) - __swig_setmethods__["right"] = _cv.CvStereoGCState_right_set - __swig_getmethods__["right"] = _cv.CvStereoGCState_right_get - if _newclass:right = _swig_property(_cv.CvStereoGCState_right_get, _cv.CvStereoGCState_right_set) - __swig_setmethods__["dispLeft"] = _cv.CvStereoGCState_dispLeft_set - __swig_getmethods__["dispLeft"] = _cv.CvStereoGCState_dispLeft_get - if _newclass:dispLeft = _swig_property(_cv.CvStereoGCState_dispLeft_get, _cv.CvStereoGCState_dispLeft_set) - __swig_setmethods__["dispRight"] = _cv.CvStereoGCState_dispRight_set - __swig_getmethods__["dispRight"] = _cv.CvStereoGCState_dispRight_get - if _newclass:dispRight = _swig_property(_cv.CvStereoGCState_dispRight_get, _cv.CvStereoGCState_dispRight_set) - __swig_setmethods__["ptrLeft"] = _cv.CvStereoGCState_ptrLeft_set - __swig_getmethods__["ptrLeft"] = _cv.CvStereoGCState_ptrLeft_get - if _newclass:ptrLeft = _swig_property(_cv.CvStereoGCState_ptrLeft_get, _cv.CvStereoGCState_ptrLeft_set) - __swig_setmethods__["ptrRight"] = _cv.CvStereoGCState_ptrRight_set - __swig_getmethods__["ptrRight"] = _cv.CvStereoGCState_ptrRight_get - if _newclass:ptrRight = _swig_property(_cv.CvStereoGCState_ptrRight_get, _cv.CvStereoGCState_ptrRight_set) - __swig_setmethods__["vtxBuf"] = _cv.CvStereoGCState_vtxBuf_set - __swig_getmethods__["vtxBuf"] = _cv.CvStereoGCState_vtxBuf_get - if _newclass:vtxBuf = _swig_property(_cv.CvStereoGCState_vtxBuf_get, _cv.CvStereoGCState_vtxBuf_set) - __swig_setmethods__["edgeBuf"] = _cv.CvStereoGCState_edgeBuf_set - __swig_getmethods__["edgeBuf"] = _cv.CvStereoGCState_edgeBuf_get - if _newclass:edgeBuf = _swig_property(_cv.CvStereoGCState_edgeBuf_get, _cv.CvStereoGCState_edgeBuf_set) - def __init__(self): - """__init__(self) -> CvStereoGCState""" - this = _cv.new_CvStereoGCState() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvStereoGCState - __del__ = lambda self : None; -CvStereoGCState_swigregister = _cv.CvStereoGCState_swigregister -CvStereoGCState_swigregister(CvStereoGCState) - - -def cvCreateStereoGCState(*args): - """cvCreateStereoGCState(int numberOfDisparities, int maxIters) -> CvStereoGCState""" - return _cv.cvCreateStereoGCState(*args) - -def cvReleaseStereoGCState(*args): - """cvReleaseStereoGCState(CvStereoGCState state)""" - return _cv.cvReleaseStereoGCState(*args) - -def cvFindStereoCorrespondenceGC(*args): - """ - cvFindStereoCorrespondenceGC(CvArr left, CvArr right, CvArr disparityLeft, CvArr disparityRight, - CvStereoGCState state, int useDisparityGuess = 0) - """ - return _cv.cvFindStereoCorrespondenceGC(*args) - -def cvReprojectImageTo3D(*args): - """cvReprojectImageTo3D(CvArr disparityImage, CvArr _3dImage, CvMat Q, int handleMissingValues = 0)""" - return _cv.cvReprojectImageTo3D(*args) -class CvLSH(_object): - """Proxy of C++ CvLSH class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvLSH, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvLSH, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _cv.delete_CvLSH - __del__ = lambda self : None; -CvLSH_swigregister = _cv.CvLSH_swigregister -CvLSH_swigregister(CvLSH) - -class CvTuple_CvPoint_2(_object): - """Proxy of C++ CvTuple<(CvPoint,2)> class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTuple_CvPoint_2, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTuple_CvPoint_2, name) - __repr__ = _swig_repr - __swig_setmethods__["val"] = _cv.CvTuple_CvPoint_2_val_set - __swig_getmethods__["val"] = _cv.CvTuple_CvPoint_2_val_get - if _newclass:val = _swig_property(_cv.CvTuple_CvPoint_2_val_get, _cv.CvTuple_CvPoint_2_val_set) - def __setitem__(self, *args): - """__setitem__(self, int i, CvPoint obj)""" - return _cv.CvTuple_CvPoint_2___setitem__(self, *args) - - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvPoint""" - return _cv.CvTuple_CvPoint_2___getitem__(self, *args) - - def __init__(self): - """__init__(self) -> CvTuple_CvPoint_2""" - this = _cv.new_CvTuple_CvPoint_2() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvTuple_CvPoint_2 - __del__ = lambda self : None; -CvTuple_CvPoint_2_swigregister = _cv.CvTuple_CvPoint_2_swigregister -CvTuple_CvPoint_2_swigregister(CvTuple_CvPoint_2) - -class CvTuple_float_2(_object): - """Proxy of C++ CvTuple<(float,2)> class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTuple_float_2, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTuple_float_2, name) - __repr__ = _swig_repr - __swig_setmethods__["val"] = _cv.CvTuple_float_2_val_set - __swig_getmethods__["val"] = _cv.CvTuple_float_2_val_get - if _newclass:val = _swig_property(_cv.CvTuple_float_2_val_get, _cv.CvTuple_float_2_val_set) - def __setitem__(self, *args): - """__setitem__(self, int i, float obj)""" - return _cv.CvTuple_float_2___setitem__(self, *args) - - def __getitem__(self, *args): - """__getitem__(self, int i) -> float""" - return _cv.CvTuple_float_2___getitem__(self, *args) - - def __init__(self): - """__init__(self) -> CvTuple_float_2""" - this = _cv.new_CvTuple_float_2() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvTuple_float_2 - __del__ = lambda self : None; -CvTuple_float_2_swigregister = _cv.CvTuple_float_2_swigregister -CvTuple_float_2_swigregister(CvTuple_float_2) - -class CvTuple_float_3(_object): - """Proxy of C++ CvTuple<(float,3)> class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTuple_float_3, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTuple_float_3, name) - __repr__ = _swig_repr - __swig_setmethods__["val"] = _cv.CvTuple_float_3_val_set - __swig_getmethods__["val"] = _cv.CvTuple_float_3_val_get - if _newclass:val = _swig_property(_cv.CvTuple_float_3_val_get, _cv.CvTuple_float_3_val_set) - def __setitem__(self, *args): - """__setitem__(self, int i, float obj)""" - return _cv.CvTuple_float_3___setitem__(self, *args) - - def __getitem__(self, *args): - """__getitem__(self, int i) -> float""" - return _cv.CvTuple_float_3___getitem__(self, *args) - - def __init__(self): - """__init__(self) -> CvTuple_float_3""" - this = _cv.new_CvTuple_float_3() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvTuple_float_3 - __del__ = lambda self : None; -CvTuple_float_3_swigregister = _cv.CvTuple_float_3_swigregister -CvTuple_float_3_swigregister(CvTuple_float_3) - -class CvSeq_CvPoint(CvSeq): - """Proxy of C++ CvTypedSeq<(CvPoint)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvPoint, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvPoint, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvPoint""" - return _cv.CvSeq_CvPoint_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvPoint""" - return _cv.CvSeq_CvPoint___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvPoint obj)""" - return _cv.CvSeq_CvPoint___setitem__(self, *args) - - def append(self, *args): - """append(self, CvPoint obj)""" - return _cv.CvSeq_CvPoint_append(self, *args) - - def pop(self): - """pop(self) -> CvPoint""" - return _cv.CvSeq_CvPoint_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvPoint""" - this = _cv.new_CvSeq_CvPoint() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvPoint - __del__ = lambda self : None; -CvSeq_CvPoint_swigregister = _cv.CvSeq_CvPoint_swigregister -CvSeq_CvPoint_swigregister(CvSeq_CvPoint) - -def CvSeq_CvPoint_cast(*args): - """CvSeq_CvPoint_cast(CvSeq seq) -> CvSeq_CvPoint""" - return _cv.CvSeq_CvPoint_cast(*args) - -class CvSeq_CvPoint2D32f(CvSeq): - """Proxy of C++ CvTypedSeq<(CvPoint2D32f)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvPoint2D32f, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvPoint2D32f, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvPoint2D32f""" - return _cv.CvSeq_CvPoint2D32f_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvPoint2D32f""" - return _cv.CvSeq_CvPoint2D32f___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvPoint2D32f obj)""" - return _cv.CvSeq_CvPoint2D32f___setitem__(self, *args) - - def append(self, *args): - """append(self, CvPoint2D32f obj)""" - return _cv.CvSeq_CvPoint2D32f_append(self, *args) - - def pop(self): - """pop(self) -> CvPoint2D32f""" - return _cv.CvSeq_CvPoint2D32f_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvPoint2D32f""" - this = _cv.new_CvSeq_CvPoint2D32f() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvPoint2D32f - __del__ = lambda self : None; -CvSeq_CvPoint2D32f_swigregister = _cv.CvSeq_CvPoint2D32f_swigregister -CvSeq_CvPoint2D32f_swigregister(CvSeq_CvPoint2D32f) - -def CvSeq_CvPoint2D32f_cast(*args): - """CvSeq_CvPoint2D32f_cast(CvSeq seq) -> CvSeq_CvPoint2D32f""" - return _cv.CvSeq_CvPoint2D32f_cast(*args) - -class CvSeq_CvRect(CvSeq): - """Proxy of C++ CvTypedSeq<(CvRect)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvRect, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvRect, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvRect""" - return _cv.CvSeq_CvRect_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvRect""" - return _cv.CvSeq_CvRect___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvRect obj)""" - return _cv.CvSeq_CvRect___setitem__(self, *args) - - def append(self, *args): - """append(self, CvRect obj)""" - return _cv.CvSeq_CvRect_append(self, *args) - - def pop(self): - """pop(self) -> CvRect""" - return _cv.CvSeq_CvRect_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvRect""" - this = _cv.new_CvSeq_CvRect() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvRect - __del__ = lambda self : None; -CvSeq_CvRect_swigregister = _cv.CvSeq_CvRect_swigregister -CvSeq_CvRect_swigregister(CvSeq_CvRect) - -def CvSeq_CvRect_cast(*args): - """CvSeq_CvRect_cast(CvSeq seq) -> CvSeq_CvRect""" - return _cv.CvSeq_CvRect_cast(*args) - -class CvSeq_CvSeq(CvSeq): - """Proxy of C++ CvTypedSeq<(p.CvSeq)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvSeq, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvSeq, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvSeq""" - return _cv.CvSeq_CvSeq_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvSeq""" - return _cv.CvSeq_CvSeq___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvSeq obj)""" - return _cv.CvSeq_CvSeq___setitem__(self, *args) - - def append(self, *args): - """append(self, CvSeq obj)""" - return _cv.CvSeq_CvSeq_append(self, *args) - - def pop(self): - """pop(self) -> CvSeq""" - return _cv.CvSeq_CvSeq_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvSeq""" - this = _cv.new_CvSeq_CvSeq() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvSeq - __del__ = lambda self : None; -CvSeq_CvSeq_swigregister = _cv.CvSeq_CvSeq_swigregister -CvSeq_CvSeq_swigregister(CvSeq_CvSeq) - -def CvSeq_CvSeq_cast(*args): - """CvSeq_CvSeq_cast(CvSeq seq) -> CvSeq_CvSeq""" - return _cv.CvSeq_CvSeq_cast(*args) - -class CvSeq_CvQuadEdge2D(CvSeq): - """Proxy of C++ CvTypedSeq<(CvQuadEdge2D)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvQuadEdge2D, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvQuadEdge2D, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvQuadEdge2D""" - return _cv.CvSeq_CvQuadEdge2D_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvQuadEdge2D""" - return _cv.CvSeq_CvQuadEdge2D___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvQuadEdge2D obj)""" - return _cv.CvSeq_CvQuadEdge2D___setitem__(self, *args) - - def append(self, *args): - """append(self, CvQuadEdge2D obj)""" - return _cv.CvSeq_CvQuadEdge2D_append(self, *args) - - def pop(self): - """pop(self) -> CvQuadEdge2D""" - return _cv.CvSeq_CvQuadEdge2D_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvQuadEdge2D""" - this = _cv.new_CvSeq_CvQuadEdge2D() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvQuadEdge2D - __del__ = lambda self : None; -CvSeq_CvQuadEdge2D_swigregister = _cv.CvSeq_CvQuadEdge2D_swigregister -CvSeq_CvQuadEdge2D_swigregister(CvSeq_CvQuadEdge2D) - -def CvSeq_CvQuadEdge2D_cast(*args): - """CvSeq_CvQuadEdge2D_cast(CvSeq seq) -> CvSeq_CvQuadEdge2D""" - return _cv.CvSeq_CvQuadEdge2D_cast(*args) - -class CvSeq_CvConnectedComp(CvSeq): - """Proxy of C++ CvTypedSeq<(CvConnectedComp)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvConnectedComp, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvConnectedComp, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvConnectedComp""" - return _cv.CvSeq_CvConnectedComp_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvConnectedComp""" - return _cv.CvSeq_CvConnectedComp___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvConnectedComp obj)""" - return _cv.CvSeq_CvConnectedComp___setitem__(self, *args) - - def append(self, *args): - """append(self, CvConnectedComp obj)""" - return _cv.CvSeq_CvConnectedComp_append(self, *args) - - def pop(self): - """pop(self) -> CvConnectedComp""" - return _cv.CvSeq_CvConnectedComp_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvConnectedComp""" - this = _cv.new_CvSeq_CvConnectedComp() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvConnectedComp - __del__ = lambda self : None; -CvSeq_CvConnectedComp_swigregister = _cv.CvSeq_CvConnectedComp_swigregister -CvSeq_CvConnectedComp_swigregister(CvSeq_CvConnectedComp) - -def CvSeq_CvConnectedComp_cast(*args): - """CvSeq_CvConnectedComp_cast(CvSeq seq) -> CvSeq_CvConnectedComp""" - return _cv.CvSeq_CvConnectedComp_cast(*args) - -class CvSeq_CvPoint_2(CvSeq): - """Proxy of C++ CvTypedSeq<(CvTuple<(CvPoint,2)>)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_CvPoint_2, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_CvPoint_2, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_CvPoint_2""" - return _cv.CvSeq_CvPoint_2_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvTuple_CvPoint_2""" - return _cv.CvSeq_CvPoint_2___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvTuple_CvPoint_2 obj)""" - return _cv.CvSeq_CvPoint_2___setitem__(self, *args) - - def append(self, *args): - """append(self, CvTuple_CvPoint_2 obj)""" - return _cv.CvSeq_CvPoint_2_append(self, *args) - - def pop(self): - """pop(self) -> CvTuple_CvPoint_2""" - return _cv.CvSeq_CvPoint_2_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_CvPoint_2""" - this = _cv.new_CvSeq_CvPoint_2() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_CvPoint_2 - __del__ = lambda self : None; -CvSeq_CvPoint_2_swigregister = _cv.CvSeq_CvPoint_2_swigregister -CvSeq_CvPoint_2_swigregister(CvSeq_CvPoint_2) - -def CvSeq_CvPoint_2_cast(*args): - """CvSeq_CvPoint_2_cast(CvSeq seq) -> CvSeq_CvPoint_2""" - return _cv.CvSeq_CvPoint_2_cast(*args) - -class CvSeq_float_2(CvSeq): - """Proxy of C++ CvTypedSeq<(CvTuple<(float,2)>)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_float_2, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_float_2, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_float_2""" - return _cv.CvSeq_float_2_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvTuple_float_2""" - return _cv.CvSeq_float_2___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvTuple_float_2 obj)""" - return _cv.CvSeq_float_2___setitem__(self, *args) - - def append(self, *args): - """append(self, CvTuple_float_2 obj)""" - return _cv.CvSeq_float_2_append(self, *args) - - def pop(self): - """pop(self) -> CvTuple_float_2""" - return _cv.CvSeq_float_2_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_float_2""" - this = _cv.new_CvSeq_float_2() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_float_2 - __del__ = lambda self : None; -CvSeq_float_2_swigregister = _cv.CvSeq_float_2_swigregister -CvSeq_float_2_swigregister(CvSeq_float_2) - -def CvSeq_float_2_cast(*args): - """CvSeq_float_2_cast(CvSeq seq) -> CvSeq_float_2""" - return _cv.CvSeq_float_2_cast(*args) - -class CvSeq_float_3(CvSeq): - """Proxy of C++ CvTypedSeq<(CvTuple<(float,3)>)> class""" - __swig_setmethods__ = {} - for _s in [CvSeq]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSeq_float_3, name, value) - __swig_getmethods__ = {} - for _s in [CvSeq]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSeq_float_3, name) - __repr__ = _swig_repr - def cast(*args): - """cast(CvSeq seq) -> CvSeq_float_3""" - return _cv.CvSeq_float_3_cast(*args) - - if _newclass:cast = staticmethod(cast) - __swig_getmethods__["cast"] = lambda x: cast - def __getitem__(self, *args): - """__getitem__(self, int i) -> CvTuple_float_3""" - return _cv.CvSeq_float_3___getitem__(self, *args) - - def __setitem__(self, *args): - """__setitem__(self, int i, CvTuple_float_3 obj)""" - return _cv.CvSeq_float_3___setitem__(self, *args) - - def append(self, *args): - """append(self, CvTuple_float_3 obj)""" - return _cv.CvSeq_float_3_append(self, *args) - - def pop(self): - """pop(self) -> CvTuple_float_3""" - return _cv.CvSeq_float_3_pop(self) - - def __init__(self): - """__init__(self) -> CvSeq_float_3""" - this = _cv.new_CvSeq_float_3() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _cv.delete_CvSeq_float_3 - __del__ = lambda self : None; -CvSeq_float_3_swigregister = _cv.CvSeq_float_3_swigregister -CvSeq_float_3_swigregister(CvSeq_float_3) - -def CvSeq_float_3_cast(*args): - """CvSeq_float_3_cast(CvSeq seq) -> CvSeq_float_3""" - return _cv.CvSeq_float_3_cast(*args) - - -def SendErrorToPython(*args): - """ - SendErrorToPython(int status, char func_name, char err_msg, char file_name, - int line, void arg5) -> int - """ - return _cv.SendErrorToPython(*args) - -def function_ptr_generator(): - """function_ptr_generator() -> CvErrorCallback""" - return _cv.function_ptr_generator() - -def void_ptr_generator(): - """void_ptr_generator() -> void""" - return _cv.void_ptr_generator() - -def void_ptrptr_generator(): - """void_ptrptr_generator() -> void""" - return _cv.void_ptrptr_generator() -IPL_ALIGN_DWORD=IPL_ALIGN_4BYTES -IPL_ALIGN_QWORD=IPL_ALIGN_8BYTES -CV_MAKE_TYPE=CV_MAKETYPE -CV_IS_CONT_MAT=CV_IS_MAT_CONT -CV_HIST_TREE=CV_HIST_SPARSE -CV_TERMCRIT_NUMBER=CV_TERMCRIT_ITER -CV_SEQ_ELTYPE_PTR=CV_USRTYPE1 -CV_GRAPH=CV_SEQ_KIND_GRAPH -CV_SEQ_CONTOUR=CV_SEQ_POLYGON -CV_STORAGE_WRITE_TEXT=CV_STORAGE_WRITE -CV_STORAGE_WRITE_BINARY=CV_STORAGE_WRITE -CV_NODE_INTEGER=CV_NODE_INT -CV_NODE_FLOAT=CV_NODE_REAL -CV_NODE_STRING=CV_NODE_STR -cvGetSubArr=cvGetSubRect -cvZero=cvSetZero -cvCvtScale=cvConvertScale -cvScale=cvConvertScale -cvCvtScaleAbs=cvConvertScaleAbs -cvCheckArray=cvCheckArr -cvMatMulAddEx=cvGEMM -cvMatMulAddS=cvTransform -cvT=cvTranspose -cvMirror=cvFlip -cvInv=cvInvert -cvMahalonobis=cvMahalanobis -CV_DXT_INVERSE_SCALE=CV_DXT_INV_SCALE -cvFFT=cvDFT -cvGraphFindEdge=cvFindGraphEdge -cvGraphFindEdgeByPtr=cvFindGraphEdgeByPtr -cvDrawRect=cvRectangle -cvDrawLine=cvLine -cvDrawCircle=cvCircle -cvDrawEllipse=cvEllipse -cvDrawPolyLine=cvPolyLine -CV_FONT_VECTOR0=CV_FONT_HERSHEY_SIMPLEX -CV_RGB2RGBA=CV_BGR2BGRA -CV_RGBA2RGB=CV_BGRA2BGR -CV_RGB2BGRA=CV_BGR2RGBA -CV_BGRA2RGB=CV_RGBA2BGR -CV_RGB2BGR=CV_BGR2RGB -CV_RGBA2BGRA=CV_BGRA2RGBA -CV_GRAY2RGB=CV_GRAY2BGR -CV_GRAY2RGBA=CV_GRAY2BGRA -CV_BayerBG2RGB=CV_BayerRG2BGR -CV_BayerGB2RGB=CV_BayerGR2BGR -CV_BayerRG2RGB=CV_BayerBG2BGR -CV_BayerGR2RGB=CV_BayerGB2BGR -CV_FM_LMEDS_ONLY=CV_LMEDS -CV_FM_RANSAC_ONLY=CV_RANSAC -CV_FM_LMEDS=CV_LMEDS -CV_FM_RANSAC=CV_RANSAC - -cvCalcBackProject = cvCalcArrBackProject; - -cvCalcBackProjectPatch = cvCalcArrBackProjectPatch; - -cvCalcImageHist = cvCalcArrHist; - -cvCalcHist = cvCalcArrHist; - -__doc__ = """ -OpenCV is the Intel Open CV library, an open source effort to provide -computer vision algorithms for standard PC hardware. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. -""" - -# this tells OpenCV not to call exit() on errors but throw a python exception instead -cvRedirectError(function_ptr_generator(), void_ptr_generator(), void_ptrptr_generator()) - - - - diff --git a/interfaces/swig/python/cvaliases.i b/interfaces/swig/python/cvaliases.i deleted file mode 100644 index 19eeb113b..000000000 --- a/interfaces/swig/python/cvaliases.i +++ /dev/null @@ -1,61 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -/*M// -// This file contains custom python-based aliases for some methods where -// an autogenerated wrapper was unusable or missing. -//M*/ - -// This macro removes the wrapper for the function from_name, and creates -// an alias to to_name, so calling from_name() will invoke to_name() -%define %myalias(from_name, to_name) -%ignore from_name; -%pythoncode%{ -from_name = to_name; -%} -%enddef - -// Map functions using IplImage ** argument to CvArr ** function instead -%myalias(cvCalcBackProject, cvCalcArrBackProject); -%myalias(cvCalcBackProjectPatch, cvCalcArrBackProjectPatch); -%myalias(cvCalcImageHist, cvCalcArrHist); -%myalias(cvCalcHist, cvCalcArrHist); - diff --git a/interfaces/swig/python/cvaliases_autogen.i b/interfaces/swig/python/cvaliases_autogen.i deleted file mode 100644 index 4f7b76402..000000000 --- a/interfaces/swig/python/cvaliases_autogen.i +++ /dev/null @@ -1,56 +0,0 @@ -/** This file was automatically generated using util/extract_aliases.py script */ -%module cv -%pythoncode %{ -IPL_ALIGN_DWORD=IPL_ALIGN_4BYTES -IPL_ALIGN_QWORD=IPL_ALIGN_8BYTES -CV_MAKE_TYPE=CV_MAKETYPE -CV_IS_CONT_MAT=CV_IS_MAT_CONT -CV_HIST_TREE=CV_HIST_SPARSE -CV_TERMCRIT_NUMBER=CV_TERMCRIT_ITER -CV_SEQ_ELTYPE_PTR=CV_USRTYPE1 -CV_GRAPH=CV_SEQ_KIND_GRAPH -CV_SEQ_CONTOUR=CV_SEQ_POLYGON -CV_STORAGE_WRITE_TEXT=CV_STORAGE_WRITE -CV_STORAGE_WRITE_BINARY=CV_STORAGE_WRITE -CV_NODE_INTEGER=CV_NODE_INT -CV_NODE_FLOAT=CV_NODE_REAL -CV_NODE_STRING=CV_NODE_STR -cvGetSubArr=cvGetSubRect -cvZero=cvSetZero -cvCvtScale=cvConvertScale -cvScale=cvConvertScale -cvCvtScaleAbs=cvConvertScaleAbs -cvCheckArray=cvCheckArr -cvMatMulAddEx=cvGEMM -cvMatMulAddS=cvTransform -cvT=cvTranspose -cvMirror=cvFlip -cvInv=cvInvert -cvMahalonobis=cvMahalanobis -CV_DXT_INVERSE_SCALE=CV_DXT_INV_SCALE -cvFFT=cvDFT -cvGraphFindEdge=cvFindGraphEdge -cvGraphFindEdgeByPtr=cvFindGraphEdgeByPtr -cvDrawRect=cvRectangle -cvDrawLine=cvLine -cvDrawCircle=cvCircle -cvDrawEllipse=cvEllipse -cvDrawPolyLine=cvPolyLine -CV_FONT_VECTOR0=CV_FONT_HERSHEY_SIMPLEX -CV_RGB2RGBA=CV_BGR2BGRA -CV_RGBA2RGB=CV_BGRA2BGR -CV_RGB2BGRA=CV_BGR2RGBA -CV_BGRA2RGB=CV_RGBA2BGR -CV_RGB2BGR=CV_BGR2RGB -CV_RGBA2BGRA=CV_BGRA2RGBA -CV_GRAY2RGB=CV_GRAY2BGR -CV_GRAY2RGBA=CV_GRAY2BGRA -CV_BayerBG2RGB=CV_BayerRG2BGR -CV_BayerGB2RGB=CV_BayerGR2BGR -CV_BayerRG2RGB=CV_BayerBG2BGR -CV_BayerGR2RGB=CV_BayerGB2BGR -CV_FM_LMEDS_ONLY=CV_LMEDS -CV_FM_RANSAC_ONLY=CV_RANSAC -CV_FM_LMEDS=CV_LMEDS -CV_FM_RANSAC=CV_RANSAC -%} diff --git a/interfaces/swig/python/cvarr.i b/interfaces/swig/python/cvarr.i deleted file mode 100644 index 20bfd5d39..000000000 --- a/interfaces/swig/python/cvarr.i +++ /dev/null @@ -1,534 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2006-02-17 Roman Stanchak -// 2006-07-19 Moved most operators to general/cvarr_operators.i for use with other languages -// 2009-01-07 Added numpy array interface, Mark Asbach - -/*M////////////////////////////////////////////////////////////////////////////////////////// -// Macros for extending CvMat and IplImage -- primarily for operator overloading -//////////////////////////////////////////////////////////////////////////////////////////M*/ - -// Macro to define python function of form B = A.f(c) -// where A is a CvArr type, c and B are arbitrary types -%define %wrap_cvGeneric_CvArr(cname, rettype, pyfunc, argtype, cvfunc, newobjcall) -%newobject cname::pyfunc(argtype arg); -%extend cname { - rettype pyfunc(argtype arg){ - rettype retarg = newobjcall; - cvfunc; - return retarg; - } -} -%enddef - -// Macro to define python function of the form B = A.f(c) -// where A and B are both CvArr of same size and type -%define %wrap_cvArr_binaryop(pyfunc, argtype, cvfunc) -%wrap_cvGeneric_CvArr(CvMat, CvMat *, pyfunc, argtype, cvfunc, - cvCreateMat(self->rows, self->cols, self->type)); -%wrap_cvGeneric_CvArr(IplImage, IplImage *, pyfunc, argtype, cvfunc, - cvCreateImage(cvGetSize(self), self->depth, self->nChannels)); -%enddef - -// Macro to define python function of the form A = A.f(c) -// where f modifies A inplace -// use for +=, etc -%define %wrap_cvGeneric_InPlace(cname, rettype, pyfunc, argtype, cvfunc) -%wrap_cvGeneric_CvArr(cname, rettype, pyfunc, argtype, cvfunc, self); -%enddef - -/*M////////////////////////////////////////////////////////////////////////////////////////// -// Macros to map operators to specific OpenCV functions -//////////////////////////////////////////////////////////////////////////////////////////M*/ - -// map any OpenCV function of form cvFunc(src1, src2, dst) -%define %wrap_cvArith(pyfunc, cvfunc) -%wrap_cvArr_binaryop(pyfunc, CvArr *, cvfunc(self, arg, retarg)); -%enddef - -// map any OpenCV function of form cvFunc(src1, value, dst) -%define %wrap_cvArithS(pyfunc, cvfuncS) -%wrap_cvArr_binaryop(pyfunc, CvScalar, cvfuncS(self, arg, retarg)); -%wrap_cvArr_binaryop(pyfunc, double, cvfuncS(self, cvScalar(arg), retarg)); -%enddef - -// same as wrap_cvArith -%define %wrap_cvLogic(pyfunc, cvfunc) -%wrap_cvArr_binaryop(pyfunc, CvArr *, cvfunc(self, arg, retarg)) -%enddef - -// same as wrap_cvArithS -%define %wrap_cvLogicS(pyfunc, cvfuncS) -%wrap_cvArr_binaryop(pyfunc, CvScalar, cvfuncS(self, arg, retarg)); -%wrap_cvArr_binaryop(pyfunc, double, cvfuncS(self, cvScalar(arg), retarg)); -%enddef - -// Macro to map logical operations to cvCmp -%define %wrap_cvCmp(pyfunc, cmp_op) -%wrap_cvGeneric_CvArr(CvMat, CvMat *, pyfunc, CvMat *, - cvCmp(self, arg, retarg, cmp_op), - cvCreateMat(self->rows, self->cols, CV_8U)); -%wrap_cvGeneric_CvArr(IplImage, IplImage *, pyfunc, IplImage *, - cvCmp(self, arg, retarg, cmp_op), - cvCreateImage(cvGetSize(self), 8, 1)); -%enddef - -%define %wrap_cvCmpS(pyfunc, cmp_op) -%wrap_cvGeneric_CvArr(CvMat, CvMat *, pyfunc, double, - cvCmpS(self, arg, retarg, cmp_op), - cvCreateMat(self->rows, self->cols, CV_8U)); -%wrap_cvGeneric_CvArr(IplImage, IplImage *, pyfunc, double, - cvCmpS(self, arg, retarg, cmp_op), - cvCreateImage(cvGetSize(self), 8, 1)); -%enddef - -// special case for cvScale, /, * -%define %wrap_cvScale(pyfunc, scale) -%wrap_cvGeneric_CvArr(CvMat, CvMat *, pyfunc, double, - cvScale(self, retarg, scale), - cvCreateMat(self->rows, self->cols, self->type)); -%wrap_cvGeneric_CvArr(IplImage, IplImage *, pyfunc, double, - cvScale(self, retarg, scale), - cvCreateImage(cvGetSize(self), self->depth, self->nChannels)); -%enddef - -/*M////////////////////////////////////////////////////////////////////////////////////////// -// Actual Operator Declarations -//////////////////////////////////////////////////////////////////////////////////////////M*/ - -// Arithmetic operators -%wrap_cvArith(__radd__, cvAdd); - -// special case for reverse operations -%wrap_cvArr_binaryop(__rsub__, CvArr *, cvSub(arg, self, retarg)); -%wrap_cvArr_binaryop(__rdiv__, CvArr *, cvDiv(arg, self, retarg)); -%wrap_cvArr_binaryop(__rmul__, CvArr *, cvMul(arg, self, retarg)); - -%wrap_cvArithS(__radd__, cvAddS); -%wrap_cvArithS(__rsub__, cvSubRS); - -%wrap_cvScale(__rmul__, arg); - -%wrap_cvLogicS(__ror__, cvOrS) -%wrap_cvLogicS(__rand__, cvAndS) -%wrap_cvLogicS(__rxor__, cvXorS) - -%wrap_cvCmpS(__req__, CV_CMP_EQ); -%wrap_cvCmpS(__rgt__, CV_CMP_GT); -%wrap_cvCmpS(__rge__, CV_CMP_GE); -%wrap_cvCmpS(__rlt__, CV_CMP_LT); -%wrap_cvCmpS(__rle__, CV_CMP_LE); -%wrap_cvCmpS(__rne__, CV_CMP_NE); - -// special case for scalar-array division -%wrap_cvGeneric_CvArr(CvMat, CvMat *, __rdiv__, double, - cvDiv(NULL, self, retarg, arg), - cvCreateMat(self->rows, self->cols, self->type)); - -// misc operators for python -%wrap_cvArr_binaryop(__pow__, double, cvPow(self, retarg, arg)) - -// TODO -- other Python operators listed below and at: -// http://docs.python.org/ref/numeric-types.html - -// __abs__ -- cvAbs -// __nonzero__ -// __hash__ ?? -// __repr__ -- full string representation -// __str__ -- compact representation -// __call__ -- ?? -// __len__ -- number of rows? or elements? -// __iter__ -- ?? -// __contains__ -- cvCmpS, cvMax ? -// __floordiv__ ?? -// __mul__ -- cvGEMM -// __lshift__ -- ?? -// __rshift__ -- ?? -// __pow__ -- cvPow - -// Called to implement the unary arithmetic operations (-, +, abs() and ~). -//__neg__( self) -//__pos__( self) -//__abs__( self) -//__invert__( self) - -// Called to implement the built-in functions complex(), int(), long(), and float(). Should return a value of the appropriate type. Can I abuse this to return an array of the correct type??? scipy only allows return of length 1 arrays. -// __complex__( self ) -// __int__( self ) -// __long__( self ) -// __float__( self ) - -/*M////////////////////////////////////////////////////////////////////////////////////////// -// Slice access and assignment for CvArr types -//////////////////////////////////////////////////////////////////////////////////////////M*/ - -// TODO: CvMatND - -%newobject CvMat::__getitem__(PyObject * object); -%newobject _IplImage::__getitem__(PyObject * object); - -%header %{ -int checkSliceBounds(const CvRect & rect, int w, int h){ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - if(rect.width<=0 || rect.height<=0 || - rect.width>w || rect.height>h || - rect.x<0 || rect.y<0 || - rect.x>= w || rect.y >=h){ - char errstr[256]; - - // previous function already set error string - if(rect.width==0 && rect.height==0 && rect.x==0 && rect.y==0) return -1; - - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - PyErr_SetString(PyExc_IndexError, errstr); - //PyErr_SetString(PyExc_ValueError, errstr); - return -1; - } - return 0; -} -%} -// Macro to check bounds of slice and throw error if outside -%define CHECK_SLICE_BOUNDS(rect,w,h,retval) - if(CheckSliceBounds(&rect,w,h)==-1){ return retval; } else{} -%enddef - -// slice access and assignment for CvMat -%extend CvMat -{ - char * __str__(){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - } - - - // scalar assignment - void __setitem__(PyObject * object, double val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } - void __setitem__(PyObject * object, CvPoint val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __setitem__(PyObject * object, CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __setitem__(PyObject * object, CvScalar val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvSet(&tmp, val); - } - - // array slice assignment - void __setitem__(PyObject * object, CvArr * arr){ - CvMat tmp, src_stub, *src; - CvRect subrect = PySlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, ); - cvGetSubRect(self, &tmp, subrect); - - // Reshape source array to fit destination - // This will be used a lot for small arrays b/c - // PyObject_to_CvArr tries to compress a 2-D python - // array with 1-4 columns into a multichannel vector - src=cvReshape(arr, &src_stub, CV_MAT_CN(tmp.type), tmp.rows); - - cvConvert(src, &tmp); - } - - // slice access - PyObject * __getitem__(PyObject * object){ - CvMat * mat; - CvRect subrect = PySlice_to_CvRect( self, object ); - CHECK_SLICE_BOUNDS( subrect, self->cols, self->rows, NULL ); - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, $descriptor(CvScalar *), 1 ); - } - switch(CV_MAT_DEPTH(type)){ - case CV_8U: - return PyLong_FromUnsignedLong( CV_MAT_ELEM(*self, uchar, subrect.y, subrect.x ) ); - case CV_8S: - return PyLong_FromLong( CV_MAT_ELEM(*self, char, subrect.y, subrect.x ) ); - case CV_16U: - return PyLong_FromUnsignedLong( CV_MAT_ELEM(*self, ushort, subrect.y, subrect.x ) ); - case CV_16S: - return PyLong_FromLong( CV_MAT_ELEM(*self, short, subrect.y, subrect.x ) ); - case CV_32S: - return PyLong_FromLong( CV_MAT_ELEM(*self, int, subrect.y, subrect.x ) ); - case CV_32F: - return PyFloat_FromDouble( CV_MAT_ELEM(*self, float, subrect.y, subrect.x) ); - case CV_64F: - return PyFloat_FromDouble( CV_MAT_ELEM(*self, double, subrect.y, subrect.x) ); - } - } - mat = (CvMat *) cvAlloc(sizeof(CvMat)); - cvGetSubRect(self, mat, subrect); - - // cvGetSubRect doesn't do this since it assumes mat lives on the stack - mat->hdr_refcount = self->hdr_refcount; - mat->refcount = self->refcount; - cvIncRefData(mat); - - return SWIG_NewPointerObj( mat, $descriptor(CvMat *), 1 ); - } - - // ~ operator -- swig doesn't generate this from the C++ equivalent - CvMat * __invert__(){ - CvMat * res = cvCreateMat(self->rows, self->cols, self->type); - cvNot( self, res ); - return res; - } - -%pythoncode %{ -def __iter__(self): - """ - generator function iterating through rows in matrix or elements in vector - """ - if self.rows==1: - return self.colrange() - return self.rowrange() - -def rowrange(self): - """ - generator function iterating along rows in matrix - """ - for i in range(self.rows): - yield self[i] - -def colrange(self): - """ - generator function iterating along columns in matrix - """ - for i in range(self.cols): - yield self[:,i] - -# if arg is None, python still calls our operator overloads -# but we want -# if mat != None -# if mat == None -# to do the right thing -- so redefine __ne__ and __eq__ - -def __eq__(self, arg): - """ - __eq__(self, None) - __eq__(self, CvArr src) - __eq__(self, double val) - """ - - if not arg: - return False - return _cv.CvMat___eq__(self, arg) -def __ne__(self, arg): - """ - __ne__(self, None) - __ne__(self, CvArr src) - __ne__(self, double val) - """ - - if not arg: - return True - return _cv.CvMat___ne__(self, arg) - -def __get_array_interface__ (self): - """Compose numpy array interface - - Via the numpy array interface, OpenCV data structures can be directly passed to numpy - methods without copying / converting. This tremendously speeds up mixing code from - OpenCV and numpy. - - See: http://numpy.scipy.org/array_interface.shtml - - @author Mark Asbach - @date 2009-01-07 - """ - - if self.depth == IPL_DEPTH_8U: - typestr = '|u1' - bytes_per_pixel = 1 - elif self.depth == IPL_DEPTH_8S: - typestr = '|i1' - bytes_per_pixel = 1 - elif self.depth == IPL_DEPTH_16U: - typestr = '|u2' - bytes_per_pixel = 2 - elif self.depth == IPL_DEPTH_16S: - typestr = '|i2' - bytes_per_pixel = 2 - elif self.depth == IPL_DEPTH_32S: - typestr = '|i4' - bytes_per_pixel = 4 - elif self.depth == IPL_DEPTH_32F: - typestr = '|f4' - bytes_per_pixel = 4 - elif self.depth == IPL_DEPTH_64F: - typestr = '|f8' - bytes_per_pixel = 8 - else: - raise TypeError("unknown resp. unhandled OpenCV image/matrix format") - - if self.nChannels == 1: - # monochrome image, matrix with a single channel - return {'shape': (self.height, self.width), - 'typestr': typestr, - 'version': 3, - - 'data': (int (self.data.ptr), False), - 'strides': (int (self.widthStep), int (bytes_per_pixel))} - else: - # color image, image with alpha, matrix with multiple channels - return {'shape': (self.height, self.width, self.nChannels), - 'typestr': typestr, - 'version': 3, - - 'data': (int (self.data.ptr), False), - 'strides': (int (self.widthStep), int (self.nChannels * bytes_per_pixel), int (bytes_per_pixel))} - -__array_interface__ = property (__get_array_interface__, doc = "numpy array interface description") - -%} - -} //extend CvMat - -// slice access and assignment for IplImage -%extend _IplImage -{ - char * __str__(){ - static char str[8]; - cvArrPrint( self ); - str[0]=0; - return str; - } - - // scalar assignment - void __setitem__(PyObject * object, double val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalarAll(val)); - } - void __setitem__(PyObject * object, CvPoint val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __setitem__(PyObject * object, CvPoint2D32f val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, cvScalar(val.x, val.y)); - } - void __setitem__(PyObject * object, CvScalar val){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvSet(&tmp, val); - } - - // array slice assignment - void __setitem__(PyObject * object, CvArr * arr){ - CvMat tmp; - CvRect subrect = PySlice_to_CvRect( self, object ); - cvGetSubRect(self, &tmp, subrect); - cvConvert(arr, &tmp); - } - - // slice access - PyObject * __getitem__(PyObject * object){ - CvMat mat; - IplImage * im; - CvRect subrect = PySlice_to_CvRect( self, object ); - - // return scalar if single element - if(subrect.width==1 && subrect.height==1){ - CvScalar * s; - int type = cvGetElemType( self ); - if(CV_MAT_CN(type) > 1){ - s = new CvScalar; - *s = cvGet2D( self, subrect.y, subrect.x ); - return SWIG_NewPointerObj( s, $descriptor(CvScalar *), 1 ); - } - switch(CV_MAT_DEPTH(type)){ - case CV_8U: - return PyLong_FromUnsignedLong( CV_IMAGE_ELEM(self, uchar, subrect.y, subrect.x ) ); - case CV_8S: - return PyLong_FromLong( CV_IMAGE_ELEM(self, char, subrect.y, subrect.x ) ); - case CV_16U: - return PyLong_FromUnsignedLong( CV_IMAGE_ELEM(self, ushort, subrect.y, subrect.x ) ); - case CV_16S: - return PyLong_FromLong( CV_IMAGE_ELEM(self, short, subrect.y, subrect.x ) ); - case CV_32S: - return PyLong_FromLong( CV_IMAGE_ELEM(self, int, subrect.y, subrect.x ) ); - case CV_32F: - return PyFloat_FromDouble( CV_IMAGE_ELEM(self, float, subrect.y, subrect.x) ); - case CV_64F: - return PyFloat_FromDouble( CV_IMAGE_ELEM(self, double, subrect.y, subrect.x) ); - } - } - - // otherwise return array - im = (IplImage *) cvAlloc(sizeof(IplImage)); - cvGetSubRect(self, &mat, subrect); - im = cvGetImage(&mat, im); - return SWIG_NewPointerObj( im, $descriptor(_IplImage *), 1 ); - } -} - diff --git a/interfaces/swig/python/cvseq.i b/interfaces/swig/python/cvseq.i deleted file mode 100644 index 99ad6a91e..000000000 --- a/interfaces/swig/python/cvseq.i +++ /dev/null @@ -1,105 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -// 2006-08-02 Roman Stanchak - -%include "pycvseq.hpp" -%template (CvTuple_CvPoint_2) CvTuple; -%template (CvTuple_float_2) CvTuple; -%template (CvTuple_float_3) CvTuple; - -%template (CvSeq_CvPoint) CvTypedSeq; -%template (CvSeq_CvPoint2D32f) CvTypedSeq; -%template (CvSeq_CvRect) CvTypedSeq; -%template (CvSeq_CvSeq) CvTypedSeq; -%template (CvSeq_CvQuadEdge2D) CvTypedSeq; -%template (CvSeq_CvConnectedComp) CvTypedSeq; -%template (CvSeq_CvPoint_2) CvTypedSeq< CvTuple >; -%template (CvSeq_float_2) CvTypedSeq< CvTuple >; -%template (CvSeq_float_3) CvTypedSeq< CvTuple >; - -%extend CvSeq { - %pythoncode %{ - def __iter__(self): - """ - generator function iterating elements in the sequence - """ - for i in range(self.total): - yield self[i] - - def vrange(self): - """ - generator function iterating along v_next - """ - s = self - t = type(self) - while s: - yield s - s = t.cast(s.v_next) - - def hrange(self): - """ - generator function iterating along h_next - """ - s = self - t = type(self) - while s: - yield s - s = t.cast(s.h_next) - %} -} - -// accessor to turn edges into a typed sequence -%extend CvSubdiv2D { - CvTypedSeq * typed_edges; - CvTypedSeq * typed_edges_get(){ - return (CvTypedSeq *) self->edges; - } - void typed_edges_set( CvTypedSeq * ){ - } - %pythoncode %{ - def __iter__(self): - s = CvSeq_QuadEdge2D.cast(self) - for i in range(s.total): - yield s[i] - %} -} - diff --git a/interfaces/swig/python/cvshadow.cpp b/interfaces/swig/python/cvshadow.cpp deleted file mode 100644 index b2dcf1ef0..000000000 --- a/interfaces/swig/python/cvshadow.cpp +++ /dev/null @@ -1,83 +0,0 @@ -#include -#include -#include -#include "cvshadow.h" - -CvArr * cvCvtSeqToArray_Shadow( const CvSeq* seq, CvArr * elements, CvSlice slice){ - CvMat stub, *mat=(CvMat *)elements; - if(!CV_IS_MAT(mat)){ - mat = cvGetMat(elements, &stub); - } - cvCvtSeqToArray( seq, mat->data.ptr, slice ); - return elements; - } - -double cvArcLength_Shadow( const CvSeq * seq, CvSlice slice, int is_closed){ - return cvArcLength( seq, slice, is_closed ); -} -double cvArcLength_Shadow( const CvArr * arr, CvSlice slice, int is_closed){ - return cvArcLength( arr, slice, is_closed ); -} - -void cvMoments_Shadow( const CvSeq * seq, CvMoments * moments, int binary ){ - cvMoments( seq, moments, binary ); -} - -void cvMoments_Shadow( const CvArr * seq, CvMoments * moments, int binary ){ - cvMoments( seq, moments, binary ); -} - - -CvTypedSeq * cvHaarDetectObjects_Shadow( const CvArr* image, CvHaarClassifierCascade* cascade, - CvMemStorage* storage, double scale_factor, int min_neighbors, int flags, - CvSize min_size ) -{ - return (CvTypedSeq *) cvHaarDetectObjects( image, cascade, storage, scale_factor, - min_neighbors, flags, min_size); -} - -CvTypedSeq * cvSegmentMotion_Shadow( const CvArr* mhi, CvArr* seg_mask, CvMemStorage* storage, - double timestamp, double seg_thresh ){ - return (CvTypedSeq *) cvSegmentMotion( mhi, seg_mask, storage, timestamp, seg_thresh ); -} - -CvTypedSeq * cvApproxPoly_Shadow( const void* src_seq, int header_size, CvMemStorage* storage, - int method, double parameter, int parameter2) -{ - return (CvTypedSeq *) cvApproxPoly( src_seq, header_size, storage, method, parameter, parameter2 ); -} - -// Always return a new Mat of indices -CvMat * cvConvexHull2_Shadow( const CvArr * points, int orientation, int return_points){ - CvMat * hull=0; - CvMat * points_mat=(CvMat *) points; - CvSeq * points_seq=(CvSeq *) points; - int npoints, type; - - if(CV_IS_MAT(points_mat)){ - npoints = MAX(points_mat->rows, points_mat->cols); - type = return_points ? points_mat->type : CV_32S; - } - else if(CV_IS_SEQ(points_seq)){ - npoints = points_seq->total; - type = return_points ? CV_SEQ_ELTYPE(points_seq) : 1; - } - else{ - CV_Error(CV_StsBadArg, "points must be a CvSeq or CvMat"); - } - hull=cvCreateMat(1,npoints,type); - cvConvexHull2(points, hull, orientation, return_points); - - return hull; -} -std::vector cvSnakeImage_Shadow( const CvMat * image, std::vector points, - std::vector alpha, std::vector beta, - std::vector gamma, - CvSize win, CvTermCriteria criteria, int calc_gradient ){ - IplImage ipl_stub; - cvSnakeImage( cvGetImage(image, &ipl_stub), &(points[0]), points.size(), - &((alpha)[0]), &((beta)[0]), &((gamma)[0]), - (alpha.size()>1 && beta.size()>1 && gamma.size()>1 ? CV_ARRAY : CV_VALUE), - win, criteria, calc_gradient ); - return points; -} diff --git a/interfaces/swig/python/cvshadow.h b/interfaces/swig/python/cvshadow.h deleted file mode 100644 index 77a3c0052..000000000 --- a/interfaces/swig/python/cvshadow.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef CV_SHADOW_H -#define CV_SHADOW_H - -#include -#include "cxtypes.h" -#include "cvtypes.h" -#include "pycvseq.hpp" - -// modify cvCvtSeqToArray to take CvArr as input instead of raw data -CvArr * cvCvtSeqToArray_Shadow( const CvSeq* seq, CvArr * elements, CvSlice slice=CV_WHOLE_SEQ); - -// Return a typed sequence instead of generic CvSeq -CvTypedSeq * cvHaarDetectObjects_Shadow( const CvArr* image, CvHaarClassifierCascade* cascade, - CvMemStorage* storage, double scale_factor=1.1, int min_neighbors=3, int flags=0, - CvSize min_size=cvSize(0,0) ); -CvTypedSeq * cvSegmentMotion_Shadow( const CvArr* mhi, CvArr* seg_mask, CvMemStorage* storage, - double timestamp, double seg_thresh ); -CvTypedSeq * cvApproxPoly_Shadow( const void* src_seq, int header_size, CvMemStorage* storage, - int method, double parameter, int parameter2=0); - -// Always return a new Mat of indices -CvMat * cvConvexHull2_Shadow( const CvArr * points, int orientation=CV_CLOCKWISE, - int return_points=0); - -std::vector cvSnakeImage_Shadow( const CvMat * image, std::vector points, - std::vector alpha, std::vector beta, std::vector gamma, - CvSize win, CvTermCriteria criteria, int calc_gradient=1 ); - -#endif diff --git a/interfaces/swig/python/cvshadow.i b/interfaces/swig/python/cvshadow.i deleted file mode 100644 index 5fa0f7bb9..000000000 --- a/interfaces/swig/python/cvshadow.i +++ /dev/null @@ -1,137 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -/* This file contains custom python shadow class code for certain troublesome functions */ - -%{ -#include "cvshadow.h" -%} - -// source %myshadow, %myrelease macros -%include "cvswigmacros.i" - -%include "stl.i" - -// %ignore, %rename must come before %include -%myshadow(cvCvtSeqToArray); -%myshadow(cvHaarDetectObjects); -%myshadow(cvSegmentMotion); -%myshadow(cvApproxPoly); -%myshadow(cvConvexHull2); -%newobject cvConvexHull2_Shadow; // shadowed functioned always returns new object - -/* cvSnakeImage shadow uses a vector and vector */ -%template(FloatVector) std::vector; -%template(CvPointVector) std::vector; -%myshadow(cvSnakeImage); - -// must come after %ignore, %rename -%include "cvshadow.h" - -/* return a typed CvSeq instead of generic for CvSubdiv2D edges -- see cvseq.i */ -%rename (untyped_edges) CvSubdiv2D::edges; -%ignore CvSubdiv2D::edges; -%rename (edges) CvSubdiv2D::typed_edges; - -/* Python doesn't know what to do with these */ -%rename (asIplImage) operator IplImage*; -%rename (asCvMat) operator CvMat*; -%ignore operator const IplImage*; -%ignore operator const CvMat*; - -/* Define sequence type for functions returning sequences */ -%define %cast_seq( cvfunc, type ) -%rename (cvfunc##Untyped) cvfunc; -%pythoncode %{ -def cvfunc(*args): - seq = cvfunc##Untyped( *args ) - return type.cast(seq) -%} -%enddef - -%cast_seq( cvHoughCircles, CvSeq_float_3 ); -%cast_seq( cvPyrSegmentation, CvSeq_CvConnectedComp ); -%cast_seq( cvApproxChains, CvSeq_CvPoint); -%cast_seq( cvContourFromContourTree, CvSeq_CvPoint ); -%cast_seq( cvConvexityDefects, CvSeq_CvConvexityDefect ); - -/* Special cases ... */ -%rename(cvFindContoursUntyped) cvFindContours; -%pythoncode %{ -def cvFindContours( *args ): - count, seq = cvFindContoursUntyped( *args ) - return count, CvSeq_CvPoint.cast(seq) -%} - -/* cvHoughLines2 returns a different type of sequence depending on its args */ -%rename (cvHoughLinesUntyped) cvHoughLines2; -%pythoncode %{ -def cvHoughLines2( *args ): - seq = cvHoughLinesUntyped( *args ) - type = CV_SEQ_ELTYPE(seq) - if type == CV_32SC4: - return CvSeq_CvPoint_2.cast(seq) - return CvSeq_float_2.cast(seq) -%} - -// cvPointSeqFromMat -// cvSeqPartition -// cvSeqSlice -// cvTreeToNodeSeq - -// Fix cvRelease* function to play nice w/ Python -// TODO some of these objects lack the delete method -- why??? -%myrelease(cv, cvReleaseImage, CvMat); // IplImage is CvMat in Python -%myrelease(cv, cvReleaseMat, CvMat); -%myrelease(cv, cvReleaseStructuringElement, IplConvKernel); -%myrelease(cv, cvReleaseKalman, CvKalman); -%myrelease(cv, cvReleaseHist, CvHistogram); -%myrelease(cv, cvReleaseHaarClassifierCascade, CvHaarClassifierCascade); -//%myrelease(cvReleasePOSITObject, CvPOSITObject); -%myrelease(cv, cvReleaseImageHeader, CvMat); // IplImage is CvMat -%myrelease(cv, cvReleaseMatND, CvMatND); -%myrelease(cv, cvReleaseSparseMat, CvSparseMat); -%myrelease(cv, cvReleaseMemStorage, CvMemStorage); -%myrelease(cv, cvReleaseGraphScanner, CvGraphScanner); -//%myrelease(cvReleaseFileStorage, CvFileStorage); - -// TODO implement this -%ignore cvRelease; diff --git a/interfaces/swig/python/cvswigmacros.i b/interfaces/swig/python/cvswigmacros.i deleted file mode 100644 index 0f5461394..000000000 --- a/interfaces/swig/python/cvswigmacros.i +++ /dev/null @@ -1,75 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -/* This file contains swig macros that are used in several typemap files */ - - -%define %myshadow(function) -%ignore function; -%rename (function) function##_Shadow; -%enddef - -// Elsewhere in this wrapper, the cvRelease* functions are mapped to -// the destructors for the corresponding OpenCV object wrapper. This -// is done in order to let Python handle memory management. If the -// reference count of the Python object wrapping the OpenCV object -// goes to 0, the garbage collector will call the destructor, and -// therefore the cvRelease* function, before freeing the Python object. -// However, if the user explicitly calls the cvRelease* function, we -// must prevent the Python garbage collector from calling it again when -// the refcount reaches 0 -- otherwise a double-free error occurs. -// -// Thus, below, we redirect each cvRelease* function to the -// corresponding OpenCV object's destructor. This has the effect of: -// (1) Calling the corresponding cvRelease* function, and therefore -// immediately releasing the OpenCV object. -// (2) Telling SWIG to disown memory management for this OpenCV object. -// -// Thus, when the refcount for the Python object reaches 0, the Python -// object is garbage collected, but since it no longer owns the OpenCV -// object, this is not freed again. -%define %myrelease(module, Function, Type) -%ignore Function; -%rename (Function) Function##_Shadow; -%pythoncode %{ -Function = _##module##.delete_##Type -%} -%enddef diff --git a/interfaces/swig/python/error.cpp b/interfaces/swig/python/error.cpp deleted file mode 100644 index 9f237bb9e..000000000 --- a/interfaces/swig/python/error.cpp +++ /dev/null @@ -1,113 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-17, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - - -// Python header. -// It may be required that this header is the first to be included -// (see Python documentation for details) -#include "Python.h" - -#include "error.h" -#include -#include - -// OpenCV headers -#include "cxcore.h" -#include "cxerror.h" - - -//========================================================================= -int SendErrorToPython - ( - int status, - const char* func_name, - const char* err_msg, - const char* file_name, - int line, - void* /*userdata*/ - ) - throw(int) - { - std::stringstream message; - message - << " openCV Error:" - << "\n Status=" << cvErrorStr(status) - << "\n function name=" << (func_name ? func_name : "unknown") - << "\n error message=" << (err_msg ? err_msg : "unknown") - << "\n file_name=" << (file_name ? file_name : "unknown") - << "\n line=" << line - << std::flush; - - // Clear OpenCV's error status for the next call! - cvSetErrStatus( CV_StsOk ); - - // Set Python Error. - // ATTENTION: this only works if the function returning to - // Python returns 0 instead of a PyObject (see also "custom_typemaps.i" - PyErr_SetString(PyExc_RuntimeError, message.str().c_str()); - throw 1; - return 0; - } - - -//========================================================================= -void* void_ptr_generator() - { - return 0; - } - -//========================================================================= -void** void_ptrptr_generator() - { - return 0; - } - -//========================================================================= -CvErrorCallback function_ptr_generator() - { - return &SendErrorToPython; - } - diff --git a/interfaces/swig/python/error.h b/interfaces/swig/python/error.h deleted file mode 100644 index 2e1e450cd..000000000 --- a/interfaces/swig/python/error.h +++ /dev/null @@ -1,68 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-17, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - - -#include "cxcore.h" - -/** - * This function will set a Python error and throw an int. - * Exceptions are catched automatically by the SWIG code from "typemaps.i" - */ -int SendErrorToPython ( int status, - const char * func_name, - const char * err_msg, - const char * file_name, - int line, - void * /*userdata*/) throw(int); - -/// Returns the adress of the static method "SendErrorToPython()" -CvErrorCallback function_ptr_generator(); - -/// Dummy to generate an empty void pointer -void * void_ptr_generator(); - -/// Dummy to generate an empty void double pointer -void ** void_ptrptr_generator(); diff --git a/interfaces/swig/python/highgui.i b/interfaces/swig/python/highgui.i deleted file mode 100644 index 9eabc93c2..000000000 --- a/interfaces/swig/python/highgui.i +++ /dev/null @@ -1,296 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - -%{ - #include - #include - #include - #include "pyhelpers.h" - #include "pycvseq.hpp" -%} -// include python-specific files -%include "./nointpb.i" -%include "./pytypemaps.i" -%include "exception.i" -%include "cvswigmacros.i" - -// handle camera and video writer destruction -%myrelease(highgui, cvReleaseCapture, CvCapture); -%myrelease(highgui, cvReleaseVideoWriter, CvVideoWriter); - -/* the wrapping code to enable the use of Python-based mouse callbacks */ -%header %{ - /* This encapsulates the python callback and user_data for mouse callback */ - struct PyCvMouseCBData { - PyObject * py_func; - PyObject * user_data; - }; - /* This encapsulates the python callback and user_data for mouse callback */ - /* C helper function which is responsible for calling - the Python real trackbar callback function */ - static void icvPyOnMouse (int event, int x, int y, - int flags, PyCvMouseCBData * param) { - - /* Must ensure this thread has a lock on the interpreter */ - PyGILState_STATE state = PyGILState_Ensure(); - - PyObject *result; - - /* the argument of the callback ready to be passed to Python code */ - PyObject *arg1 = PyInt_FromLong (event); - PyObject *arg2 = PyInt_FromLong (x); - PyObject *arg3 = PyInt_FromLong (y); - PyObject *arg4 = PyInt_FromLong (flags); - PyObject *arg5 = param->user_data; // assume this is already a PyObject - - /* build the tuple for calling the Python callback */ - PyObject *arglist = Py_BuildValue ("(OOOOO)", - arg1, arg2, arg3, arg4, arg5); - - /* call the Python callback */ - result = PyEval_CallObject (param->py_func, arglist); - - /* Errors in Python callback get swallowed, so report them here */ - if(!result){ - PyErr_Print(); - cvError( CV_StsInternal, "icvPyOnMouse", "", __FILE__, __LINE__); - } - - /* cleanup */ - Py_XDECREF (result); - - /* Release Interpreter lock */ - PyGILState_Release(state); - } -%} -/** - * adapt cvSetMouseCallback to use python callback - */ -%rename (cvSetMouseCallbackOld) cvSetMouseCallback; -%rename (cvSetMouseCallback) cvSetMouseCallbackPy; -%inline %{ - void cvSetMouseCallbackPy( const char* window_name, PyObject * on_mouse, PyObject * param=NULL ){ - // TODO potential memory leak if mouse callback is redefined - PyCvMouseCBData * py_callback = new PyCvMouseCBData; - py_callback->py_func = on_mouse; - py_callback->user_data = param ? param : Py_None; - - Py_XINCREF(py_callback->py_func); - Py_XINCREF(py_callback->user_data); - - cvSetMouseCallback( window_name, (CvMouseCallback) icvPyOnMouse, (void *) py_callback ); - } -%} - - - -/** - * The following code enables trackbar callbacks from python. Unfortunately, there is no - * way to distinguish which trackbar the event originated from, so must hard code a - * fixed number of unique c callback functions using the macros below - */ -%wrapper %{ - /* C helper function which is responsible for calling - the Python real trackbar callback function */ - static void icvPyOnTrackbar( PyObject * py_cb_func, int pos) { - - /* Must ensure this thread has a lock on the interpreter */ - PyGILState_STATE state = PyGILState_Ensure(); - - PyObject *result; - - /* the argument of the callback ready to be passed to Python code */ - PyObject *arg1 = PyInt_FromLong (pos); - - /* build the tuple for calling the Python callback */ - PyObject *arglist = Py_BuildValue ("(O)", arg1); - - /* call the Python callback */ - result = PyEval_CallObject (py_cb_func, arglist); - - /* Errors in Python callback get swallowed, so report them here */ - if(!result){ - PyErr_Print(); - cvError( CV_StsInternal, "icvPyOnTrackbar", "", __FILE__, __LINE__); - } - - - /* cleanup */ - Py_XDECREF (result); - - /* Release Interpreter lock */ - PyGILState_Release(state); - } - -#define ICV_PY_MAX_CB 10 - - struct PyCvTrackbar { - CvTrackbarCallback cv_func; - PyObject * py_func; - PyObject * py_pos; - }; - - static int my_trackbar_cb_size=0; - extern PyCvTrackbar my_trackbar_cb_funcs[ICV_PY_MAX_CB]; -%} - -/* Callback table entry */ -%define %ICV_PY_CB_TAB_ENTRY(idx) - {(CvTrackbarCallback) icvPyTrackbarCB##idx, NULL, NULL } -%enddef - -/* Table of callbacks */ -%define %ICV_PY_CB_TAB -%wrapper %{ - PyCvTrackbar my_trackbar_cb_funcs[ICV_PY_MAX_CB] = { - %ICV_PY_CB_TAB_ENTRY(0), - %ICV_PY_CB_TAB_ENTRY(1), - %ICV_PY_CB_TAB_ENTRY(2), - %ICV_PY_CB_TAB_ENTRY(3), - %ICV_PY_CB_TAB_ENTRY(4), - %ICV_PY_CB_TAB_ENTRY(5), - %ICV_PY_CB_TAB_ENTRY(6), - %ICV_PY_CB_TAB_ENTRY(7), - %ICV_PY_CB_TAB_ENTRY(8), - %ICV_PY_CB_TAB_ENTRY(9) - }; -%} -%enddef - -/* Callback definition */ -%define %ICV_PY_CB_IMPL(idx) -%wrapper %{ -static void icvPyTrackbarCB##idx(int pos){ - if(!my_trackbar_cb_funcs[idx].py_func) return; - icvPyOnTrackbar( my_trackbar_cb_funcs[idx].py_func, pos ); -} -%} -%enddef - - -%ICV_PY_CB_IMPL(0); -%ICV_PY_CB_IMPL(1); -%ICV_PY_CB_IMPL(2); -%ICV_PY_CB_IMPL(3); -%ICV_PY_CB_IMPL(4); -%ICV_PY_CB_IMPL(5); -%ICV_PY_CB_IMPL(6); -%ICV_PY_CB_IMPL(7); -%ICV_PY_CB_IMPL(8); -%ICV_PY_CB_IMPL(9); - -%ICV_PY_CB_TAB; - - -/** - * typemap to memorize the Python callback when doing cvCreateTrackbar () - */ -%typemap(in) CvTrackbarCallback { - - if(my_trackbar_cb_size == ICV_PY_MAX_CB){ - SWIG_exception(SWIG_IndexError, "Exceeded maximum number of trackbars"); - } - - my_trackbar_cb_size++; - - if (!PyCallable_Check($input)) { - PyErr_SetString(PyExc_TypeError, "parameter must be callable"); - return 0; - } - Py_XINCREF((PyObject*) $input); /* Add a reference to new callback */ - Py_XDECREF(my_trackbar_cb_funcs[my_trackbar_cb_size-1].py_func); /* Dispose of previous callback */ - my_trackbar_cb_funcs[my_trackbar_cb_size-1].py_func = (PyObject *) $input; - - /* prepare to call the C function who will register the callback */ - $1 = my_trackbar_cb_funcs[ my_trackbar_cb_size-1 ].cv_func; -} - -/** - * typemap so that cvWaitKey returns a character in all cases except -1 - */ -%rename (cvWaitKeyC) cvWaitKey; -%rename (cvWaitKey) cvWaitKeyPy; -%inline %{ - PyObject * cvWaitKeyPy(int delay=0){ - // In order for the event processing thread to run a python callback - // it must acquire the global interpreter lock, but cvWaitKey blocks, so - // this thread can never release the lock. So release it here. - PyThreadState * thread_state = PyEval_SaveThread(); - int res = cvWaitKey(delay); - PyEval_RestoreThread( thread_state ); - - char str[2]={(char)res,0}; - if(res==-1){ - return PyLong_FromLong(-1); - } - return PyString_FromString(str); - } -%} -/* HighGUI Python module initialization - * needed for callbacks to work in a threaded environment - */ -%init %{ - PyEval_InitThreads(); -%} - - -%include "../general/highgui.i" - -%pythoncode -%{ - -__doc__ = """HighGUI provides minimalistic user interface parts and video input/output. - -Dependent on the platform it was compiled on, this library provides methods -to draw a window for image display, capture video from a camera or framegrabber -or read/write video streams from/to the file system. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. -""" - -%} diff --git a/interfaces/swig/python/highgui.py b/interfaces/swig/python/highgui.py deleted file mode 100644 index 709ba4637..000000000 --- a/interfaces/swig/python/highgui.py +++ /dev/null @@ -1,457 +0,0 @@ -# This file was automatically generated by SWIG (http://www.swig.org). -# Version 1.3.40 -# -# Do not make changes to this file unless you know what you are doing--modify -# the SWIG interface file instead. -# This file is compatible with both classic and new-style classes. - -from sys import version_info -if version_info >= (2,6,0): - def swig_import_helper(): - from os.path import dirname - import imp - fp = None - try: - fp, pathname, description = imp.find_module('_highgui', [dirname(__file__)]) - except ImportError: - import _highgui - return _highgui - if fp is not None: - try: - _mod = imp.load_module('_highgui', fp, pathname, description) - finally: - fp.close() - return _mod - _highgui = swig_import_helper() - del swig_import_helper -else: - import _highgui -del version_info -try: - _swig_property = property -except NameError: - pass # Python < 2.2 doesn't have 'property'. -def _swig_setattr_nondynamic(self,class_type,name,value,static=1): - if (name == "thisown"): return self.this.own(value) - if (name == "this"): - if type(value).__name__ == 'SwigPyObject': - self.__dict__[name] = value - return - method = class_type.__swig_setmethods__.get(name,None) - if method: return method(self,value) - if (not static) or hasattr(self,name): - self.__dict__[name] = value - else: - raise AttributeError("You cannot add attributes to %s" % self) - -def _swig_setattr(self,class_type,name,value): - return _swig_setattr_nondynamic(self,class_type,name,value,0) - -def _swig_getattr(self,class_type,name): - if (name == "thisown"): return self.this.own() - method = class_type.__swig_getmethods__.get(name,None) - if method: return method(self) - raise AttributeError(name) - -def _swig_repr(self): - try: strthis = "proxy of " + self.this.__repr__() - except: strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - -try: - _object = object - _newclass = 1 -except AttributeError: - class _object : pass - _newclass = 0 - - -class CvRNG_Wrapper(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvRNG_Wrapper, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvRNG_Wrapper, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _highgui.new_CvRNG_Wrapper(*args) - try: self.this.append(this) - except: self.this = this - def ptr(self): return _highgui.CvRNG_Wrapper_ptr(self) - def ref(self): return _highgui.CvRNG_Wrapper_ref(self) - def __eq__(self, *args): return _highgui.CvRNG_Wrapper___eq__(self, *args) - def __ne__(self, *args): return _highgui.CvRNG_Wrapper___ne__(self, *args) - __swig_destroy__ = _highgui.delete_CvRNG_Wrapper - __del__ = lambda self : None; -CvRNG_Wrapper_swigregister = _highgui.CvRNG_Wrapper_swigregister -CvRNG_Wrapper_swigregister(CvRNG_Wrapper) - -class CvSubdiv2DEdge_Wrapper(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSubdiv2DEdge_Wrapper, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSubdiv2DEdge_Wrapper, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _highgui.new_CvSubdiv2DEdge_Wrapper(*args) - try: self.this.append(this) - except: self.this = this - def ptr(self): return _highgui.CvSubdiv2DEdge_Wrapper_ptr(self) - def ref(self): return _highgui.CvSubdiv2DEdge_Wrapper_ref(self) - def __eq__(self, *args): return _highgui.CvSubdiv2DEdge_Wrapper___eq__(self, *args) - def __ne__(self, *args): return _highgui.CvSubdiv2DEdge_Wrapper___ne__(self, *args) - __swig_destroy__ = _highgui.delete_CvSubdiv2DEdge_Wrapper - __del__ = lambda self : None; -CvSubdiv2DEdge_Wrapper_swigregister = _highgui.CvSubdiv2DEdge_Wrapper_swigregister -CvSubdiv2DEdge_Wrapper_swigregister(CvSubdiv2DEdge_Wrapper) - -cvReleaseCapture = _highgui.delete_CvCapture - -cvReleaseVideoWriter = _highgui.delete_CvVideoWriter - - -def cvRetrieveFrame(*args): - """cvRetrieveFrame(CvCapture capture) -> CvMat""" - return _highgui.cvRetrieveFrame(*args) - -def cvQueryFrame(*args): - """cvQueryFrame(CvCapture capture) -> CvMat""" - return _highgui.cvQueryFrame(*args) - -def cvInitSystem(*args): - """cvInitSystem(int argc, char argv) -> int""" - return _highgui.cvInitSystem(*args) - -def cvStartWindowThread(): - """cvStartWindowThread() -> int""" - return _highgui.cvStartWindowThread() -CV_WINDOW_AUTOSIZE = _highgui.CV_WINDOW_AUTOSIZE - -def cvNamedWindow(*args): - """cvNamedWindow(char name, int flags = 1) -> int""" - return _highgui.cvNamedWindow(*args) - -def cvShowImage(*args): - """cvShowImage(char name, CvArr image)""" - return _highgui.cvShowImage(*args) - -def cvResizeWindow(*args): - """cvResizeWindow(char name, int width, int height)""" - return _highgui.cvResizeWindow(*args) - -def cvMoveWindow(*args): - """cvMoveWindow(char name, int x, int y)""" - return _highgui.cvMoveWindow(*args) - -def cvDestroyWindow(*args): - """cvDestroyWindow(char name)""" - return _highgui.cvDestroyWindow(*args) - -def cvDestroyAllWindows(): - """cvDestroyAllWindows()""" - return _highgui.cvDestroyAllWindows() - -def cvGetWindowHandle(*args): - """cvGetWindowHandle(char name) -> void""" - return _highgui.cvGetWindowHandle(*args) - -def cvGetWindowName(*args): - """cvGetWindowName(void window_handle) -> char""" - return _highgui.cvGetWindowName(*args) - -def cvCreateTrackbar(*args): - """ - cvCreateTrackbar(char trackbar_name, char window_name, int value, int count, - CvTrackbarCallback on_change) -> int - """ - return _highgui.cvCreateTrackbar(*args) - -def cvCreateTrackbar2(*args): - """ - cvCreateTrackbar2(char trackbar_name, char window_name, int value, int count, - CvTrackbarCallback2 on_change, void userdata = None) -> int - """ - return _highgui.cvCreateTrackbar2(*args) - -def cvGetTrackbarPos(*args): - """cvGetTrackbarPos(char trackbar_name, char window_name) -> int""" - return _highgui.cvGetTrackbarPos(*args) - -def cvSetTrackbarPos(*args): - """cvSetTrackbarPos(char trackbar_name, char window_name, int pos)""" - return _highgui.cvSetTrackbarPos(*args) -CV_EVENT_MOUSEMOVE = _highgui.CV_EVENT_MOUSEMOVE -CV_EVENT_LBUTTONDOWN = _highgui.CV_EVENT_LBUTTONDOWN -CV_EVENT_RBUTTONDOWN = _highgui.CV_EVENT_RBUTTONDOWN -CV_EVENT_MBUTTONDOWN = _highgui.CV_EVENT_MBUTTONDOWN -CV_EVENT_LBUTTONUP = _highgui.CV_EVENT_LBUTTONUP -CV_EVENT_RBUTTONUP = _highgui.CV_EVENT_RBUTTONUP -CV_EVENT_MBUTTONUP = _highgui.CV_EVENT_MBUTTONUP -CV_EVENT_LBUTTONDBLCLK = _highgui.CV_EVENT_LBUTTONDBLCLK -CV_EVENT_RBUTTONDBLCLK = _highgui.CV_EVENT_RBUTTONDBLCLK -CV_EVENT_MBUTTONDBLCLK = _highgui.CV_EVENT_MBUTTONDBLCLK -CV_EVENT_FLAG_LBUTTON = _highgui.CV_EVENT_FLAG_LBUTTON -CV_EVENT_FLAG_RBUTTON = _highgui.CV_EVENT_FLAG_RBUTTON -CV_EVENT_FLAG_MBUTTON = _highgui.CV_EVENT_FLAG_MBUTTON -CV_EVENT_FLAG_CTRLKEY = _highgui.CV_EVENT_FLAG_CTRLKEY -CV_EVENT_FLAG_SHIFTKEY = _highgui.CV_EVENT_FLAG_SHIFTKEY -CV_EVENT_FLAG_ALTKEY = _highgui.CV_EVENT_FLAG_ALTKEY - -def cvSetMouseCallbackOld(*args): - """cvSetMouseCallbackOld(char window_name, CvMouseCallback on_mouse, void param = None)""" - return _highgui.cvSetMouseCallbackOld(*args) -CV_LOAD_IMAGE_UNCHANGED = _highgui.CV_LOAD_IMAGE_UNCHANGED -CV_LOAD_IMAGE_GRAYSCALE = _highgui.CV_LOAD_IMAGE_GRAYSCALE -CV_LOAD_IMAGE_COLOR = _highgui.CV_LOAD_IMAGE_COLOR -CV_LOAD_IMAGE_ANYDEPTH = _highgui.CV_LOAD_IMAGE_ANYDEPTH -CV_LOAD_IMAGE_ANYCOLOR = _highgui.CV_LOAD_IMAGE_ANYCOLOR - -def cvLoadImageM(*args): - """cvLoadImageM(char filename, int iscolor = 1) -> CvMat""" - return _highgui.cvLoadImageM(*args) -CV_IMWRITE_JPEG_QUALITY = _highgui.CV_IMWRITE_JPEG_QUALITY -CV_IMWRITE_PNG_COMPRESSION = _highgui.CV_IMWRITE_PNG_COMPRESSION -CV_IMWRITE_PXM_BINARY = _highgui.CV_IMWRITE_PXM_BINARY - -def cvSaveImage(*args): - """cvSaveImage(char filename, CvArr image, int params = None) -> int""" - return _highgui.cvSaveImage(*args) - -def cvDecodeImage(*args): - """cvDecodeImage(CvMat buf, int iscolor = 1)""" - return _highgui.cvDecodeImage(*args) - -def cvDecodeImageM(*args): - """cvDecodeImageM(CvMat buf, int iscolor = 1) -> CvMat""" - return _highgui.cvDecodeImageM(*args) - -def cvEncodeImage(*args): - """cvEncodeImage(char ext, CvArr image, int params = None) -> CvMat""" - return _highgui.cvEncodeImage(*args) -CV_CVTIMG_FLIP = _highgui.CV_CVTIMG_FLIP -CV_CVTIMG_SWAP_RB = _highgui.CV_CVTIMG_SWAP_RB - -def cvConvertImage(*args): - """cvConvertImage(CvArr src, CvArr dst, int flags = 0)""" - return _highgui.cvConvertImage(*args) - -def cvWaitKeyC(delay = 0): - """cvWaitKeyC(int delay = 0) -> int""" - return _highgui.cvWaitKeyC(delay) - -def cvCreateFileCapture(*args): - """cvCreateFileCapture(char filename) -> CvCapture""" - return _highgui.cvCreateFileCapture(*args) -CV_CAP_ANY = _highgui.CV_CAP_ANY -CV_CAP_MIL = _highgui.CV_CAP_MIL -CV_CAP_VFW = _highgui.CV_CAP_VFW -CV_CAP_V4L = _highgui.CV_CAP_V4L -CV_CAP_V4L2 = _highgui.CV_CAP_V4L2 -CV_CAP_FIREWARE = _highgui.CV_CAP_FIREWARE -CV_CAP_FIREWIRE = _highgui.CV_CAP_FIREWIRE -CV_CAP_IEEE1394 = _highgui.CV_CAP_IEEE1394 -CV_CAP_DC1394 = _highgui.CV_CAP_DC1394 -CV_CAP_CMU1394 = _highgui.CV_CAP_CMU1394 -CV_CAP_STEREO = _highgui.CV_CAP_STEREO -CV_CAP_TYZX = _highgui.CV_CAP_TYZX -CV_TYZX_LEFT = _highgui.CV_TYZX_LEFT -CV_TYZX_RIGHT = _highgui.CV_TYZX_RIGHT -CV_TYZX_COLOR = _highgui.CV_TYZX_COLOR -CV_TYZX_Z = _highgui.CV_TYZX_Z -CV_CAP_QT = _highgui.CV_CAP_QT -CV_CAP_UNICAP = _highgui.CV_CAP_UNICAP -CV_CAP_DSHOW = _highgui.CV_CAP_DSHOW - -def cvCreateCameraCapture(*args): - """cvCreateCameraCapture(int index) -> CvCapture""" - return _highgui.cvCreateCameraCapture(*args) - -def cvGrabFrame(*args): - """cvGrabFrame(CvCapture capture) -> int""" - return _highgui.cvGrabFrame(*args) - -def cvRetrieveFrame__Deprecated(*args): - """cvRetrieveFrame__Deprecated(CvCapture capture, int streamIdx = 0)""" - return _highgui.cvRetrieveFrame__Deprecated(*args) - -def cvQueryFrame__Deprecated(*args): - """cvQueryFrame__Deprecated(CvCapture capture)""" - return _highgui.cvQueryFrame__Deprecated(*args) -CV_CAP_PROP_POS_MSEC = _highgui.CV_CAP_PROP_POS_MSEC -CV_CAP_PROP_POS_FRAMES = _highgui.CV_CAP_PROP_POS_FRAMES -CV_CAP_PROP_POS_AVI_RATIO = _highgui.CV_CAP_PROP_POS_AVI_RATIO -CV_CAP_PROP_FRAME_WIDTH = _highgui.CV_CAP_PROP_FRAME_WIDTH -CV_CAP_PROP_FRAME_HEIGHT = _highgui.CV_CAP_PROP_FRAME_HEIGHT -CV_CAP_PROP_FPS = _highgui.CV_CAP_PROP_FPS -CV_CAP_PROP_FOURCC = _highgui.CV_CAP_PROP_FOURCC -CV_CAP_PROP_FRAME_COUNT = _highgui.CV_CAP_PROP_FRAME_COUNT -CV_CAP_PROP_FORMAT = _highgui.CV_CAP_PROP_FORMAT -CV_CAP_PROP_MODE = _highgui.CV_CAP_PROP_MODE -CV_CAP_PROP_BRIGHTNESS = _highgui.CV_CAP_PROP_BRIGHTNESS -CV_CAP_PROP_CONTRAST = _highgui.CV_CAP_PROP_CONTRAST -CV_CAP_PROP_SATURATION = _highgui.CV_CAP_PROP_SATURATION -CV_CAP_PROP_HUE = _highgui.CV_CAP_PROP_HUE -CV_CAP_PROP_GAIN = _highgui.CV_CAP_PROP_GAIN -CV_CAP_PROP_EXPOSURE = _highgui.CV_CAP_PROP_EXPOSURE -CV_CAP_PROP_CONVERT_RGB = _highgui.CV_CAP_PROP_CONVERT_RGB -CV_CAP_PROP_WHITE_BALANCE = _highgui.CV_CAP_PROP_WHITE_BALANCE -CV_CAP_PROP_RECTIFICATION = _highgui.CV_CAP_PROP_RECTIFICATION - -def cvGetCaptureProperty(*args): - """cvGetCaptureProperty(CvCapture capture, int property_id) -> double""" - return _highgui.cvGetCaptureProperty(*args) - -def cvSetCaptureProperty(*args): - """cvSetCaptureProperty(CvCapture capture, int property_id, double value) -> int""" - return _highgui.cvSetCaptureProperty(*args) - -def cvGetCaptureDomain(*args): - """cvGetCaptureDomain(CvCapture capture) -> int""" - return _highgui.cvGetCaptureDomain(*args) - -def CV_FOURCC(*args): - """CV_FOURCC(char c1, char c2, char c3, char c4) -> int""" - return _highgui.CV_FOURCC(*args) -CV_FOURCC_PROMPT = _highgui.CV_FOURCC_PROMPT - -def cvCreateVideoWriter(*args): - """ - cvCreateVideoWriter(char filename, int fourcc, double fps, CvSize frame_size, - int is_color = 1) -> CvVideoWriter - """ - return _highgui.cvCreateVideoWriter(*args) - -def cvWriteFrame(*args): - """cvWriteFrame(CvVideoWriter writer, image) -> int""" - return _highgui.cvWriteFrame(*args) -HG_AUTOSIZE = _highgui.HG_AUTOSIZE -class CvvImage(_object): - """Proxy of C++ CvvImage class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvvImage, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvvImage, name) - __repr__ = _swig_repr - def __init__(self): - """__init__(self) -> CvvImage""" - this = _highgui.new_CvvImage() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _highgui.delete_CvvImage - __del__ = lambda self : None; - def Create(self, *args): - """ - Create(self, int width, int height, int bits_per_pixel, int image_origin = 0) -> bool - Create(self, int width, int height, int bits_per_pixel) -> bool - """ - return _highgui.CvvImage_Create(self, *args) - - def Load(self, *args): - """ - Load(self, char filename, int desired_color = 1) -> bool - Load(self, char filename) -> bool - """ - return _highgui.CvvImage_Load(self, *args) - - def LoadRect(self, *args): - """LoadRect(self, char filename, int desired_color, CvRect r) -> bool""" - return _highgui.CvvImage_LoadRect(self, *args) - - def Save(self, *args): - """Save(self, char filename) -> bool""" - return _highgui.CvvImage_Save(self, *args) - - def CopyOf(self, *args): - """ - CopyOf(self, CvvImage image, int desired_color = -1) - CopyOf(self, CvvImage image) - CopyOf(self, img, int desired_color = -1) - CopyOf(self, img) - """ - return _highgui.CvvImage_CopyOf(self, *args) - - def GetImage(self): - """GetImage(self)""" - return _highgui.CvvImage_GetImage(self) - - def Destroy(self): - """Destroy(self)""" - return _highgui.CvvImage_Destroy(self) - - def Width(self): - """Width(self) -> int""" - return _highgui.CvvImage_Width(self) - - def Height(self): - """Height(self) -> int""" - return _highgui.CvvImage_Height(self) - - def Bpp(self): - """Bpp(self) -> int""" - return _highgui.CvvImage_Bpp(self) - - def Fill(self, *args): - """Fill(self, int color)""" - return _highgui.CvvImage_Fill(self, *args) - - def Show(self, *args): - """Show(self, char window)""" - return _highgui.CvvImage_Show(self, *args) - -CvvImage_swigregister = _highgui.CvvImage_swigregister -CvvImage_swigregister(CvvImage) - -def cvSetMouseCallback(*args): - return _highgui.cvSetMouseCallback(*args) -cvSetMouseCallback = _highgui.cvSetMouseCallback - -def cvWaitKey(delay = 0): - return _highgui.cvWaitKey(delay) -cvWaitKey = _highgui.cvWaitKey - -def cvLoadImage(*args): - """ - cvLoadImage(char filename, int iscolor = 1) -> CvMat - cvLoadImage(char filename) -> CvMat - """ - return _highgui.cvLoadImage(*args) - -class CvCapture(_object): - """Proxy of C++ CvCapture class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvCapture, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvCapture, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _highgui.delete_CvCapture - __del__ = lambda self : None; -CvCapture_swigregister = _highgui.CvCapture_swigregister -CvCapture_swigregister(CvCapture) - -class CvVideoWriter(_object): - """Proxy of C++ CvVideoWriter class""" - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvVideoWriter, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvVideoWriter, name) - def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") - __repr__ = _swig_repr - __swig_destroy__ = _highgui.delete_CvVideoWriter - __del__ = lambda self : None; -CvVideoWriter_swigregister = _highgui.CvVideoWriter_swigregister -CvVideoWriter_swigregister(CvVideoWriter) - -__doc__ = """HighGUI provides minimalistic user interface parts and video input/output. - -Dependent on the platform it was compiled on, this library provides methods -to draw a window for image display, capture video from a camera or framegrabber -or read/write video streams from/to the file system. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. -""" - - - - diff --git a/interfaces/swig/python/imagedata.i b/interfaces/swig/python/imagedata.i deleted file mode 100644 index 8f740558f..000000000 --- a/interfaces/swig/python/imagedata.i +++ /dev/null @@ -1,152 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Gabriel Schreiber -// Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - -// 2006-08-29 Roman Stanchak -- converted to use CvMat rather than IplImage - - -%{ - -/// Accessor to convert a Python string into the imageData. -void CvMat_imageData_set(CvMat * self, PyObject* object) -{ - char* py_string = PyString_AsString(object); - int depth = CV_MAT_DEPTH(self->type); - int cn = CV_MAT_CN(self->type); - - int step = self->step ? self->step : CV_ELEM_SIZE(self->type) * self->cols; - - if (depth == CV_8U && cn==3){ - // RGB case - // The data is reordered beause OpenCV uses BGR instead of RGB - - for (long line = 0; line < self->rows; ++line) - for (long pixel = 0; pixel < self->cols; ++pixel) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - long position = line*step + pixel*3; - long sourcepos = line*self->cols*3 + pixel*3; - self->data.ptr[position ] = py_string[sourcepos+2]; - self->data.ptr[position+1] = py_string[sourcepos+1]; - self->data.ptr[position+2] = py_string[sourcepos ]; - } - } - else if (depth == CV_8U && cn==1) - { - // Grayscale 8bit case - - for (long line = 0; line < self->rows; ++line) - { - // In OpenCV the beginning of the lines are aligned - // to 4 Bytes. So use step instead of cols. - memcpy - ( - self->data.ptr + line*step, - py_string + line*self->cols, - step - ); - } - } - else if ( depth == CV_32F ) - { - // float (32bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*step, - py_string + line*self->cols*sizeof(float), - step - ); - } - } - else if ( depth == CV_64F ) - { - // double (64bit) case - for (long line = 0; line < self->rows; ++line) - { - // here we don not have to care about alignment as the Floats are - // as long as the alignment - memcpy - ( - self->data.ptr + line*step, - py_string + line*self->cols*sizeof(double), - step - ); - } - } - else - { - // make some noise - SendErrorToPython (SWIG_TypeError, - "CvMat_imageData_set", - "cannot convert string data to this image format", - __FILE__, __LINE__, NULL); - } -} - -/// Accessor to convert the imageData into a Python string. -PyObject* CvMat_imageData_get(CvMat * self) -{ - if (!self->data.ptr) - { - PyErr_SetString(PyExc_TypeError, "Data pointer of CvMat is NULL"); - return NULL; - } - - - int step = self->step ? self->step : CV_ELEM_SIZE(self->type) * self->cols; - return PyString_FromStringAndSize((const char *)self->data.ptr, self->rows*step); -} - -%} - -// add virtual member variable to CvMat -%extend CvMat { - PyObject * imageData; -}; diff --git a/interfaces/swig/python/matlab_syntax.py b/interfaces/swig/python/matlab_syntax.py deleted file mode 100644 index 13c7274ce..000000000 --- a/interfaces/swig/python/matlab_syntax.py +++ /dev/null @@ -1,269 +0,0 @@ -######################################################################################### -# -# IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -# -# By downloading, copying, installing or using the software you agree to this license. -# If you do not agree to this license, do not download, install, -# copy or use the software. -# -# -# Intel License Agreement -# For Open Source Computer Vision Library -# -# Copyright (C) 2000, Intel Corporation, all rights reserved. -# Third party copyrights are property of their respective owners. -# -# Redistribution and use in source and binary forms, with or without modification, -# are permitted provided that the following conditions are met: -# -# * Redistribution's of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# * Redistribution's in binary form must reproduce the above copyright notice, -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# -# * The name of Intel Corporation may not be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# This software is provided by the copyright holders and contributors "as is" and -# any express or implied warranties, including, but not limited to, the implied -# warranties of merchantability and fitness for a particular purpose are disclaimed. -# In no event shall the Intel Corporation or contributors be liable for any direct, -# indirect, incidental, special, exemplary, or consequential damages -# (including, but not limited to, procurement of substitute goods or services; -# loss of use, data, or profits; or business interruption) however caused -# and on any theory of liability, whether in contract, strict liability, -# or tort (including negligence or otherwise) arising in any way out of -# the use of this software, even if advised of the possibility of such damage. -# -######################################################################################### - -"""Matlab syntax for OpenCV - -For those who have switched from Matlab, this module offers similar syntax to the basic -Matlab commands. I.e. you can invoke 'imread' to load images, 'imshow', etc. -""" - -from cv import * -from highgui import cvShowImage,cvNamedWindow,cvLoadImage,cvWaitKey - -#__all__ = ['imagesc', 'display', 'imread', 'imshow', 'saveimage', 'loadimage', 'pause', -# 'Image', 'Image8', 'Image8c3', 'Image32s', 'Image32f', 'Image64f'] - -def eye(*args): - mat = array(*args) - cvSetIdentity(mat); - return mat - -def ones(*args): - mat = array(*args) - cvSet(mat, cvScalarAll(1.0)) - return mat - -def zeros(*args): - mat = array(*args) - cvSet(mat, cvScalarAll(0.0)) - return mat - -def array(*args): - m=1 - n=1 - c=1 - classname='single' - nargs = len(args) - # nasty argument parsing - if nargs>0: - if isinstance(args[0],tuple) or isinstance(args[0],list) and len(args[0]) > 1: - m=args[0][0] - n=args[0][1] - if len(args[0])>2: - c=args[0][2] - if len(args)>1: - classname = args[1] - else: - m=args[0] - if nargs == 1: - n=args[0] - elif nargs > 1: - # is the last argument the classname? - if args[nargs-1].__class__ == str: - classname = args[nargs-1] - nargs-=1 - if nargs > 1: - n = args[1] - if nargs > 2: - c = args[2] - - if(classname=='double'): - depth=cv.CV_64F - elif(classname=='single'): - depth=cv.CV_32F - elif(classname=='int8'): - depth=cv.CV_8S - elif(classname=='uint8'): - depth=cv.CV_8U - elif(classname=='int16'): - depth=cv.CV_16S - elif(classname=='uint16'): - depth=cv.CV_16U - elif(classname=='int32' or classname=='uint32' or - classname=='int64' or classname=='uint64'): - depth=cv.CV_32S - else: - depth=cv.CV_32F - depth = CV_MAKETYPE(depth, c) - return cvCreateMat(m,n,depth) - -def size(X,dim=-1): - # CvMat - if hasattr(X, "type"): - sz = (X.rows, X.cols, CV_MAT_CN(X.type)) - # IplImage - elif hasattr(X, "nChannels"): - sz = (X.height, X.width, X.nChannels) - # CvMatNd - else: - sz = cvGetDims(X) - - if dim is -1: - return sz - return sz[dim] - -def reshape(X, m, n=1, c=-1): - ''' - reshape will produce different results in matlab and python due to the - order of elements stored in the array (row-major vs. column major) - ''' - if c==-1: - c = CV_MAT_CN(X) - return cvReshape(X, c, m) - - -def im2float(im): - mat = cvGetMat(im); - if CV_MAT_DEPTH(mat.type)==CV_32F: - return mat - - im64f = array(size(im), 'float') - cvConvertScale(im, im64f, 1.0, 0.0) - return im64f - -def im2double(im): - mat = cvGetMat(im); - if CV_MAT_DEPTH(mat.type)==CV_64F: - return mat - im64f = array(size(im), 'double') - cvConvertScale(im, im64f, 1.0, 0.0) - return im64f - -def rgb2ntsc (rgb): - trans = [ [0.299, 0.596, 0.211], [0.587, -0.274, -0.523], [0.114, -0.322, 0.312] ]; - return rgb * trans; - -def rgb2gray(rgb): - ntscmap = rgb2ntsc (rgb); - graymap = ntscmap [:, 1] * ones (1, 3); - return graymap - -class cvImageViewer: - """ - Wrapper class for some matlab/octave/scilab syntax image viewing functions - """ - currentWindowName = "" - currentWindow = -1 - maxWindow = -1 - - def imagesc(self,im, clims=None): - """ - Display a normalized version of the image - """ - if(self.currentWindow==-1): - self.display() - - # don't normalize multichannel image - #if(im.nChannels>1): - # if(im.depth!=cv.IPL_DEPTH_8U): - # im2 = cvCreateImage( cvSize(im.width, im.height), cv.IPL_DEPTH_8U, im.nChannels) - # cvScale(im, im2) - # im = im2 - # cvShowImage(self.currentWindowName, im) - # return self.currentWindow - - # normalize image - if clims: - [minv, maxv] = clims - else: - [minv,maxv] = cvMinMaxLoc(im) - if maxv != minv: - s = 255.0/(maxv-minv) - shift = 255*(-minv)/(maxv-minv) - else: - s = 1.0 - shift = -maxv - - im2 = array( size(im), 'uint8' ) - cvConvertScale(im, im2, s, shift) - - cvShowImage(self.currentWindowName, im2) - - def image(self, im): - """ - Display image as is -- probably not what you'd expect for FP or integer images - """ - if(self.currentWindow==-1): - self.display() - - cvShowImage(self.currentWindowName,im) - return self.currentWindow - - - def display(self, index=-1): - """ - open a new window - """ - if(index==-1): - self.maxWindow = self.maxWindow+1; - index= self.maxWindow; - - if(index > self.maxWindow): - self.maxWindow = index; - - self.currentWindow = index; - self.currentWindowName = "opencv-python window %d" % self.currentWindow - cvNamedWindow(self.currentWindowName,0) - return self.currentWindow - -def drawnow(): - cvWaitKey(10) - -def pause(delay=-1): - if delay<0: - cvWaitKey(-1) - else: - cvWaitKey(delay*1000) - -c = cvImageViewer() -imagesc = c.imagesc -display = c.display -image = c.image -imshow = c.image - -def imread(fname): - return cvLoadImage(fname, -1) -loadimage = imread -imload = imread - -def imsave(im, fname, format): - return cvSaveImage(fname, im) -saveimage = imsave - -def gradient(F): - F = im2float(F) - Fx = array(size(F)) - Fy = array(size(F)) - - # new images - cvSobel(F, Fx, 1, 0, CV_SCHARR) - cvSobel(F, Fy, 0, 1, CV_SCHARR) - return (Fx, Fy) diff --git a/interfaces/swig/python/ml.i b/interfaces/swig/python/ml.i deleted file mode 100644 index d1c29791b..000000000 --- a/interfaces/swig/python/ml.i +++ /dev/null @@ -1,118 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - - -// 2004-03-16, Mark Asbach -// Institute of Communications Engineering, RWTH Aachen University - -%module(package="opencv") ml - -%{ - #include - #include - #include - #include - #include "pyhelpers.h" - #include "pycvseq.hpp" -%} - -// include python-specific files -%include "./nointpb.i" -%include "./pytypemaps.i" -%include "exception.i" - -%import "../general/cv.i" - -%include "../general/memory.i" -%include "../general/typemaps.i" - -%newobject cvCreateCNNConvolutionLayer; -%newobject cvCreateCNNSubSamplingLayer; -%newobject cvCreateCNNFullConnectLayer; -%newobject cvCreateCNNetwork; -%newobject cvTrainCNNClassifier; - -%newobject cvCreateCrossValidationEstimateModel; - - -%pythoncode -%{ - -__doc__ = """Machine Learning - -The Machine Learning library (ML) is a set of classes and functions for -statistical classification, regression and clustering of data. - -Most of the classification and regression algorithms are implemented as classes. -As the algorithms have different sets of features (like ability to handle missing -measurements, or categorical input variables etc.), there is only little common -ground between the classes. This common ground is defined by the class CvStatModel -that all the other ML classes are derived from. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. -""" - -%} - -%extend CvEM -{ - PyObject * get_covs() - { - CvMat ** pointers = const_cast (self->get_covs()); - int n = self->get_nclusters(); - - PyObject * result = PyTuple_New(n); - for (int i=0; i= (2,6,0): - def swig_import_helper(): - from os.path import dirname - import imp - fp = None - try: - fp, pathname, description = imp.find_module('_ml', [dirname(__file__)]) - except ImportError: - import _ml - return _ml - if fp is not None: - try: - _mod = imp.load_module('_ml', fp, pathname, description) - finally: - fp.close() - return _mod - _ml = swig_import_helper() - del swig_import_helper -else: - import _ml -del version_info -try: - _swig_property = property -except NameError: - pass # Python < 2.2 doesn't have 'property'. -def _swig_setattr_nondynamic(self,class_type,name,value,static=1): - if (name == "thisown"): return self.this.own(value) - if (name == "this"): - if type(value).__name__ == 'SwigPyObject': - self.__dict__[name] = value - return - method = class_type.__swig_setmethods__.get(name,None) - if method: return method(self,value) - if (not static) or hasattr(self,name): - self.__dict__[name] = value - else: - raise AttributeError("You cannot add attributes to %s" % self) - -def _swig_setattr(self,class_type,name,value): - return _swig_setattr_nondynamic(self,class_type,name,value,0) - -def _swig_getattr(self,class_type,name): - if (name == "thisown"): return self.this.own() - method = class_type.__swig_getmethods__.get(name,None) - if method: return method(self) - raise AttributeError(name) - -def _swig_repr(self): - try: strthis = "proxy of " + self.this.__repr__() - except: strthis = "" - return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) - -try: - _object = object - _newclass = 1 -except AttributeError: - class _object : pass - _newclass = 0 - - -class CvRNG_Wrapper(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvRNG_Wrapper, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvRNG_Wrapper, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvRNG_Wrapper(*args) - try: self.this.append(this) - except: self.this = this - def ptr(self): return _ml.CvRNG_Wrapper_ptr(self) - def ref(self): return _ml.CvRNG_Wrapper_ref(self) - def __eq__(self, *args): return _ml.CvRNG_Wrapper___eq__(self, *args) - def __ne__(self, *args): return _ml.CvRNG_Wrapper___ne__(self, *args) - __swig_destroy__ = _ml.delete_CvRNG_Wrapper - __del__ = lambda self : None; -CvRNG_Wrapper_swigregister = _ml.CvRNG_Wrapper_swigregister -CvRNG_Wrapper_swigregister(CvRNG_Wrapper) - -class CvSubdiv2DEdge_Wrapper(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSubdiv2DEdge_Wrapper, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSubdiv2DEdge_Wrapper, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvSubdiv2DEdge_Wrapper(*args) - try: self.this.append(this) - except: self.this = this - def ptr(self): return _ml.CvSubdiv2DEdge_Wrapper_ptr(self) - def ref(self): return _ml.CvSubdiv2DEdge_Wrapper_ref(self) - def __eq__(self, *args): return _ml.CvSubdiv2DEdge_Wrapper___eq__(self, *args) - def __ne__(self, *args): return _ml.CvSubdiv2DEdge_Wrapper___ne__(self, *args) - __swig_destroy__ = _ml.delete_CvSubdiv2DEdge_Wrapper - __del__ = lambda self : None; -CvSubdiv2DEdge_Wrapper_swigregister = _ml.CvSubdiv2DEdge_Wrapper_swigregister -CvSubdiv2DEdge_Wrapper_swigregister(CvSubdiv2DEdge_Wrapper) - -import cv -__doc__ = """Machine Learning - -The Machine Learning library (ML) is a set of classes and functions for -statistical classification, regression and clustering of data. - -Most of the classification and regression algorithms are implemented as classes. -As the algorithms have different sets of features (like ability to handle missing -measurements, or categorical input variables etc.), there is only little common -ground between the classes. This common ground is defined by the class CvStatModel -that all the other ML classes are derived from. - -This wrapper was semi-automatically created from the C/C++ headers and therefore -contains no Python documentation. Because all identifiers are identical to their -C/C++ counterparts, you can consult the standard manuals that come with OpenCV. -""" - - -CV_LOG2PI = _ml.CV_LOG2PI -CV_COL_SAMPLE = _ml.CV_COL_SAMPLE -CV_ROW_SAMPLE = _ml.CV_ROW_SAMPLE -class CvVectors(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvVectors, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvVectors, name) - __repr__ = _swig_repr - __swig_setmethods__["type"] = _ml.CvVectors_type_set - __swig_getmethods__["type"] = _ml.CvVectors_type_get - if _newclass:type = _swig_property(_ml.CvVectors_type_get, _ml.CvVectors_type_set) - __swig_setmethods__["dims"] = _ml.CvVectors_dims_set - __swig_getmethods__["dims"] = _ml.CvVectors_dims_get - if _newclass:dims = _swig_property(_ml.CvVectors_dims_get, _ml.CvVectors_dims_set) - __swig_setmethods__["count"] = _ml.CvVectors_count_set - __swig_getmethods__["count"] = _ml.CvVectors_count_get - if _newclass:count = _swig_property(_ml.CvVectors_count_get, _ml.CvVectors_count_set) - __swig_setmethods__["next"] = _ml.CvVectors_next_set - __swig_getmethods__["next"] = _ml.CvVectors_next_get - if _newclass:next = _swig_property(_ml.CvVectors_next_get, _ml.CvVectors_next_set) - __swig_getmethods__["data"] = _ml.CvVectors_data_get - if _newclass:data = _swig_property(_ml.CvVectors_data_get) - def __init__(self): - this = _ml.new_CvVectors() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvVectors - __del__ = lambda self : None; -CvVectors_swigregister = _ml.CvVectors_swigregister -CvVectors_swigregister(CvVectors) - -class CvVectors_data(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvVectors_data, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvVectors_data, name) - __repr__ = _swig_repr - __swig_setmethods__["ptr"] = _ml.CvVectors_data_ptr_set - __swig_getmethods__["ptr"] = _ml.CvVectors_data_ptr_get - if _newclass:ptr = _swig_property(_ml.CvVectors_data_ptr_get, _ml.CvVectors_data_ptr_set) - __swig_setmethods__["fl"] = _ml.CvVectors_data_fl_set - __swig_getmethods__["fl"] = _ml.CvVectors_data_fl_get - if _newclass:fl = _swig_property(_ml.CvVectors_data_fl_get, _ml.CvVectors_data_fl_set) - __swig_setmethods__["db"] = _ml.CvVectors_data_db_set - __swig_getmethods__["db"] = _ml.CvVectors_data_db_get - if _newclass:db = _swig_property(_ml.CvVectors_data_db_get, _ml.CvVectors_data_db_set) - def __init__(self): - this = _ml.new_CvVectors_data() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvVectors_data - __del__ = lambda self : None; -CvVectors_data_swigregister = _ml.CvVectors_data_swigregister -CvVectors_data_swigregister(CvVectors_data) - -CV_VAR_NUMERICAL = _ml.CV_VAR_NUMERICAL -CV_VAR_ORDERED = _ml.CV_VAR_ORDERED -CV_VAR_CATEGORICAL = _ml.CV_VAR_CATEGORICAL -CV_TYPE_NAME_ML_SVM = _ml.CV_TYPE_NAME_ML_SVM -CV_TYPE_NAME_ML_KNN = _ml.CV_TYPE_NAME_ML_KNN -CV_TYPE_NAME_ML_NBAYES = _ml.CV_TYPE_NAME_ML_NBAYES -CV_TYPE_NAME_ML_EM = _ml.CV_TYPE_NAME_ML_EM -CV_TYPE_NAME_ML_BOOSTING = _ml.CV_TYPE_NAME_ML_BOOSTING -CV_TYPE_NAME_ML_TREE = _ml.CV_TYPE_NAME_ML_TREE -CV_TYPE_NAME_ML_ANN_MLP = _ml.CV_TYPE_NAME_ML_ANN_MLP -CV_TYPE_NAME_ML_CNN = _ml.CV_TYPE_NAME_ML_CNN -CV_TYPE_NAME_ML_RTREES = _ml.CV_TYPE_NAME_ML_RTREES -CV_TRAIN_ERROR = _ml.CV_TRAIN_ERROR -CV_TEST_ERROR = _ml.CV_TEST_ERROR -class CvStatModel(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvStatModel, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvStatModel, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvStatModel() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvStatModel - __del__ = lambda self : None; - def clear(self): return _ml.CvStatModel_clear(self) - def save(self, *args): return _ml.CvStatModel_save(self, *args) - def load(self, *args): return _ml.CvStatModel_load(self, *args) - def write(self, *args): return _ml.CvStatModel_write(self, *args) - def read(self, *args): return _ml.CvStatModel_read(self, *args) -CvStatModel_swigregister = _ml.CvStatModel_swigregister -CvStatModel_swigregister(CvStatModel) - -class CvParamGrid(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvParamGrid, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvParamGrid, name) - __repr__ = _swig_repr - SVM_C = _ml.CvParamGrid_SVM_C - SVM_GAMMA = _ml.CvParamGrid_SVM_GAMMA - SVM_P = _ml.CvParamGrid_SVM_P - SVM_NU = _ml.CvParamGrid_SVM_NU - SVM_COEF = _ml.CvParamGrid_SVM_COEF - SVM_DEGREE = _ml.CvParamGrid_SVM_DEGREE - def __init__(self, *args): - this = _ml.new_CvParamGrid(*args) - try: self.this.append(this) - except: self.this = this - def check(self): return _ml.CvParamGrid_check(self) - __swig_setmethods__["min_val"] = _ml.CvParamGrid_min_val_set - __swig_getmethods__["min_val"] = _ml.CvParamGrid_min_val_get - if _newclass:min_val = _swig_property(_ml.CvParamGrid_min_val_get, _ml.CvParamGrid_min_val_set) - __swig_setmethods__["max_val"] = _ml.CvParamGrid_max_val_set - __swig_getmethods__["max_val"] = _ml.CvParamGrid_max_val_get - if _newclass:max_val = _swig_property(_ml.CvParamGrid_max_val_get, _ml.CvParamGrid_max_val_set) - __swig_setmethods__["step"] = _ml.CvParamGrid_step_set - __swig_getmethods__["step"] = _ml.CvParamGrid_step_get - if _newclass:step = _swig_property(_ml.CvParamGrid_step_get, _ml.CvParamGrid_step_set) - __swig_destroy__ = _ml.delete_CvParamGrid - __del__ = lambda self : None; -CvParamGrid_swigregister = _ml.CvParamGrid_swigregister -CvParamGrid_swigregister(CvParamGrid) - -class CvNormalBayesClassifier(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvNormalBayesClassifier, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvNormalBayesClassifier, name) - __repr__ = _swig_repr - __swig_destroy__ = _ml.delete_CvNormalBayesClassifier - __del__ = lambda self : None; - def __init__(self, *args): - this = _ml.new_CvNormalBayesClassifier(*args) - try: self.this.append(this) - except: self.this = this - def train(self, *args): return _ml.CvNormalBayesClassifier_train(self, *args) - def predict(self, *args): return _ml.CvNormalBayesClassifier_predict(self, *args) - def clear(self): return _ml.CvNormalBayesClassifier_clear(self) - def write(self, *args): return _ml.CvNormalBayesClassifier_write(self, *args) - def read(self, *args): return _ml.CvNormalBayesClassifier_read(self, *args) -CvNormalBayesClassifier_swigregister = _ml.CvNormalBayesClassifier_swigregister -CvNormalBayesClassifier_swigregister(CvNormalBayesClassifier) - -class CvKNearest(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvKNearest, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvKNearest, name) - __repr__ = _swig_repr - __swig_destroy__ = _ml.delete_CvKNearest - __del__ = lambda self : None; - def __init__(self, *args): - this = _ml.new_CvKNearest(*args) - try: self.this.append(this) - except: self.this = this - def train(self, *args): return _ml.CvKNearest_train(self, *args) - def find_nearest(self, *args): return _ml.CvKNearest_find_nearest(self, *args) - def clear(self): return _ml.CvKNearest_clear(self) - def get_max_k(self): return _ml.CvKNearest_get_max_k(self) - def get_var_count(self): return _ml.CvKNearest_get_var_count(self) - def get_sample_count(self): return _ml.CvKNearest_get_sample_count(self) - def is_regression(self): return _ml.CvKNearest_is_regression(self) -CvKNearest_swigregister = _ml.CvKNearest_swigregister -CvKNearest_swigregister(CvKNearest) - -class CvSVMParams(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVMParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSVMParams, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvSVMParams(*args) - try: self.this.append(this) - except: self.this = this - __swig_setmethods__["svm_type"] = _ml.CvSVMParams_svm_type_set - __swig_getmethods__["svm_type"] = _ml.CvSVMParams_svm_type_get - if _newclass:svm_type = _swig_property(_ml.CvSVMParams_svm_type_get, _ml.CvSVMParams_svm_type_set) - __swig_setmethods__["kernel_type"] = _ml.CvSVMParams_kernel_type_set - __swig_getmethods__["kernel_type"] = _ml.CvSVMParams_kernel_type_get - if _newclass:kernel_type = _swig_property(_ml.CvSVMParams_kernel_type_get, _ml.CvSVMParams_kernel_type_set) - __swig_setmethods__["degree"] = _ml.CvSVMParams_degree_set - __swig_getmethods__["degree"] = _ml.CvSVMParams_degree_get - if _newclass:degree = _swig_property(_ml.CvSVMParams_degree_get, _ml.CvSVMParams_degree_set) - __swig_setmethods__["gamma"] = _ml.CvSVMParams_gamma_set - __swig_getmethods__["gamma"] = _ml.CvSVMParams_gamma_get - if _newclass:gamma = _swig_property(_ml.CvSVMParams_gamma_get, _ml.CvSVMParams_gamma_set) - __swig_setmethods__["coef0"] = _ml.CvSVMParams_coef0_set - __swig_getmethods__["coef0"] = _ml.CvSVMParams_coef0_get - if _newclass:coef0 = _swig_property(_ml.CvSVMParams_coef0_get, _ml.CvSVMParams_coef0_set) - __swig_setmethods__["C"] = _ml.CvSVMParams_C_set - __swig_getmethods__["C"] = _ml.CvSVMParams_C_get - if _newclass:C = _swig_property(_ml.CvSVMParams_C_get, _ml.CvSVMParams_C_set) - __swig_setmethods__["nu"] = _ml.CvSVMParams_nu_set - __swig_getmethods__["nu"] = _ml.CvSVMParams_nu_get - if _newclass:nu = _swig_property(_ml.CvSVMParams_nu_get, _ml.CvSVMParams_nu_set) - __swig_setmethods__["p"] = _ml.CvSVMParams_p_set - __swig_getmethods__["p"] = _ml.CvSVMParams_p_get - if _newclass:p = _swig_property(_ml.CvSVMParams_p_get, _ml.CvSVMParams_p_set) - __swig_setmethods__["class_weights"] = _ml.CvSVMParams_class_weights_set - __swig_getmethods__["class_weights"] = _ml.CvSVMParams_class_weights_get - if _newclass:class_weights = _swig_property(_ml.CvSVMParams_class_weights_get, _ml.CvSVMParams_class_weights_set) - __swig_setmethods__["term_crit"] = _ml.CvSVMParams_term_crit_set - __swig_getmethods__["term_crit"] = _ml.CvSVMParams_term_crit_get - if _newclass:term_crit = _swig_property(_ml.CvSVMParams_term_crit_get, _ml.CvSVMParams_term_crit_set) - __swig_destroy__ = _ml.delete_CvSVMParams - __del__ = lambda self : None; -CvSVMParams_swigregister = _ml.CvSVMParams_swigregister -CvSVMParams_swigregister(CvSVMParams) - -class CvSVMKernel(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVMKernel, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSVMKernel, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvSVMKernel(*args) - try: self.this.append(this) - except: self.this = this - def create(self, *args): return _ml.CvSVMKernel_create(self, *args) - __swig_destroy__ = _ml.delete_CvSVMKernel - __del__ = lambda self : None; - def clear(self): return _ml.CvSVMKernel_clear(self) - def calc(self, *args): return _ml.CvSVMKernel_calc(self, *args) - __swig_setmethods__["params"] = _ml.CvSVMKernel_params_set - __swig_getmethods__["params"] = _ml.CvSVMKernel_params_get - if _newclass:params = _swig_property(_ml.CvSVMKernel_params_get, _ml.CvSVMKernel_params_set) - __swig_setmethods__["calc_func"] = _ml.CvSVMKernel_calc_func_set - __swig_getmethods__["calc_func"] = _ml.CvSVMKernel_calc_func_get - if _newclass:calc_func = _swig_property(_ml.CvSVMKernel_calc_func_get, _ml.CvSVMKernel_calc_func_set) - def calc_non_rbf_base(self, *args): return _ml.CvSVMKernel_calc_non_rbf_base(self, *args) - def calc_linear(self, *args): return _ml.CvSVMKernel_calc_linear(self, *args) - def calc_rbf(self, *args): return _ml.CvSVMKernel_calc_rbf(self, *args) - def calc_poly(self, *args): return _ml.CvSVMKernel_calc_poly(self, *args) - def calc_sigmoid(self, *args): return _ml.CvSVMKernel_calc_sigmoid(self, *args) -CvSVMKernel_swigregister = _ml.CvSVMKernel_swigregister -CvSVMKernel_swigregister(CvSVMKernel) - -class CvSVMKernelRow(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVMKernelRow, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSVMKernelRow, name) - __repr__ = _swig_repr - __swig_setmethods__["prev"] = _ml.CvSVMKernelRow_prev_set - __swig_getmethods__["prev"] = _ml.CvSVMKernelRow_prev_get - if _newclass:prev = _swig_property(_ml.CvSVMKernelRow_prev_get, _ml.CvSVMKernelRow_prev_set) - __swig_setmethods__["next"] = _ml.CvSVMKernelRow_next_set - __swig_getmethods__["next"] = _ml.CvSVMKernelRow_next_get - if _newclass:next = _swig_property(_ml.CvSVMKernelRow_next_get, _ml.CvSVMKernelRow_next_set) - __swig_setmethods__["data"] = _ml.CvSVMKernelRow_data_set - __swig_getmethods__["data"] = _ml.CvSVMKernelRow_data_get - if _newclass:data = _swig_property(_ml.CvSVMKernelRow_data_get, _ml.CvSVMKernelRow_data_set) - def __init__(self): - this = _ml.new_CvSVMKernelRow() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvSVMKernelRow - __del__ = lambda self : None; -CvSVMKernelRow_swigregister = _ml.CvSVMKernelRow_swigregister -CvSVMKernelRow_swigregister(CvSVMKernelRow) - -class CvSVMSolutionInfo(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVMSolutionInfo, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSVMSolutionInfo, name) - __repr__ = _swig_repr - __swig_setmethods__["obj"] = _ml.CvSVMSolutionInfo_obj_set - __swig_getmethods__["obj"] = _ml.CvSVMSolutionInfo_obj_get - if _newclass:obj = _swig_property(_ml.CvSVMSolutionInfo_obj_get, _ml.CvSVMSolutionInfo_obj_set) - __swig_setmethods__["rho"] = _ml.CvSVMSolutionInfo_rho_set - __swig_getmethods__["rho"] = _ml.CvSVMSolutionInfo_rho_get - if _newclass:rho = _swig_property(_ml.CvSVMSolutionInfo_rho_get, _ml.CvSVMSolutionInfo_rho_set) - __swig_setmethods__["upper_bound_p"] = _ml.CvSVMSolutionInfo_upper_bound_p_set - __swig_getmethods__["upper_bound_p"] = _ml.CvSVMSolutionInfo_upper_bound_p_get - if _newclass:upper_bound_p = _swig_property(_ml.CvSVMSolutionInfo_upper_bound_p_get, _ml.CvSVMSolutionInfo_upper_bound_p_set) - __swig_setmethods__["upper_bound_n"] = _ml.CvSVMSolutionInfo_upper_bound_n_set - __swig_getmethods__["upper_bound_n"] = _ml.CvSVMSolutionInfo_upper_bound_n_get - if _newclass:upper_bound_n = _swig_property(_ml.CvSVMSolutionInfo_upper_bound_n_get, _ml.CvSVMSolutionInfo_upper_bound_n_set) - __swig_setmethods__["r"] = _ml.CvSVMSolutionInfo_r_set - __swig_getmethods__["r"] = _ml.CvSVMSolutionInfo_r_get - if _newclass:r = _swig_property(_ml.CvSVMSolutionInfo_r_get, _ml.CvSVMSolutionInfo_r_set) - def __init__(self): - this = _ml.new_CvSVMSolutionInfo() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvSVMSolutionInfo - __del__ = lambda self : None; -CvSVMSolutionInfo_swigregister = _ml.CvSVMSolutionInfo_swigregister -CvSVMSolutionInfo_swigregister(CvSVMSolutionInfo) - -class CvSVMSolver(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVMSolver, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSVMSolver, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvSVMSolver(*args) - try: self.this.append(this) - except: self.this = this - def create(self, *args): return _ml.CvSVMSolver_create(self, *args) - __swig_destroy__ = _ml.delete_CvSVMSolver - __del__ = lambda self : None; - def clear(self): return _ml.CvSVMSolver_clear(self) - def solve_generic(self, *args): return _ml.CvSVMSolver_solve_generic(self, *args) - def solve_c_svc(self, *args): return _ml.CvSVMSolver_solve_c_svc(self, *args) - def solve_nu_svc(self, *args): return _ml.CvSVMSolver_solve_nu_svc(self, *args) - def solve_one_class(self, *args): return _ml.CvSVMSolver_solve_one_class(self, *args) - def solve_eps_svr(self, *args): return _ml.CvSVMSolver_solve_eps_svr(self, *args) - def solve_nu_svr(self, *args): return _ml.CvSVMSolver_solve_nu_svr(self, *args) - def get_row_base(self, *args): return _ml.CvSVMSolver_get_row_base(self, *args) - def get_row(self, *args): return _ml.CvSVMSolver_get_row(self, *args) - __swig_setmethods__["sample_count"] = _ml.CvSVMSolver_sample_count_set - __swig_getmethods__["sample_count"] = _ml.CvSVMSolver_sample_count_get - if _newclass:sample_count = _swig_property(_ml.CvSVMSolver_sample_count_get, _ml.CvSVMSolver_sample_count_set) - __swig_setmethods__["var_count"] = _ml.CvSVMSolver_var_count_set - __swig_getmethods__["var_count"] = _ml.CvSVMSolver_var_count_get - if _newclass:var_count = _swig_property(_ml.CvSVMSolver_var_count_get, _ml.CvSVMSolver_var_count_set) - __swig_setmethods__["cache_size"] = _ml.CvSVMSolver_cache_size_set - __swig_getmethods__["cache_size"] = _ml.CvSVMSolver_cache_size_get - if _newclass:cache_size = _swig_property(_ml.CvSVMSolver_cache_size_get, _ml.CvSVMSolver_cache_size_set) - __swig_setmethods__["cache_line_size"] = _ml.CvSVMSolver_cache_line_size_set - __swig_getmethods__["cache_line_size"] = _ml.CvSVMSolver_cache_line_size_get - if _newclass:cache_line_size = _swig_property(_ml.CvSVMSolver_cache_line_size_get, _ml.CvSVMSolver_cache_line_size_set) - __swig_setmethods__["samples"] = _ml.CvSVMSolver_samples_set - __swig_getmethods__["samples"] = _ml.CvSVMSolver_samples_get - if _newclass:samples = _swig_property(_ml.CvSVMSolver_samples_get, _ml.CvSVMSolver_samples_set) - __swig_setmethods__["params"] = _ml.CvSVMSolver_params_set - __swig_getmethods__["params"] = _ml.CvSVMSolver_params_get - if _newclass:params = _swig_property(_ml.CvSVMSolver_params_get, _ml.CvSVMSolver_params_set) - __swig_setmethods__["storage"] = _ml.CvSVMSolver_storage_set - __swig_getmethods__["storage"] = _ml.CvSVMSolver_storage_get - if _newclass:storage = _swig_property(_ml.CvSVMSolver_storage_get, _ml.CvSVMSolver_storage_set) - __swig_setmethods__["lru_list"] = _ml.CvSVMSolver_lru_list_set - __swig_getmethods__["lru_list"] = _ml.CvSVMSolver_lru_list_get - if _newclass:lru_list = _swig_property(_ml.CvSVMSolver_lru_list_get, _ml.CvSVMSolver_lru_list_set) - __swig_setmethods__["rows"] = _ml.CvSVMSolver_rows_set - __swig_getmethods__["rows"] = _ml.CvSVMSolver_rows_get - if _newclass:rows = _swig_property(_ml.CvSVMSolver_rows_get, _ml.CvSVMSolver_rows_set) - __swig_setmethods__["alpha_count"] = _ml.CvSVMSolver_alpha_count_set - __swig_getmethods__["alpha_count"] = _ml.CvSVMSolver_alpha_count_get - if _newclass:alpha_count = _swig_property(_ml.CvSVMSolver_alpha_count_get, _ml.CvSVMSolver_alpha_count_set) - __swig_setmethods__["G"] = _ml.CvSVMSolver_G_set - __swig_getmethods__["G"] = _ml.CvSVMSolver_G_get - if _newclass:G = _swig_property(_ml.CvSVMSolver_G_get, _ml.CvSVMSolver_G_set) - __swig_setmethods__["alpha"] = _ml.CvSVMSolver_alpha_set - __swig_getmethods__["alpha"] = _ml.CvSVMSolver_alpha_get - if _newclass:alpha = _swig_property(_ml.CvSVMSolver_alpha_get, _ml.CvSVMSolver_alpha_set) - __swig_setmethods__["alpha_status"] = _ml.CvSVMSolver_alpha_status_set - __swig_getmethods__["alpha_status"] = _ml.CvSVMSolver_alpha_status_get - if _newclass:alpha_status = _swig_property(_ml.CvSVMSolver_alpha_status_get, _ml.CvSVMSolver_alpha_status_set) - __swig_setmethods__["y"] = _ml.CvSVMSolver_y_set - __swig_getmethods__["y"] = _ml.CvSVMSolver_y_get - if _newclass:y = _swig_property(_ml.CvSVMSolver_y_get, _ml.CvSVMSolver_y_set) - __swig_setmethods__["b"] = _ml.CvSVMSolver_b_set - __swig_getmethods__["b"] = _ml.CvSVMSolver_b_get - if _newclass:b = _swig_property(_ml.CvSVMSolver_b_get, _ml.CvSVMSolver_b_set) - __swig_setmethods__["buf"] = _ml.CvSVMSolver_buf_set - __swig_getmethods__["buf"] = _ml.CvSVMSolver_buf_get - if _newclass:buf = _swig_property(_ml.CvSVMSolver_buf_get, _ml.CvSVMSolver_buf_set) - __swig_setmethods__["eps"] = _ml.CvSVMSolver_eps_set - __swig_getmethods__["eps"] = _ml.CvSVMSolver_eps_get - if _newclass:eps = _swig_property(_ml.CvSVMSolver_eps_get, _ml.CvSVMSolver_eps_set) - __swig_setmethods__["max_iter"] = _ml.CvSVMSolver_max_iter_set - __swig_getmethods__["max_iter"] = _ml.CvSVMSolver_max_iter_get - if _newclass:max_iter = _swig_property(_ml.CvSVMSolver_max_iter_get, _ml.CvSVMSolver_max_iter_set) - __swig_setmethods__["C"] = _ml.CvSVMSolver_C_set - __swig_getmethods__["C"] = _ml.CvSVMSolver_C_get - if _newclass:C = _swig_property(_ml.CvSVMSolver_C_get, _ml.CvSVMSolver_C_set) - __swig_setmethods__["kernel"] = _ml.CvSVMSolver_kernel_set - __swig_getmethods__["kernel"] = _ml.CvSVMSolver_kernel_get - if _newclass:kernel = _swig_property(_ml.CvSVMSolver_kernel_get, _ml.CvSVMSolver_kernel_set) - __swig_setmethods__["select_working_set_func"] = _ml.CvSVMSolver_select_working_set_func_set - __swig_getmethods__["select_working_set_func"] = _ml.CvSVMSolver_select_working_set_func_get - if _newclass:select_working_set_func = _swig_property(_ml.CvSVMSolver_select_working_set_func_get, _ml.CvSVMSolver_select_working_set_func_set) - __swig_setmethods__["calc_rho_func"] = _ml.CvSVMSolver_calc_rho_func_set - __swig_getmethods__["calc_rho_func"] = _ml.CvSVMSolver_calc_rho_func_get - if _newclass:calc_rho_func = _swig_property(_ml.CvSVMSolver_calc_rho_func_get, _ml.CvSVMSolver_calc_rho_func_set) - __swig_setmethods__["get_row_func"] = _ml.CvSVMSolver_get_row_func_set - __swig_getmethods__["get_row_func"] = _ml.CvSVMSolver_get_row_func_get - if _newclass:get_row_func = _swig_property(_ml.CvSVMSolver_get_row_func_get, _ml.CvSVMSolver_get_row_func_set) - def select_working_set(self, *args): return _ml.CvSVMSolver_select_working_set(self, *args) - def select_working_set_nu_svm(self, *args): return _ml.CvSVMSolver_select_working_set_nu_svm(self, *args) - def calc_rho(self, *args): return _ml.CvSVMSolver_calc_rho(self, *args) - def calc_rho_nu_svm(self, *args): return _ml.CvSVMSolver_calc_rho_nu_svm(self, *args) - def get_row_svc(self, *args): return _ml.CvSVMSolver_get_row_svc(self, *args) - def get_row_one_class(self, *args): return _ml.CvSVMSolver_get_row_one_class(self, *args) - def get_row_svr(self, *args): return _ml.CvSVMSolver_get_row_svr(self, *args) -CvSVMSolver_swigregister = _ml.CvSVMSolver_swigregister -CvSVMSolver_swigregister(CvSVMSolver) - -class CvSVMDecisionFunc(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVMDecisionFunc, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvSVMDecisionFunc, name) - __repr__ = _swig_repr - __swig_setmethods__["rho"] = _ml.CvSVMDecisionFunc_rho_set - __swig_getmethods__["rho"] = _ml.CvSVMDecisionFunc_rho_get - if _newclass:rho = _swig_property(_ml.CvSVMDecisionFunc_rho_get, _ml.CvSVMDecisionFunc_rho_set) - __swig_setmethods__["sv_count"] = _ml.CvSVMDecisionFunc_sv_count_set - __swig_getmethods__["sv_count"] = _ml.CvSVMDecisionFunc_sv_count_get - if _newclass:sv_count = _swig_property(_ml.CvSVMDecisionFunc_sv_count_get, _ml.CvSVMDecisionFunc_sv_count_set) - __swig_setmethods__["alpha"] = _ml.CvSVMDecisionFunc_alpha_set - __swig_getmethods__["alpha"] = _ml.CvSVMDecisionFunc_alpha_get - if _newclass:alpha = _swig_property(_ml.CvSVMDecisionFunc_alpha_get, _ml.CvSVMDecisionFunc_alpha_set) - __swig_setmethods__["sv_index"] = _ml.CvSVMDecisionFunc_sv_index_set - __swig_getmethods__["sv_index"] = _ml.CvSVMDecisionFunc_sv_index_get - if _newclass:sv_index = _swig_property(_ml.CvSVMDecisionFunc_sv_index_get, _ml.CvSVMDecisionFunc_sv_index_set) - def __init__(self): - this = _ml.new_CvSVMDecisionFunc() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvSVMDecisionFunc - __del__ = lambda self : None; -CvSVMDecisionFunc_swigregister = _ml.CvSVMDecisionFunc_swigregister -CvSVMDecisionFunc_swigregister(CvSVMDecisionFunc) - -class CvSVM(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvSVM, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvSVM, name) - __repr__ = _swig_repr - C_SVC = _ml.CvSVM_C_SVC - NU_SVC = _ml.CvSVM_NU_SVC - ONE_CLASS = _ml.CvSVM_ONE_CLASS - EPS_SVR = _ml.CvSVM_EPS_SVR - NU_SVR = _ml.CvSVM_NU_SVR - LINEAR = _ml.CvSVM_LINEAR - POLY = _ml.CvSVM_POLY - RBF = _ml.CvSVM_RBF - SIGMOID = _ml.CvSVM_SIGMOID - C = _ml.CvSVM_C - GAMMA = _ml.CvSVM_GAMMA - P = _ml.CvSVM_P - NU = _ml.CvSVM_NU - COEF = _ml.CvSVM_COEF - DEGREE = _ml.CvSVM_DEGREE - __swig_destroy__ = _ml.delete_CvSVM - __del__ = lambda self : None; - def __init__(self, *args): - this = _ml.new_CvSVM(*args) - try: self.this.append(this) - except: self.this = this - def train(self, *args): return _ml.CvSVM_train(self, *args) - def train_auto(self, *args): return _ml.CvSVM_train_auto(self, *args) - def predict(self, *args): return _ml.CvSVM_predict(self, *args) - def get_support_vector_count(self): return _ml.CvSVM_get_support_vector_count(self) - def get_support_vector(self, *args): return _ml.CvSVM_get_support_vector(self, *args) - def get_params(self): return _ml.CvSVM_get_params(self) - def clear(self): return _ml.CvSVM_clear(self) - __swig_getmethods__["get_default_grid"] = lambda x: _ml.CvSVM_get_default_grid - if _newclass:get_default_grid = staticmethod(_ml.CvSVM_get_default_grid) - def write(self, *args): return _ml.CvSVM_write(self, *args) - def read(self, *args): return _ml.CvSVM_read(self, *args) - def get_var_count(self): return _ml.CvSVM_get_var_count(self) -CvSVM_swigregister = _ml.CvSVM_swigregister -CvSVM_swigregister(CvSVM) - -def CvSVM_get_default_grid(*args): - return _ml.CvSVM_get_default_grid(*args) -CvSVM_get_default_grid = _ml.CvSVM_get_default_grid - -class CvEMParams(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvEMParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvEMParams, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvEMParams(*args) - try: self.this.append(this) - except: self.this = this - __swig_setmethods__["nclusters"] = _ml.CvEMParams_nclusters_set - __swig_getmethods__["nclusters"] = _ml.CvEMParams_nclusters_get - if _newclass:nclusters = _swig_property(_ml.CvEMParams_nclusters_get, _ml.CvEMParams_nclusters_set) - __swig_setmethods__["cov_mat_type"] = _ml.CvEMParams_cov_mat_type_set - __swig_getmethods__["cov_mat_type"] = _ml.CvEMParams_cov_mat_type_get - if _newclass:cov_mat_type = _swig_property(_ml.CvEMParams_cov_mat_type_get, _ml.CvEMParams_cov_mat_type_set) - __swig_setmethods__["start_step"] = _ml.CvEMParams_start_step_set - __swig_getmethods__["start_step"] = _ml.CvEMParams_start_step_get - if _newclass:start_step = _swig_property(_ml.CvEMParams_start_step_get, _ml.CvEMParams_start_step_set) - __swig_setmethods__["probs"] = _ml.CvEMParams_probs_set - __swig_getmethods__["probs"] = _ml.CvEMParams_probs_get - if _newclass:probs = _swig_property(_ml.CvEMParams_probs_get, _ml.CvEMParams_probs_set) - __swig_setmethods__["weights"] = _ml.CvEMParams_weights_set - __swig_getmethods__["weights"] = _ml.CvEMParams_weights_get - if _newclass:weights = _swig_property(_ml.CvEMParams_weights_get, _ml.CvEMParams_weights_set) - __swig_setmethods__["means"] = _ml.CvEMParams_means_set - __swig_getmethods__["means"] = _ml.CvEMParams_means_get - if _newclass:means = _swig_property(_ml.CvEMParams_means_get, _ml.CvEMParams_means_set) - __swig_setmethods__["covs"] = _ml.CvEMParams_covs_set - __swig_getmethods__["covs"] = _ml.CvEMParams_covs_get - if _newclass:covs = _swig_property(_ml.CvEMParams_covs_get, _ml.CvEMParams_covs_set) - __swig_setmethods__["term_crit"] = _ml.CvEMParams_term_crit_set - __swig_getmethods__["term_crit"] = _ml.CvEMParams_term_crit_get - if _newclass:term_crit = _swig_property(_ml.CvEMParams_term_crit_get, _ml.CvEMParams_term_crit_set) - __swig_destroy__ = _ml.delete_CvEMParams - __del__ = lambda self : None; -CvEMParams_swigregister = _ml.CvEMParams_swigregister -CvEMParams_swigregister(CvEMParams) - -class CvEM(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvEM, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvEM, name) - __repr__ = _swig_repr - COV_MAT_SPHERICAL = _ml.CvEM_COV_MAT_SPHERICAL - COV_MAT_DIAGONAL = _ml.CvEM_COV_MAT_DIAGONAL - COV_MAT_GENERIC = _ml.CvEM_COV_MAT_GENERIC - START_E_STEP = _ml.CvEM_START_E_STEP - START_M_STEP = _ml.CvEM_START_M_STEP - START_AUTO_STEP = _ml.CvEM_START_AUTO_STEP - def __init__(self, *args): - this = _ml.new_CvEM(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvEM - __del__ = lambda self : None; - def train(self, *args): return _ml.CvEM_train(self, *args) - def predict(self, *args): return _ml.CvEM_predict(self, *args) - def clear(self): return _ml.CvEM_clear(self) - def get_nclusters(self): return _ml.CvEM_get_nclusters(self) - def get_means(self): return _ml.CvEM_get_means(self) - def get_weights(self): return _ml.CvEM_get_weights(self) - def get_probs(self): return _ml.CvEM_get_probs(self) - def get_log_likelihood(self): return _ml.CvEM_get_log_likelihood(self) - def get_covs(self): return _ml.CvEM_get_covs(self) -CvEM_swigregister = _ml.CvEM_swigregister -CvEM_swigregister(CvEM) - -class CvPair16u32s(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvPair16u32s, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvPair16u32s, name) - __repr__ = _swig_repr - __swig_setmethods__["u"] = _ml.CvPair16u32s_u_set - __swig_getmethods__["u"] = _ml.CvPair16u32s_u_get - if _newclass:u = _swig_property(_ml.CvPair16u32s_u_get, _ml.CvPair16u32s_u_set) - __swig_setmethods__["i"] = _ml.CvPair16u32s_i_set - __swig_getmethods__["i"] = _ml.CvPair16u32s_i_get - if _newclass:i = _swig_property(_ml.CvPair16u32s_i_get, _ml.CvPair16u32s_i_set) - def __init__(self): - this = _ml.new_CvPair16u32s() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvPair16u32s - __del__ = lambda self : None; -CvPair16u32s_swigregister = _ml.CvPair16u32s_swigregister -CvPair16u32s_swigregister(CvPair16u32s) - -class CvDTreeSplit(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvDTreeSplit, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvDTreeSplit, name) - __repr__ = _swig_repr - __swig_setmethods__["var_idx"] = _ml.CvDTreeSplit_var_idx_set - __swig_getmethods__["var_idx"] = _ml.CvDTreeSplit_var_idx_get - if _newclass:var_idx = _swig_property(_ml.CvDTreeSplit_var_idx_get, _ml.CvDTreeSplit_var_idx_set) - __swig_setmethods__["condensed_idx"] = _ml.CvDTreeSplit_condensed_idx_set - __swig_getmethods__["condensed_idx"] = _ml.CvDTreeSplit_condensed_idx_get - if _newclass:condensed_idx = _swig_property(_ml.CvDTreeSplit_condensed_idx_get, _ml.CvDTreeSplit_condensed_idx_set) - __swig_setmethods__["inversed"] = _ml.CvDTreeSplit_inversed_set - __swig_getmethods__["inversed"] = _ml.CvDTreeSplit_inversed_get - if _newclass:inversed = _swig_property(_ml.CvDTreeSplit_inversed_get, _ml.CvDTreeSplit_inversed_set) - __swig_setmethods__["quality"] = _ml.CvDTreeSplit_quality_set - __swig_getmethods__["quality"] = _ml.CvDTreeSplit_quality_get - if _newclass:quality = _swig_property(_ml.CvDTreeSplit_quality_get, _ml.CvDTreeSplit_quality_set) - __swig_setmethods__["next"] = _ml.CvDTreeSplit_next_set - __swig_getmethods__["next"] = _ml.CvDTreeSplit_next_get - if _newclass:next = _swig_property(_ml.CvDTreeSplit_next_get, _ml.CvDTreeSplit_next_set) - def __init__(self): - this = _ml.new_CvDTreeSplit() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvDTreeSplit - __del__ = lambda self : None; -CvDTreeSplit_swigregister = _ml.CvDTreeSplit_swigregister -CvDTreeSplit_swigregister(CvDTreeSplit) - -class CvDTreeNode(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvDTreeNode, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvDTreeNode, name) - __repr__ = _swig_repr - __swig_setmethods__["class_idx"] = _ml.CvDTreeNode_class_idx_set - __swig_getmethods__["class_idx"] = _ml.CvDTreeNode_class_idx_get - if _newclass:class_idx = _swig_property(_ml.CvDTreeNode_class_idx_get, _ml.CvDTreeNode_class_idx_set) - __swig_setmethods__["Tn"] = _ml.CvDTreeNode_Tn_set - __swig_getmethods__["Tn"] = _ml.CvDTreeNode_Tn_get - if _newclass:Tn = _swig_property(_ml.CvDTreeNode_Tn_get, _ml.CvDTreeNode_Tn_set) - __swig_setmethods__["value"] = _ml.CvDTreeNode_value_set - __swig_getmethods__["value"] = _ml.CvDTreeNode_value_get - if _newclass:value = _swig_property(_ml.CvDTreeNode_value_get, _ml.CvDTreeNode_value_set) - __swig_setmethods__["parent"] = _ml.CvDTreeNode_parent_set - __swig_getmethods__["parent"] = _ml.CvDTreeNode_parent_get - if _newclass:parent = _swig_property(_ml.CvDTreeNode_parent_get, _ml.CvDTreeNode_parent_set) - __swig_setmethods__["left"] = _ml.CvDTreeNode_left_set - __swig_getmethods__["left"] = _ml.CvDTreeNode_left_get - if _newclass:left = _swig_property(_ml.CvDTreeNode_left_get, _ml.CvDTreeNode_left_set) - __swig_setmethods__["right"] = _ml.CvDTreeNode_right_set - __swig_getmethods__["right"] = _ml.CvDTreeNode_right_get - if _newclass:right = _swig_property(_ml.CvDTreeNode_right_get, _ml.CvDTreeNode_right_set) - __swig_setmethods__["split"] = _ml.CvDTreeNode_split_set - __swig_getmethods__["split"] = _ml.CvDTreeNode_split_get - if _newclass:split = _swig_property(_ml.CvDTreeNode_split_get, _ml.CvDTreeNode_split_set) - __swig_setmethods__["sample_count"] = _ml.CvDTreeNode_sample_count_set - __swig_getmethods__["sample_count"] = _ml.CvDTreeNode_sample_count_get - if _newclass:sample_count = _swig_property(_ml.CvDTreeNode_sample_count_get, _ml.CvDTreeNode_sample_count_set) - __swig_setmethods__["depth"] = _ml.CvDTreeNode_depth_set - __swig_getmethods__["depth"] = _ml.CvDTreeNode_depth_get - if _newclass:depth = _swig_property(_ml.CvDTreeNode_depth_get, _ml.CvDTreeNode_depth_set) - __swig_setmethods__["num_valid"] = _ml.CvDTreeNode_num_valid_set - __swig_getmethods__["num_valid"] = _ml.CvDTreeNode_num_valid_get - if _newclass:num_valid = _swig_property(_ml.CvDTreeNode_num_valid_get, _ml.CvDTreeNode_num_valid_set) - __swig_setmethods__["offset"] = _ml.CvDTreeNode_offset_set - __swig_getmethods__["offset"] = _ml.CvDTreeNode_offset_get - if _newclass:offset = _swig_property(_ml.CvDTreeNode_offset_get, _ml.CvDTreeNode_offset_set) - __swig_setmethods__["buf_idx"] = _ml.CvDTreeNode_buf_idx_set - __swig_getmethods__["buf_idx"] = _ml.CvDTreeNode_buf_idx_get - if _newclass:buf_idx = _swig_property(_ml.CvDTreeNode_buf_idx_get, _ml.CvDTreeNode_buf_idx_set) - __swig_setmethods__["maxlr"] = _ml.CvDTreeNode_maxlr_set - __swig_getmethods__["maxlr"] = _ml.CvDTreeNode_maxlr_get - if _newclass:maxlr = _swig_property(_ml.CvDTreeNode_maxlr_get, _ml.CvDTreeNode_maxlr_set) - __swig_setmethods__["complexity"] = _ml.CvDTreeNode_complexity_set - __swig_getmethods__["complexity"] = _ml.CvDTreeNode_complexity_get - if _newclass:complexity = _swig_property(_ml.CvDTreeNode_complexity_get, _ml.CvDTreeNode_complexity_set) - __swig_setmethods__["alpha"] = _ml.CvDTreeNode_alpha_set - __swig_getmethods__["alpha"] = _ml.CvDTreeNode_alpha_get - if _newclass:alpha = _swig_property(_ml.CvDTreeNode_alpha_get, _ml.CvDTreeNode_alpha_set) - __swig_setmethods__["node_risk"] = _ml.CvDTreeNode_node_risk_set - __swig_getmethods__["node_risk"] = _ml.CvDTreeNode_node_risk_get - if _newclass:node_risk = _swig_property(_ml.CvDTreeNode_node_risk_get, _ml.CvDTreeNode_node_risk_set) - __swig_setmethods__["tree_risk"] = _ml.CvDTreeNode_tree_risk_set - __swig_getmethods__["tree_risk"] = _ml.CvDTreeNode_tree_risk_get - if _newclass:tree_risk = _swig_property(_ml.CvDTreeNode_tree_risk_get, _ml.CvDTreeNode_tree_risk_set) - __swig_setmethods__["tree_error"] = _ml.CvDTreeNode_tree_error_set - __swig_getmethods__["tree_error"] = _ml.CvDTreeNode_tree_error_get - if _newclass:tree_error = _swig_property(_ml.CvDTreeNode_tree_error_get, _ml.CvDTreeNode_tree_error_set) - __swig_setmethods__["cv_Tn"] = _ml.CvDTreeNode_cv_Tn_set - __swig_getmethods__["cv_Tn"] = _ml.CvDTreeNode_cv_Tn_get - if _newclass:cv_Tn = _swig_property(_ml.CvDTreeNode_cv_Tn_get, _ml.CvDTreeNode_cv_Tn_set) - __swig_setmethods__["cv_node_risk"] = _ml.CvDTreeNode_cv_node_risk_set - __swig_getmethods__["cv_node_risk"] = _ml.CvDTreeNode_cv_node_risk_get - if _newclass:cv_node_risk = _swig_property(_ml.CvDTreeNode_cv_node_risk_get, _ml.CvDTreeNode_cv_node_risk_set) - __swig_setmethods__["cv_node_error"] = _ml.CvDTreeNode_cv_node_error_set - __swig_getmethods__["cv_node_error"] = _ml.CvDTreeNode_cv_node_error_get - if _newclass:cv_node_error = _swig_property(_ml.CvDTreeNode_cv_node_error_get, _ml.CvDTreeNode_cv_node_error_set) - def get_num_valid(self, *args): return _ml.CvDTreeNode_get_num_valid(self, *args) - def set_num_valid(self, *args): return _ml.CvDTreeNode_set_num_valid(self, *args) - def __init__(self): - this = _ml.new_CvDTreeNode() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvDTreeNode - __del__ = lambda self : None; -CvDTreeNode_swigregister = _ml.CvDTreeNode_swigregister -CvDTreeNode_swigregister(CvDTreeNode) - -class CvDTreeParams(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvDTreeParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvDTreeParams, name) - __repr__ = _swig_repr - __swig_setmethods__["max_categories"] = _ml.CvDTreeParams_max_categories_set - __swig_getmethods__["max_categories"] = _ml.CvDTreeParams_max_categories_get - if _newclass:max_categories = _swig_property(_ml.CvDTreeParams_max_categories_get, _ml.CvDTreeParams_max_categories_set) - __swig_setmethods__["max_depth"] = _ml.CvDTreeParams_max_depth_set - __swig_getmethods__["max_depth"] = _ml.CvDTreeParams_max_depth_get - if _newclass:max_depth = _swig_property(_ml.CvDTreeParams_max_depth_get, _ml.CvDTreeParams_max_depth_set) - __swig_setmethods__["min_sample_count"] = _ml.CvDTreeParams_min_sample_count_set - __swig_getmethods__["min_sample_count"] = _ml.CvDTreeParams_min_sample_count_get - if _newclass:min_sample_count = _swig_property(_ml.CvDTreeParams_min_sample_count_get, _ml.CvDTreeParams_min_sample_count_set) - __swig_setmethods__["cv_folds"] = _ml.CvDTreeParams_cv_folds_set - __swig_getmethods__["cv_folds"] = _ml.CvDTreeParams_cv_folds_get - if _newclass:cv_folds = _swig_property(_ml.CvDTreeParams_cv_folds_get, _ml.CvDTreeParams_cv_folds_set) - __swig_setmethods__["use_surrogates"] = _ml.CvDTreeParams_use_surrogates_set - __swig_getmethods__["use_surrogates"] = _ml.CvDTreeParams_use_surrogates_get - if _newclass:use_surrogates = _swig_property(_ml.CvDTreeParams_use_surrogates_get, _ml.CvDTreeParams_use_surrogates_set) - __swig_setmethods__["use_1se_rule"] = _ml.CvDTreeParams_use_1se_rule_set - __swig_getmethods__["use_1se_rule"] = _ml.CvDTreeParams_use_1se_rule_get - if _newclass:use_1se_rule = _swig_property(_ml.CvDTreeParams_use_1se_rule_get, _ml.CvDTreeParams_use_1se_rule_set) - __swig_setmethods__["truncate_pruned_tree"] = _ml.CvDTreeParams_truncate_pruned_tree_set - __swig_getmethods__["truncate_pruned_tree"] = _ml.CvDTreeParams_truncate_pruned_tree_get - if _newclass:truncate_pruned_tree = _swig_property(_ml.CvDTreeParams_truncate_pruned_tree_get, _ml.CvDTreeParams_truncate_pruned_tree_set) - __swig_setmethods__["regression_accuracy"] = _ml.CvDTreeParams_regression_accuracy_set - __swig_getmethods__["regression_accuracy"] = _ml.CvDTreeParams_regression_accuracy_get - if _newclass:regression_accuracy = _swig_property(_ml.CvDTreeParams_regression_accuracy_get, _ml.CvDTreeParams_regression_accuracy_set) - __swig_setmethods__["priors"] = _ml.CvDTreeParams_priors_set - __swig_getmethods__["priors"] = _ml.CvDTreeParams_priors_get - if _newclass:priors = _swig_property(_ml.CvDTreeParams_priors_get, _ml.CvDTreeParams_priors_set) - def __init__(self, *args): - this = _ml.new_CvDTreeParams(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvDTreeParams - __del__ = lambda self : None; -CvDTreeParams_swigregister = _ml.CvDTreeParams_swigregister -CvDTreeParams_swigregister(CvDTreeParams) - -class CvDTreeTrainData(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvDTreeTrainData, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvDTreeTrainData, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvDTreeTrainData(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvDTreeTrainData - __del__ = lambda self : None; - def set_data(self, *args): return _ml.CvDTreeTrainData_set_data(self, *args) - def do_responses_copy(self): return _ml.CvDTreeTrainData_do_responses_copy(self) - def get_vectors(self, *args): return _ml.CvDTreeTrainData_get_vectors(self, *args) - def subsample_data(self, *args): return _ml.CvDTreeTrainData_subsample_data(self, *args) - def write_params(self, *args): return _ml.CvDTreeTrainData_write_params(self, *args) - def read_params(self, *args): return _ml.CvDTreeTrainData_read_params(self, *args) - def clear(self): return _ml.CvDTreeTrainData_clear(self) - def get_num_classes(self): return _ml.CvDTreeTrainData_get_num_classes(self) - def get_var_type(self, *args): return _ml.CvDTreeTrainData_get_var_type(self, *args) - def get_work_var_count(self): return _ml.CvDTreeTrainData_get_work_var_count(self) - def get_ord_responses(self, *args): return _ml.CvDTreeTrainData_get_ord_responses(self, *args) - def get_class_labels(self, *args): return _ml.CvDTreeTrainData_get_class_labels(self, *args) - def get_cv_labels(self, *args): return _ml.CvDTreeTrainData_get_cv_labels(self, *args) - def get_sample_indices(self, *args): return _ml.CvDTreeTrainData_get_sample_indices(self, *args) - def get_cat_var_data(self, *args): return _ml.CvDTreeTrainData_get_cat_var_data(self, *args) - def get_ord_var_data(self, *args): return _ml.CvDTreeTrainData_get_ord_var_data(self, *args) - def get_child_buf_idx(self, *args): return _ml.CvDTreeTrainData_get_child_buf_idx(self, *args) - def set_params(self, *args): return _ml.CvDTreeTrainData_set_params(self, *args) - def new_node(self, *args): return _ml.CvDTreeTrainData_new_node(self, *args) - def new_split_ord(self, *args): return _ml.CvDTreeTrainData_new_split_ord(self, *args) - def new_split_cat(self, *args): return _ml.CvDTreeTrainData_new_split_cat(self, *args) - def free_node_data(self, *args): return _ml.CvDTreeTrainData_free_node_data(self, *args) - def free_train_data(self): return _ml.CvDTreeTrainData_free_train_data(self) - def free_node(self, *args): return _ml.CvDTreeTrainData_free_node(self, *args) - def get_pred_float_buf(self): return _ml.CvDTreeTrainData_get_pred_float_buf(self) - def get_pred_int_buf(self): return _ml.CvDTreeTrainData_get_pred_int_buf(self) - def get_resp_float_buf(self): return _ml.CvDTreeTrainData_get_resp_float_buf(self) - def get_resp_int_buf(self): return _ml.CvDTreeTrainData_get_resp_int_buf(self) - def get_cv_lables_buf(self): return _ml.CvDTreeTrainData_get_cv_lables_buf(self) - def get_sample_idx_buf(self): return _ml.CvDTreeTrainData_get_sample_idx_buf(self) - __swig_setmethods__["pred_float_buf"] = _ml.CvDTreeTrainData_pred_float_buf_set - __swig_getmethods__["pred_float_buf"] = _ml.CvDTreeTrainData_pred_float_buf_get - if _newclass:pred_float_buf = _swig_property(_ml.CvDTreeTrainData_pred_float_buf_get, _ml.CvDTreeTrainData_pred_float_buf_set) - __swig_setmethods__["pred_int_buf"] = _ml.CvDTreeTrainData_pred_int_buf_set - __swig_getmethods__["pred_int_buf"] = _ml.CvDTreeTrainData_pred_int_buf_get - if _newclass:pred_int_buf = _swig_property(_ml.CvDTreeTrainData_pred_int_buf_get, _ml.CvDTreeTrainData_pred_int_buf_set) - __swig_setmethods__["resp_float_buf"] = _ml.CvDTreeTrainData_resp_float_buf_set - __swig_getmethods__["resp_float_buf"] = _ml.CvDTreeTrainData_resp_float_buf_get - if _newclass:resp_float_buf = _swig_property(_ml.CvDTreeTrainData_resp_float_buf_get, _ml.CvDTreeTrainData_resp_float_buf_set) - __swig_setmethods__["resp_int_buf"] = _ml.CvDTreeTrainData_resp_int_buf_set - __swig_getmethods__["resp_int_buf"] = _ml.CvDTreeTrainData_resp_int_buf_get - if _newclass:resp_int_buf = _swig_property(_ml.CvDTreeTrainData_resp_int_buf_get, _ml.CvDTreeTrainData_resp_int_buf_set) - __swig_setmethods__["cv_lables_buf"] = _ml.CvDTreeTrainData_cv_lables_buf_set - __swig_getmethods__["cv_lables_buf"] = _ml.CvDTreeTrainData_cv_lables_buf_get - if _newclass:cv_lables_buf = _swig_property(_ml.CvDTreeTrainData_cv_lables_buf_get, _ml.CvDTreeTrainData_cv_lables_buf_set) - __swig_setmethods__["sample_idx_buf"] = _ml.CvDTreeTrainData_sample_idx_buf_set - __swig_getmethods__["sample_idx_buf"] = _ml.CvDTreeTrainData_sample_idx_buf_get - if _newclass:sample_idx_buf = _swig_property(_ml.CvDTreeTrainData_sample_idx_buf_get, _ml.CvDTreeTrainData_sample_idx_buf_set) - __swig_setmethods__["sample_count"] = _ml.CvDTreeTrainData_sample_count_set - __swig_getmethods__["sample_count"] = _ml.CvDTreeTrainData_sample_count_get - if _newclass:sample_count = _swig_property(_ml.CvDTreeTrainData_sample_count_get, _ml.CvDTreeTrainData_sample_count_set) - __swig_setmethods__["var_all"] = _ml.CvDTreeTrainData_var_all_set - __swig_getmethods__["var_all"] = _ml.CvDTreeTrainData_var_all_get - if _newclass:var_all = _swig_property(_ml.CvDTreeTrainData_var_all_get, _ml.CvDTreeTrainData_var_all_set) - __swig_setmethods__["var_count"] = _ml.CvDTreeTrainData_var_count_set - __swig_getmethods__["var_count"] = _ml.CvDTreeTrainData_var_count_get - if _newclass:var_count = _swig_property(_ml.CvDTreeTrainData_var_count_get, _ml.CvDTreeTrainData_var_count_set) - __swig_setmethods__["max_c_count"] = _ml.CvDTreeTrainData_max_c_count_set - __swig_getmethods__["max_c_count"] = _ml.CvDTreeTrainData_max_c_count_get - if _newclass:max_c_count = _swig_property(_ml.CvDTreeTrainData_max_c_count_get, _ml.CvDTreeTrainData_max_c_count_set) - __swig_setmethods__["ord_var_count"] = _ml.CvDTreeTrainData_ord_var_count_set - __swig_getmethods__["ord_var_count"] = _ml.CvDTreeTrainData_ord_var_count_get - if _newclass:ord_var_count = _swig_property(_ml.CvDTreeTrainData_ord_var_count_get, _ml.CvDTreeTrainData_ord_var_count_set) - __swig_setmethods__["cat_var_count"] = _ml.CvDTreeTrainData_cat_var_count_set - __swig_getmethods__["cat_var_count"] = _ml.CvDTreeTrainData_cat_var_count_get - if _newclass:cat_var_count = _swig_property(_ml.CvDTreeTrainData_cat_var_count_get, _ml.CvDTreeTrainData_cat_var_count_set) - __swig_setmethods__["work_var_count"] = _ml.CvDTreeTrainData_work_var_count_set - __swig_getmethods__["work_var_count"] = _ml.CvDTreeTrainData_work_var_count_get - if _newclass:work_var_count = _swig_property(_ml.CvDTreeTrainData_work_var_count_get, _ml.CvDTreeTrainData_work_var_count_set) - __swig_setmethods__["have_labels"] = _ml.CvDTreeTrainData_have_labels_set - __swig_getmethods__["have_labels"] = _ml.CvDTreeTrainData_have_labels_get - if _newclass:have_labels = _swig_property(_ml.CvDTreeTrainData_have_labels_get, _ml.CvDTreeTrainData_have_labels_set) - __swig_setmethods__["have_priors"] = _ml.CvDTreeTrainData_have_priors_set - __swig_getmethods__["have_priors"] = _ml.CvDTreeTrainData_have_priors_get - if _newclass:have_priors = _swig_property(_ml.CvDTreeTrainData_have_priors_get, _ml.CvDTreeTrainData_have_priors_set) - __swig_setmethods__["is_classifier"] = _ml.CvDTreeTrainData_is_classifier_set - __swig_getmethods__["is_classifier"] = _ml.CvDTreeTrainData_is_classifier_get - if _newclass:is_classifier = _swig_property(_ml.CvDTreeTrainData_is_classifier_get, _ml.CvDTreeTrainData_is_classifier_set) - __swig_setmethods__["tflag"] = _ml.CvDTreeTrainData_tflag_set - __swig_getmethods__["tflag"] = _ml.CvDTreeTrainData_tflag_get - if _newclass:tflag = _swig_property(_ml.CvDTreeTrainData_tflag_get, _ml.CvDTreeTrainData_tflag_set) - __swig_setmethods__["train_data"] = _ml.CvDTreeTrainData_train_data_set - __swig_getmethods__["train_data"] = _ml.CvDTreeTrainData_train_data_get - if _newclass:train_data = _swig_property(_ml.CvDTreeTrainData_train_data_get, _ml.CvDTreeTrainData_train_data_set) - __swig_setmethods__["responses"] = _ml.CvDTreeTrainData_responses_set - __swig_getmethods__["responses"] = _ml.CvDTreeTrainData_responses_get - if _newclass:responses = _swig_property(_ml.CvDTreeTrainData_responses_get, _ml.CvDTreeTrainData_responses_set) - __swig_setmethods__["responses_copy"] = _ml.CvDTreeTrainData_responses_copy_set - __swig_getmethods__["responses_copy"] = _ml.CvDTreeTrainData_responses_copy_get - if _newclass:responses_copy = _swig_property(_ml.CvDTreeTrainData_responses_copy_get, _ml.CvDTreeTrainData_responses_copy_set) - __swig_setmethods__["buf_count"] = _ml.CvDTreeTrainData_buf_count_set - __swig_getmethods__["buf_count"] = _ml.CvDTreeTrainData_buf_count_get - if _newclass:buf_count = _swig_property(_ml.CvDTreeTrainData_buf_count_get, _ml.CvDTreeTrainData_buf_count_set) - __swig_setmethods__["buf_size"] = _ml.CvDTreeTrainData_buf_size_set - __swig_getmethods__["buf_size"] = _ml.CvDTreeTrainData_buf_size_get - if _newclass:buf_size = _swig_property(_ml.CvDTreeTrainData_buf_size_get, _ml.CvDTreeTrainData_buf_size_set) - __swig_setmethods__["shared"] = _ml.CvDTreeTrainData_shared_set - __swig_getmethods__["shared"] = _ml.CvDTreeTrainData_shared_get - if _newclass:shared = _swig_property(_ml.CvDTreeTrainData_shared_get, _ml.CvDTreeTrainData_shared_set) - __swig_setmethods__["is_buf_16u"] = _ml.CvDTreeTrainData_is_buf_16u_set - __swig_getmethods__["is_buf_16u"] = _ml.CvDTreeTrainData_is_buf_16u_get - if _newclass:is_buf_16u = _swig_property(_ml.CvDTreeTrainData_is_buf_16u_get, _ml.CvDTreeTrainData_is_buf_16u_set) - __swig_setmethods__["cat_count"] = _ml.CvDTreeTrainData_cat_count_set - __swig_getmethods__["cat_count"] = _ml.CvDTreeTrainData_cat_count_get - if _newclass:cat_count = _swig_property(_ml.CvDTreeTrainData_cat_count_get, _ml.CvDTreeTrainData_cat_count_set) - __swig_setmethods__["cat_ofs"] = _ml.CvDTreeTrainData_cat_ofs_set - __swig_getmethods__["cat_ofs"] = _ml.CvDTreeTrainData_cat_ofs_get - if _newclass:cat_ofs = _swig_property(_ml.CvDTreeTrainData_cat_ofs_get, _ml.CvDTreeTrainData_cat_ofs_set) - __swig_setmethods__["cat_map"] = _ml.CvDTreeTrainData_cat_map_set - __swig_getmethods__["cat_map"] = _ml.CvDTreeTrainData_cat_map_get - if _newclass:cat_map = _swig_property(_ml.CvDTreeTrainData_cat_map_get, _ml.CvDTreeTrainData_cat_map_set) - __swig_setmethods__["counts"] = _ml.CvDTreeTrainData_counts_set - __swig_getmethods__["counts"] = _ml.CvDTreeTrainData_counts_get - if _newclass:counts = _swig_property(_ml.CvDTreeTrainData_counts_get, _ml.CvDTreeTrainData_counts_set) - __swig_setmethods__["buf"] = _ml.CvDTreeTrainData_buf_set - __swig_getmethods__["buf"] = _ml.CvDTreeTrainData_buf_get - if _newclass:buf = _swig_property(_ml.CvDTreeTrainData_buf_get, _ml.CvDTreeTrainData_buf_set) - __swig_setmethods__["direction"] = _ml.CvDTreeTrainData_direction_set - __swig_getmethods__["direction"] = _ml.CvDTreeTrainData_direction_get - if _newclass:direction = _swig_property(_ml.CvDTreeTrainData_direction_get, _ml.CvDTreeTrainData_direction_set) - __swig_setmethods__["split_buf"] = _ml.CvDTreeTrainData_split_buf_set - __swig_getmethods__["split_buf"] = _ml.CvDTreeTrainData_split_buf_get - if _newclass:split_buf = _swig_property(_ml.CvDTreeTrainData_split_buf_get, _ml.CvDTreeTrainData_split_buf_set) - __swig_setmethods__["var_idx"] = _ml.CvDTreeTrainData_var_idx_set - __swig_getmethods__["var_idx"] = _ml.CvDTreeTrainData_var_idx_get - if _newclass:var_idx = _swig_property(_ml.CvDTreeTrainData_var_idx_get, _ml.CvDTreeTrainData_var_idx_set) - __swig_setmethods__["var_type"] = _ml.CvDTreeTrainData_var_type_set - __swig_getmethods__["var_type"] = _ml.CvDTreeTrainData_var_type_get - if _newclass:var_type = _swig_property(_ml.CvDTreeTrainData_var_type_get, _ml.CvDTreeTrainData_var_type_set) - __swig_setmethods__["priors"] = _ml.CvDTreeTrainData_priors_set - __swig_getmethods__["priors"] = _ml.CvDTreeTrainData_priors_get - if _newclass:priors = _swig_property(_ml.CvDTreeTrainData_priors_get, _ml.CvDTreeTrainData_priors_set) - __swig_setmethods__["priors_mult"] = _ml.CvDTreeTrainData_priors_mult_set - __swig_getmethods__["priors_mult"] = _ml.CvDTreeTrainData_priors_mult_get - if _newclass:priors_mult = _swig_property(_ml.CvDTreeTrainData_priors_mult_get, _ml.CvDTreeTrainData_priors_mult_set) - __swig_setmethods__["params"] = _ml.CvDTreeTrainData_params_set - __swig_getmethods__["params"] = _ml.CvDTreeTrainData_params_get - if _newclass:params = _swig_property(_ml.CvDTreeTrainData_params_get, _ml.CvDTreeTrainData_params_set) - __swig_setmethods__["tree_storage"] = _ml.CvDTreeTrainData_tree_storage_set - __swig_getmethods__["tree_storage"] = _ml.CvDTreeTrainData_tree_storage_get - if _newclass:tree_storage = _swig_property(_ml.CvDTreeTrainData_tree_storage_get, _ml.CvDTreeTrainData_tree_storage_set) - __swig_setmethods__["temp_storage"] = _ml.CvDTreeTrainData_temp_storage_set - __swig_getmethods__["temp_storage"] = _ml.CvDTreeTrainData_temp_storage_get - if _newclass:temp_storage = _swig_property(_ml.CvDTreeTrainData_temp_storage_get, _ml.CvDTreeTrainData_temp_storage_set) - __swig_setmethods__["data_root"] = _ml.CvDTreeTrainData_data_root_set - __swig_getmethods__["data_root"] = _ml.CvDTreeTrainData_data_root_get - if _newclass:data_root = _swig_property(_ml.CvDTreeTrainData_data_root_get, _ml.CvDTreeTrainData_data_root_set) - __swig_setmethods__["node_heap"] = _ml.CvDTreeTrainData_node_heap_set - __swig_getmethods__["node_heap"] = _ml.CvDTreeTrainData_node_heap_get - if _newclass:node_heap = _swig_property(_ml.CvDTreeTrainData_node_heap_get, _ml.CvDTreeTrainData_node_heap_set) - __swig_setmethods__["split_heap"] = _ml.CvDTreeTrainData_split_heap_set - __swig_getmethods__["split_heap"] = _ml.CvDTreeTrainData_split_heap_get - if _newclass:split_heap = _swig_property(_ml.CvDTreeTrainData_split_heap_get, _ml.CvDTreeTrainData_split_heap_set) - __swig_setmethods__["cv_heap"] = _ml.CvDTreeTrainData_cv_heap_set - __swig_getmethods__["cv_heap"] = _ml.CvDTreeTrainData_cv_heap_get - if _newclass:cv_heap = _swig_property(_ml.CvDTreeTrainData_cv_heap_get, _ml.CvDTreeTrainData_cv_heap_set) - __swig_setmethods__["nv_heap"] = _ml.CvDTreeTrainData_nv_heap_set - __swig_getmethods__["nv_heap"] = _ml.CvDTreeTrainData_nv_heap_get - if _newclass:nv_heap = _swig_property(_ml.CvDTreeTrainData_nv_heap_get, _ml.CvDTreeTrainData_nv_heap_set) - __swig_setmethods__["rng"] = _ml.CvDTreeTrainData_rng_set - __swig_getmethods__["rng"] = _ml.CvDTreeTrainData_rng_get - if _newclass:rng = _swig_property(_ml.CvDTreeTrainData_rng_get, _ml.CvDTreeTrainData_rng_set) -CvDTreeTrainData_swigregister = _ml.CvDTreeTrainData_swigregister -CvDTreeTrainData_swigregister(CvDTreeTrainData) - -class CvDTree(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvDTree, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvDTree, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvDTree() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvDTree - __del__ = lambda self : None; - def calc_error(self, *args): return _ml.CvDTree_calc_error(self, *args) - def train(self, *args): return _ml.CvDTree_train(self, *args) - def predict(self, *args): return _ml.CvDTree_predict(self, *args) - def get_var_importance(self): return _ml.CvDTree_get_var_importance(self) - def clear(self): return _ml.CvDTree_clear(self) - def read(self, *args): return _ml.CvDTree_read(self, *args) - def write(self, *args): return _ml.CvDTree_write(self, *args) - def get_root(self): return _ml.CvDTree_get_root(self) - def get_pruned_tree_idx(self): return _ml.CvDTree_get_pruned_tree_idx(self) - def get_data(self): return _ml.CvDTree_get_data(self) - __swig_setmethods__["pruned_tree_idx"] = _ml.CvDTree_pruned_tree_idx_set - __swig_getmethods__["pruned_tree_idx"] = _ml.CvDTree_pruned_tree_idx_get - if _newclass:pruned_tree_idx = _swig_property(_ml.CvDTree_pruned_tree_idx_get, _ml.CvDTree_pruned_tree_idx_set) -CvDTree_swigregister = _ml.CvDTree_swigregister -CvDTree_swigregister(CvDTree) - -class CvForestTree(CvDTree): - __swig_setmethods__ = {} - for _s in [CvDTree]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvForestTree, name, value) - __swig_getmethods__ = {} - for _s in [CvDTree]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvForestTree, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvForestTree() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvForestTree - __del__ = lambda self : None; - def get_var_count(self): return _ml.CvForestTree_get_var_count(self) - def train(self, *args): return _ml.CvForestTree_train(self, *args) - def read(self, *args): return _ml.CvForestTree_read(self, *args) -CvForestTree_swigregister = _ml.CvForestTree_swigregister -CvForestTree_swigregister(CvForestTree) - -class CvRTParams(CvDTreeParams): - __swig_setmethods__ = {} - for _s in [CvDTreeParams]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvRTParams, name, value) - __swig_getmethods__ = {} - for _s in [CvDTreeParams]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvRTParams, name) - __repr__ = _swig_repr - __swig_setmethods__["calc_var_importance"] = _ml.CvRTParams_calc_var_importance_set - __swig_getmethods__["calc_var_importance"] = _ml.CvRTParams_calc_var_importance_get - if _newclass:calc_var_importance = _swig_property(_ml.CvRTParams_calc_var_importance_get, _ml.CvRTParams_calc_var_importance_set) - __swig_setmethods__["nactive_vars"] = _ml.CvRTParams_nactive_vars_set - __swig_getmethods__["nactive_vars"] = _ml.CvRTParams_nactive_vars_get - if _newclass:nactive_vars = _swig_property(_ml.CvRTParams_nactive_vars_get, _ml.CvRTParams_nactive_vars_set) - __swig_setmethods__["term_crit"] = _ml.CvRTParams_term_crit_set - __swig_getmethods__["term_crit"] = _ml.CvRTParams_term_crit_get - if _newclass:term_crit = _swig_property(_ml.CvRTParams_term_crit_get, _ml.CvRTParams_term_crit_set) - def __init__(self, *args): - this = _ml.new_CvRTParams(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvRTParams - __del__ = lambda self : None; -CvRTParams_swigregister = _ml.CvRTParams_swigregister -CvRTParams_swigregister(CvRTParams) - -class CvRTrees(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvRTrees, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvRTrees, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvRTrees() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvRTrees - __del__ = lambda self : None; - def train(self, *args): return _ml.CvRTrees_train(self, *args) - def predict(self, *args): return _ml.CvRTrees_predict(self, *args) - def predict_prob(self, *args): return _ml.CvRTrees_predict_prob(self, *args) - def clear(self): return _ml.CvRTrees_clear(self) - def get_var_importance(self): return _ml.CvRTrees_get_var_importance(self) - def get_proximity(self, *args): return _ml.CvRTrees_get_proximity(self, *args) - def calc_error(self, *args): return _ml.CvRTrees_calc_error(self, *args) - def get_train_error(self): return _ml.CvRTrees_get_train_error(self) - def read(self, *args): return _ml.CvRTrees_read(self, *args) - def write(self, *args): return _ml.CvRTrees_write(self, *args) - def get_active_var_mask(self): return _ml.CvRTrees_get_active_var_mask(self) - def get_rng(self): return _ml.CvRTrees_get_rng(self) - def get_tree_count(self): return _ml.CvRTrees_get_tree_count(self) - def get_tree(self, *args): return _ml.CvRTrees_get_tree(self, *args) -CvRTrees_swigregister = _ml.CvRTrees_swigregister -CvRTrees_swigregister(CvRTrees) - -class CvERTreeTrainData(CvDTreeTrainData): - __swig_setmethods__ = {} - for _s in [CvDTreeTrainData]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvERTreeTrainData, name, value) - __swig_getmethods__ = {} - for _s in [CvDTreeTrainData]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvERTreeTrainData, name) - __repr__ = _swig_repr - def set_data(self, *args): return _ml.CvERTreeTrainData_set_data(self, *args) - def get_ord_var_data(self, *args): return _ml.CvERTreeTrainData_get_ord_var_data(self, *args) - def get_sample_indices(self, *args): return _ml.CvERTreeTrainData_get_sample_indices(self, *args) - def get_cv_labels(self, *args): return _ml.CvERTreeTrainData_get_cv_labels(self, *args) - def get_cat_var_data(self, *args): return _ml.CvERTreeTrainData_get_cat_var_data(self, *args) - def get_vectors(self, *args): return _ml.CvERTreeTrainData_get_vectors(self, *args) - def subsample_data(self, *args): return _ml.CvERTreeTrainData_subsample_data(self, *args) - __swig_setmethods__["missing_mask"] = _ml.CvERTreeTrainData_missing_mask_set - __swig_getmethods__["missing_mask"] = _ml.CvERTreeTrainData_missing_mask_get - if _newclass:missing_mask = _swig_property(_ml.CvERTreeTrainData_missing_mask_get, _ml.CvERTreeTrainData_missing_mask_set) - def __init__(self): - this = _ml.new_CvERTreeTrainData() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvERTreeTrainData - __del__ = lambda self : None; -CvERTreeTrainData_swigregister = _ml.CvERTreeTrainData_swigregister -CvERTreeTrainData_swigregister(CvERTreeTrainData) - -class CvForestERTree(CvForestTree): - __swig_setmethods__ = {} - for _s in [CvForestTree]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvForestERTree, name, value) - __swig_getmethods__ = {} - for _s in [CvForestTree]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvForestERTree, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvForestERTree() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvForestERTree - __del__ = lambda self : None; -CvForestERTree_swigregister = _ml.CvForestERTree_swigregister -CvForestERTree_swigregister(CvForestERTree) - -class CvERTrees(CvRTrees): - __swig_setmethods__ = {} - for _s in [CvRTrees]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvERTrees, name, value) - __swig_getmethods__ = {} - for _s in [CvRTrees]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvERTrees, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvERTrees() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvERTrees - __del__ = lambda self : None; - def train(self, *args): return _ml.CvERTrees_train(self, *args) -CvERTrees_swigregister = _ml.CvERTrees_swigregister -CvERTrees_swigregister(CvERTrees) - -class CvBoostParams(CvDTreeParams): - __swig_setmethods__ = {} - for _s in [CvDTreeParams]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvBoostParams, name, value) - __swig_getmethods__ = {} - for _s in [CvDTreeParams]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvBoostParams, name) - __repr__ = _swig_repr - __swig_setmethods__["boost_type"] = _ml.CvBoostParams_boost_type_set - __swig_getmethods__["boost_type"] = _ml.CvBoostParams_boost_type_get - if _newclass:boost_type = _swig_property(_ml.CvBoostParams_boost_type_get, _ml.CvBoostParams_boost_type_set) - __swig_setmethods__["weak_count"] = _ml.CvBoostParams_weak_count_set - __swig_getmethods__["weak_count"] = _ml.CvBoostParams_weak_count_get - if _newclass:weak_count = _swig_property(_ml.CvBoostParams_weak_count_get, _ml.CvBoostParams_weak_count_set) - __swig_setmethods__["split_criteria"] = _ml.CvBoostParams_split_criteria_set - __swig_getmethods__["split_criteria"] = _ml.CvBoostParams_split_criteria_get - if _newclass:split_criteria = _swig_property(_ml.CvBoostParams_split_criteria_get, _ml.CvBoostParams_split_criteria_set) - __swig_setmethods__["weight_trim_rate"] = _ml.CvBoostParams_weight_trim_rate_set - __swig_getmethods__["weight_trim_rate"] = _ml.CvBoostParams_weight_trim_rate_get - if _newclass:weight_trim_rate = _swig_property(_ml.CvBoostParams_weight_trim_rate_get, _ml.CvBoostParams_weight_trim_rate_set) - def __init__(self, *args): - this = _ml.new_CvBoostParams(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvBoostParams - __del__ = lambda self : None; -CvBoostParams_swigregister = _ml.CvBoostParams_swigregister -CvBoostParams_swigregister(CvBoostParams) - -class CvBoostTree(CvDTree): - __swig_setmethods__ = {} - for _s in [CvDTree]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvBoostTree, name, value) - __swig_getmethods__ = {} - for _s in [CvDTree]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvBoostTree, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvBoostTree() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvBoostTree - __del__ = lambda self : None; - def scale(self, *args): return _ml.CvBoostTree_scale(self, *args) - def clear(self): return _ml.CvBoostTree_clear(self) - def train(self, *args): return _ml.CvBoostTree_train(self, *args) - def read(self, *args): return _ml.CvBoostTree_read(self, *args) -CvBoostTree_swigregister = _ml.CvBoostTree_swigregister -CvBoostTree_swigregister(CvBoostTree) - -class CvBoost(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvBoost, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvBoost, name) - __repr__ = _swig_repr - DISCRETE = _ml.CvBoost_DISCRETE - REAL = _ml.CvBoost_REAL - LOGIT = _ml.CvBoost_LOGIT - GENTLE = _ml.CvBoost_GENTLE - DEFAULT = _ml.CvBoost_DEFAULT - GINI = _ml.CvBoost_GINI - MISCLASS = _ml.CvBoost_MISCLASS - SQERR = _ml.CvBoost_SQERR - __swig_destroy__ = _ml.delete_CvBoost - __del__ = lambda self : None; - def __init__(self, *args): - this = _ml.new_CvBoost(*args) - try: self.this.append(this) - except: self.this = this - def train(self, *args): return _ml.CvBoost_train(self, *args) - def predict(self, *args): return _ml.CvBoost_predict(self, *args) - def calc_error(self, *args): return _ml.CvBoost_calc_error(self, *args) - def prune(self, *args): return _ml.CvBoost_prune(self, *args) - def clear(self): return _ml.CvBoost_clear(self) - def write(self, *args): return _ml.CvBoost_write(self, *args) - def read(self, *args): return _ml.CvBoost_read(self, *args) - def get_active_vars(self, absolute_idx = True): return _ml.CvBoost_get_active_vars(self, absolute_idx) - def get_weak_predictors(self): return _ml.CvBoost_get_weak_predictors(self) - def get_weights(self): return _ml.CvBoost_get_weights(self) - def get_subtree_weights(self): return _ml.CvBoost_get_subtree_weights(self) - def get_weak_response(self): return _ml.CvBoost_get_weak_response(self) - def get_params(self): return _ml.CvBoost_get_params(self) - def get_data(self): return _ml.CvBoost_get_data(self) -CvBoost_swigregister = _ml.CvBoost_swigregister -CvBoost_swigregister(CvBoost) - -class CvANN_MLP_TrainParams(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvANN_MLP_TrainParams, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvANN_MLP_TrainParams, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvANN_MLP_TrainParams(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvANN_MLP_TrainParams - __del__ = lambda self : None; - BACKPROP = _ml.CvANN_MLP_TrainParams_BACKPROP - RPROP = _ml.CvANN_MLP_TrainParams_RPROP - __swig_setmethods__["term_crit"] = _ml.CvANN_MLP_TrainParams_term_crit_set - __swig_getmethods__["term_crit"] = _ml.CvANN_MLP_TrainParams_term_crit_get - if _newclass:term_crit = _swig_property(_ml.CvANN_MLP_TrainParams_term_crit_get, _ml.CvANN_MLP_TrainParams_term_crit_set) - __swig_setmethods__["train_method"] = _ml.CvANN_MLP_TrainParams_train_method_set - __swig_getmethods__["train_method"] = _ml.CvANN_MLP_TrainParams_train_method_get - if _newclass:train_method = _swig_property(_ml.CvANN_MLP_TrainParams_train_method_get, _ml.CvANN_MLP_TrainParams_train_method_set) - __swig_setmethods__["bp_dw_scale"] = _ml.CvANN_MLP_TrainParams_bp_dw_scale_set - __swig_getmethods__["bp_dw_scale"] = _ml.CvANN_MLP_TrainParams_bp_dw_scale_get - if _newclass:bp_dw_scale = _swig_property(_ml.CvANN_MLP_TrainParams_bp_dw_scale_get, _ml.CvANN_MLP_TrainParams_bp_dw_scale_set) - __swig_setmethods__["bp_moment_scale"] = _ml.CvANN_MLP_TrainParams_bp_moment_scale_set - __swig_getmethods__["bp_moment_scale"] = _ml.CvANN_MLP_TrainParams_bp_moment_scale_get - if _newclass:bp_moment_scale = _swig_property(_ml.CvANN_MLP_TrainParams_bp_moment_scale_get, _ml.CvANN_MLP_TrainParams_bp_moment_scale_set) - __swig_setmethods__["rp_dw0"] = _ml.CvANN_MLP_TrainParams_rp_dw0_set - __swig_getmethods__["rp_dw0"] = _ml.CvANN_MLP_TrainParams_rp_dw0_get - if _newclass:rp_dw0 = _swig_property(_ml.CvANN_MLP_TrainParams_rp_dw0_get, _ml.CvANN_MLP_TrainParams_rp_dw0_set) - __swig_setmethods__["rp_dw_plus"] = _ml.CvANN_MLP_TrainParams_rp_dw_plus_set - __swig_getmethods__["rp_dw_plus"] = _ml.CvANN_MLP_TrainParams_rp_dw_plus_get - if _newclass:rp_dw_plus = _swig_property(_ml.CvANN_MLP_TrainParams_rp_dw_plus_get, _ml.CvANN_MLP_TrainParams_rp_dw_plus_set) - __swig_setmethods__["rp_dw_minus"] = _ml.CvANN_MLP_TrainParams_rp_dw_minus_set - __swig_getmethods__["rp_dw_minus"] = _ml.CvANN_MLP_TrainParams_rp_dw_minus_get - if _newclass:rp_dw_minus = _swig_property(_ml.CvANN_MLP_TrainParams_rp_dw_minus_get, _ml.CvANN_MLP_TrainParams_rp_dw_minus_set) - __swig_setmethods__["rp_dw_min"] = _ml.CvANN_MLP_TrainParams_rp_dw_min_set - __swig_getmethods__["rp_dw_min"] = _ml.CvANN_MLP_TrainParams_rp_dw_min_get - if _newclass:rp_dw_min = _swig_property(_ml.CvANN_MLP_TrainParams_rp_dw_min_get, _ml.CvANN_MLP_TrainParams_rp_dw_min_set) - __swig_setmethods__["rp_dw_max"] = _ml.CvANN_MLP_TrainParams_rp_dw_max_set - __swig_getmethods__["rp_dw_max"] = _ml.CvANN_MLP_TrainParams_rp_dw_max_get - if _newclass:rp_dw_max = _swig_property(_ml.CvANN_MLP_TrainParams_rp_dw_max_get, _ml.CvANN_MLP_TrainParams_rp_dw_max_set) -CvANN_MLP_TrainParams_swigregister = _ml.CvANN_MLP_TrainParams_swigregister -CvANN_MLP_TrainParams_swigregister(CvANN_MLP_TrainParams) - -class CvANN_MLP(CvStatModel): - __swig_setmethods__ = {} - for _s in [CvStatModel]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{})) - __setattr__ = lambda self, name, value: _swig_setattr(self, CvANN_MLP, name, value) - __swig_getmethods__ = {} - for _s in [CvStatModel]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) - __getattr__ = lambda self, name: _swig_getattr(self, CvANN_MLP, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvANN_MLP(*args) - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvANN_MLP - __del__ = lambda self : None; - def create(self, *args): return _ml.CvANN_MLP_create(self, *args) - def train(self, *args): return _ml.CvANN_MLP_train(self, *args) - def predict(self, *args): return _ml.CvANN_MLP_predict(self, *args) - def clear(self): return _ml.CvANN_MLP_clear(self) - IDENTITY = _ml.CvANN_MLP_IDENTITY - SIGMOID_SYM = _ml.CvANN_MLP_SIGMOID_SYM - GAUSSIAN = _ml.CvANN_MLP_GAUSSIAN - UPDATE_WEIGHTS = _ml.CvANN_MLP_UPDATE_WEIGHTS - NO_INPUT_SCALE = _ml.CvANN_MLP_NO_INPUT_SCALE - NO_OUTPUT_SCALE = _ml.CvANN_MLP_NO_OUTPUT_SCALE - def read(self, *args): return _ml.CvANN_MLP_read(self, *args) - def write(self, *args): return _ml.CvANN_MLP_write(self, *args) - def get_layer_count(self): return _ml.CvANN_MLP_get_layer_count(self) - def get_layer_sizes(self): return _ml.CvANN_MLP_get_layer_sizes(self) - def get_weights(self, *args): return _ml.CvANN_MLP_get_weights(self, *args) -CvANN_MLP_swigregister = _ml.CvANN_MLP_swigregister -CvANN_MLP_swigregister(CvANN_MLP) - - -def cvRandMVNormal(*args): - return _ml.cvRandMVNormal(*args) -cvRandMVNormal = _ml.cvRandMVNormal - -def cvRandGaussMixture(*args): - return _ml.cvRandGaussMixture(*args) -cvRandGaussMixture = _ml.cvRandGaussMixture -CV_TS_CONCENTRIC_SPHERES = _ml.CV_TS_CONCENTRIC_SPHERES - -def cvCreateTestSet(*args): - return _ml.cvCreateTestSet(*args) -cvCreateTestSet = _ml.cvCreateTestSet -CV_COUNT = _ml.CV_COUNT -CV_PORTION = _ml.CV_PORTION -class CvTrainTestSplit(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTrainTestSplit, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTrainTestSplit, name) - __repr__ = _swig_repr - def __init__(self, *args): - this = _ml.new_CvTrainTestSplit(*args) - try: self.this.append(this) - except: self.this = this - __swig_setmethods__["train_sample_part_mode"] = _ml.CvTrainTestSplit_train_sample_part_mode_set - __swig_getmethods__["train_sample_part_mode"] = _ml.CvTrainTestSplit_train_sample_part_mode_get - if _newclass:train_sample_part_mode = _swig_property(_ml.CvTrainTestSplit_train_sample_part_mode_get, _ml.CvTrainTestSplit_train_sample_part_mode_set) - __swig_setmethods__["class_part_mode"] = _ml.CvTrainTestSplit_class_part_mode_set - __swig_getmethods__["class_part_mode"] = _ml.CvTrainTestSplit_class_part_mode_get - if _newclass:class_part_mode = _swig_property(_ml.CvTrainTestSplit_class_part_mode_get, _ml.CvTrainTestSplit_class_part_mode_set) - __swig_setmethods__["mix"] = _ml.CvTrainTestSplit_mix_set - __swig_getmethods__["mix"] = _ml.CvTrainTestSplit_mix_get - if _newclass:mix = _swig_property(_ml.CvTrainTestSplit_mix_get, _ml.CvTrainTestSplit_mix_set) - __swig_getmethods__["class_part"] = _ml.CvTrainTestSplit_class_part_get - if _newclass:class_part = _swig_property(_ml.CvTrainTestSplit_class_part_get) - __swig_getmethods__["train_sample_part"] = _ml.CvTrainTestSplit_train_sample_part_get - if _newclass:train_sample_part = _swig_property(_ml.CvTrainTestSplit_train_sample_part_get) - __swig_destroy__ = _ml.delete_CvTrainTestSplit - __del__ = lambda self : None; -CvTrainTestSplit_swigregister = _ml.CvTrainTestSplit_swigregister -CvTrainTestSplit_swigregister(CvTrainTestSplit) - -class CvTrainTestSplit_class_part(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTrainTestSplit_class_part, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTrainTestSplit_class_part, name) - __repr__ = _swig_repr - __swig_setmethods__["count"] = _ml.CvTrainTestSplit_class_part_count_set - __swig_getmethods__["count"] = _ml.CvTrainTestSplit_class_part_count_get - if _newclass:count = _swig_property(_ml.CvTrainTestSplit_class_part_count_get, _ml.CvTrainTestSplit_class_part_count_set) - __swig_setmethods__["portion"] = _ml.CvTrainTestSplit_class_part_portion_set - __swig_getmethods__["portion"] = _ml.CvTrainTestSplit_class_part_portion_get - if _newclass:portion = _swig_property(_ml.CvTrainTestSplit_class_part_portion_get, _ml.CvTrainTestSplit_class_part_portion_set) - def __init__(self): - this = _ml.new_CvTrainTestSplit_class_part() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvTrainTestSplit_class_part - __del__ = lambda self : None; -CvTrainTestSplit_class_part_swigregister = _ml.CvTrainTestSplit_class_part_swigregister -CvTrainTestSplit_class_part_swigregister(CvTrainTestSplit_class_part) - -class CvTrainTestSplit_train_sample_part(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvTrainTestSplit_train_sample_part, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvTrainTestSplit_train_sample_part, name) - __repr__ = _swig_repr - __swig_setmethods__["count"] = _ml.CvTrainTestSplit_train_sample_part_count_set - __swig_getmethods__["count"] = _ml.CvTrainTestSplit_train_sample_part_count_get - if _newclass:count = _swig_property(_ml.CvTrainTestSplit_train_sample_part_count_get, _ml.CvTrainTestSplit_train_sample_part_count_set) - __swig_setmethods__["portion"] = _ml.CvTrainTestSplit_train_sample_part_portion_set - __swig_getmethods__["portion"] = _ml.CvTrainTestSplit_train_sample_part_portion_get - if _newclass:portion = _swig_property(_ml.CvTrainTestSplit_train_sample_part_portion_get, _ml.CvTrainTestSplit_train_sample_part_portion_set) - def __init__(self): - this = _ml.new_CvTrainTestSplit_train_sample_part() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvTrainTestSplit_train_sample_part - __del__ = lambda self : None; -CvTrainTestSplit_train_sample_part_swigregister = _ml.CvTrainTestSplit_train_sample_part_swigregister -CvTrainTestSplit_train_sample_part_swigregister(CvTrainTestSplit_train_sample_part) - -class CvMLData(_object): - __swig_setmethods__ = {} - __setattr__ = lambda self, name, value: _swig_setattr(self, CvMLData, name, value) - __swig_getmethods__ = {} - __getattr__ = lambda self, name: _swig_getattr(self, CvMLData, name) - __repr__ = _swig_repr - def __init__(self): - this = _ml.new_CvMLData() - try: self.this.append(this) - except: self.this = this - __swig_destroy__ = _ml.delete_CvMLData - __del__ = lambda self : None; - def read_csv(self, *args): return _ml.CvMLData_read_csv(self, *args) - def get_values(self): return _ml.CvMLData_get_values(self) - def get_responses(self): return _ml.CvMLData_get_responses(self) - def get_missing(self): return _ml.CvMLData_get_missing(self) - def set_response_idx(self, *args): return _ml.CvMLData_set_response_idx(self, *args) - def get_response_idx(self): return _ml.CvMLData_get_response_idx(self) - def get_train_sample_idx(self): return _ml.CvMLData_get_train_sample_idx(self) - def get_test_sample_idx(self): return _ml.CvMLData_get_test_sample_idx(self) - def mix_train_and_test_idx(self): return _ml.CvMLData_mix_train_and_test_idx(self) - def set_train_test_split(self, *args): return _ml.CvMLData_set_train_test_split(self, *args) - def get_var_idx(self): return _ml.CvMLData_get_var_idx(self) - def chahge_var_idx(self, *args): return _ml.CvMLData_chahge_var_idx(self, *args) - def get_var_types(self): return _ml.CvMLData_get_var_types(self) - def get_var_type(self, *args): return _ml.CvMLData_get_var_type(self, *args) - def set_var_types(self, *args): return _ml.CvMLData_set_var_types(self, *args) - def change_var_type(self, *args): return _ml.CvMLData_change_var_type(self, *args) - def set_delimiter(self, *args): return _ml.CvMLData_set_delimiter(self, *args) - def get_delimiter(self): return _ml.CvMLData_get_delimiter(self) - def set_miss_ch(self, *args): return _ml.CvMLData_set_miss_ch(self, *args) - def get_miss_ch(self): return _ml.CvMLData_get_miss_ch(self) -CvMLData_swigregister = _ml.CvMLData_swigregister -CvMLData_swigregister(CvMLData) - - - diff --git a/interfaces/swig/python/nointpb.i b/interfaces/swig/python/nointpb.i deleted file mode 100644 index f48e88b8d..000000000 --- a/interfaces/swig/python/nointpb.i +++ /dev/null @@ -1,34 +0,0 @@ -/* This file is to prevent problems with swig <= 1.3.25 which use - PyInt_AS_LONG and may cause some corruption on RedHat systems. - - Include it in every .i file who generate a C/C++ file */ - -%runtime%{ -/* define the PyAPI_FUNC macro if it doesn't exist, for example with Python - version below 2.3... But not really tested... */ -#ifndef PyAPI_FUNC -# define PyAPI_FUNC(RTYPE) RTYPE -#endif - -/* remove the PyInt_AS_LONG if defined, as this cause problems on RedHat */ -#ifdef PyInt_AS_LONG -#undef PyInt_AS_LONG -#endif - -/* wrapper to the better function PyInt_AsLong, removing problems - with RedHat (I hope) */ -long PyInt_AS_LONG (PyObject *obj) { - return PyInt_AsLong (obj); -} - -/* remove the PyFloat_AS_DOUBLE if defined, to prevent errors */ -#ifdef PyFloat_AS_DOUBLE -#undef PyFloat_AS_DOUBLE -#endif - -/* wrapper to the better function PyFloat_AS_DOUBLE, to prevent errors */ -double PyFloat_AS_DOUBLE (PyObject *obj) { - return PyFloat_AsDouble (obj); -} -%} - diff --git a/interfaces/swig/python/pycvseq.hpp b/interfaces/swig/python/pycvseq.hpp deleted file mode 100644 index 5b8d5a411..000000000 --- a/interfaces/swig/python/pycvseq.hpp +++ /dev/null @@ -1,104 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ - -#ifndef PY_CV_SEQ_H -#define PY_CV_SEQ_H - -#include "cxcore.h" -#include "cvtypes.h" - - -/** class to make sequence iteration nicer */ -template -class CvTypedSeqReader : public CvSeqReader { - int pos; -public: - CvTypedSeqReader( const CvSeq * seq ){ - cvStartReadSeq( seq, this ); - pos = 0; - } - T * current(){ - return (T*) this->ptr; - } - void next(){ - CV_NEXT_SEQ_ELEM( this->seq->elem_size, *this ); - pos++; - } - bool valid(){ - return posseq->total; - } -}; - -template -class CvTypedSeq : public CvSeq { -public: - static CvTypedSeq * cast(CvSeq * seq){ - return (CvTypedSeq *) seq; - } - T * __getitem__ (int i){ - return (T *) cvGetSeqElem(this, i); - } - void __setitem__ (int i, T * obj){ - T * ptr = this->__getitem__(i); - memcpy(ptr, obj, sizeof(T)); - } - void append(T * obj){ - cvSeqPush( this, obj ); - } - T * pop(){ - T * obj = new T; - cvSeqPop( this, obj ); - return obj; - } -}; - -template -struct CvTuple { - T val[2]; - void __setitem__(int i, T * obj){ - val[i] = *obj; - } - const T & __getitem__(int i){ - return val[i]; - } -}; - -#endif //PY_CV_SEQ_H diff --git a/interfaces/swig/python/pyhelpers.cpp b/interfaces/swig/python/pyhelpers.cpp deleted file mode 100644 index cf1cf0c56..000000000 --- a/interfaces/swig/python/pyhelpers.cpp +++ /dev/null @@ -1,606 +0,0 @@ -#include "pyhelpers.h" -#include -#include - -int PySwigObject_Check(PyObject *op); - -/* Py_ssize_t for old Pythons */ -#if PY_VERSION_HEX < 0x02050000 -typedef int Py_ssize_t; -#endif - -PyObject * PyTuple_FromIntArray(int * arr, int len){ - PyObject * obj = PyTuple_New(len); - for(int i=0; i -void cv_arr_write(FILE * f, const char * fmt, T * data, size_t rows, size_t nch, size_t step){ - size_t i,j,k; - char * cdata = (char *) data; - const char * chdelim1="", * chdelim2=""; - - // only output channel parens if > 1 - if(nch>1){ - chdelim1="("; - chdelim2=")"; - } - - fputs("[",f); - for(i=0; itype); - int depth = CV_MAT_DEPTH(mat->type); - int step = MAX(mat->step, cn*mat->cols*CV_ELEM_SIZE(depth)); - - - switch(depth){ - case CV_8U: - cv_arr_write(stdout, "%u", (uchar *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_8S: - cv_arr_write(stdout, "%d", (char *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_16U: - cv_arr_write(stdout, "%u", (ushort *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_16S: - cv_arr_write(stdout, "%d", (short *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_32S: - cv_arr_write(stdout, "%d", (int *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_32F: - cv_arr_write(stdout, "%f", (float *)mat->data.ptr, mat->rows, cn, step); - break; - case CV_64F: - cv_arr_write(stdout, "%g", (double *)mat->data.ptr, mat->rows, cn, step); - break; - default: - CV_Error( CV_StsError, "Unknown element type"); - break; - } -} - -// deal with negative array indices -int PyLong_AsIndex( PyObject * idx_object, int len ){ - int idx = PyLong_AsLong( idx_object ); - if(idx<0) return len+idx; - return idx; -} - -CvRect PySlice_to_CvRect(CvArr * src, PyObject * idx_object){ - CvSize sz = cvGetSize(src); - //printf("Size %dx%d\n", sz.height, sz.width); - int lower[2], upper[2]; - Py_ssize_t len, start, stop, step, slicelength; - - if(PyInt_Check(idx_object) || PyLong_Check(idx_object)){ - // if array is a row vector, assume index into columns - if(sz.height>1){ - lower[0] = PyLong_AsIndex( idx_object, sz.height ); - upper[0] = lower[0] + 1; - lower[1] = 0; - upper[1] = sz.width; - } - else{ - lower[0] = 0; - upper[0] = sz.height; - lower[1] = PyLong_AsIndex( idx_object, sz.width ); - upper[1] = lower[1]+1; - } - } - - // 1. Slice - else if(PySlice_Check(idx_object)){ - len = sz.height; - if(PySlice_GetIndicesEx( (PySliceObject*)idx_object, len, &start, &stop, &step, &slicelength )!=0){ - printf("Error in PySlice_GetIndicesEx: returning NULL"); - PyErr_SetString(PyExc_Exception, "Error"); - return cvRect(0,0,0,0); - } - // if array is a row vector, assume index bounds are into columns - if(sz.height>1){ - lower[0] = (int) start; // use c convention of start index = 0 - upper[0] = (int) stop; // use c convention - lower[1] = 0; - upper[1] = sz.width; - } - else{ - lower[1] = (int) start; // use c convention of start index = 0 - upper[1] = (int) stop; // use c convention - lower[0] = 0; - upper[0] = sz.height; - } - } - - // 2. Tuple - else if(PyTuple_Check(idx_object)){ - //printf("PyTuple{\n"); - if(PyObject_Length(idx_object)!=2){ - //printf("Expected a sequence of length 2: returning NULL"); - PyErr_SetString(PyExc_ValueError, "Expected a sequence with 2 elements"); - return cvRect(0,0,0,0); - } - for(int i=0; i<2; i++){ - PyObject *o = PyTuple_GetItem(idx_object, i); - - // 2a. Slice -- same as above - if(PySlice_Check(o)){ - //printf("PySlice\n"); - len = (i==0 ? sz.height : sz.width); - if(PySlice_GetIndicesEx( (PySliceObject*)o, len, &start, &stop, &step, &slicelength )!=0){ - PyErr_SetString(PyExc_Exception, "Error"); - printf("Error in PySlice_GetIndicesEx: returning NULL"); - return cvRect(0,0,0,0); - } - //printf("PySlice_GetIndecesEx(%d, %d, %d, %d, %d)\n", len, start, stop, step, slicelength); - lower[i] = start; - upper[i] = stop; - - } - - // 2b. Integer - else if(PyInt_Check(o) || PyLong_Check(o)){ - //printf("PyInt\n"); - lower[i] = PyLong_AsIndex(o, i==0 ? sz.height : sz.width); - upper[i] = lower[i]+1; - } - - else { - PyErr_SetString(PyExc_TypeError, "Expected a sequence of slices or integers"); - printf("Expected a slice or int as sequence item: returning NULL"); - return cvRect(0,0,0,0); - } - } - } - - else { - PyErr_SetString( PyExc_TypeError, "Expected a slice or sequence"); - printf("Expected a slice or sequence: returning NULL"); - return cvRect(0,0,0,0); - } - - //lower[0] = MAX(0, lower[0]); - //lower[1] = MAX(0, lower[1]); - //upper[0] = MIN(sz.height, upper[0]); - //upper[1] = MIN(sz.width, upper[1]); - //printf("Slice=%d %d %d %d\n", lower[0], upper[0], lower[1], upper[1]); - return cvRect(lower[1],lower[0], upper[1]-lower[1], upper[0]-lower[0]); -} - -int CheckSliceBounds(CvRect * rect, int w, int h){ - //printf("__setitem__ slice(%d:%d, %d:%d) array(%d,%d)", rect.x, rect.y, rect.x+rect.width, rect.y+rect.height, w, h); - if(rect->width<=0 || rect->height<=0 || - rect->width>w || rect->height>h || - rect->x<0 || rect->y<0 || - rect->x>= w || rect->y >=h){ - char errstr[256]; - - // previous function already set error string - if(rect->width==0 && rect->height==0 && rect->x==0 && rect->y==0) return -1; - - sprintf(errstr, "Requested slice [ %d:%d %d:%d ] oversteps array sized [ %d %d ]", - rect->x, rect->y, rect->x+rect->width, rect->y+rect->height, w, h); - PyErr_SetString(PyExc_IndexError, errstr); - //PyErr_SetString(PyExc_ValueError, errstr); - return 0; - } - return 1; -} - -double PyObject_AsDouble(PyObject * obj){ - if(PyNumber_Check(obj)){ - if(PyFloat_Check(obj)){ - return PyFloat_AsDouble(obj); - } - else if(PyInt_Check(obj) || PyLong_Check(obj)){ - return (double) PyLong_AsLong(obj); - } - } - PyErr_SetString( PyExc_TypeError, "Could not convert python object to Double"); - return -1; -} - -long PyObject_AsLong(PyObject * obj){ - if(PyNumber_Check(obj)){ - if(PyFloat_Check(obj)){ - return (long) PyFloat_AsDouble(obj); - } - else if(PyInt_Check(obj) || PyLong_Check(obj)){ - return PyLong_AsLong(obj); - } - } - PyErr_SetString( PyExc_TypeError, "Could not convert python object to Long"); - return -1; -} - -CvArr * PyArray_to_CvArr (PyObject * obj) -{ - // let's try to create a temporary CvMat header that points to the - // data owned by obj and reflects its memory layout - - CvArr * cvarr = NULL; - - void * raw_data = 0; - long rows; - long cols; - long channels; - long step; - long mat_type = 7; - long element_size = 1; - - // infer layout from array interface - PyObject * interface = PyObject_GetAttrString (obj, "__array_interface__"); - - - // the array interface should be a dict - if (PyMapping_Check (interface)) - { - if (PyMapping_HasKeyString (interface, (char*)"version") && - PyMapping_HasKeyString (interface, (char*)"shape") && - PyMapping_HasKeyString (interface, (char*)"typestr") && - PyMapping_HasKeyString (interface, (char*)"data")) - { - PyObject * version = PyMapping_GetItemString (interface, (char*)"version"); - PyObject * shape = PyMapping_GetItemString (interface, (char*)"shape"); - PyObject * typestr = PyMapping_GetItemString (interface, (char*)"typestr"); - PyObject * data = PyMapping_GetItemString (interface, (char*)"data"); - - if (!PyInt_Check (version) || PyInt_AsLong (version) != 3) - PyErr_SetString(PyExc_TypeError, "OpenCV understands version 3 of the __array_interface__ only"); - else - { - if (!PyTuple_Check (shape) || PyTuple_Size (shape) < 2 || PyTuple_Size (shape) > 3) - PyErr_SetString(PyExc_TypeError, "arrays must have a shape with 2 or 3 dimensions"); - else - { - rows = PyInt_AsLong (PyTuple_GetItem (shape, 0)); - cols = PyInt_AsLong (PyTuple_GetItem (shape, 1)); - channels = PyTuple_Size (shape) < 3 ? 1 : PyInt_AsLong (PyTuple_GetItem (shape, 2)); - - if (rows < 1 || cols < 1 || channels < 1 || channels > 4) - PyErr_SetString(PyExc_TypeError, "rows and columns must be positive, channels from 1 to 4"); - else - { -// fprintf (stderr, "rows: %ld, cols: %ld, channels %ld\n", rows, cols, channels); fflush (stderr); - - if (! PyTuple_Check (data) || PyTuple_Size (data) != 2 || - !(PyInt_Check (PyTuple_GetItem (data,0)) || PyLong_Check (PyTuple_GetItem (data,0))) || - !(PyBool_Check (PyTuple_GetItem (data,1)) && !PyInt_AsLong (PyTuple_GetItem (data,1)))) - PyErr_SetString (PyExc_TypeError, "arrays must have a pointer to writeable data"); - else - { - raw_data = PyLong_AsVoidPtr (PyTuple_GetItem (data,0)); -// fprintf(stderr, "raw_data: %p\n", raw_data); fflush (stderr); - - char * format_str = NULL; - Py_ssize_t len = 0; - - if (!PyString_Check (typestr) || PyString_AsStringAndSize (typestr, & format_str, &len) == -1 || len !=3) - PyErr_SetString(PyExc_TypeError, "there is something wrong with the format string"); - else - { -// fprintf(stderr, "format: %c %c\n", format_str[1], format_str[2]); fflush (stderr); - - if (format_str[1] == 'u' && format_str[2] == '1') - { - element_size = 1; - mat_type = CV_MAKETYPE(CV_8U, channels); - } - else if (format_str[1] == 'i' && format_str[2] == '1') - { - element_size = 1; - mat_type = CV_MAKETYPE(CV_8S, channels); - } - else if (format_str[1] == 'u' && format_str[2] == '2') - { - element_size = 2; - mat_type = CV_MAKETYPE(CV_16U, channels); - } - else if (format_str[1] == 'i' && format_str[2] == '2') - { - element_size = 2; - mat_type = CV_MAKETYPE(CV_16S, channels); - } - else if (format_str[1] == 'i' && format_str[2] == '4') - { - element_size = 4; - mat_type = CV_MAKETYPE(CV_32S, channels); - } - else if (format_str[1] == 'f' && format_str[2] == '4') - { - element_size = 4; - mat_type = CV_MAKETYPE(CV_32F, channels); - } - else if (format_str[1] == 'f' && format_str[2] == '8') - { - element_size = 8; - mat_type = CV_MAKETYPE(CV_64F, channels); - } - else - { - PyErr_SetString(PyExc_TypeError, "unknown or unhandled element format"); - mat_type = CV_USRTYPE1; - } - - // handle strides if given - // TODO: implement stride handling - step = cols * channels * element_size; - if (PyMapping_HasKeyString (interface, (char*)"strides")) - { - PyObject * strides = PyMapping_GetItemString (interface, (char*)"strides"); - - if (strides != Py_None) - { - fprintf(stderr, "we have strides ... not handled!\n"); fflush (stderr); - PyErr_SetString(PyExc_TypeError, "arrays with strides not handled yet"); - mat_type = CV_USRTYPE1; // use this to denote, we've got an error - } - - Py_DECREF (strides); - } - - // create matrix header if everything is okay - if (mat_type != CV_USRTYPE1) - { - CvMat * temp_matrix = cvCreateMatHeader (rows, cols, mat_type); - cvSetData (temp_matrix, raw_data, step); - cvarr = temp_matrix; - -// fprintf(stderr, "step_size: %ld, type: %ld\n", step, mat_type); fflush (stderr); - } - } - } - } - } - } - - Py_DECREF (data); - Py_DECREF (typestr); - Py_DECREF (shape); - Py_DECREF (version); - } - - } - - Py_DECREF (interface); - - return cvarr; -} - - -// Convert Python lists to CvMat * -CvArr * PySequence_to_CvArr (PyObject * obj) -{ - int dims [CV_MAX_DIM] = { 1, 1, 1}; - PyObject * container[CV_MAX_DIM+1] = {NULL, NULL, NULL, NULL}; - int ndim = 0; - PyObject * item = Py_None; - - // TODO: implement type detection - currently we create CV_64F only - // scan full array to - // - figure out dimensions - // - check consistency of dimensions - // - find appropriate data-type and signedness - // enum NEEDED_DATATYPE { NEEDS_CHAR, NEEDS_INTEGER, NEEDS_FLOAT, NEEDS_DOUBLE }; - // NEEDED_DATATYPE needed_datatype = NEEDS_CHAR; - // bool needs_sign = false; - - // scan first entries to find out dimensions - for (item = obj, ndim = 0; PySequence_Check (item) && ndim <= CV_MAX_DIM; ndim++) - { - dims [ndim] = PySequence_Size (item); - container [ndim] = PySequence_GetItem (item, 0); - item = container[ndim]; - } - - // in contrast to PyTuple_GetItem, PySequence_GetItame returns a NEW reference - if (container[0]) - { - Py_DECREF (container[0]); - } - if (container[1]) - { - Py_DECREF (container[1]); - } - if (container[2]) - { - Py_DECREF (container[2]); - } - if (container[3]) - { - Py_DECREF (container[3]); - } - - // it only makes sense to support 2 and 3 dimensional data at this time - if (ndim < 2 || ndim > 3) - { - PyErr_SetString (PyExc_TypeError, "Nested sequences should have 2 or 3 dimensions"); - return NULL; - } - - // also, the number of channels should match what's typical for OpenCV - if (ndim == 3 && (dims[2] < 1 || dims[2] > 4)) - { - PyErr_SetString (PyExc_TypeError, "Currently, the third dimension of CvMat only supports 1 to 4 channels"); - return NULL; - } - - // CvMat - CvMat * matrix = cvCreateMat (dims[0], dims[1], CV_MAKETYPE (CV_64F, dims[2])); - - for (int y = 0; y < dims[0]; y++) - { - PyObject * rowobj = PySequence_GetItem (obj, y); - - // double check size - if (PySequence_Check (rowobj) && PySequence_Size (rowobj) == dims[1]) - { - for (int x = 0; x < dims[1]; x++) - { - PyObject * colobj = PySequence_GetItem (rowobj, x); - - if (dims [2] > 1) - { - if (PySequence_Check (colobj) && PySequence_Size (colobj) == dims[2]) - { - PyObject * tuple = PySequence_Tuple (colobj); - - double a, b, c, d; - if (PyArg_ParseTuple (colobj, "d|d|d|d", &a, &b, &c, &d)) - { - cvSet2D (matrix, y, x, cvScalar (a, b, c, d)); - } - else - { - PyErr_SetString (PyExc_TypeError, "OpenCV only accepts numbers that can be converted to float"); - cvReleaseMat (& matrix); - Py_DECREF (tuple); - Py_DECREF (colobj); - Py_DECREF (rowobj); - return NULL; - } - - Py_DECREF (tuple); - } - else - { - PyErr_SetString (PyExc_TypeError, "All sub-sequences must have the same number of entries"); - cvReleaseMat (& matrix); - Py_DECREF (colobj); - Py_DECREF (rowobj); - return NULL; - } - } - else - { - if (PyFloat_Check (colobj) || PyInt_Check (colobj)) - { - cvmSet (matrix, y, x, PyFloat_AsDouble (colobj)); - } - else - { - PyErr_SetString (PyExc_TypeError, "OpenCV only accepts numbers that can be converted to float"); - cvReleaseMat (& matrix); - Py_DECREF (colobj); - Py_DECREF (rowobj); - return NULL; - } - } - - Py_DECREF (colobj); - } - } - else - { - PyErr_SetString (PyExc_TypeError, "All sub-sequences must have the same number of entries"); - cvReleaseMat (& matrix); - Py_DECREF (rowobj); - return NULL; - } - - Py_DECREF (rowobj); - } - - return matrix; -} diff --git a/interfaces/swig/python/pyhelpers.h b/interfaces/swig/python/pyhelpers.h deleted file mode 100644 index 4048bf53b..000000000 --- a/interfaces/swig/python/pyhelpers.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef PYHELPERS_H -#define PYHELPERS_H - -#include -#include -#include - -/** convert python index object (tuple, integer, or slice) to CvRect for subsequent cvGetSubMat call */ -CvRect PySlice_to_CvRect(CvArr * src, PyObject * idx_object); - -/** 1 if rectangle is a subrectangle of [0,0,w,h], 0 otherwise */ -int CheckSliceBounds(CvRect * rect, int w, int h ); - -/// convert object that supports the array protocol to CvMat * -CvArr * PyArray_to_CvArr (PyObject * obj); - -/// convert nested sequences to CvMat * -CvArr * PySequence_to_CvArr (PyObject * obj); - -/** prints array to stdout - * TODO: python __str__ and __repr__ return strings, so this should write to a string - */ -void cvArrPrint (CvArr * mat); - -/** Convert an integer array to python tuple */ -PyObject * PyTuple_FromIntArray(int * arr, int len); - -/** If result is not NULL or PyNone, release object and replace it with obj */ -PyObject * SWIG_SetResult(PyObject * result, PyObject * obj); - -/** helper function to append one or more objects to the swig $result array */ -PyObject * SWIG_AppendResult(PyObject * result, PyObject ** to_add, int num); - -/** helper function to convert python scalar or sequence to int, float or double arrays */ -double PyObject_AsDouble(PyObject * obj); -long PyObject_AsLong(PyObject * obj); - -int PyObject_AsDoubleArray(PyObject * obj, double * array, int len); -int PyObject_AsLongArray( PyObject * obj, int * array, int len); -int PyObject_AsFloatArray(PyObject * obj, float * array, int len); - -static inline int cvCvToIplDepth(int type) { return cvIplDepth(type); } - -#endif //PYHELPERS_H diff --git a/interfaces/swig/python/pyhelpers.i b/interfaces/swig/python/pyhelpers.i deleted file mode 100644 index 169f92c50..000000000 --- a/interfaces/swig/python/pyhelpers.i +++ /dev/null @@ -1,239 +0,0 @@ -/* These functions need the SWIG_* functions defined in the wrapper */ -%{ - -#include "pyhelpers.h" - -static CvArr * PyObject_to_CvArr(PyObject * obj, bool * freearg); - -// convert a python sequence/array/list object into a c-array -#define PyObject_AsArrayImpl(func, ctype, ptype) \ - int func(PyObject * obj, ctype * array, int len){ \ - void * mat_vptr=NULL; \ - void * im_vptr=NULL; \ - if(PyNumber_Check(obj)){ \ - memset( array, 0, sizeof(ctype)*len ); \ - array[0] = PyObject_As##ptype( obj ); \ - } \ - else if(PyList_Check(obj) || PyTuple_Check(obj)){ \ - int seqsize = PySequence_Size(obj); \ - for(int i=0; irows!=1 && mat->cols!=1 ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr must be row or column vector" ); \ - return -1; \ - } \ - if( mat->rows==1 && mat->cols==1 ){ \ - CvScalar val; \ - if( len!=CV_MAT_CN(mat->type) ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr channels != length" ); \ - return -1; \ - } \ - val = cvGet1D(mat, 0); \ - for(int i=0; irows*mat->cols); \ - if( mat->rows != len ){ \ - PyErr_SetString( PyExc_TypeError, \ - "PyObject_As*Array: CvArr rows or cols must equal length" ); \ - return -1; \ - } \ - for(int i=0; ival[0], scalar->val[1] )); - } - if(PyObject_AsLongArray(obj, (int *) &val, 2) != -1){ - return val; - } - - PyErr_SetString( PyExc_TypeError, "could not convert to CvPoint"); - return cvPoint(0,0); -} - -static CvPoint2D32f PyObject_to_CvPoint2D32f(PyObject * obj){ - CvPoint2D32f val; - CvPoint2D32f *ptr2D32f; - CvPoint *ptr; - CvScalar * scalar; - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return *ptr2D32f; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvPointTo32f(*ptr); - } - if( SWIG_ConvertPtr(obj, (void**)&scalar, SWIGTYPE_p_CvScalar, 0) != -1) { - return cvPoint2D32f( scalar->val[0], scalar->val[1] ); - } - if(PyObject_AsFloatArray(obj, (float *) &val, 2) != -1){ - return val; - } - PyErr_SetString(PyExc_TypeError, "could not convert to CvPoint2D32f"); - return cvPoint2D32f(0,0); -} - -/* Check if this object can be interpreted as a CvScalar */ -static bool CvScalar_Check(PyObject * obj){ - void * vptr; - CvScalar val; - return SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0 ) != -1 || - SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0 ) != -1 || - PyObject_AsDoubleArray(obj, val.val, 4) !=-1; -} - -static CvScalar PyObject_to_CvScalar(PyObject * obj){ - CvScalar val; - CvScalar * ptr; - CvPoint2D32f *ptr2D32f; - CvPoint *pt_ptr; - void * vptr; - if( SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0 ) != -1) - { - ptr = (CvScalar *) vptr; - return *ptr; - } - if( SWIG_ConvertPtr(obj, (void**)&ptr2D32f, SWIGTYPE_p_CvPoint2D32f, 0) != -1) { - return cvScalar(ptr2D32f->x, ptr2D32f->y); - } - if( SWIG_ConvertPtr(obj, (void**)&pt_ptr, SWIGTYPE_p_CvPoint, 0) != -1) { - return cvScalar(pt_ptr->x, pt_ptr->y); - } - if(PyObject_AsDoubleArray(obj, val.val, 4)!=-1){ - return val; - } - return cvScalar(-1,-1,-1,-1); -} - -static int CvArr_Check( PyObject * obj ) -{ - void *ptr; - if( obj == Py_None || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr(obj, &ptr, SWIGTYPE_p_CvMatND, 0) ) || - PyObject_HasAttrString(obj, "__array_interface__") || - PySequence_Check(obj) ) - { - return 1; - } - PyErr_Clear(); - return 0; -} - -/* if python sequence type, convert to CvMat or CvMatND */ -static CvArr * PyObject_to_CvArr (PyObject * obj, bool * freearg) -{ - CvArr * cvarr = NULL; - *freearg = false; - - if ( obj == Py_None ) - { - // Interpret None as NULL pointer - return NULL; - } - else if( SWIG_IsOK( SWIG_ConvertPtr(obj, (void **)& cvarr, SWIGTYPE_p_void, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void** )& cvarr, SWIGTYPE_p_CvMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSeq, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvContour, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvSparseMat, 0) ) || - SWIG_IsOK( SWIG_ConvertPtr (obj, (void **)& cvarr, SWIGTYPE_p_CvMatND, 0) )) - { - // we got a directly wrapped void * pointer, OpenCV array or sequence type - return cvarr; - } - else if (PyObject_HasAttrString (obj, "__array_interface__")) - { - // if we didn't get our own datatype, let's see if it supports the array protocol - // array protocol is great because we just have to create another header but can - // use the original data without copying - cvarr = PyArray_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PySequence_Check (obj)) - { - // our next bet is a tuple or list of tuples or lists this has to be copied over, however - cvarr = PySequence_to_CvArr (obj); - *freearg = (cvarr != NULL); - } - else if (PyLong_Check (obj) && PyLong_AsLong (obj) == 0) - { - // Interpret a '0' integer as a NULL pointer - * freearg = false; - return NULL; - } - else - { - // TODO, throw an error here - return NULL; - } - - return cvarr; -} - - -static int PyObject_GetElemType(PyObject * obj){ - void *vptr; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize, 0) != -1) return CV_32SC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvRect, 0) != -1) return CV_32SC4; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvSize2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D32f, 0) != -1) return CV_32FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D32f, 0) != -1) return CV_32FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint2D64f, 0) != -1) return CV_64FC2; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvPoint3D64f, 0) != -1) return CV_64FC3; - if(SWIG_ConvertPtr(obj, &vptr, SWIGTYPE_p_CvScalar, 0) != -1) return CV_64FC4; - if(PyTuple_Check(obj) || PyList_Check(obj)) return CV_MAKE_TYPE(CV_32F, PySequence_Size( obj )); - if(PyLong_Check(obj)) return CV_32S; - return CV_32F; -} - -%} diff --git a/interfaces/swig/python/pytypemaps.i b/interfaces/swig/python/pytypemaps.i deleted file mode 100644 index 23d96a80f..000000000 --- a/interfaces/swig/python/pytypemaps.i +++ /dev/null @@ -1,1478 +0,0 @@ -/*M/////////////////////////////////////////////////////////////////////////////////////// -// -// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. -// -// By downloading, copying, installing or using the software you agree to this license. -// If you do not agree to this license, do not download, install, -// copy or use the software. -// -// -// Intel License Agreement -// For Open Source Computer Vision Library -// -// Copyright (C) 2000, Intel Corporation, all rights reserved. -// Third party copyrights are property of their respective owners. -// -// Redistribution and use in source and binary forms, with or without modification, -// are permitted provided that the following conditions are met: -// -// * Redistribution's of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -// * Redistribution's in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -// * The name of Intel Corporation may not be used to endorse or promote products -// derived from this software without specific prior written permission. -// -// This software is provided by the copyright holders and contributors "as is" and -// any express or implied warranties, including, but not limited to, the implied -// warranties of merchantability and fitness for a particular purpose are disclaimed. -// In no event shall the Intel Corporation or contributors be liable for any direct, -// indirect, incidental, special, exemplary, or consequential damages -// (including, but not limited to, procurement of substitute goods or services; -// loss of use, data, or profits; or business interruption) however caused -// and on any theory of liability, whether in contract, strict liability, -// or tort (including negligence or otherwise) arising in any way out of -// the use of this software, even if advised of the possibility of such damage. -// -//M*/ -%include "exception.i" -%include "./pyhelpers.i" - -%typemap(in) (CvArr *) (bool freearg=false) -{ - $1 = PyObject_to_CvArr($input, &freearg); -} - -%typemap(freearg) (CvArr *) -{ - if($1!=NULL && freearg$argnum) - { - cvReleaseData( $1 ); - cvFree(&($1)); - } -} - -%typemap(in) CvMat* (bool freearg=false), const CvMat* (bool freearg=false) -{ - $1 = (CvMat*)PyObject_to_CvArr($input, &freearg); -} - -%typemap(freearg) CvMat*,const CvMat* { - if($1!=NULL && freearg$argnum){ - cvReleaseData( $1 ); - cvFree(&($1)); - } -} - -/* typecheck typemaps */ -%typecheck(SWIG_TYPECHECK_POINTER) CvArr * { - $1 = CvArr_Check( $input ); -} - -%typecheck(SWIG_TYPECHECK_POINTER) CvScalar { - $1 = CvScalar_Check( $input ); -} - -/* copy built-in swig typemaps for these types */ -%typemap(typecheck) CvPoint = SWIGTYPE; -%typemap(typecheck) CvPoint2D32f = SWIGTYPE; -%typemap(typecheck) CvPoint3D32f = SWIGTYPE; -%typemap(typecheck) CvPoint2D64f = SWIGTYPE; -%typemap(typecheck) CvPoint3D64f = SWIGTYPE; -%typemap(typecheck) CvRect = SWIGTYPE; -%typemap(typecheck) CvSize = SWIGTYPE; -%typemap(typecheck) CvSize2D32f = SWIGTYPE; -%typemap(typecheck) CvSlice = SWIGTYPE; -%typemap(typecheck) CvBox2D = SWIGTYPE; -%typemap(typecheck) CvTermCriteria = SWIGTYPE; - - -// for cvReshape, cvGetRow, where header is passed, then filled in -%typemap(in, numinputs=0) CvMat * OUTPUT (CvMat * header, bool freearg=false) { - header = (CvMat *)cvAlloc(sizeof(CvMat)); - $1 = header; -} - -%apply CvMat * OUTPUT {CvMat * header}; -%apply CvMat * OUTPUT {CvMat * submat}; - -%newobject cvReshape; -%newobject cvGetRow; -%newobject cvGetRows; -%newobject cvGetCol; -%newobject cvGetCols; -%newobject cvGetSubRect; -%newobject cvGetDiag; - -/** - * In C, these functions assume input will always be around at least as long as header, - * presumably because the most common usage is to pass in a reference to a stack object. - * i.e - * CvMat row; - * cvGetRow(A, &row, 0); - * - * As a result, the header is not refcounted (see the C source for cvGetRow, Reshape, in cxarray.cpp) - * However, in python, the header parameter is implicitly created so it is easier to create - * situations where the sub-array outlives the original header. A simple example is: - * A = cvReshape(A, -1, A.rows*A.cols) - * - * since python doesn't have an assignment operator, the new header simply replaces the original, - * the refcount of the original goes to zero, and cvReleaseMat is called on the original, freeing both - * the header and data. The new header is left pointing to invalid data. To avoid this, need to add - * refcount field to the returned header. -*/ -%typemap(argout) (const CvArr* arr, CvMat* header) -{ - $2->hdr_refcount = ((CvMat *)$1)->hdr_refcount; - $2->refcount = ((CvMat *)$1)->refcount; - cvIncRefData($2); -} - -%typemap(argout) (const CvArr* arr, CvMat* submat) -{ - $2->hdr_refcount = ((CvMat *)$1)->hdr_refcount; - $2->refcount = ((CvMat *)$1)->refcount; - cvIncRefData($2); -} - -/* map scalar or sequence to CvScalar, CvPoint2D32f, CvPoint */ -%typemap(in) (CvScalar) -{ - $1 = PyObject_to_CvScalar( $input ); -} - -//%typemap(in) (CvPoint) { -// $1 = PyObject_to_CvPoint($input); -//} -//%typemap(in) (CvPoint2D32f) { -// $1 = PyObject_to_CvPoint2D32f($input); -//} - - -// ============================================================================================ - -%define TUPLE_OR_TYPE (item, destination, typename, number, description, ...) -{ - if (PySequence_Check(item) && PySequence_Length(item) == number) - { - PyObject * as_tuple = PySequence_Tuple (item); - if (!PyArg_ParseTuple (as_tuple, __VA_ARGS__)) - { - PyErr_SetString(PyExc_TypeError, "each entry must consist of " # number " values " # description); - Py_DECREF (as_tuple); - return NULL; - } - Py_DECREF (as_tuple); - } - else - { - typename * ptr; - if (SWIG_ConvertPtr (item, (void **) & ptr, $descriptor(typename *), SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError, "expected a sequence of " # number " values " # description " or a " # typename); - Py_DECREF (item); - return NULL; - } - destination = *ptr; - } -} -%enddef - -%define INPUT_ARRAY_OF_TUPLES_OR_TYPES (typename, number, description, ...) -{ - if(! PySequence_Check ($input)) - { - PyErr_SetString(PyExc_TypeError, "Expected a list or tuple"); - return NULL; - } - - // TODO: will this ever be freed? - int count = PySequence_Size ($input); - int array = (typename *) malloc (count * sizeof (typename)); - - // extract all the points values from the list */ - typename * element = array; - for (int i = 0; i < count; i++, element++) - { - PyObject * item = PySequence_GetItem ($input, i); - - // use the macro we have to expand a single entry - TUPLE_OR_TYPE (item, *element, typename, number, description, __VA_ARGS__) - // *corner, "ff", & corner->x, & corner->y - } - - // these are the arguments passed to the OpenCV function - $1 = array; - $2 = count; -} -%enddef - - -// ============================================================================================ -// Tiny typemaps for tiny types ... - -%typemap(in) CvRect (CvRect temp) -//TUPLE_OR_TYPE ($input, $1, CvRect, 4, "(x,y,w,h)", "iiii", & temp.x, & temp.y, & temp.width, & temp.height) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"iiii", & temp.x, & temp.y, & temp.width, & temp.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 4 integers (x, y, width, height)"); - return NULL; - } - $1 = temp; - } - else - { - CvRect * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvRect, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvRect"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvTermCriteria (CvTermCriteria temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"iid", & temp.type, & temp.max_iter, & temp.epsilon)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers and a float (type, max_iter, epsilon)"); - return NULL; - } - $1 = temp; - } - else - { - CvTermCriteria * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvTermCriteria, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvTermCriteria"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvPoint (CvPoint temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"ii", & temp.x, & temp.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (x, y)"); - return NULL; - } - $1 = temp; - } - else - { - CvPoint * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvPoint, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvPoint2D32f (CvPoint2D32f temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"ff", & temp.x, & temp.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - $1 = temp; - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvPoint2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D32f"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvPoint3D32f (CvPoint3D32f temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"fff", & temp.x, & temp.y, &temp.z)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 3 floats (x, y, z)"); - return NULL; - } - $1 = temp; - } - else - { - CvPoint3D32f * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvPoint3D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint3D32f"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvPoint2D64f (CvPoint2D64f temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"dd", & temp.x, & temp.y)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (x, y)"); - return NULL; - } - $1 = temp; - } - else - { - CvPoint2D64f * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvPoint2D64f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint2D64f"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvPoint3D64f (CvPoint3D64f temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"ddd", & temp.x, & temp.y, &temp.z)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 3 floats (x, y, z)"); - return NULL; - } - $1 = temp; - } - else - { - CvPoint3D64f * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvPoint3D64f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvPoint3D64f"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvSize (CvSize temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"ii", & temp.width, & temp.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (width, height)"); - return NULL; - } - $1 = temp; - } - else - { - CvSize * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvSize, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvSize2D32f (CvSize2D32f temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"ff", & temp.width, & temp.height)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 floats (width, height)"); - return NULL; - } - $1 = temp; - } - else - { - CvSize2D32f * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvSize2D32f, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSize2D32f"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvBox2D (CvBox2D temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"fffff", & temp.center.x, & temp.center.y, & temp.size.width, & temp.size.height, & temp.angle)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 5 floats (center_x, center_y, width, height, angle)"); - return NULL; - } - $1 = temp; - } - else - { - CvBox2D * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvBox2D, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvBox2D"); - return NULL; - } - $1 = *ptr; - } -} - - -%typemap(in) CvSlice (CvSlice temp) -{ - if (PyTuple_Check($input)) - { - if (!PyArg_ParseTuple($input,"ii", & temp.start_index, & temp.end_index)) - { - PyErr_SetString(PyExc_TypeError,"tuple must consist of 2 integers (start_index, end_index)"); - return NULL; - } - $1 = temp; - } - else - { - CvSlice * ptr; - if (SWIG_ConvertPtr ($input, (void **) & ptr, SWIGTYPE_p_CvSlice, SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a tuple or a CvSlice"); - return NULL; - } - $1 = *ptr; - } -} - - -/* typemap for cvGetDims */ -%typemap(in) (const CvArr * arr, int * sizes = NULL) (void * myarr, int mysizes[CV_MAX_DIM]){ - SWIG_Python_ConvertPtr($input, &myarr, 0, SWIG_POINTER_EXCEPTION); - $1=(CvArr *)myarr; - $2=mysizes; -} - -%typemap(argout) (const CvArr * arr, int * sizes = NULL) { - int len = PyInt_AsLong( $result ); - PyObject * obj = PyTuple_FromIntArray( $2, len ); - Py_DECREF( $result ); - $result = obj; -} - -/* map one list of integer to the two parameters dimension/sizes */ -%typemap(in) (int dims, int* sizes) { - int i; - - /* get the size of the dimention array */ - $1 = PyList_Size ($input); - - /* allocate the needed memory */ - $2 = (int *)malloc ($1 * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < $1; i++) { - PyObject *item = PyList_GetItem ($input, i); - $2 [i] = (int)PyInt_AsLong (item); - } -} - -/* map one list of integer to the parameter idx of - cvGetND, cvSetND, cvClearND, cvGetRealND, cvSetRealND and cvClearRealND */ -%typemap(in) (int* idx) { - int i; - int size; - - /* get the size of the dimention array */ - size = PyList_Size ($input); - - /* allocate the needed memory */ - $1 = (int *)malloc (size * sizeof (int)); - - /* extract all the integer values from the list */ - for (i = 0; i < size; i++) { - PyObject *item = PyList_GetItem ($input, i); - $1 [i] = (int)PyInt_AsLong (item); - } -} - -/* map a list of list of float to an matrix of floats*/ -%typemap(in) float** ranges { - int i1; - int i2; - int size1; - int size2 = 0; - - /* get the number of lines of the matrix */ - size1 = PyList_Size ($input); - - /* allocate the correct number of lines for the destination matrix */ - $1 = (float **)malloc (size1 * sizeof (float *)); - - for (i1 = 0; i1 < size1; i1++) { - - /* extract all the lines of the matrix */ - PyObject *list = PyList_GetItem ($input, i1); - - if (size2 == 0) { - /* size 2 wasn't computed before */ - size2 = PyList_Size (list); - } else if (size2 != PyList_Size (list)) { - /* the current line as a different size than the previous one */ - /* so, generate an exception */ - SWIG_exception (SWIG_ValueError, "Lines must be the same size"); - } - - /* allocate the correct number of rows for the current line */ - $1 [i1] = (float *)malloc (size2 * sizeof (float)); - - /* extract all the float values of this row */ - for (i2 = 0; i2 < size2; i2++) { - PyObject *item = PyList_GetItem (list, i2); - $1 [i1][i2] = (float)PyFloat_AsDouble (item); - } - } -} - -/** - * map the output parameter of the cvGetMinMaxHistValue() - * so, we can call cvGetMinMaxHistValue() in Python like: - * min_value, max_value = cvGetMinMaxHistValue (hist, None, None) - */ -%apply int *OUTPUT {int *min_idx}; -%apply int *OUTPUT {int *max_idx}; -%apply float *OUTPUT {float *min_value}; -%apply float *OUTPUT {float *max_value}; - -/** - * map output parameters of cvMinMaxLoc - */ -%apply double *OUTPUT {double* min_val}; -%apply double *OUTPUT {double* max_val}; - -%typemap(in, numinputs=0) CvPoint * OUTPUT { - $1 = (CvPoint *) malloc(sizeof(CvPoint)); -} - -%typemap(argout) CvPoint * OUTPUT { - PyObject * to_add = SWIG_NewPointerObj ($1, $descriptor(CvPoint *), SWIG_POINTER_OWN); - $result = SWIG_AppendOutput( $result, to_add ); -} - -%apply CvPoint *OUTPUT {CvPoint *min_loc}; -%apply CvPoint *OUTPUT {CvPoint *max_loc}; - -/** - * the input argument of cvPolyLine "CvPoint** pts" is converted from - * a "list of list" (aka. an array) of CvPoint(). - * The next parameters "int* npts" and "int contours" are computed from - * the givne list. - */ -%typemap(in) (CvPoint** pts, int* npts, int contours){ - int i; - int j; - int size2 = -1; - CvPoint **points = NULL; - int *nb_vertex = NULL; - - if(!PySequence_Check($input)){ - SWIG_exception(SWIG_TypeError, "Expected a list for argument $argnum\n"); - return NULL; - } - - /* get the number of polylines input array */ - int size1 = PySequence_Size ($input); - $3 = size1; - - if(size1>0){ - /* create the points array */ - points = (CvPoint **)malloc (size1 * sizeof (CvPoint *)); - - /* point to the created array for passing info to the C function */ - $1 = points; - - /* create the array for memorizing the vertex */ - nb_vertex = (int *)malloc (size1 * sizeof (int)); - $2 = nb_vertex; - } - for (i = 0; i < size1; i++) { - - /* get the current item */ - PyObject *line = PySequence_GetItem ($input, i); - - if(!PySequence_Check(line)){ - SWIG_exception(SWIG_TypeError, "Expected a sequence of sequences of integers for argument $argnum\n"); - // TODO: cleanup here - } - - /* get the size of the current polyline */ - size2 = PySequence_Size (line); - - - if(size2>0){ - /* allocate the necessary memory to store the points */ - points [i] = (CvPoint *)malloc (size2 * sizeof (CvPoint)); - } - - /* memorize the size of the polyline in the vertex list */ - nb_vertex [i] = size2; - - for (j = 0; j < size2; j++) { - /* get the current item */ - PyObject *item = PySequence_GetItem (line, j); - points[i][j] = PyObject_to_CvPoint( item ); - } - } -} -/** Free arguments allocated before the function call */ -%typemap(freearg) (CvPoint **pts, int* npts, int contours){ - int i; - for(i=0;i<$3;i++){ - free($1[i]); - } - free($1); - free($2); -} - - -/** this typemap is meant to help cvCalcOpticalFlowPyrLK */ -%typemap(in, numinputs = 0) (int count, char* status, float* track_error) { - $1 [count] = (char *) malloc (count * sizeof (char)); - $2 [count] = (float *) malloc (count * sizeof (float)); -} - -%typemap(argout) float *track_error { - PyObject * to_add = SWIG_NewPointerObj ($1, $descriptor(float *), SWIG_POINTER_OWN); - $result = SWIG_AppendOutput( $result, to_add ); -} - -/** Macro to define typemaps to convert a python list of CvPoints to a C array of CvPoints */ -%define %typemap_CvPoint_CArr(points_arg, numpoints_arg) - -%typemap(in, numinputs=1) (CvPoint * points_arg, int numpoints_arg){ - int i; - - if(!PySequence_Check($input)){ - SWIG_exception(SWIG_TypeError, "Expected a list for argument $argnum\n"); - return NULL; - } - int size = PySequence_Size($input); - CvPoint * points = (CvPoint *)malloc(size*sizeof(CvPoint)); - for(i=0; ix; - features[i].y = p->y; - } - - // these are the arguments passed to the OpenCV function - $1 = features; -} - -/** - * the corners returned by cvGoodFeaturesToTrack - */ -%typemap (in, numinputs=1) (CvPoint2D32f* corners, int* corner_count) (int tmpCount) -{ - /* as input, we still need the size of the corners array */ - - /* memorize the size of the status corners */ - tmpCount = (int) PyInt_AsLong ($input); - - // these are the arguments passed to the OpenCV function - $1 = (CvPoint2D32f *) malloc (tmpCount * sizeof (CvPoint2D32f)); - $2 = &tmpCount; -} - -/** - * the corners returned by cvGoodFeaturesToTrack - */ -%typemap(argout) (CvPoint2D32f* corners, int* corner_count) -{ - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (tmpCount$argnum); - - /* extract all the integer values of the result, and add it to the final resulting list */ - for (i = 0; i < tmpCount$argnum; i++) - PyList_SetItem (to_add, i, SWIG_NewPointerObj (&($1 [i]), $descriptor(CvPoint2D32f *), 0)); - - $result = SWIG_AppendResult($result, &to_add, 1); -} - -/* map one list of points to the two parameters dimension/sizes for cvFindCornerSubPix */ -%typemap(in, numinputs=1) (CvPoint2D32f* corners, int count) (int cornersCount, CvPoint2D32f* corners) -{ - if(! PySequence_Check ($input)) - { - PyErr_SetString(PyExc_TypeError, "Expected a list or tuple"); - return NULL; - } - - // TODO: will this ever be freed? - cornersCount = PySequence_Size ($input); - corners = (CvPoint2D32f *) malloc (cornersCount * sizeof (CvPoint2D32f)); - - // extract all the points values from the list */ - CvPoint2D32f * corner = corners; - for (int i = 0; i < cornersCount; i++, corner++) - { - PyObject * item = PySequence_GetItem ($input, i); - - if (PySequence_Check(item) && PySequence_Length(item) == 2) - { - PyObject * tuple = PySequence_Tuple (item); - if (!PyArg_ParseTuple (tuple, "ff", & corner->x, & corner->y)) - { - PyErr_SetString(PyExc_TypeError,"each entry must consist of 2 floats (x, y)"); - Py_DECREF (tuple); - Py_DECREF (item); - return NULL; - } - Py_DECREF (tuple); - } - else - { - CvPoint2D32f * ptr; - if (SWIG_ConvertPtr (item, (void **) & ptr, $descriptor(CvPoint2D32f *), SWIG_POINTER_EXCEPTION) == -1) - { - PyErr_SetString (PyExc_TypeError,"expected a sequence of 2 floats (x, y) or a CvPoint2D32f"); - Py_DECREF (item); - return NULL; - } - *corner = *ptr; - } - - Py_DECREF (item); - } - - // these are the arguments passed to the OpenCV function - $1 = corners; - $2 = cornersCount; -} - -/** - * the corners returned by cvFindCornerSubPix - */ -%typemap(argout) (CvPoint2D32f* corners, int count) -{ - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New (cornersCount$argnum); - - /* extract all the corner values of the result, and add it to the - final resulting list */ - for (i = 0; i < cornersCount$argnum; i++) - PyList_SetItem (to_add, i, SWIG_NewPointerObj (&(corners$argnum [i]), $descriptor(CvPoint2D32f *), 0)); - - $result = SWIG_AppendResult( $result, &to_add, 1); -} - -/** - * return the corners for cvFindChessboardCorners - */ -%typemap(in, numinputs=1) (CvSize pattern_size, CvPoint2D32f * corners, int * corner_count ) - (CvSize * pattern_size, CvPoint2D32f * tmp_corners, int tmp_ncorners) { - void * vptr; - if( SWIG_ConvertPtr($input, &vptr, $descriptor( CvSize * ), SWIG_POINTER_EXCEPTION ) == -1){ - return NULL; - } - pattern_size=(CvSize *)vptr; - tmp_ncorners = pattern_size->width*pattern_size->height; - - tmp_corners = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)*tmp_ncorners); - $1 = *pattern_size; - $2 = tmp_corners; - $3 = &tmp_ncorners; -} - -%typemap(argout) (CvSize pattern_size, CvPoint2D32f * corners, int * corner_count){ - int i; - PyObject *to_add; - - /* create the list to return */ - to_add = PyList_New ( tmp_ncorners$argnum ); - - /* extract all the corner values of the result, and add it to the - final resulting list */ - for (i = 0; i < tmp_ncorners$argnum; i++) { - CvPoint2D32f * pt = new CvPoint2D32f; - pt->x = tmp_corners$argnum[i].x; - pt->y = tmp_corners$argnum[i].y; - - PyList_SetItem (to_add, i, - SWIG_NewPointerObj( pt, $descriptor(CvPoint2D32f *), 0)); - } - - $result = SWIG_AppendResult( $result, &to_add, 1); - free(tmp_corners$argnum); -} - -/** - * return the matrices for cvCameraCalibrate - */ -%typemap(in, numinputs=0) (CvMat * intrinsic_matrix, CvMat * distortion_coeffs) -{ - $1 = cvCreateMat(3,3,CV_32F); - $2 = cvCreateMat(4,1,CV_32F); -} - -%typemap(argout) (CvMat * intrinsic_matrix, CvMat * distortion_coeffs) -{ - PyObject * to_add[2] = {NULL, NULL}; - to_add[0] = SWIG_NewPointerObj($1, $descriptor(CvMat *), 1); - to_add[1] = SWIG_NewPointerObj($2, $descriptor(CvMat *), 1); - $result = SWIG_AppendResult( $result, to_add, 2 ); -} - -/** - * Fix OpenCV inheritance for CvSeq, CvSet, CvGraph - * Otherwise, can't call CvSeq functions on CvSet or CvGraph -*/ -%typemap(in, numinputs=1) (CvSeq *) (void * ptr) -{ - - if( SWIG_ConvertPtr($input, &ptr, $descriptor(CvSeq *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSet *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvGraph *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSubdiv2D *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvChain *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvContour *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvContourTree *), 0) == -1 ) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSeq"); - return NULL; - } - $1 = (CvSeq *) ptr; -} - -%typemap(in, numinputs=1) (CvSet *) (void * ptr) -{ - if( SWIG_ConvertPtr($input, &ptr, $descriptor(CvSet *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvGraph *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSubdiv2D *), 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvSet"); - return NULL; - } - $1 = (CvSet *)ptr; -} - -%typemap(in, numinputs=1) (CvGraph *) (void * ptr) -{ - if( SWIG_ConvertPtr($input, &ptr, $descriptor(CvGraph *), 0) == -1 && - SWIG_ConvertPtr($input, &ptr, $descriptor(CvSubdiv2D *), 0) == -1) - { - SWIG_exception (SWIG_TypeError, "could not convert to CvGraph"); - return NULL; - } - $1 = (CvGraph *)ptr; -} - -/** - * Remap output arguments to multiple return values for cvMinEnclosingCircle - */ -%typemap(in, numinputs=0) (CvPoint2D32f * center, float * radius) (CvPoint2D32f * tmp_center, float tmp_radius) -{ - tmp_center = (CvPoint2D32f *) malloc(sizeof(CvPoint2D32f)); - $1 = tmp_center; - $2 = &tmp_radius; -} -%typemap(argout) (CvPoint2D32f * center, float * radius) -{ - PyObject * to_add[2] = {NULL, NULL}; - to_add[0] = SWIG_NewPointerObj( tmp_center$argnum, $descriptor(CvPoint2D32f *), 1); - to_add[1] = PyFloat_FromDouble( tmp_radius$argnum ); - - $result = SWIG_AppendResult($result, to_add, 2); -} - -/** BoxPoints */ -%typemap(in, numinputs=0) (CvPoint2D32f pt[4]) (CvPoint2D32f tmp_pts[4]) -{ - $1 = tmp_pts; -} -%typemap(argout) (CvPoint2D32f pt[4]) -{ - PyObject * to_add = PyList_New(4); - int i; - for(i=0; i<4; i++){ - CvPoint2D32f * p = new CvPoint2D32f; - *p = tmp_pts$argnum[i]; - PyList_SetItem(to_add, i, SWIG_NewPointerObj( p, $descriptor(CvPoint2D32f *), 1 ) ); - } - $result = SWIG_AppendResult($result, &to_add, 1); -} - -/** Macro to wrap a built-in type that is used as an object like CvRNG and CvSubdiv2DEdge */ -%define %wrap_builtin(type) -%inline %{ -// Wrapper class -class type##_Wrapper { -private: - type m_val; -public: - type##_Wrapper( const type & val ) : - m_val(val) - { - } - type * ptr() { return &m_val; } - type & ref() { return m_val; } - bool operator==(const type##_Wrapper & x){ - return m_val==x.m_val; - } - bool operator!=(const type##_Wrapper & x){ - return m_val!=x.m_val; - } -}; -%} -%typemap(out) type -{ - type##_Wrapper * wrapper = new type##_Wrapper( $1 ); - $result = SWIG_NewPointerObj( wrapper, $descriptor( type##_Wrapper * ), 1 ); -} -%typemap(out) type * -{ - type##_Wrapper * wrapper = new type##_Wrapper( *($1) ); - $result = SWIG_NewPointerObj( wrapper, $descriptor( type##_Wrapper * ), 1 ); -} - -%typemap(in) (type *) (void * vptr, type##_Wrapper * wrapper){ - if(SWIG_ConvertPtr($input, &vptr, $descriptor(type##_Wrapper *), 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper = (type##_Wrapper *) vptr; - $1 = wrapper->ptr(); -} -%typemap(in) (type) (void * vptr, type##_Wrapper * wrapper){ - if(SWIG_ConvertPtr($input, &vptr, $descriptor(type##_Wrapper *), 0)==-1){ - SWIG_exception( SWIG_TypeError, "could not convert Python object to C value"); - return NULL; - } - wrapper = (type##_Wrapper *) vptr; - $1 = wrapper->ref(); -} -%enddef - -/** Application of wrapper class to built-in types */ -%wrap_builtin(CvRNG); -%wrap_builtin(CvSubdiv2DEdge); - -/** - * Allow CvQuadEdge2D to be interpreted as CvSubdiv2DEdge - */ -%typemap(in, numinputs=1) (CvSubdiv2DEdge) (CvSubdiv2DEdge_Wrapper * wrapper, CvQuadEdge2D * qedge, void *vptr) -{ - if( SWIG_ConvertPtr($input, &vptr, $descriptor(CvSubdiv2DEdge_Wrapper *), 0) != -1 ){ - wrapper = (CvSubdiv2DEdge_Wrapper *) vptr; - $1 = wrapper->ref(); - } - else if( SWIG_ConvertPtr($input, &vptr, $descriptor(CvQuadEdge2D *), 0) != -1 ){ - qedge = (CvQuadEdge2D *) vptr; - $1 = (CvSubdiv2DEdge)qedge; - } - else{ - SWIG_exception( SWIG_TypeError, "could not convert to CvSubdiv2DEdge"); - return NULL; - } -} - -/** - * return the vertex and edge for cvSubdiv2DLocate - */ -%typemap(in, numinputs=0) (CvSubdiv2DEdge * edge, CvSubdiv2DPoint ** vertex) - (CvSubdiv2DEdge tmpEdge, CvSubdiv2DPoint * tmpVertex) -{ - $1 = &tmpEdge; - $2 = &tmpVertex; -} -%typemap(argout) (CvSubdiv2DEdge * edge, CvSubdiv2DPoint ** vertex) -{ - PyObject * to_add[2] = {NULL, NULL}; - if(result==CV_PTLOC_INSIDE || result==CV_PTLOC_ON_EDGE){ - CvSubdiv2DEdge_Wrapper * wrapper = new CvSubdiv2DEdge_Wrapper( tmpEdge$argnum ); - to_add[0] = SWIG_NewPointerObj( wrapper, $descriptor(CvSubdiv2DEdge_Wrapper *), 0); - to_add[1] = Py_None; - } - if(result==CV_PTLOC_VERTEX){ - to_add[0] = Py_None; - to_add[1] = SWIG_NewPointerObj( tmpVertex$argnum, $descriptor(CvSubdiv2DPoint *), 0); - } - - $result = SWIG_AppendResult($result, to_add, 2); -} - -/** - * int *value in cvCreateTrackbar() is only used for input in the Python wrapper. - * for output, use the pos in the callback - * TODO: remove the memory leak introducted by the malloc () (if needed). - */ -%typemap(in, numinputs=1) (int *value) -{ - $1 = (int *)malloc (sizeof (int)); - *$1 = PyInt_AsLong ($input); -} - - -/** - * take (query_points,k) and return (indices,dist) - * for cvLSHQuery, cvFindFeatures - */ -%typemap(in, noblock=1) (const CvMat* query_points) (bool freearg=false, int num_query_points) -{ - $1 = (CvMat*)PyObject_to_CvArr($input, &freearg); - num_query_points = $1->rows; -} -%typemap(freearg) (const CvMat* query_points) { - if($1!=NULL && freearg$argnum){ - cvReleaseData( $1 ); - cvFree(&($1)); - } -} -%typemap(in) (CvMat* indices, CvMat* dist, int k) -{ - $3 = (int)PyInt_AsLong($input); - $1 = cvCreateMat(num_query_points2, $3, CV_32SC1); - $2 = cvCreateMat(num_query_points2, $3, CV_64FC1); -} -%typemap(argout) (CvMat* indices, CvMat* dist, int k) -{ - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($1, $descriptor(CvMat *), 1) ); - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($2, $descriptor(CvMat *), 1) ); -} - -/** - * take (data) and return (indices) - * for cvLSHAdd - */ -%typemap(in) (const CvMat* data, CvMat* indices) (bool freearg=false) -{ - $1 = (CvMat*)PyObject_to_CvArr($input, &freearg); - CvMat* m = (CvMat*)$1; - $2 = cvCreateMat(m->rows, 1, CV_32SC1 ); -} -%typemap(argout) (const CvMat* data, CvMat* indices) -{ - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($2, $descriptor(CvMat *), 1) ); -} -%typemap(freearg) (const CvMat* data, CvMat* indices) { - if($1!=NULL && freearg$argnum){ - cvReleaseData( $1 ); - cvFree(&($1)); - } -} - -/** - * take (max_out_indices) and return (indices) - * for cvFindFeaturesBoxed - */ -%typemap(in) (CvMat* out_indices) (bool freearg=false) -{ - int max_out_indices = (int)PyInt_AsLong($input); - $1 = cvCreateMat(max_out_indices, 1, CV_32SC1 ); -} -%typemap(argout) (CvMat* out_indices) -{ - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($1, $descriptor(CvMat *), 1) ); -} - -/** - * suppress (CvSeq** keypoints, CvSeq** descriptors, CvMemStorage* storage) and return (keypoints, descriptors) - * for cvExtractSURF - */ -%typemap(in,numinputs=0) (CvSeq** keypoints, CvSeq** descriptors, CvMemStorage* storage) - (CvSeq* keypoints = 0, CvSeq* descriptors = 0,CvMemStorage* storage) -{ - storage = cvCreateMemStorage(); - $1 = &keypoints; - $2 = &descriptors; - $3 = storage; -} -%typemap(argout) (CvSeq** keypoints, CvSeq** descriptors, CvMemStorage* storage) -{ - const int n1 = 6; - int n2 = (*$2)->elem_size / sizeof(float); - assert((*$2)->elem_size == 64 * sizeof(float) || - (*$2)->elem_size == 128 * sizeof(float)); - assert((*$2)->total == (*$1)->total); - CvMat* m1 = cvCreateMat((*$2)->total,n1,CV_32FC1); - CvMat* m2 = cvCreateMat((*$2)->total,n2,CV_32FC1); - CvSeqReader r1; - cvStartReadSeq(*$1, &r1); - float* m1p = m1->data.fl; - for (int j=0;j<(*$2)->total;++j) { - CvSURFPoint* sp = (CvSURFPoint*)r1.ptr; - m1p[0] = sp->pt.x; - m1p[1] = sp->pt.y; - m1p[2] = sp->laplacian; - m1p[3] = sp->size; - m1p[4] = sp->dir; - m1p[5] = sp->hessian; - m1p += n1; - CV_NEXT_SEQ_ELEM((*$1)->elem_size, r1); - } - CvSeqReader r2; - cvStartReadSeq(*$2, &r2); - float* m2p = m2->data.fl; - for (int j=0;j<(*$2)->total;++j) { - memcpy(m2p,r2.ptr,n2*sizeof(float)); - m2p += n2; - CV_NEXT_SEQ_ELEM((*$2)->elem_size, r2); - } - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj(m1, $descriptor(CvMat *), 1) ); - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj(m2, $descriptor(CvMat *), 1) ); - cvReleaseMemStorage(&$3); -} - -/** - * suppress (CvMat* homography) and return (homography) - * for cvFindHomography - */ -%typemap(in,numinputs=0) (CvMat* homography) (bool freearg=false) -{ - $1 = cvCreateMat(3,3,CV_64FC1); -} -%typemap(argout) (CvMat* homography) -{ - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($1, $descriptor(CvMat *), 1) ); -} - -/** - * take (coeffs) for (const CvMat* coeffs, CvMat *roots) and return (roots) - * for cvSolveCubic - */ -%typemap(in) (const CvMat* coeffs, CvMat *roots) (bool freearg=false) -{ - $1 = (CvMat*)PyObject_to_CvArr($input, &freearg); - int m = $1->rows * $1->cols; - if (m<2) { - PyErr_SetString (PyExc_TypeError,"must give at least 2 coefficients"); - return NULL; - } - $2 = cvCreateMat(m-1, 1, CV_MAKETYPE(CV_MAT_DEPTH($1->type),1)); -} -%typemap(argout) (const CvMat* coeffs, CvMat *roots) -{ - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($2, $descriptor(CvMat *), 1) ); -} -%typemap(freearg) (const CvMat* coeffs, CvMat *roots) -{ - if($1!=NULL && freearg$argnum){ - cvReleaseData( $1 ); - cvFree(&($1)); - } -} - -/** - * take (coeffs) for (const CvMat* coeffs, CvMat *roots2) and return (roots2) - * for cvSolvePoly - */ -%typemap(in) (const CvMat* coeffs, CvMat *roots2) (bool freearg=false) -{ - $1 = (CvMat*)PyObject_to_CvArr($input, &freearg); - int m = $1->rows * $1->cols; - if (m<2) { - PyErr_SetString (PyExc_TypeError,"must give at least 2 coefficients"); - return NULL; - } - $2 = cvCreateMat(m-1, 1, CV_MAKETYPE(CV_MAT_DEPTH($1->type),2)); -} -%typemap(argout) (const CvMat* coeffs, CvMat *roots2) -{ - $result = SWIG_AppendOutput( $result, SWIG_NewPointerObj($2, $descriptor(CvMat *), 1) ); -} -%typemap(freearg) (const CvMat* coeffs, CvMat *roots2) -{ - if($1!=NULL && freearg$argnum){ - cvReleaseData( $1 ); - cvFree(&($1)); - } -} - diff --git a/interfaces/swig/python/setup-for-win.py b/interfaces/swig/python/setup-for-win.py deleted file mode 100644 index 7a676b0aa..000000000 --- a/interfaces/swig/python/setup-for-win.py +++ /dev/null @@ -1,120 +0,0 @@ -from distutils.core import setup, Extension import os -opencv_pwrap_dir = r'.' -opencv_base_dir = r'../../..' - -def patch_for_win32(filename,outfile,patches,extra_defs): - print 'patching '+filename+'...' - src = open(filename,'rt') - dst = open(outfile, 'wt') - for l in src.xreadlines(): - dl = l - for (from_str,to_str) in patches: - dl = dl.replace(from_str,to_str) - for i in extra_defs: - if l.find(i[0]) >= 0: - dst.write(i[1]) - extra_defs.remove(i) - dst.write(dl) - src.close() - dst.close() - -def is_older(a,b): - return os.path.getmtime(a) m_ml -> ml_doc);", - "char *doc = (char*)(((PyCFunctionObject *)obj) -> m_ml -> ml_doc);"), - ("char *c = methods[i].ml_doc;", - "char *c = (char*)methods[i].ml_doc;")], - [('PyAPI_FUNC','#undef PyAPI_FUNC\n'), ('cv.h', -""" -#include "cv.h" - -const signed char icvDepthToType[]= -{ - -1, -1, CV_8U, CV_8S, CV_16U, CV_16S, -1, -1, - CV_32F, CV_32S, -1, -1, -1, -1, -1, -1, CV_64F, -1 -}; - -CvModuleInfo* CvModule::first = 0; -CvModuleInfo* CvModule::last = 0; -CvTypeInfo* CvType::first = 0; -CvTypeInfo* CvType::last = 0; - -""")]) - -if not os.path.exists('_highgui_win32.cpp') or is_older('_highgui_win32.cpp','_highgui.cpp'): - patch_for_win32('_highgui.cpp', '_highgui_win32.cpp', - [('unsigned long long','uint64',),('long long','int64'), - ("char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);", - "char *doc = (char*)(((PyCFunctionObject *)obj) -> m_ml -> ml_doc);"), - ("char *c = methods[i].ml_doc;", - "char *c = (char*)methods[i].ml_doc;")], - [('PyAPI_FUNC','#undef PyAPI_FUNC\n')]) - -if not os.path.exists('_ml_win32.cpp') or is_older('_ml_win32.cpp','_ml.cpp'): - patch_for_win32('_ml.cpp', '_ml_win32.cpp', - [('unsigned long long','uint64',),('long long','int64'), - ("char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);", - "char *doc = (char*)(((PyCFunctionObject *)obj) -> m_ml -> ml_doc);"), - ("char *c = methods[i].ml_doc;", - "char *c = (char*)methods[i].ml_doc;")], - [('PyAPI_FUNC','#undef PyAPI_FUNC\n')]) - - -setup(name='OpenCV Python Wrapper', - version='0.0', - packages = ['opencv'], - package_dir = {'opencv': opencv_pwrap_dir}, - ext_modules=[Extension('opencv._cv', - [os.path.join (opencv_pwrap_dir, '_cv_win32.cpp'), - os.path.join (opencv_pwrap_dir, 'error.cpp'), - os.path.join (opencv_pwrap_dir, 'cvshadow.cpp'), - os.path.join (opencv_pwrap_dir, 'pyhelpers.cpp')], - include_dirs = [os.path.join (opencv_base_dir, - 'cv', 'include'), - os.path.join (opencv_base_dir, - 'cxcore', 'include'), - ], - library_dirs = [os.path.join (opencv_base_dir, - 'lib')], - libraries = ['cv', 'cxcore'], - ), - - Extension('opencv._ml', - [os.path.join (opencv_pwrap_dir, '_ml_win32.cpp'), - os.path.join (opencv_pwrap_dir, 'error.cpp'), - os.path.join (opencv_pwrap_dir, 'cvshadow.cpp'), - os.path.join (opencv_pwrap_dir, 'pyhelpers.cpp')], - include_dirs = [os.path.join (opencv_base_dir, - 'cv', 'include'), - os.path.join (opencv_base_dir, - 'cxcore', 'include'), - os.path.join (opencv_base_dir, - 'ml', 'include'), - os.path.join (opencv_base_dir, - 'otherlibs', 'highgui'), - ], - library_dirs = [os.path.join (opencv_base_dir, - 'lib')], - libraries = ['cv', 'cxcore', 'ml'], - ), - - Extension('opencv._highgui', [os.path.join (opencv_pwrap_dir, '_highgui_win32.cpp'), - os.path.join (opencv_pwrap_dir, 'error.cpp'), - os.path.join (opencv_pwrap_dir, 'cvshadow.cpp'), - os.path.join (opencv_pwrap_dir, 'pyhelpers.cpp')], - include_dirs = [os.path.join (opencv_base_dir, - 'otherlibs', 'highgui'), - os.path.join (opencv_base_dir, - 'cxcore', 'include'), - os.path.join (opencv_base_dir, - 'cv', 'include')], - library_dirs = [os.path.join (opencv_base_dir, - 'lib')], - libraries = ['highgui', 'cv', 'cxcore'], - ) - ] - )